| Index: runtime/vm/intermediate_language_ia32.cc
|
| ===================================================================
|
| --- runtime/vm/intermediate_language_ia32.cc (revision 8180)
|
| +++ runtime/vm/intermediate_language_ia32.cc (working copy)
|
| @@ -54,6 +54,25 @@
|
| }
|
|
|
|
|
| +void GraphEntryInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
|
| + // Nothing to do.
|
| +}
|
| +
|
| +
|
| +void JoinEntryInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
|
| + __ Bind(compiler->GetBlockLabel(this));
|
| +}
|
| +
|
| +
|
| +void TargetEntryInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
|
| + __ Bind(compiler->GetBlockLabel(this));
|
| + if (HasTryIndex()) {
|
| + compiler->AddExceptionHandler(try_index(),
|
| + compiler->assembler()->CodeSize());
|
| + }
|
| +}
|
| +
|
| +
|
| LocationSummary* ReturnInstr::MakeLocationSummary() const {
|
| const intptr_t kNumInputs = 1;
|
| const intptr_t kNumTemps = 1;
|
|
|