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

Unified Diff: runtime/vm/intermediate_language.h

Issue 9624025: Implement strict comparison and native calls in flow graph compiler x64. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 9 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/flow_graph_compiler_x64.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/intermediate_language.h
===================================================================
--- runtime/vm/intermediate_language.h (revision 5134)
+++ runtime/vm/intermediate_language.h (working copy)
@@ -287,10 +287,22 @@
DECLARE_COMPUTATION(NativeCall)
+ intptr_t token_index() const { return ast_node_.token_index(); }
+
const String& native_name() const {
return ast_node_.native_c_function_name();
}
+ NativeFunction native_c_function() const {
+ return ast_node_.native_c_function();
+ }
+
+ intptr_t argument_count() const { return ast_node_.argument_count(); }
+
+ bool has_optional_parameters() const {
+ return ast_node_.has_optional_parameters();
+ }
+
private:
const NativeBodyNode& ast_node_;
« no previous file with comments | « runtime/vm/flow_graph_compiler_x64.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698