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

Unified Diff: test/cctest/test-utils-a64.cc

Issue 164793003: A64: Use a scope utility to allocate scratch registers. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
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
« src/a64/macro-assembler-a64.cc ('K') | « test/cctest/test-assembler-a64.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/cctest/test-utils-a64.cc
diff --git a/test/cctest/test-utils-a64.cc b/test/cctest/test-utils-a64.cc
index e637a6e52b7d1138b300ab3b890c7b04cb126df1..e9aecb825ddd5ac369c7730867930b7be0351b05 100644
--- a/test/cctest/test-utils-a64.cc
+++ b/test/cctest/test-utils-a64.cc
@@ -323,11 +323,8 @@ void RegisterDump::Dump(MacroAssembler* masm) {
ASSERT(__ StackPointer().Is(csp));
// Ensure that we don't unintentionally clobber any registers.
- Register old_tmp0 = __ Tmp0();
- Register old_tmp1 = __ Tmp1();
- FPRegister old_fptmp0 = __ FPTmp0();
- __ SetScratchRegisters(NoReg, NoReg);
- __ SetFPScratchRegister(NoFPReg);
+ UseScratchRegisterScope temps(masm);
+ temps.ExcludeAll();
// Preserve some temporary registers.
Register dump_base = x0;
@@ -418,9 +415,5 @@ void RegisterDump::Dump(MacroAssembler* masm) {
__ Ldr(dump2_base, MemOperand(dump2, dump2_base.code() * kXRegSizeInBytes));
__ Ldr(dump2, MemOperand(dump2, dump2.code() * kXRegSizeInBytes));
- // Restore the MacroAssembler's scratch registers.
- __ SetScratchRegisters(old_tmp0, old_tmp1);
- __ SetFPScratchRegister(old_fptmp0);
-
completed_ = true;
}
« src/a64/macro-assembler-a64.cc ('K') | « test/cctest/test-assembler-a64.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698