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

Side by Side Diff: src/bootstrapper.cc

Issue 1151333005: A couple of other "stack overflow" vs. "has_pending_exception()" issues fixed. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebasing and try failures fixes Created 5 years, 6 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 unified diff | Download patch
« no previous file with comments | « no previous file | src/d8.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/bootstrapper.h" 5 #include "src/bootstrapper.h"
6 6
7 #include "src/accessors.h" 7 #include "src/accessors.h"
8 #include "src/api-natives.h" 8 #include "src/api-natives.h"
9 #include "src/base/utils/random-number-generator.h" 9 #include "src/base/utils/random-number-generator.h"
10 #include "src/code-stubs.h" 10 #include "src/code-stubs.h"
(...skipping 2448 matching lines...) Expand 10 before | Expand all | Expand 10 after
2459 if (!CompileExperimentalBuiltin(isolate(), i)) return false; \ 2459 if (!CompileExperimentalBuiltin(isolate(), i)) return false; \
2460 } \ 2460 } \
2461 } \ 2461 } \
2462 } 2462 }
2463 HARMONY_INPROGRESS(INSTALL_EXPERIMENTAL_NATIVES); 2463 HARMONY_INPROGRESS(INSTALL_EXPERIMENTAL_NATIVES);
2464 HARMONY_STAGED(INSTALL_EXPERIMENTAL_NATIVES); 2464 HARMONY_STAGED(INSTALL_EXPERIMENTAL_NATIVES);
2465 HARMONY_SHIPPING(INSTALL_EXPERIMENTAL_NATIVES); 2465 HARMONY_SHIPPING(INSTALL_EXPERIMENTAL_NATIVES);
2466 #undef INSTALL_EXPERIMENTAL_NATIVES 2466 #undef INSTALL_EXPERIMENTAL_NATIVES
2467 } 2467 }
2468 2468
2469 CallUtilsFunction(isolate(), "PostExperimentals"); 2469 if (!CallUtilsFunction(isolate(), "PostExperimentals")) return false;
2470 2470
2471 InstallExperimentalNativeFunctions(); 2471 InstallExperimentalNativeFunctions();
2472 InstallExperimentalBuiltinFunctionIds(); 2472 InstallExperimentalBuiltinFunctionIds();
2473 return true; 2473 return true;
2474 } 2474 }
2475 2475
2476 2476
2477 bool Genesis::InstallExtraNatives() { 2477 bool Genesis::InstallExtraNatives() {
2478 for (int i = ExtraNatives::GetDebuggerCount(); 2478 for (int i = ExtraNatives::GetDebuggerCount();
2479 i < ExtraNatives::GetBuiltinsCount(); i++) { 2479 i < ExtraNatives::GetBuiltinsCount(); i++) {
(...skipping 665 matching lines...) Expand 10 before | Expand all | Expand 10 after
3145 } 3145 }
3146 3146
3147 3147
3148 // Called when the top-level V8 mutex is destroyed. 3148 // Called when the top-level V8 mutex is destroyed.
3149 void Bootstrapper::FreeThreadResources() { 3149 void Bootstrapper::FreeThreadResources() {
3150 DCHECK(!IsActive()); 3150 DCHECK(!IsActive());
3151 } 3151 }
3152 3152
3153 } // namespace internal 3153 } // namespace internal
3154 } // namespace v8 3154 } // namespace v8
OLDNEW
« no previous file with comments | « no previous file | src/d8.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698