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

Unified Diff: runtime/vm/thread.h

Issue 1494323002: Revert "Precompilation/x64: Load float vector constants via Thread." (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years 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/assembler_x64_test.cc ('k') | runtime/vm/thread.cc » ('j') | 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 15483cb9f67bb3a073115a09db0d3d4d14743f1a..0e3c23ff49407c5bd65af43cfac0f8b0d50cc735 100644
--- a/runtime/vm/thread.h
+++ b/runtime/vm/thread.h
@@ -79,6 +79,7 @@ class Zone;
V(RawCode*, invoke_dart_code_stub_, \
StubCode::InvokeDartCode_entry()->code(), NULL) \
+
#define CACHED_ADDRESSES_LIST(V) \
V(uword, update_store_buffer_entry_point_, \
StubCode::UpdateStoreBuffer_entry()->EntryPoint(), 0) \
@@ -86,23 +87,12 @@ class Zone;
NativeEntry::NativeCallWrapperEntry(), 0) \
V(RawString**, predefined_symbols_address_, \
Symbols::PredefinedAddress(), NULL) \
- V(uword, double_negate_address_, \
- reinterpret_cast<uword>(&double_negate_constant), 0) \
- V(uword, double_abs_address_, \
- reinterpret_cast<uword>(&double_abs_constant), 0) \
- V(uword, float_not_address_, \
- reinterpret_cast<uword>(&float_not_constant), 0) \
- V(uword, float_negate_address_, \
- reinterpret_cast<uword>(&float_negate_constant), 0) \
- V(uword, float_absolute_address_, \
- reinterpret_cast<uword>(&float_absolute_constant), 0) \
- V(uword, float_zerow_address_, \
- reinterpret_cast<uword>(&float_zerow_constant), 0) \
#define CACHED_CONSTANTS_LIST(V) \
CACHED_VM_OBJECTS_LIST(V) \
CACHED_ADDRESSES_LIST(V) \
+
// A VM thread; may be executing Dart code or performing helper tasks like
// garbage collection or compilation. The Thread structure associated with
// a thread is allocated by EnsureInit before entering an isolate, and destroyed
« no previous file with comments | « runtime/vm/assembler_x64_test.cc ('k') | runtime/vm/thread.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698