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

Unified Diff: runtime/vm/code_generator_ia32.h

Issue 8475013: Emit node id at every call to runtime. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 9 years, 1 month 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/code_generator.cc ('k') | runtime/vm/code_generator_ia32.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/code_generator_ia32.h
===================================================================
--- runtime/vm/code_generator_ia32.h (revision 1225)
+++ runtime/vm/code_generator_ia32.h (working copy)
@@ -111,14 +111,16 @@
int num_arguments,
const Array& optional_arguments_names);
- void GenerateInstanceOf(intptr_t token_index,
+ void GenerateInstanceOf(intptr_t node_id,
+ intptr_t token_index,
const Type& type,
bool negate_result);
- void GenerateAssertAssignable(intptr_t token_index,
+ void GenerateAssertAssignable(intptr_t node_id,
+ intptr_t token_index,
const Type& dst_type,
const String& dst_name);
void GenerateArgumentTypeChecks();
- void GenerateConditionTypeCheck(intptr_t token_index);
+ void GenerateConditionTypeCheck(intptr_t node_id, intptr_t token_index);
void GenerateInstantiatorTypeArguments(intptr_t token_index);
void GenerateTypeArguments(ConstructorCallNode* node,
@@ -130,7 +132,9 @@
bool IsResultNeeded(AstNode* node) const;
void GenerateCall(intptr_t token_index, const ExternalLabel* ext_label);
- void GenerateCallRuntime(intptr_t token_index, const RuntimeEntry& entry);
+ void GenerateCallRuntime(intptr_t node_id,
+ intptr_t token_index,
+ const RuntimeEntry& entry);
void GenerateInlinedFinallyBlocks(SourceLabel* label);
« no previous file with comments | « runtime/vm/code_generator.cc ('k') | runtime/vm/code_generator_ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698