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

Unified Diff: src/a64/debug-a64.cc

Issue 196133017: Experimental parser: merge r19949 (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/parser
Patch Set: Created 6 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/a64/constants-a64.h ('k') | src/a64/debugger-a64.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/a64/debug-a64.cc
diff --git a/src/a64/debug-a64.cc b/src/a64/debug-a64.cc
index d8711650c1936fb82ff17dffa38aeb3242e5a92f..05c005aa4732a024a3140cfda754377fac01bba0 100644
--- a/src/a64/debug-a64.cc
+++ b/src/a64/debug-a64.cc
@@ -175,12 +175,11 @@ static void Generate_DebugBreakCallHelper(MacroAssembler* masm,
ASSERT((object_regs & non_object_regs) == 0);
ASSERT((scratch.Bit() & object_regs) == 0);
ASSERT((scratch.Bit() & non_object_regs) == 0);
- ASSERT((ip0.Bit() & (object_regs | non_object_regs)) == 0);
- ASSERT((ip1.Bit() & (object_regs | non_object_regs)) == 0);
+ ASSERT((masm->TmpList()->list() & (object_regs | non_object_regs)) == 0);
STATIC_ASSERT(kSmiValueSize == 32);
CPURegList non_object_list =
- CPURegList(CPURegister::kRegister, kXRegSize, non_object_regs);
+ CPURegList(CPURegister::kRegister, kXRegSizeInBits, non_object_regs);
while (!non_object_list.IsEmpty()) {
// Store each non-object register as two SMIs.
Register reg = Register(non_object_list.PopLowestIndex());
@@ -214,7 +213,7 @@ static void Generate_DebugBreakCallHelper(MacroAssembler* masm,
}
non_object_list =
- CPURegList(CPURegister::kRegister, kXRegSize, non_object_regs);
+ CPURegList(CPURegister::kRegister, kXRegSizeInBits, non_object_regs);
while (!non_object_list.IsEmpty()) {
// Load each non-object register from two SMIs.
// Stack:
« no previous file with comments | « src/a64/constants-a64.h ('k') | src/a64/debugger-a64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698