Searched defs:LoadConst32 (Results 1 – 4 of 4) sorted by relevance
/art/compiler/optimizing/ |
D | intrinsics_mips.cc | 285 __ 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 …]
|
D | intrinsics_mips64.cc | 420 __ LoadConst32(AT, 0x55555555); in GenBitCount() local 423 __ LoadConst32(AT, 0x33333333); in GenBitCount() local 430 __ LoadConst32(AT, 0x0F0F0F0F); in GenBitCount() local 432 __ LoadConst32(TMP, 0x01010101); in GenBitCount() local 1789 __ LoadConst32(tmp_reg, std::numeric_limits<uint16_t>::max()); in GenerateStringIndexOf() local 2100 __ LoadConst32(TMP, length_constant); in EnoughItems() local 2186 __ LoadConst32(count, length.GetConstant()->AsIntConstant()->GetValue()); in VisitSystemArrayCopyChar() local 2256 __ LoadConst32(AT, 0x80000000); in GenHighestOneBit() local 2577 __ LoadConst32(AT, count); in VisitIntegerValueOf() local
|
/art/compiler/utils/mips/ |
D | assembler_mips_test.cc | 2837 TEST_F(AssemblerMIPSTest, LoadConst32) { in TEST_F() argument 2839 __ LoadConst32(mips::V0, 0); in TEST_F() local 2840 __ LoadConst32(mips::V0, 65535); in TEST_F() local 2842 __ LoadConst32(mips::V0, -1); in TEST_F() local 2843 __ LoadConst32(mips::V0, -32768); in TEST_F() local 2845 __ LoadConst32(mips::V0, 65536); in TEST_F() local 2846 __ LoadConst32(mips::V0, 65537); in TEST_F() local 2847 __ LoadConst32(mips::V0, 2147483647); in TEST_F() local 2848 __ LoadConst32(mips::V0, -32769); in TEST_F() local 2849 __ LoadConst32(mips::V0, -65536); in TEST_F() local [all …]
|
/art/compiler/utils/mips64/ |
D | assembler_mips64.cc | 2293 void Mips64Assembler::LoadConst32(GpuRegister rd, int32_t value) { in LoadConst32() function in art::mips64::Mips64Assembler
|