/art/test/015-switch/src/ |
D | Main.java | 157 long temp = value; in packedSwitch7() local 158 temp = Long.rotateLeft(temp, value); in packedSwitch7() 159 temp = Long.rotateLeft(temp, value); in packedSwitch7() 160 temp = Long.rotateLeft(temp, value); in packedSwitch7() 161 temp = Long.rotateLeft(temp, value); in packedSwitch7() 162 temp = Long.rotateLeft(temp, value); in packedSwitch7() 163 temp = Long.rotateLeft(temp, value); in packedSwitch7() 164 temp = Long.rotateLeft(temp, value); in packedSwitch7() 165 temp = Long.rotateLeft(temp, value); in packedSwitch7() 166 temp = Long.rotateLeft(temp, value); in packedSwitch7() [all …]
|
/art/test/642-fp-callees/ |
D | fp_callees.cc | 46 double temp = array[0]; in Java_Main_holdFpTemporaries() local 47 CHECK_EQ(bit_cast<int64_t>(a), bit_cast<int64_t>(temp)); in Java_Main_holdFpTemporaries() 48 temp = array[1]; in Java_Main_holdFpTemporaries() 49 CHECK_EQ(bit_cast<int64_t>(b), bit_cast<int64_t>(temp)); in Java_Main_holdFpTemporaries() 50 temp = array[2]; in Java_Main_holdFpTemporaries() 51 CHECK_EQ(bit_cast<int64_t>(c), bit_cast<int64_t>(temp)); in Java_Main_holdFpTemporaries() 52 temp = array[3]; in Java_Main_holdFpTemporaries() 53 CHECK_EQ(bit_cast<int64_t>(d), bit_cast<int64_t>(temp)); in Java_Main_holdFpTemporaries() 54 temp = array[4]; in Java_Main_holdFpTemporaries() 55 CHECK_EQ(bit_cast<int64_t>(e), bit_cast<int64_t>(temp)); in Java_Main_holdFpTemporaries() [all …]
|
/art/test/684-checker-simd-dotprod/src/other/ |
D | TestCharShort.java | 54 int temp = a[i] * b[i]; in testDotProdSimple() local 55 s += temp; in testDotProdSimple() 95 int temp = ((short)(a[i] + 1)) * ((short)(b[i] + 1)); in testDotProdComplex() local 96 s += temp; in testDotProdComplex() 129 int temp = a[i] * b[i]; in testDotProdSimpleUnsigned() local 130 s += temp; in testDotProdSimpleUnsigned() 170 int temp = ((char)(a[i] + 1)) * ((char)(b[i] + 1)); in testDotProdComplexUnsigned() local 171 s += temp; in testDotProdComplexUnsigned() 211 int temp = ((short)(a[i] + 1)) * ((short)(b[i] + 1)); in testDotProdComplexUnsignedCastedToSigned() local 212 s += temp; in testDotProdComplexUnsignedCastedToSigned() [all …]
|
D | TestByte.java | 54 int temp = a[i] * b[i]; in testDotProdSimple() local 55 s += temp; in testDotProdSimple() 95 int temp = ((byte)(a[i] + 1)) * ((byte)(b[i] + 1)); in testDotProdComplex() local 96 s += temp; in testDotProdComplex() 129 int temp = (a[i] & 0xff) * (b[i] & 0xff); in testDotProdSimpleUnsigned() local 130 s += temp; in testDotProdSimpleUnsigned() 170 int temp = (((a[i] & 0xff) + 1) & 0xff) * (((b[i] & 0xff) + 1) & 0xff); in testDotProdComplexUnsigned() local 171 s += temp; in testDotProdComplexUnsigned() 211 int temp = ((byte)((a[i] & 0xff) + 1)) * ((byte)((b[i] & 0xff) + 1)); in testDotProdComplexUnsignedCastedToSigned() local 212 s += temp; in testDotProdComplexUnsignedCastedToSigned() [all …]
|
D | TestVarious.java | 53 int temp = b[i] * 89; in testDotProdConstRight() local 54 s += temp; in testDotProdConstRight() 88 int temp = 89 * (b[i] & 0xff); in testDotProdConstLeft() local 89 s += temp; in testDotProdConstLeft() 131 int temp = b[i] * ((byte)(param + 129)); in testDotProdLoopInvariantConvRight() local 132 s += temp; in testDotProdLoopInvariantConvRight() 142 int temp = ((char)((byte)(a[i] + 129))) * b[i]; in testDotProdByteToChar() local 143 s += temp; in testDotProdByteToChar() 153 int temp = a[i] * b[i]; in testDotProdMixedSize() local 154 s += temp; in testDotProdMixedSize() [all …]
|
/art/test/550-checker-multiply-accumulate/src/ |
D | Main.java | 178 int temp = left * right; in $opt$noinline$multipleUses1() local 179 return temp | (acc + temp); in $opt$noinline$multipleUses1() 236 long temp = left * right; in $opt$noinline$multipleUses2() local 237 return (acc + temp) + (acc - temp); in $opt$noinline$multipleUses2() 511 int temp = 12345 * array1[j]; in SimdMulMultipleUses() local 512 array2[j] -= temp; in SimdMulMultipleUses() 513 array1[j] = temp; in SimdMulMultipleUses() 526 long temp = 12345 * array1[j]; in SimdMulMultipleUsesLong() local 527 array2[j] -= temp; in SimdMulMultipleUsesLong() 528 array1[j] = temp; in SimdMulMultipleUsesLong()
|
/art/libartbase/base/ |
D | stride_iterator.h | 56 StrideIterator<T> temp = *this; variable 58 return temp; 67 StrideIterator<T> temp = *this; variable 69 return temp; 78 StrideIterator<T> temp = *this; variable 79 temp += delta; 80 return temp; 89 StrideIterator<T> temp = *this; variable 90 temp -= delta; 91 return temp;
|
D | hash_set.h | 70 HashSetIterator temp = *this; variable 72 return temp; 260 uint64_t temp; in HashSet() local 262 offset = ReadFromBytes(ptr, offset, &temp); in HashSet() 263 num_elements_ = static_cast<uint64_t>(temp); in HashSet() 264 offset = ReadFromBytes(ptr, offset, &temp); in HashSet() 265 num_buckets_ = static_cast<uint64_t>(temp); in HashSet() 267 offset = ReadFromBytes(ptr, offset, &temp); in HashSet() 268 elements_until_expand_ = static_cast<uint64_t>(temp); in HashSet() 533 T temp; in Verify() local [all …]
|
/art/runtime/arch/mips/ |
D | asm_support_mips.S | 73 .macro LDu feven,fodd,disp,base,temp argument 75 lw \temp, \disp+4(\base) 76 mthc1 \temp, \feven 81 .macro SDu feven,fodd,disp,base,temp argument 82 mfhc1 \temp, \feven 84 sw \temp, \disp+4(\base) 99 .macro LDu feven,fodd,disp,base,temp argument 104 .macro SDu feven,fodd,disp,base,temp argument
|
/art/compiler/optimizing/ |
D | code_generator_arm_vixl.cc | 1193 const vixl32::Register temp = temps.Acquire(); in GenerateLongDataProc() local 1195 __ Lsl(temp, second_hi, shift_value); in GenerateLongDataProc() 1196 __ Orr(temp, temp, Operand(second_lo, ShiftType::LSR, 32 - shift_value)); in GenerateLongDataProc() 1201 temp, in GenerateLongDataProc() 1226 const vixl32::Register temp = temps.Acquire(); in GenerateLongDataProc() local 1228 __ Lsr(temp, second_lo, shift_value); in GenerateLongDataProc() 1229 __ Orr(temp, temp, Operand(second_hi, ShiftType::LSL, 32 - shift_value)); in GenerateLongDataProc() 1233 temp, in GenerateLongDataProc() 1561 vixl32::Register temp; in GenerateEqualLong() local 1579 temp = temps.Acquire(); in GenerateEqualLong() [all …]
|
D | code_generator_arm64.cc | 1068 Register temp = temps.AcquireX(); in GenerateFrameEntry() local 1069 __ Ldrh(temp, MemOperand(kArtMethodRegister, ArtMethod::HotnessCountOffset().Int32Value())); in GenerateFrameEntry() 1070 __ Add(temp, temp, 1); in GenerateFrameEntry() 1071 __ Strh(temp, MemOperand(kArtMethodRegister, ArtMethod::HotnessCountOffset().Int32Value())); in GenerateFrameEntry() 1078 Register temp = temps.AcquireX(); in GenerateFrameEntry() local 1080 __ Sub(temp, sp, static_cast<int32_t>(GetStackOverflowReservedBytes(InstructionSet::kArm64))); in GenerateFrameEntry() 1086 __ ldr(wzr, MemOperand(temp, 0)); in GenerateFrameEntry() 1173 Register temp = temps.AcquireW(); // Index within the CardTable - 32bit. in MarkGCCard() local 1182 __ Lsr(temp, object, gc::accounting::CardTable::kCardShift); in MarkGCCard() 1196 __ Strb(card, MemOperand(card, temp.X())); in MarkGCCard() [all …]
|
D | intrinsics_arm_vixl.cc | 640 Location temp = locations->GetTemp(0); in GenUnsafeGet() local 642 __ Add(RegisterFrom(temp), base, Operand(offset)); in GenUnsafeGet() 643 MemOperand src(RegisterFrom(temp), 0); in GenUnsafeGet() 855 vixl32::Register temp = RegisterFrom(locations->GetTemp(0)); in GenUnsafePut() local 856 __ Mov(temp, value); in GenUnsafePut() 857 assembler->PoisonHeapReference(temp); in GenUnsafePut() 858 source = temp; in GenUnsafePut() 868 vixl32::Register temp = RegisterFrom(locations->GetTemp(0)); in GenUnsafePut() local 871 codegen->MarkGCCard(temp, card, base, value, value_can_be_null); in GenUnsafePut() 1501 vixl32::Register temp = RegisterFrom(locations->GetTemp(0)); in VisitStringEquals() local [all …]
|
D | intrinsics_arm64.cc | 469 Register temp = (type == DataType::Type::kInt64) ? temps.AcquireX() : temps.AcquireW(); in GenHighestOneBit() local 473 __ Clz(temp, src); in GenHighestOneBit() 475 __ Bic(dst, dst, Operand(temp, LSL, high_bit - clz_high_bit)); // Clear dst if src was 0. in GenHighestOneBit() 476 __ Lsr(dst, dst, temp); in GenHighestOneBit() 502 Register temp = (type == DataType::Type::kInt64) ? temps.AcquireX() : temps.AcquireW(); in GenLowestOneBit() local 504 __ Neg(temp, src); in GenLowestOneBit() 505 __ And(dst, temp, src); in GenLowestOneBit() 747 Register temp = WRegisterFrom(locations->GetTemp(0)); in GenUnsafeGet() local 750 __ Add(temp, base, offset.W()); // Offset should not exceed 32 bits. in GenUnsafeGet() 754 MemOperand(temp.X()), in GenUnsafeGet() [all …]
|
/art/test/530-checker-peel-unroll/src/ |
D | Main.java | 206 int temp = array[i + 1]; in unrollingSwapElements() local 208 array[i] = temp; in unrollingSwapElements() 471 int temp = a[i + 1]; in unrollingSimpleLiveOuts() local 472 s += temp; in unrollingSimpleLiveOuts() 473 t *= temp; in unrollingSimpleLiveOuts() 556 int temp = a[i + 1]; in unrollingLiveOutsNested() local 557 s += temp; in unrollingLiveOutsNested() 558 t *= temp; in unrollingLiveOutsNested()
|
/art/compiler/utils/arm/ |
D | assembler_arm_vixl.cc | 83 void ArmVIXLAssembler::GenerateMarkingRegisterCheck(vixl32::Register temp, int code) { in GenerateMarkingRegisterCheck() argument 91 ___ Ldr(temp, MemOperand(tr, Thread::IsGcMarkingOffset<kArmPointerSize>().Int32Value())); in GenerateMarkingRegisterCheck() 93 ___ Cmp(mr, temp); in GenerateMarkingRegisterCheck() 148 vixl32::Register temp, in AdjustLoadStoreOffset() argument 154 ___ Add(temp, base, add_to_base); in AdjustLoadStoreOffset() 157 ___ Mov(temp, offset); in AdjustLoadStoreOffset() 158 ___ Add(temp, temp, base); in AdjustLoadStoreOffset() 319 vixl32::Register temp = (dest.Is(base)) ? temps.Acquire() : dest; in LoadFromOffset() local 320 LoadImmediate(temp, offset); in LoadFromOffset() 323 ___ Add(dest, dest, (dest.Is(base)) ? temp : base); in LoadFromOffset()
|
/art/test/102-concurrent-gc/src/ |
D | Main.java | 57 byte[] temp = l[a].bytes; in main() 59 l[b].bytes = temp; in main()
|
/art/runtime/ |
D | class_table.cc | 193 std::string temp; in operator ()() local 194 return ComputeModifiedUtf8Hash(slot.Read()->GetDescriptor(&temp)); in operator ()() 200 std::string temp; in operator ()() local 201 DCHECK(!a.Read()->DescriptorEquals(b.Read()->GetDescriptor(&temp))); in operator ()() 204 std::string temp; in operator ()() local 205 return a.Read()->DescriptorEquals(b.Read()->GetDescriptor(&temp)); in operator ()() 297 std::string temp; in HashDescriptor() local 298 return ComputeModifiedUtf8Hash(klass->GetDescriptor(&temp)); in HashDescriptor()
|
D | art_field.cc | 68 std::string temp; in PrettyField() local 69 result += PrettyDescriptor(GetDeclaringClass()->GetDescriptor(&temp)); in PrettyField()
|
D | proxy_test.cc | 73 std::string temp; in TEST_F() local 74 const char* proxy_class_descriptor = proxy_class->GetDescriptor(&temp); in TEST_F() 125 std::string temp; in TEST_F() local 126 EXPECT_STREQ("L$Proxy1234;", field->GetDeclaringClass()->GetDescriptor(&temp)); in TEST_F() 134 EXPECT_STREQ("L$Proxy1234;", field->GetDeclaringClass()->GetDescriptor(&temp)); in TEST_F()
|
/art/libdexfile/dex/ |
D | dex_instruction_iterator.h | 138 DexInstructionIterator temp = *this; variable 140 return temp; 190 SafeDexInstructionIterator temp = *this; variable 192 return temp;
|
D | class_iterator.h | 60 ClassIterator temp = *this; variable 62 return temp;
|
/art/test/458-checker-instruct-simplification/src/ |
D | Main.java | 818 long temp = -arg2; in $noinline$AddNeg2() local 819 return (arg1 + temp) | (arg1 + temp); in $noinline$AddNeg2() 874 int temp = -arg; in $noinline$NegNeg2() local 875 return temp + -temp; in $noinline$NegNeg2() 959 int temp = arg1 - arg2; in $noinline$NegSub2() local 960 return -temp | -temp; in $noinline$NegSub2() 1021 int temp = -arg1; in $noinline$SubNeg2() local 1022 return (temp - arg2) | (temp - arg2); in $noinline$SubNeg2() 1057 long temp = -arg1; in $noinline$SubNeg3() local 1059 res += temp - arg2 - i; in $noinline$SubNeg3() [all …]
|
/art/test/153-reference-stress/src/ |
D | Main.java | 45 Object temp = new Object(); in GcThread() local 47 weakReferences[j] = new WeakReference(temp); in GcThread()
|
/art/test/803-no-super/ |
D | info.txt | 1 Regression test that temp (erroneous) classes don't get conflict tables created.
|
/art/test/440-stmp/ |
D | info.txt | 2 a S/D register a temp, while it conflicted with the
|