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

Unified Diff: src/ia32/macro-assembler-ia32.cc

Issue 12385014: Hydrogen stubs for array constructors (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: More efficient code when number of arguments is known Created 7 years, 8 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
Index: src/ia32/macro-assembler-ia32.cc
diff --git a/src/ia32/macro-assembler-ia32.cc b/src/ia32/macro-assembler-ia32.cc
index 3228e8370e1ea9848ddbe0885462234784e885ce..46f75b5a9be412a440a97058ef5c91c3fbd88712 100644
--- a/src/ia32/macro-assembler-ia32.cc
+++ b/src/ia32/macro-assembler-ia32.cc
@@ -2531,10 +2531,13 @@ void MacroAssembler::VerifyX87StackDepth(uint32_t depth) {
and_(eax, kTopMask);
shr(eax, 11);
cmp(eax, Immediate(tos));
- Label all_ok;
- j(equal, &all_ok);
+ // These lines if you want to break right away
+ // Label all_ok;
+ // j(equal, &all_ok);
+ // int3();
+ // The check line otherwise
Check(equal, "Unexpected FPU stack depth after instruction");
- bind(&all_ok);
+ // bind(&all_ok);
fnclex();
pop(eax);
}
« src/ia32/code-stubs-ia32.cc ('K') | « src/ia32/lithium-ia32.cc ('k') | src/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698