Home
last modified time | relevance | path

Searched defs:LoadConst32 (Results 1 – 8 of 8) sorted by relevance

/art/compiler/optimizing/
Dcode_generator_mips.cc254 __ LoadConst32(calling_convention.GetRegisterAt(0), type_index.index_); in EmitNativeCode() local
308 __ LoadConst32(calling_convention.GetRegisterAt(0), string_index.index_); in EmitNativeCode() local
459 __ LoadConst32(calling_convention.GetRegisterAt(0), in EmitNativeCode() local
909 __ LoadConst32(calling_convention.GetRegisterAt(2), offset_); in EmitNativeCode() local
1529 __ LoadConst32(dst, value); in MoveConstant() local
1575 __ LoadConst32(dst, value); in MoveConstant() local
1779 __ LoadConst32(reg, dchecked_integral_cast<uint32_t>(reinterpret_cast<uintptr_t>(address))); in LoadBootImageAddress() local
2054 __ LoadConst32(TMP, path_to_root); in GenerateBitstringTypeCheckCompare() local
2276 __ LoadConst32(TMP, low); in HandleBinaryOp() local
2285 __ LoadConst32(TMP, high); in HandleBinaryOp() local
[all …]
Dintrinsics_mips.cc289 __ LoadConst32(AT, 0x00FF00FF); in GenReverse() local
300 __ LoadConst32(AT, 0x0F0F0F0F); in GenReverse() local
306 __ LoadConst32(AT, 0x33333333); in GenReverse() local
312 __ LoadConst32(AT, 0x55555555); in GenReverse() local
348 __ LoadConst32(AT, 0x00FF00FF); in GenReverse() local
366 __ LoadConst32(AT, 0x0F0F0F0F); in GenReverse() local
377 __ LoadConst32(AT, 0x33333333); in GenReverse() local
388 __ LoadConst32(AT, 0x55555555); in GenReverse() local
546 __ LoadConst32(TMP, 32); in GenNumberOfTrailingZeroes() local
553 __ LoadConst32(TMP, 32); in GenNumberOfTrailingZeroes() local
[all …]
Dcode_generator_mips64.cc207 __ LoadConst32(calling_convention.GetRegisterAt(0), type_index.index_); in EmitNativeCode() local
261 __ LoadConst32(calling_convention.GetRegisterAt(0), string_index.index_); in EmitNativeCode() local
416 __ LoadConst32(calling_convention.GetRegisterAt(0), in EmitNativeCode() local
853 __ LoadConst32(calling_convention.GetRegisterAt(2), offset_); in EmitNativeCode() local
1258 __ LoadConst32(gpr, value); in MoveLocation() local
1360 __ LoadConst32(gpr, value); in MoveLocation() local
1473 __ LoadConst32(location.AsRegister<GpuRegister>(), value); in MoveConstant() local
1900 __ LoadConst32(TMP, path_to_root); in GenerateBitstringTypeCheckCompare() local
3249 __ LoadConst32(rhs, value); in VisitCompare() local
3266 __ LoadConst32(res, 0); in VisitCompare() local
[all …]
Dintrinsics_mips64.cc435 __ LoadConst32(AT, 0x55555555); in GenBitCount() local
438 __ LoadConst32(AT, 0x33333333); in GenBitCount() local
445 __ LoadConst32(AT, 0x0F0F0F0F); in GenBitCount() local
447 __ LoadConst32(TMP, 0x01010101); in GenBitCount() local
1522 __ LoadConst32(tmp_reg, std::numeric_limits<uint16_t>::max()); in GenerateStringIndexOf() local
1833 __ LoadConst32(TMP, length_constant); in EnoughItems() local
1919 __ LoadConst32(count, length.GetConstant()->AsIntConstant()->GetValue()); in VisitSystemArrayCopyChar() local
1989 __ LoadConst32(AT, 0x80000000); in GenHighestOneBit() local
2304 __ LoadConst32(AT, info.length); in VisitIntegerValueOf() local
/art/compiler/utils/mips/
Dassembler_mips_test.cc2847 TEST_F(AssemblerMIPSTest, LoadConst32) { in TEST_F() argument
2849 __ LoadConst32(mips::V0, 0); in TEST_F() local
2850 __ LoadConst32(mips::V0, 65535); in TEST_F() local
2852 __ LoadConst32(mips::V0, -1); in TEST_F() local
2853 __ LoadConst32(mips::V0, -32768); in TEST_F() local
2855 __ LoadConst32(mips::V0, 65536); in TEST_F() local
2856 __ LoadConst32(mips::V0, 65537); in TEST_F() local
2857 __ LoadConst32(mips::V0, 2147483647); in TEST_F() local
2858 __ LoadConst32(mips::V0, -32769); in TEST_F() local
2859 __ LoadConst32(mips::V0, -65536); in TEST_F() local
[all …]
Dassembler_mips.cc2827 void MipsAssembler::LoadConst32(Register rd, int32_t value) { in LoadConst32() function in art::mips::MipsAssembler
/art/compiler/utils/mips64/
Dassembler_mips64_test.cc2500 TEST_F(AssemblerMIPS64Test, LoadConst32) { in TEST_F() argument
2502 __ LoadConst32(mips64::V0, 0); in TEST_F() local
2503 __ LoadConst32(mips64::V0, 65535); in TEST_F() local
2505 __ LoadConst32(mips64::V0, -1); in TEST_F() local
2506 __ LoadConst32(mips64::V0, -32768); in TEST_F() local
2508 __ LoadConst32(mips64::V0, 65536); in TEST_F() local
2509 __ LoadConst32(mips64::V0, 65537); in TEST_F() local
2510 __ LoadConst32(mips64::V0, 2147483647); in TEST_F() local
2511 __ LoadConst32(mips64::V0, -32769); in TEST_F() local
2512 __ LoadConst32(mips64::V0, -65536); in TEST_F() local
[all …]
Dassembler_mips64.cc2313 void Mips64Assembler::LoadConst32(GpuRegister rd, int32_t value) { in LoadConst32() function in art::mips64::Mips64Assembler