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

Unified Diff: runtime/vm/thread.h

Issue 2793163002: Do not embed is_auto_setup_scope into the compilation of native calls. (Closed)
Patch Set: . Created 3 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
« runtime/vm/intermediate_language_mips.cc ('K') | « runtime/vm/stub_code_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/thread.h
diff --git a/runtime/vm/thread.h b/runtime/vm/thread.h
index 7e8553c9adb5607361395658cab6d3703cfdf860..6c1ed616a7bf9ce354dca4c03b557aa827df76e7 100644
--- a/runtime/vm/thread.h
+++ b/runtime/vm/thread.h
@@ -124,8 +124,10 @@ class Zone;
#define CACHED_ADDRESSES_LIST(V) \
CACHED_VM_STUBS_ADDRESSES_LIST(V) \
- V(uword, native_call_wrapper_entry_point_, \
- NativeEntry::NativeCallWrapperEntry(), 0) \
+ V(uword, no_scope_native_wrapper_entry_point_, \
+ NativeEntry::NoScopeNativeCallWrapperEntry(), 0) \
+ V(uword, auto_scope_native_wrapper_entry_point_, \
+ NativeEntry::AutoScopeNativeCallWrapperEntry(), 0) \
V(RawString**, predefined_symbols_address_, Symbols::PredefinedAddress(), \
NULL) \
V(uword, double_negate_address_, \
« runtime/vm/intermediate_language_mips.cc ('K') | « runtime/vm/stub_code_x64.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698