| Index: runtime/vm/flow_graph_compiler_ia32.h
|
| ===================================================================
|
| --- runtime/vm/flow_graph_compiler_ia32.h (revision 8212)
|
| +++ runtime/vm/flow_graph_compiler_ia32.h (working copy)
|
| @@ -18,6 +18,7 @@
|
|
|
| namespace dart {
|
|
|
| +class AbstractType;
|
| class Assembler;
|
| class Code;
|
| class DeoptimizationStub;
|
| @@ -59,6 +60,16 @@
|
| intptr_t try_index,
|
| const ExternalLabel* label,
|
| PcDescriptors::Kind kind);
|
| + void GenerateInstanceOf(intptr_t cid,
|
| + intptr_t token_index,
|
| + intptr_t try_index,
|
| + const AbstractType& type,
|
| + bool negate_result);
|
| + void GenerateAssertAssignable(intptr_t cid,
|
| + intptr_t token_index,
|
| + intptr_t try_index,
|
| + const AbstractType& dst_type,
|
| + const String& dst_name);
|
|
|
| private:
|
| friend class DeoptimizationStub;
|
|
|