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

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

Issue 11428137: ARM: Make use of d16-d31 when available. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: The tests does not use fp Created 8 years 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/arm/macro-assembler-arm.h
diff --git a/src/arm/macro-assembler-arm.h b/src/arm/macro-assembler-arm.h
index 15cef16f057a0a03244503168aa9ceb1002bd49b..ea84b5bc7d86eb8b46096a2bf691a3de6f00fbd5 100644
--- a/src/arm/macro-assembler-arm.h
+++ b/src/arm/macro-assembler-arm.h
@@ -502,6 +502,19 @@ class MacroAssembler: public Assembler {
const Register scratch = no_reg,
const Condition cond = al);
+ void Vldm(BlockAddrMode am,
+ Register base,
+ const DwVfpRegister first,
+ const DwVfpRegister last,
+ Condition cond = al);
+
+ void Vstm(BlockAddrMode am,
+ Register base,
+ const DwVfpRegister first,
+ const DwVfpRegister last,
+ Condition cond = al);
+
+
// Enter exit frame.
// stack_space - extra stack space, used for alignment before call to C.
void EnterExitFrame(bool save_doubles, int stack_space = 0);

Powered by Google App Engine
This is Rietveld 408576698