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

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

Issue 196473021: A64: Handle a few TODOs. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
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
Index: src/a64/macro-assembler-a64.h
diff --git a/src/a64/macro-assembler-a64.h b/src/a64/macro-assembler-a64.h
index 651be99a6fb6657ac7f55a2659e71a83cbbea7c1..4c73f0336e38bb4d42fae764559311c2564c072e 100644
--- a/src/a64/macro-assembler-a64.h
+++ b/src/a64/macro-assembler-a64.h
@@ -538,6 +538,10 @@ class MacroAssembler : public Assembler {
// the system stack pointer, these methods do not modify any other registers.
void Push(const CPURegister& src0, const CPURegister& src1 = NoReg,
const CPURegister& src2 = NoReg, const CPURegister& src3 = NoReg);
+ void Push(const CPURegister& src0, const CPURegister& src1,
+ const CPURegister& src2, const CPURegister& src3,
+ const CPURegister& src4, const CPURegister& src5 = NoReg,
+ const CPURegister& src6 = NoReg, const CPURegister& src7 = NoReg);
void Pop(const CPURegister& dst0, const CPURegister& dst1 = NoReg,
const CPURegister& dst2 = NoReg, const CPURegister& dst3 = NoReg);
@@ -791,10 +795,6 @@ class MacroAssembler : public Assembler {
//
// This method asserts that StackPointer() is not csp, since the call does
// not make sense in that context.
- //
- // TODO(jbramley): Currently, this method can only accept values of 'space'
- // that can be encoded in one instruction. Refer to the implementation for
- // details.
inline void BumpSystemStackPointer(const Operand& space);
// Helpers ------------------------------------------------------------------

Powered by Google App Engine
This is Rietveld 408576698