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

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

Issue 157503002: A64: Synchronize with r18444. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/a64
Patch Set: Created 6 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 | « src/a64/macro-assembler-a64.h ('k') | src/a64/stub-cache-a64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/a64/macro-assembler-a64.cc
diff --git a/src/a64/macro-assembler-a64.cc b/src/a64/macro-assembler-a64.cc
index 2f2532861ab4689676d316c302ecbd6e388e94aa..d6ef3957add94bda167390bbdeb28960d409c468 100644
--- a/src/a64/macro-assembler-a64.cc
+++ b/src/a64/macro-assembler-a64.cc
@@ -4325,12 +4325,13 @@ void MacroAssembler::AssertRegisterIsClear(Register reg, BailoutReason reason) {
void MacroAssembler::AssertRegisterIsRoot(Register reg,
- Heap::RootListIndex index) {
+ Heap::RootListIndex index,
+ BailoutReason reason) {
// CompareRoot uses Tmp0().
ASSERT(!reg.Is(Tmp0()));
if (emit_debug_code()) {
CompareRoot(reg, index);
- Check(eq, kRegisterDidNotMatchExpectedRoot);
+ Check(eq, reason);
}
}
« no previous file with comments | « src/a64/macro-assembler-a64.h ('k') | src/a64/stub-cache-a64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698