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

Side by Side Diff: src/arm/assembler-arm.h

Issue 2122021: Make ldrd and strd instructions take two register arguments (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 10 years, 7 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | src/arm/assembler-arm.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 1994-2006 Sun Microsystems Inc. 1 // Copyright (c) 1994-2006 Sun Microsystems Inc.
2 // All Rights Reserved. 2 // All Rights Reserved.
3 // 3 //
4 // Redistribution and use in source and binary forms, with or without 4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions 5 // modification, are permitted provided that the following conditions
6 // are met: 6 // are met:
7 // 7 //
8 // - Redistributions of source code must retain the above copyright notice, 8 // - Redistributions of source code must retain the above copyright notice,
9 // this list of conditions and the following disclaimer. 9 // this list of conditions and the following disclaimer.
10 // 10 //
(...skipping 755 matching lines...) Expand 10 before | Expand all | Expand 10 after
766 766
767 // Load/Store instructions 767 // Load/Store instructions
768 void ldr(Register dst, const MemOperand& src, Condition cond = al); 768 void ldr(Register dst, const MemOperand& src, Condition cond = al);
769 void str(Register src, const MemOperand& dst, Condition cond = al); 769 void str(Register src, const MemOperand& dst, Condition cond = al);
770 void ldrb(Register dst, const MemOperand& src, Condition cond = al); 770 void ldrb(Register dst, const MemOperand& src, Condition cond = al);
771 void strb(Register src, const MemOperand& dst, Condition cond = al); 771 void strb(Register src, const MemOperand& dst, Condition cond = al);
772 void ldrh(Register dst, const MemOperand& src, Condition cond = al); 772 void ldrh(Register dst, const MemOperand& src, Condition cond = al);
773 void strh(Register src, const MemOperand& dst, Condition cond = al); 773 void strh(Register src, const MemOperand& dst, Condition cond = al);
774 void ldrsb(Register dst, const MemOperand& src, Condition cond = al); 774 void ldrsb(Register dst, const MemOperand& src, Condition cond = al);
775 void ldrsh(Register dst, const MemOperand& src, Condition cond = al); 775 void ldrsh(Register dst, const MemOperand& src, Condition cond = al);
776 void ldrd(Register dst, const MemOperand& src, Condition cond = al); 776 void ldrd(Register dst1,
777 void strd(Register src, const MemOperand& dst, Condition cond = al); 777 Register dst2,
778 const MemOperand& src, Condition cond = al);
779 void strd(Register src1,
780 Register src2,
781 const MemOperand& dst, Condition cond = al);
778 782
779 // Load/Store multiple instructions 783 // Load/Store multiple instructions
780 void ldm(BlockAddrMode am, Register base, RegList dst, Condition cond = al); 784 void ldm(BlockAddrMode am, Register base, RegList dst, Condition cond = al);
781 void stm(BlockAddrMode am, Register base, RegList src, Condition cond = al); 785 void stm(BlockAddrMode am, Register base, RegList src, Condition cond = al);
782 786
783 // Exception-generating instructions and debugging support 787 // Exception-generating instructions and debugging support
784 void stop(const char* msg); 788 void stop(const char* msg);
785 789
786 void bkpt(uint32_t imm16); // v5 and above 790 void bkpt(uint32_t imm16); // v5 and above
787 void swi(uint32_t imm24, Condition cond = al); 791 void swi(uint32_t imm24, Condition cond = al);
(...skipping 344 matching lines...) Expand 10 before | Expand all | Expand 10 after
1132 1136
1133 friend class RegExpMacroAssemblerARM; 1137 friend class RegExpMacroAssemblerARM;
1134 friend class RelocInfo; 1138 friend class RelocInfo;
1135 friend class CodePatcher; 1139 friend class CodePatcher;
1136 friend class BlockConstPoolScope; 1140 friend class BlockConstPoolScope;
1137 }; 1141 };
1138 1142
1139 } } // namespace v8::internal 1143 } } // namespace v8::internal
1140 1144
1141 #endif // V8_ARM_ASSEMBLER_ARM_H_ 1145 #endif // V8_ARM_ASSEMBLER_ARM_H_
OLDNEW
« no previous file with comments | « no previous file | src/arm/assembler-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698