Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(171)

Unified Diff: runtime/vm/intermediate_language.cc

Issue 10832150: Get rid of ast node ids. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « runtime/vm/intermediate_language.h ('k') | runtime/vm/intermediate_language_ia32.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/intermediate_language.cc
===================================================================
--- runtime/vm/intermediate_language.cc (revision 10302)
+++ runtime/vm/intermediate_language.cc (working copy)
@@ -993,7 +993,7 @@
if (HasICData()) {
ASSERT(original() != NULL);
- Label* deopt = compiler->AddDeoptStub(original()->cid(),
+ Label* deopt = compiler->AddDeoptStub(original()->deopt_id(),
original()->token_pos(),
original()->try_index(),
kDeoptInstanceGetterSameTarget,
@@ -1018,7 +1018,7 @@
void ThrowInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
- compiler->GenerateCallRuntime(cid(),
+ compiler->GenerateCallRuntime(deopt_id(),
token_pos(),
try_index(),
kThrowRuntimeEntry);
@@ -1032,7 +1032,7 @@
void ReThrowInstr::EmitNativeCode(FlowGraphCompiler* compiler) {
- compiler->GenerateCallRuntime(cid(),
+ compiler->GenerateCallRuntime(deopt_id(),
token_pos(),
try_index(),
kReThrowRuntimeEntry);
@@ -1173,10 +1173,10 @@
void InstanceCallComp::EmitNativeCode(FlowGraphCompiler* compiler) {
compiler->AddCurrentDescriptor(PcDescriptors::kDeopt,
- cid(),
+ deopt_id(),
token_pos(),
try_index());
- compiler->GenerateInstanceCall(cid(),
+ compiler->GenerateInstanceCall(deopt_id(),
token_pos(),
try_index(),
function_name(),
@@ -1197,7 +1197,7 @@
compiler->GenerateInlinedMathSqrt(&done);
// Falls through to static call when operand type is not double or smi.
}
- compiler->GenerateStaticCall(cid(),
+ compiler->GenerateStaticCall(deopt_id(),
token_pos(),
try_index(),
function(),
@@ -1218,7 +1218,7 @@
void AssertAssignableComp::EmitNativeCode(FlowGraphCompiler* compiler) {
- compiler->GenerateAssertAssignable(cid(),
+ compiler->GenerateAssertAssignable(deopt_id(),
token_pos(),
try_index(),
dst_type(),
« no previous file with comments | « runtime/vm/intermediate_language.h ('k') | runtime/vm/intermediate_language_ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698