/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() 487 int temp = 12345 * array1[j]; in SimdMulMultipleUses() local 488 array2[j] -= temp; in SimdMulMultipleUses() 489 array1[j] = temp; in SimdMulMultipleUses() 495 long temp = 12345 * array1[j]; in SimdMulMultipleUsesLong() local 496 array2[j] -= temp; in SimdMulMultipleUsesLong() 497 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 | 76 HashSetIterator temp = *this; variable 78 return temp; 266 uint64_t temp; in HashSet() local 268 offset = ReadFromBytes(ptr, offset, &temp); in HashSet() 269 num_elements_ = static_cast<uint64_t>(temp); in HashSet() 270 offset = ReadFromBytes(ptr, offset, &temp); in HashSet() 271 num_buckets_ = static_cast<uint64_t>(temp); in HashSet() 273 offset = ReadFromBytes(ptr, offset, &temp); in HashSet() 274 elements_until_expand_ = static_cast<uint64_t>(temp); in HashSet() 546 T temp; in Verify() local [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/test/102-concurrent-gc/src/ |
D | Main.java | 57 byte[] temp = l[a].bytes; in main() 59 l[b].bytes = temp; in main()
|
/art/compiler/optimizing/ |
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 | register_allocation_resolver.cc | 202 for (LiveInterval* temp : temp_intervals) { in Resolve() 203 if (temp->IsHighInterval()) { in Resolve() 207 HInstruction* at = liveness_.GetTempUser(temp); in Resolve() 208 size_t temp_index = liveness_.GetTempIndex(temp); in Resolve() 210 switch (temp->GetType()) { in Resolve() 212 locations->SetTempAt(temp_index, Location::RegisterLocation(temp->GetRegister())); in Resolve() 218 temp->GetRegister(), temp->GetHighInterval()->GetRegister()); in Resolve() 221 locations->SetTempAt(temp_index, Location::FpuRegisterLocation(temp->GetRegister())); in Resolve() 227 << temp->GetType(); in Resolve()
|
D | register_allocator_linear_scan.cc | 232 Location temp = locations->GetTemp(i); in ProcessInstruction() local 233 if (temp.IsRegister() || temp.IsFpuRegister()) { in ProcessInstruction() 234 BlockRegister(temp, position, position + 1); in ProcessInstruction() 236 codegen_->AddAllocatedRegister(temp); in ProcessInstruction() 238 DCHECK(temp.IsUnallocated()); in ProcessInstruction() 239 switch (temp.GetPolicy()) { in ProcessInstruction() 266 << temp.GetPolicy(); in ProcessInstruction() 449 for (LiveInterval* temp : temp_intervals_) { in ValidateInternal() 450 if (ShouldProcess(processing_core_registers_, temp)) { in ValidateInternal() 451 intervals.push_back(temp); in ValidateInternal()
|
/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/runtime/ |
D | art_field.cc | 63 std::string temp; in PrettyField() local 64 result += PrettyDescriptor(GetDeclaringClass()->GetDescriptor(&temp)); in PrettyField()
|
D | class_table.cc | 187 std::string temp; in operator ()() local 190 return ComputeModifiedUtf8Hash(slot.Read<kWithoutReadBarrier>()->GetDescriptor(&temp)); in operator ()() 198 std::string temp; in operator ()() local 200 b.Read<kWithoutReadBarrier>()->GetDescriptor(&temp))); in operator ()() 203 std::string temp; in operator ()() local 205 b.Read<kWithoutReadBarrier>()->GetDescriptor(&temp)); in operator ()() 299 std::string temp; in HashDescriptor() local 300 return ComputeModifiedUtf8Hash(klass->GetDescriptor(&temp)); in HashDescriptor()
|
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/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/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/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
|
/art/compiler/utils/arm64/ |
D | jni_macro_assembler_arm64.cc | 96 Register temp = temps.AcquireX(); in AddConstant() local 97 ___ Add(temp, reg_x(rn), value); in AddConstant() 98 ___ Csel(reg_x(rd), temp, reg_x(rd), cond); in AddConstant() 186 Register temp = temps.AcquireX(); in StoreStackPointerToThread() local 187 ___ Mov(temp, reg_x(SP)); in StoreStackPointerToThread() 188 ___ Str(temp, MEM_OP(reg_x(TR), tr_offs.Int32Value())); in StoreStackPointerToThread() 212 Register temp = temps.AcquireX(); in LoadImmediate() local 213 ___ Mov(temp, value); in LoadImmediate() 214 ___ Csel(reg_x(dest), temp, reg_x(dest), cond); in LoadImmediate() 684 Register temp = temps.AcquireX(); in EmitExceptionPoll() local [all …]
|
D | assembler_arm64.cc | 185 void Arm64Assembler::GenerateMarkingRegisterCheck(Register temp, int code) { in GenerateMarkingRegisterCheck() argument 195 ___ Ldr(temp, MemOperand(tr, Thread::IsGcMarkingOffset<kArm64PointerSize>().Int32Value())); in GenerateMarkingRegisterCheck() 197 ___ Cmp(mr.W(), temp); in GenerateMarkingRegisterCheck()
|