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

Unified Diff: src/isolate.cc

Issue 2732273003: Disentangle assembler from isolate. (Closed)
Patch Set: Address feedback. 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
« no previous file with comments | « src/ic/arm64/ic-arm64.cc ('k') | src/mips/assembler-mips.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/isolate.cc
diff --git a/src/isolate.cc b/src/isolate.cc
index bb59b5e7dce4a0c45d9b2606565d9f1631852675..e1a2a57a32575ed0b359f057ba8cc7f94d0f9f5e 100644
--- a/src/isolate.cc
+++ b/src/isolate.cc
@@ -2699,8 +2699,6 @@ bool Isolate::Init(Deserializer* des) {
#endif
#endif
- code_aging_helper_ = new CodeAgingHelper(this);
-
{ // NOLINT
// Ensure that the thread has a valid stack guard. The v8::Locker object
// will ensure this too, but we don't have to use lockers if we are only
@@ -2716,6 +2714,8 @@ bool Isolate::Init(Deserializer* des) {
return false;
}
+ code_aging_helper_ = new CodeAgingHelper(this);
+
// Initialize the interface descriptors ahead of time.
#define INTERFACE_DESCRIPTOR(V) \
{ V##Descriptor(this); }
« no previous file with comments | « src/ic/arm64/ic-arm64.cc ('k') | src/mips/assembler-mips.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698