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

Unified Diff: src/compiler/interpreter-assembler.cc

Issue 1671653002: [Interpreter] Ensure StackCheck bytecode handler is in split-edge form. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 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 | src/compiler/raw-machine-assembler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/interpreter-assembler.cc
diff --git a/src/compiler/interpreter-assembler.cc b/src/compiler/interpreter-assembler.cc
index 6c1b8bb32e7a91e9f7117a789c0b7685754447a6..10883991b9bed2ca220e06ccd542ae58202103f8 100644
--- a/src/compiler/interpreter-assembler.cc
+++ b/src/compiler/interpreter-assembler.cc
@@ -717,8 +717,7 @@ void InterpreterAssembler::StackCheck() {
raw_assembler_->Branch(condition, &ok, &stack_guard);
raw_assembler_->Bind(&stack_guard);
CallRuntime(Runtime::kStackGuard);
- raw_assembler_->Goto(&ok);
- raw_assembler_->Bind(&ok);
+ raw_assembler_->Fallthrough(&ok);
Michael Starzinger 2016/02/05 14:15:33 Please don't add the "Fallthrough" helper to the R
rmcilroy 2016/02/05 14:34:36 Done.
}
void InterpreterAssembler::Abort(BailoutReason bailout_reason) {
« no previous file with comments | « no previous file | src/compiler/raw-machine-assembler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698