Home | History | Annotate | Download | only in arm

Lines Matching refs:Instr

508 typedef int32_t Instr;
511 extern const Instr kMovLrPc;
512 extern const Instr kLdrPCPattern;
590 static const int kInstrSize = sizeof(Instr);
907 static Instr instr_at(byte* pc) { return *reinterpret_cast<Instr*>(pc); }
908 void instr_at_put(byte* pc, Instr instr) {
909 *reinterpret_cast<Instr*>(pc) = instr;
911 Instr instr_at(int pos) { return *reinterpret_cast<Instr*>(buffer_ + pos); }
912 void instr_at_put(int pos, Instr instr) {
913 *reinterpret_cast<Instr*>(buffer_ + pos) = instr;
1011 inline void emit(Instr x);
1014 void addrmod1(Instr instr, Register rn, Register rd, const Operand& x);
1015 void addrmod2(Instr instr, Register rd, const MemOperand& x);
1016 void addrmod3(Instr instr, Register rd, const MemOperand& x);
1017 void addrmod4(Instr instr, Register rn, RegList rl);
1018 void addrmod5(Instr instr, CRegister crd, const MemOperand& x);