Home
last modified time | relevance | path

Searched refs:temp (Results 1 – 25 of 93) sorted by relevance

1234

/art/test/015-checker-switch/src/
DMain.java163 long temp = value; in $noinline$packedSwitch7() local
164 temp = Long.rotateLeft(temp, value); in $noinline$packedSwitch7()
165 temp = Long.rotateLeft(temp, value); in $noinline$packedSwitch7()
166 temp = Long.rotateLeft(temp, value); in $noinline$packedSwitch7()
167 temp = Long.rotateLeft(temp, value); in $noinline$packedSwitch7()
168 temp = Long.rotateLeft(temp, value); in $noinline$packedSwitch7()
169 temp = Long.rotateLeft(temp, value); in $noinline$packedSwitch7()
170 temp = Long.rotateLeft(temp, value); in $noinline$packedSwitch7()
171 temp = Long.rotateLeft(temp, value); in $noinline$packedSwitch7()
172 temp = Long.rotateLeft(temp, value); in $noinline$packedSwitch7()
[all …]
/art/test/642-fp-callees/
Dfp_callees.cc46 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/
DTestCharShort.java63 int temp = a[i] * b[i]; in testDotProdSimple() local
64 s += temp; in testDotProdSimple()
113 int temp = ((short)(a[i] + 1)) * ((short)(b[i] + 1)); in testDotProdComplex() local
114 s += temp; in testDotProdComplex()
156 int temp = a[i] * b[i]; in testDotProdSimpleUnsigned() local
157 s += temp; in testDotProdSimpleUnsigned()
206 int temp = ((char)(a[i] + 1)) * ((char)(b[i] + 1)); in testDotProdComplexUnsigned() local
207 s += temp; in testDotProdComplexUnsigned()
256 int temp = ((short)(a[i] + 1)) * ((short)(b[i] + 1)); in testDotProdComplexUnsignedCastToSigned() local
257 s += temp; in testDotProdComplexUnsignedCastToSigned()
[all …]
DTestByte.java84 int temp = a[i] * b[i]; in testDotProdSimple() local
85 s += temp; in testDotProdSimple()
146 int temp = ((byte)(a[i] + 1)) * ((byte)(b[i] + 1)); in testDotProdComplex() local
147 s += temp; in testDotProdComplex()
209 int temp = (a[i] & 0xff) * (b[i] & 0xff); in testDotProdSimpleUnsigned() local
210 s += temp; in testDotProdSimpleUnsigned()
271 int temp = (((a[i] & 0xff) + 1) & 0xff) * (((b[i] & 0xff) + 1) & 0xff); in testDotProdComplexUnsigned() local
272 s += temp; in testDotProdComplexUnsigned()
333 int temp = ((byte)((a[i] & 0xff) + 1)) * ((byte)((b[i] & 0xff) + 1)); in testDotProdComplexUnsignedCastToSigned() local
334 s += temp; in testDotProdComplexUnsignedCastToSigned()
[all …]
DTestVarious.java71 int temp = b[i] * 89; in testDotProdConstRight() local
72 s += temp; in testDotProdConstRight()
124 int temp = 89 * (b[i] & 0xff); in testDotProdConstLeft() local
125 s += temp; in testDotProdConstLeft()
186 int temp = b[i] * ((byte)(param + 129)); in testDotProdLoopInvariantConvRight() local
187 s += temp; in testDotProdLoopInvariantConvRight()
197 int temp = ((char)((byte)(a[i] + 129))) * b[i]; in testDotProdByteToChar() local
198 s += temp; in testDotProdByteToChar()
208 int temp = a[i] * b[i]; in testDotProdMixedSize() local
209 s += temp; in testDotProdMixedSize()
[all …]
/art/test/550-checker-multiply-accumulate/src/
DMain.java172 int temp = left * right; in $opt$noinline$multipleUses1() local
173 return temp | (acc + temp); in $opt$noinline$multipleUses1()
229 long temp = left * right; in $opt$noinline$multipleUses2() local
230 return (acc + temp) + (acc - temp); in $opt$noinline$multipleUses2()
476 int temp = 12345 * array1[j]; in SimdMulMultipleUses() local
477 array2[j] -= temp; in SimdMulMultipleUses()
478 array1[j] = temp; in SimdMulMultipleUses()
484 long temp = 12345 * array1[j]; in SimdMulMultipleUsesLong() local
485 array2[j] -= temp; in SimdMulMultipleUsesLong()
486 array1[j] = temp; in SimdMulMultipleUsesLong()
/art/libartbase/base/
Dstride_iterator.h59 StrideIterator<T> temp = *this; variable
61 return temp;
70 StrideIterator<T> temp = *this; variable
72 return temp;
81 StrideIterator<T> temp = *this; variable
82 temp += delta;
83 return temp;
92 StrideIterator<T> temp = *this; variable
93 temp -= delta;
94 return temp;
/art/runtime/base/
Dgc_visited_arena_pool.cc356 TrackedArena* temp = down_cast<TrackedArena*>(first); in FreeArenaChain() local
357 DCHECK(!temp->IsSingleObjectArena()); in FreeArenaChain()
359 free_ranges.emplace_back(temp->Begin(), temp->Size(), temp->IsPreZygoteForkArena()); in FreeArenaChain()
364 bytes_allocated_ += temp->GetBytesAllocated(); in FreeArenaChain()
365 auto iter = allocated_arenas_.find(temp); in FreeArenaChain()
369 temp->SetupForDeferredDeletion(unused_arenas_); in FreeArenaChain()
370 unused_arenas_ = temp; in FreeArenaChain()
372 delete temp; in FreeArenaChain()
419 TrackedArena* temp = down_cast<TrackedArena*>(arena->Next()); in DeleteUnusedArenas() local
421 arena = temp; in DeleteUnusedArenas()
/art/compiler/optimizing/
Dcode_generator_arm_vixl.cc1253 const vixl32::Register temp = temps.Acquire(); in GenerateLongDataProc() local
1255 __ Lsl(temp, second_hi, shift_value); in GenerateLongDataProc()
1256 __ Orr(temp, temp, Operand(second_lo, ShiftType::LSR, 32 - shift_value)); in GenerateLongDataProc()
1261 temp, in GenerateLongDataProc()
1286 const vixl32::Register temp = temps.Acquire(); in GenerateLongDataProc() local
1288 __ Lsr(temp, second_lo, shift_value); in GenerateLongDataProc()
1289 __ Orr(temp, temp, Operand(second_hi, ShiftType::LSL, 32 - shift_value)); in GenerateLongDataProc()
1293 temp, in GenerateLongDataProc()
1621 vixl32::Register temp; in GenerateEqualLong() local
1639 temp = temps.Acquire(); in GenerateEqualLong()
[all …]
Dcode_generator_arm64.cc1388 Register temp = temps.AcquireX(); in GenerateFrameEntry() local
1390 __ Sub(temp, sp, static_cast<int32_t>(GetStackOverflowReservedBytes(InstructionSet::kArm64))); in GenerateFrameEntry()
1396 __ ldr(wzr, MemOperand(temp, 0)); in GenerateFrameEntry()
1530 Register temp = temps.AcquireW(); // Index within the CardTable - 32bit. in MarkGCCard() local
1534 __ Lsr(temp, object, gc::accounting::CardTable::kCardShift); in MarkGCCard()
1548 __ Strb(card, MemOperand(card, temp.X())); in MarkGCCard()
1554 Register temp = temps.AcquireW(); // Index within the CardTable - 32bit. in CheckGCCardIsValid() local
1559 __ Lsr(temp, object, gc::accounting::CardTable::kCardShift); in CheckGCCardIsValid()
1561 __ Ldrb(temp, MemOperand(card, temp.X())); in CheckGCCardIsValid()
1563 __ Cbnz(temp, &done); in CheckGCCardIsValid()
[all …]
Dintrinsics_arm_vixl.cc886 vixl32::Register temp = RegisterFrom(locations->GetTemp(0)); in VisitStringEquals() local
922 __ Ldr(temp, MemOperand(str, class_offset)); in VisitStringEquals()
927 __ Cmp(temp, out); in VisitStringEquals()
949 __ Ldr(temp, MemOperand(arg, count_offset)); in VisitStringEquals()
950 __ Cmp(temp, Operand(mirror::String::GetFlaggedCount(const_string_length, is_compressed))); in VisitStringEquals()
954 __ Ldr(temp, MemOperand(str, count_offset)); in VisitStringEquals()
958 __ Cmp(temp, out); in VisitStringEquals()
979 __ Ldrd(temp, temp1, MemOperand(str, offset)); in VisitStringEquals()
981 __ Cmp(temp, temp2); in VisitStringEquals()
989 __ Ldr(temp, MemOperand(str, offset)); in VisitStringEquals()
[all …]
Dintrinsics_x86.cc176 XmmRegister temp = locations->GetTemp(0).AsFpuRegister<XmmRegister>(); in MoveFPToInt() local
177 __ movsd(temp, input.AsFpuRegister<XmmRegister>()); in MoveFPToInt()
178 __ movd(output.AsRegisterPairLow<Register>(), temp); in MoveFPToInt()
179 __ psrlq(temp, Immediate(32)); in MoveFPToInt()
180 __ movd(output.AsRegisterPairHigh<Register>(), temp); in MoveFPToInt()
824 Register temp, in CheckSystemArrayCopyPosition() argument
841 __ movl(temp, Address(array, length_offset)); in CheckSystemArrayCopyPosition()
842 __ subl(temp, Immediate(pos_const)); in CheckSystemArrayCopyPosition()
845 EmitCmplJLess(assembler, temp, length, slow_path->GetEntryLabel()); in CheckSystemArrayCopyPosition()
863 __ movl(temp, Address(array, length_offset)); in CheckSystemArrayCopyPosition()
[all …]
Dintrinsics_riscv64.cc401 auto maybe_extend_mask = [type, assembler](XRegister mask, XRegister temp) { in GenerateReverse() argument
403 __ Slli(temp, mask, 32); in GenerateReverse()
404 __ Add(mask, mask, temp); in GenerateReverse()
694 XRegister temp = srs.AllocateXRegister(); in BOXED_TYPES() local
713 __ Li(temp, value); in BOXED_TYPES()
715 Location::RegisterLocation(temp), out, info.value_offset, type); in BOXED_TYPES()
725 __ Li(temp, info.length); in BOXED_TYPES()
726 __ Bgeu(out, temp, &allocate); in BOXED_TYPES()
728 codegen_->LoadBootImageAddress(temp, info.array_data_boot_image_reference); in BOXED_TYPES()
729 __ Sh2Add(temp, out, temp); in BOXED_TYPES()
[all …]
Dintrinsics_arm64.cc440 Register temp = (type == DataType::Type::kInt64) ? temps.AcquireX() : temps.AcquireW(); in GenHighestOneBit() local
444 __ Clz(temp, src); in GenHighestOneBit()
446 __ Bic(dst, dst, Operand(temp, LSL, high_bit - clz_high_bit)); // Clear dst if src was 0. in GenHighestOneBit()
447 __ Lsr(dst, dst, temp); in GenHighestOneBit()
473 Register temp = (type == DataType::Type::kInt64) ? temps.AcquireX() : temps.AcquireW(); in GenLowestOneBit() local
475 __ Neg(temp, src); in GenLowestOneBit()
476 __ And(dst, temp, src); in GenLowestOneBit()
719 Register temp = WRegisterFrom(locations->GetTemp(0)); in GenUnsafeGet() local
722 __ Add(temp, base, offset.W()); // Offset should not exceed 32 bits. in GenUnsafeGet()
726 MemOperand(temp.X()), in GenUnsafeGet()
[all …]
Dintrinsics_x86_64.cc693 CpuRegister temp, in CheckSystemArrayCopyPosition() argument
710 __ movl(temp, Address(array, length_offset)); in CheckSystemArrayCopyPosition()
711 __ subl(temp, Immediate(pos_const)); in CheckSystemArrayCopyPosition()
714 EmitCmplJLess(assembler, temp, length, slow_path->GetEntryLabel()); in CheckSystemArrayCopyPosition()
732 __ movl(temp, Address(array, length_offset)); in CheckSystemArrayCopyPosition()
733 __ subl(temp, pos_reg); in CheckSystemArrayCopyPosition()
736 EmitCmplJLess(assembler, temp, length, slow_path->GetEntryLabel()); in CheckSystemArrayCopyPosition()
988 auto check_non_primitive_array_class = [&](CpuRegister klass, CpuRegister temp) { in VisitSystemArrayCopy() argument
992 __ movl(temp, Address(klass, component_offset)); in VisitSystemArrayCopy()
993 __ MaybeUnpoisonHeapReference(temp); in VisitSystemArrayCopy()
[all …]
/art/compiler/utils/arm64/
Dassembler_arm64.h108 vixl::aarch64::Register temp = temps.AcquireX(); in SaveRestoreZRegisterList() local
109 vixl_masm_.Add(temp, vixl::aarch64::sp, stack_offset); in SaveRestoreZRegisterList()
114 vixl::aarch64::SVEMemOperand(temp, slot_no, vixl::aarch64::SVE_MUL_VL)); in SaveRestoreZRegisterList()
117 vixl::aarch64::SVEMemOperand(temp, slot_no, vixl::aarch64::SVE_MUL_VL)); in SaveRestoreZRegisterList()
146 void GenerateMarkingRegisterCheck(vixl::aarch64::Register temp, int code = 0);
/art/test/530-checker-peel-unroll/src/
DMain.java251 int temp = array[i + 1]; in unrollingSwapElements() local
253 array[i] = temp; in unrollingSwapElements()
625 int temp = a[i + 1]; in unrollingSimpleLiveOuts() local
626 s += temp; in unrollingSimpleLiveOuts()
627 t *= temp; in unrollingSimpleLiveOuts()
725 int temp = a[i + 1]; in unrollingLiveOutsNested() local
726 s += temp; in unrollingLiveOutsNested()
727 t *= temp; in unrollingLiveOutsNested()
/art/compiler/utils/arm/
Dassembler_arm_vixl.cc83 void ArmVIXLAssembler::GenerateMarkingRegisterCheck(vixl32::Register temp, int code) { in GenerateMarkingRegisterCheck() argument
89 ___ Ldr(temp, MemOperand(tr, Thread::IsGcMarkingOffset<kArmPointerSize>().Int32Value())); in GenerateMarkingRegisterCheck()
91 ___ Cmp(mr, temp); in GenerateMarkingRegisterCheck()
146 vixl32::Register temp, in AdjustLoadStoreOffset() argument
152 ___ Add(temp, base, add_to_base); in AdjustLoadStoreOffset()
155 ___ Mov(temp, offset); in AdjustLoadStoreOffset()
156 ___ Add(temp, temp, base); in AdjustLoadStoreOffset()
305 vixl32::Register temp = (dest.Is(base)) ? temps.Acquire() : dest; in LoadFromOffset() local
306 LoadImmediate(temp, offset); in LoadFromOffset()
309 ___ Add(dest, dest, (dest.Is(base)) ? temp : base); in LoadFromOffset()
/art/test/102-concurrent-gc/src/
DMain.java57 byte[] temp = l[a].bytes; in main()
59 l[b].bytes = temp; in main()
/art/libdexfile/dex/
Ddescriptors_names.cc82 std::string temp(c); in AppendPrettyDescriptor() local
84 std::replace(temp.begin(), temp.end(), '/', '.'); in AppendPrettyDescriptor()
86 if (temp.back() == ';') { in AppendPrettyDescriptor()
87 temp.pop_back(); in AppendPrettyDescriptor()
90 result->append(temp); in AppendPrettyDescriptor()
Ddex_instruction_iterator.h140 DexInstructionIterator temp = *this; variable
142 return temp;
192 SafeDexInstructionIterator temp = *this; variable
194 return temp;
Dclass_iterator.h63 ClassIterator temp = *this; variable
65 return temp;
/art/runtime/
Dart_field.cc64 std::string temp; in PrettyField() local
65 result += PrettyDescriptor(GetDeclaringClass()->GetDescriptor(&temp)); in PrettyField()
Dproxy_test.cc66 std::string temp; in TEST_F() local
67 const char* proxy_class_descriptor = proxy_class->GetDescriptor(&temp); in TEST_F()
119 std::string temp; in TEST_F() local
120 EXPECT_STREQ("L$Proxy1234;", field->GetDeclaringClass()->GetDescriptor(&temp)); in TEST_F()
129 EXPECT_STREQ("L$Proxy1234;", field->GetDeclaringClass()->GetDescriptor(&temp)); in TEST_F()
/art/test/153-reference-stress/src/
DMain.java45 Object temp = new Object(); in GcThread() local
47 weakReferences[j] = new WeakReference(temp); in GcThread()

1234