Index: runtime/vm/intermediate_language_mips.cc |
diff --git a/runtime/vm/intermediate_language_mips.cc b/runtime/vm/intermediate_language_mips.cc |
index ebdd48b21d3f91f2f0bfb85714b6654a7b783a12..52b0451005727c36484734a212f57255283caab5 100644 |
--- a/runtime/vm/intermediate_language_mips.cc |
+++ b/runtime/vm/intermediate_language_mips.cc |
@@ -418,7 +418,7 @@ LocationSummary* AssertBooleanInstr::MakeLocationSummary(Zone* zone, |
static void EmitAssertBoolean(Register reg, |
- intptr_t token_pos, |
+ TokenDescriptor token_pos, |
intptr_t deopt_id, |
LocationSummary* locs, |
FlowGraphCompiler* compiler) { |
@@ -1859,7 +1859,7 @@ class BoxAllocationSlowPath : public SlowPathCode { |
locs->live_registers()->Remove(Location::RegisterLocation(result_)); |
compiler->SaveLiveRegisters(locs); |
- compiler->GenerateCall(Token::kNoSourcePos, // No token position. |
+ compiler->GenerateCall(TokenDescriptor::kNoSource, // No token position. |
stub_entry, |
RawPcDescriptors::kOther, |
locs); |
@@ -2733,7 +2733,7 @@ class CheckStackOverflowSlowPath : public SlowPathCode { |
// In unoptimized code, record loop stack checks as possible OSR entries. |
compiler->AddCurrentDescriptor(RawPcDescriptors::kOsrEntry, |
instruction_->deopt_id(), |
- 0); // No token position. |
+ TokenDescriptor::kNoSource); |
} |
compiler->pending_deoptimization_env_ = NULL; |
compiler->RestoreLiveRegisters(instruction_->locs()); |
@@ -5389,7 +5389,7 @@ void GotoInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
// may be inserted before this instruction. |
compiler->AddCurrentDescriptor(RawPcDescriptors::kDeopt, |
GetDeoptId(), |
- Token::kNoSourcePos); |
+ TokenDescriptor::kNoSource); |
} |
if (HasParallelMove()) { |
compiler->parallel_move_resolver()->EmitNativeCode(parallel_move()); |
@@ -5591,7 +5591,7 @@ void GrowRegExpStackInstr::EmitNativeCode(FlowGraphCompiler* compiler) { |
__ LoadObject(TMP, Object::null_object()); |
__ sw(TMP, Address(SP, 1 * kWordSize)); |
__ sw(typed_data, Address(SP, 0 * kWordSize)); |
- compiler->GenerateRuntimeCall(Token::kNoSourcePos, // No token position. |
+ compiler->GenerateRuntimeCall(TokenDescriptor::kNoSource, |
deopt_id(), |
kGrowRegExpStackRuntimeEntry, |
1, |