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

Unified Diff: runtime/vm/intermediate_language.h

Issue 180243013: Stop creating dummy call frames when calling out to C functions (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 years, 10 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 | « no previous file | 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.h
diff --git a/runtime/vm/intermediate_language.h b/runtime/vm/intermediate_language.h
index 268e6448ce4342f76de9d026b58f755ba0080676..880408840b1e7a001d2799b8207e06a4a2e2284a 100644
--- a/runtime/vm/intermediate_language.h
+++ b/runtime/vm/intermediate_language.h
@@ -6731,6 +6731,9 @@ class InvokeMathCFunctionInstr : public Definition {
virtual bool MayThrow() const { return false; }
private:
+ static const intptr_t kSavedSpTempIndex = 0;
+ static const intptr_t kObjectTempIndex = 1;
+ static const intptr_t kDoubleTempIndex = 2;
virtual void RawSetInputAt(intptr_t i, Value* value) {
(*inputs_)[i] = value;
}
« no previous file with comments | « no previous file | runtime/vm/intermediate_language_ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698