D | assembler_thumb2.cc | 815 void Thumb2Assembler::ldr(Register rd, const Address& ad, Condition cond) { in ldr() argument 816 EmitLoadStore(cond, true, false, false, false, rd, ad); in ldr() 820 void Thumb2Assembler::str(Register rd, const Address& ad, Condition cond) { in str() argument 821 EmitLoadStore(cond, false, false, false, false, rd, ad); in str() 825 void Thumb2Assembler::ldrb(Register rd, const Address& ad, Condition cond) { in ldrb() argument 826 EmitLoadStore(cond, true, true, false, false, rd, ad); in ldrb() 830 void Thumb2Assembler::strb(Register rd, const Address& ad, Condition cond) { in strb() argument 831 EmitLoadStore(cond, false, true, false, false, rd, ad); in strb() 835 void Thumb2Assembler::ldrh(Register rd, const Address& ad, Condition cond) { in ldrh() argument 836 EmitLoadStore(cond, true, false, true, false, rd, ad); in ldrh() [all …]
|