Home
last modified time | relevance | path

Searched defs:Sw (Results 1 – 5 of 5) sorted by relevance

/art/compiler/utils/mips/
Dassembler_mips_test.cc574 TEST_F(AssemblerMIPSTest, Sw) { in TEST_F() argument
2335 __ Sw(mips::RA, mips::T0, 0); in TEST_F() local
2551 __ Sw(mips::V0, mips::A0, 0x5678); // Possibly patchable instruction, not absorbed. in TEST_F() local
2566 __ Sw(mips::V0, mips::A0, 0x5680); // Immediate isn't 0x5678, absorbed. in TEST_F() local
2739 __ Sw(mips::V0, mips::A0, 0x5678, &patcher_label2); in TEST_F() local
2750 __ Sw(mips::V0, mips::A0, 0x5678, &patcher_label5); in TEST_F() local
Dassembler_mips32r6_test.cc1550 __ Sw(mips::V0, mips::A0, 0x5678, &patcher_label2); in TEST_F() local
1561 __ Sw(mips::V0, mips::A0, 0x5678, &patcher_label5); in TEST_F() local
/art/compiler/optimizing/
Dintrinsics_mips.cc1465 __ Sw(val, adr, 0); in VisitMemoryPokeIntNative() local
1484 __ Sw(val_lo, adr, 0); in VisitMemoryPokeLongNative() local
1485 __ Sw(val_hi, adr, 4); in VisitMemoryPokeLongNative() local
1736 __ Sw(value, TMP, 0); in GenUnsafePut() local
1746 __ Sw(value_lo, TMP, 0); in GenUnsafePut() local
1747 __ Sw(value_hi, TMP, 4); in GenUnsafePut() local
Dintrinsics_mips64.cc1075 __ Sw(val, adr, 00); in VisitMemoryPokeIntNative() local
1306 __ Sw(AT, TMP, 0); in GenUnsafePut() local
1308 __ Sw(value, TMP, 0); in GenUnsafePut() local
/art/compiler/utils/mips64/
Dassembler_mips64.cc664 void Mips64Assembler::Sw(GpuRegister rt, GpuRegister rs, uint16_t imm16) { in Sw() function in art::mips64::Mips64Assembler