Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dcode_generator_mips.cc229 __ LoadConst32(calling_convention.GetRegisterAt(0), type_index.index_); in EmitNativeCode() local
299 __ LoadConst32(calling_convention.GetRegisterAt(0), string_index.index_); in EmitNativeCode() local
457 __ LoadConst32(calling_convention.GetRegisterAt(0), in EmitNativeCode() local
907 __ LoadConst32(calling_convention.GetRegisterAt(2), offset_); in EmitNativeCode() local
1485 __ LoadConst32(dst, value); in MoveConstant() local
1531 __ LoadConst32(dst, value); in MoveConstant() local
1882 __ LoadConst32(AT, mirror::Class::kStatusInitialized); in GenerateClassInitializationCheck() local
2064 __ LoadConst32(TMP, low); in HandleBinaryOp() local
2073 __ LoadConst32(TMP, high); in HandleBinaryOp() local
2085 __ LoadConst32(TMP, low); in HandleBinaryOp() local
[all …]
Dintrinsics_mips.cc285 __ LoadConst32(AT, 0x00FF00FF); in GenReverse() local
296 __ LoadConst32(AT, 0x0F0F0F0F); in GenReverse() local
302 __ LoadConst32(AT, 0x33333333); in GenReverse() local
308 __ LoadConst32(AT, 0x55555555); in GenReverse() local
344 __ LoadConst32(AT, 0x00FF00FF); in GenReverse() local
362 __ LoadConst32(AT, 0x0F0F0F0F); in GenReverse() local
373 __ LoadConst32(AT, 0x33333333); in GenReverse() local
384 __ LoadConst32(AT, 0x55555555); in GenReverse() local
542 __ LoadConst32(TMP, 32); in GenNumberOfTrailingZeroes() local
549 __ LoadConst32(TMP, 32); in GenNumberOfTrailingZeroes() local
[all …]
Dcode_generator_mips64.cc180 __ LoadConst32(calling_convention.GetRegisterAt(0), type_index.index_); in EmitNativeCode() local
245 __ LoadConst32(calling_convention.GetRegisterAt(0), string_index.index_); in EmitNativeCode() local
403 __ LoadConst32(calling_convention.GetRegisterAt(0), in EmitNativeCode() local
840 __ LoadConst32(calling_convention.GetRegisterAt(2), offset_); in EmitNativeCode() local
1226 __ LoadConst32(gpr, value); in MoveLocation() local
1305 __ LoadConst32(gpr, value); in MoveLocation() local
1399 __ LoadConst32(location.AsRegister<GpuRegister>(), value); in MoveConstant() local
1692 __ LoadConst32(AT, mirror::Class::kStatusInitialized); in GenerateClassInitializationCheck() local
2867 __ LoadConst32(rhs, value); in VisitCompare() local
2884 __ LoadConst32(res, 0); in VisitCompare() local
[all …]
Dintrinsics_mips64.cc421 __ LoadConst32(AT, 0x55555555); in GenBitCount() local
424 __ LoadConst32(AT, 0x33333333); in GenBitCount() local
431 __ LoadConst32(AT, 0x0F0F0F0F); in GenBitCount() local
433 __ LoadConst32(TMP, 0x01010101); in GenBitCount() local
955 __ LoadConst32(AT, std::numeric_limits<int32_t>::max()); in GenRound() local
1832 __ LoadConst32(tmp_reg, std::numeric_limits<uint16_t>::max()); in GenerateStringIndexOf() local
2148 __ LoadConst32(TMP, length_constant); in EnoughItems() local
2233 __ LoadConst32(count, length.GetConstant()->AsIntConstant()->GetValue()); in VisitSystemArrayCopyChar() local
2303 __ LoadConst32(AT, 0x80000000); in GenHighestOneBit() local
/art/compiler/utils/mips/
Dassembler_mips_test.cc2364 TEST_F(AssemblerMIPSTest, LoadConst32) { in TEST_F() argument
2366 __ LoadConst32(mips::V0, 0); in TEST_F() local
2367 __ LoadConst32(mips::V0, 65535); in TEST_F() local
2369 __ LoadConst32(mips::V0, -1); in TEST_F() local
2370 __ LoadConst32(mips::V0, -32768); in TEST_F() local
2372 __ LoadConst32(mips::V0, 65536); in TEST_F() local
2373 __ LoadConst32(mips::V0, 65537); in TEST_F() local
2374 __ LoadConst32(mips::V0, 2147483647); in TEST_F() local
2375 __ LoadConst32(mips::V0, -32769); in TEST_F() local
2376 __ LoadConst32(mips::V0, -65536); in TEST_F() local
[all …]
Dassembler_mips.cc1712 void MipsAssembler::LoadConst32(Register rd, int32_t value) { in LoadConst32() function in art::mips::MipsAssembler
/art/compiler/utils/mips64/
Dassembler_mips64_test.cc2321 TEST_F(AssemblerMIPS64Test, LoadConst32) { in TEST_F() argument
2323 __ LoadConst32(mips64::V0, 0); in TEST_F() local
2324 __ LoadConst32(mips64::V0, 65535); in TEST_F() local
2326 __ LoadConst32(mips64::V0, -1); in TEST_F() local
2327 __ LoadConst32(mips64::V0, -32768); in TEST_F() local
2329 __ LoadConst32(mips64::V0, 65536); in TEST_F() local
2330 __ LoadConst32(mips64::V0, 65537); in TEST_F() local
2331 __ LoadConst32(mips64::V0, 2147483647); in TEST_F() local
2332 __ LoadConst32(mips64::V0, -32769); in TEST_F() local
2333 __ LoadConst32(mips64::V0, -65536); in TEST_F() local
[all …]
Dassembler_mips64.cc1678 void Mips64Assembler::LoadConst32(GpuRegister rd, int32_t value) { in LoadConst32() function in art::mips64::Mips64Assembler