D | assembler_thumb2.cc | 335 void Thumb2Assembler::ldr(Register rd, const Address& ad, Condition cond) { in ldr() argument 336 EmitLoadStore(cond, true, false, false, false, rd, ad); in ldr() 340 void Thumb2Assembler::str(Register rd, const Address& ad, Condition cond) { in str() argument 341 EmitLoadStore(cond, false, false, false, false, rd, ad); in str() 345 void Thumb2Assembler::ldrb(Register rd, const Address& ad, Condition cond) { in ldrb() argument 346 EmitLoadStore(cond, true, true, false, false, rd, ad); in ldrb() 350 void Thumb2Assembler::strb(Register rd, const Address& ad, Condition cond) { in strb() argument 351 EmitLoadStore(cond, false, true, false, false, rd, ad); in strb() 355 void Thumb2Assembler::ldrh(Register rd, const Address& ad, Condition cond) { in ldrh() argument 356 EmitLoadStore(cond, true, false, true, false, rd, ad); in ldrh() [all …]
|