/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/base/ |
D | hash_set.h | 80 Iterator temp = *this; variable 82 return temp; 297 T temp; in Verify() local 298 emptyfn_.MakeEmpty(temp); in Verify() 299 std::swap(temp, element); in Verify() 300 size_t first_slot = FirstAvailableSlot(IndexForHash(hashfn_(temp))); in Verify() 305 std::swap(temp, element); in Verify()
|
D | stl_util.h | 46 ForwardIterator temp = begin; in STLDeleteContainerPointers() local 48 delete *temp; in STLDeleteContainerPointers() local
|
/art/runtime/ |
D | class_linker_test.cc | 71 std::string temp; in AssertPrimitiveClass() local 72 ASSERT_STREQ(descriptor.c_str(), primitive->GetDescriptor(&temp)); in AssertPrimitiveClass() 110 std::string temp; in AssertArrayClass() local 111 EXPECT_STREQ(component_type.c_str(), array->GetComponentType()->GetDescriptor(&temp)); in AssertArrayClass() 123 std::string temp; in AssertArrayClass() local 124 ASSERT_STREQ(array_descriptor.c_str(), array->GetDescriptor(&temp)); in AssertArrayClass() 130 ASSERT_GT(strlen(array->GetComponentType()->GetDescriptor(&temp)), 0U); in AssertArrayClass() 154 EXPECT_STREQ(direct_interface0->GetDescriptor(&temp), "Ljava/lang/Cloneable;"); in AssertArrayClass() 156 EXPECT_STREQ(direct_interface1->GetDescriptor(&temp), "Ljava/io/Serializable;"); in AssertArrayClass() 188 std::string temp; in AssertClass() local [all …]
|
D | common_throws.cc | 299 std::string temp; in ThrowNoSuchFieldError() local 301 << " in class " << c->GetDescriptor(&temp) << " or its superclasses"; in ThrowNoSuchFieldError() 310 std::string temp; in ThrowNoSuchMethodError() local 312 << " in class " << c->GetDescriptor(&temp) << " or its super classes"; in ThrowNoSuchMethodError()
|
D | proxy_test.cc | 136 std::string temp; in TEST_F() local 137 const char* proxy_class_descriptor = proxy_class->GetDescriptor(&temp); in TEST_F()
|
D | class_linker-inl.h | 46 std::string temp; in FindArrayClass() local 47 descriptor += (*element_class)->GetDescriptor(&temp); in FindArrayClass()
|
D | reflection.cc | 260 std::string temp; \ in BuildArgArrayFromObjectArray() 262 arg->GetClass<>()->GetDescriptor(&temp)); \ in BuildArgArrayFromObjectArray() 767 std::string temp; in UnboxPrimitive() local 771 PrettyDescriptor(o->GetClass()->GetDescriptor(&temp)).c_str()).c_str()); in UnboxPrimitive()
|
D | utils.cc | 239 std::string temp; in PrettyDescriptor() local 240 return PrettyDescriptor(klass->GetDescriptor(&temp)); in PrettyDescriptor() 418 std::string temp; in PrettyTypeOf() local 419 std::string result(PrettyDescriptor(obj->GetClass()->GetDescriptor(&temp))); in PrettyTypeOf() 421 result += "<" + PrettyDescriptor(obj->AsClass()->GetDescriptor(&temp)) + ">"; in PrettyTypeOf()
|
/art/compiler/utils/arm64/ |
D | assembler_arm64.cc | 86 vixl::Register temp = temps.AcquireX(); in AddConstant() local 87 ___ Add(temp, reg_x(rn), value); in AddConstant() 88 ___ Csel(reg_x(rd), temp, reg_x(rd), COND_OP(cond)); in AddConstant() 181 vixl::Register temp = temps.AcquireX(); in StoreStackPointerToThread64() local 182 ___ Mov(temp, reg_x(SP)); in StoreStackPointerToThread64() 183 ___ Str(temp, MEM_OP(reg_x(ETR), tr_offs.Int32Value())); in StoreStackPointerToThread64() 206 vixl::Register temp = temps.AcquireX(); in LoadImmediate() local 207 ___ Mov(temp, value); in LoadImmediate() 208 ___ Csel(reg_x(dest), temp, reg_x(dest), COND_OP(cond)); in LoadImmediate() 615 vixl::Register temp = temps.AcquireX(); in EmitExceptionPoll() local [all …]
|
/art/compiler/optimizing/ |
D | code_generator_arm.cc | 582 Register temp = IP; in VisitIf() local 583 __ LoadImmediate(temp, value); in VisitIf() 584 __ cmp(locations->InAt(0).AsArm().AsCoreRegister(), ShifterOperand(temp)); in VisitIf() 621 Register temp = IP; in VisitCondition() local 622 __ LoadImmediate(temp, value); in VisitCondition() 623 __ cmp(locations->InAt(0).AsArm().AsCoreRegister(), ShifterOperand(temp)); in VisitCondition() 838 Register temp = invoke->GetLocations()->GetTemp(0).AsArm().AsCoreRegister(); in VisitInvokeStatic() local 851 LoadCurrentMethod(temp); in VisitInvokeStatic() 853 __ ldr(temp, Address(temp, mirror::ArtMethod::DexCacheResolvedMethodsOffset().Int32Value())); in VisitInvokeStatic() 855 __ ldr(temp, Address(temp, index_in_cache)); in VisitInvokeStatic() [all …]
|
D | code_generator_x86_64.cc | 722 CpuRegister temp = invoke->GetLocations()->GetTemp(0).AsX86_64().AsCpuRegister(); in VisitInvokeStatic() local 735 LoadCurrentMethod(temp); in VisitInvokeStatic() 737 __ movl(temp, Address(temp, mirror::ArtMethod::DexCacheResolvedMethodsOffset().SizeValue())); in VisitInvokeStatic() 739 __ movl(temp, Address(temp, index_in_cache)); in VisitInvokeStatic() 741 __ call(Address(temp, mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset( in VisitInvokeStatic() 978 CpuRegister temp = locations->GetTemp(0).AsX86_64().AsCpuRegister(); in VisitInstanceFieldSet() local 980 codegen_->MarkGCCard(temp, card, obj, value); in VisitInstanceFieldSet() 1303 void CodeGeneratorX86_64::MarkGCCard(CpuRegister temp, in MarkGCCard() argument 1312 __ movq(temp, object); in MarkGCCard() 1313 __ shrq(temp, Immediate(gc::accounting::CardTable::kCardShift)); in MarkGCCard() [all …]
|
D | code_generator_x86.cc | 780 Register temp = invoke->GetLocations()->GetTemp(0).AsX86().AsCpuRegister(); in VisitInvokeStatic() local 793 LoadCurrentMethod(temp); in VisitInvokeStatic() 795 __ movl(temp, Address(temp, mirror::ArtMethod::DexCacheResolvedMethodsOffset().Int32Value())); in VisitInvokeStatic() 797 __ movl(temp, Address(temp, index_in_cache)); in VisitInvokeStatic() 799 __ call(Address(temp, mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset( in VisitInvokeStatic() 1112 Register temp = locations->GetTemp(0).AsX86().AsCpuRegister(); in VisitInstanceFieldSet() local 1114 codegen_->MarkGCCard(temp, card, obj, value); in VisitInstanceFieldSet() 1135 void CodeGeneratorX86::MarkGCCard(Register temp, Register card, Register object, Register value) { in MarkGCCard() argument 1140 __ movl(temp, object); in MarkGCCard() 1141 __ shrl(temp, Immediate(gc::accounting::CardTable::kCardShift)); in MarkGCCard() [all …]
|
D | code_generator_x86_64.h | 180 void MarkGCCard(CpuRegister temp, CpuRegister card, CpuRegister object, CpuRegister value);
|
D | code_generator.h | 102 Location GetTemporaryLocation(HTemporary* temp) const;
|
D | code_generator_x86.h | 186 void MarkGCCard(Register temp, Register card, Register object, Register value);
|
/art/compiler/dex/quick/x86/ |
D | target_x86.cc | 2218 RegStorage temp = AllocTemp(); in GenAddReduceVector() local 2219 NewLIR3(extr_opcode, temp.GetReg(), rs_src1.GetReg(), 0); in GenAddReduceVector() 2226 OpRegReg(kOpAdd, rl_result.reg, temp); in GenAddReduceVector() 2229 OpMemReg(kOpAdd, rl_result, temp.GetReg()); in GenAddReduceVector() 2232 FreeTemp(temp); in GenAddReduceVector() 2328 RegStorage temp = AllocTemp(); in GenSetVector() local 2330 NewLIR2(kX86Mov32RR, temp.GetReg(), rl_src.reg.GetReg()); in GenSetVector() 2331 NewLIR2(kX86Sal32RI, temp.GetReg(), 8); in GenSetVector() 2332 NewLIR2(kX86Or32RR, rl_src.reg.GetReg(), temp.GetReg()); in GenSetVector() 2333 FreeTemp(temp); in GenSetVector() [all …]
|
D | utility_x86.cc | 723 RegStorage temp = AllocTemp(); in LoadBaseIndexedDisp() local 724 load = NewLIR5(opcode, temp.GetReg(), r_base.GetReg(), r_index.GetReg(), scale, in LoadBaseIndexedDisp() 728 OpRegCopy(r_dest.GetHigh(), temp); in LoadBaseIndexedDisp() 729 FreeTemp(temp); in LoadBaseIndexedDisp() 739 RegStorage temp = AllocTemp(); in LoadBaseIndexedDisp() local 740 load = NewLIR5(opcode, temp.GetReg(), r_base.GetReg(), r_index.GetReg(), scale, in LoadBaseIndexedDisp() 744 OpRegCopy(r_dest.GetLow(), temp); in LoadBaseIndexedDisp() 745 FreeTemp(temp); in LoadBaseIndexedDisp()
|
/art/runtime/mirror/ |
D | class.cc | 93 std::string temp; in SetStatus() local 94 const char* old_exception_descriptor = old_exception->GetClass()->GetDescriptor(&temp); in SetStatus() 171 std::string temp; in ComputeName() local 172 const char* descriptor = h_this->GetDescriptor(&temp); in ComputeName() 219 std::string temp; in DumpClass() local 221 << "'" << GetDescriptor(&temp) << "' cl=" << GetClassLoader() << " -----\n", in DumpClass() 738 std::string temp; in GetArrayDescriptor() local 739 const char* elem_desc = GetComponentType()->GetDescriptor(&temp); in GetArrayDescriptor()
|
/art/compiler/dex/quick/ |
D | gen_invoke.cc | 1001 RegStorage temp = AllocTempDouble(); in GenDalvikArgsRange() local 1019 ld1 = OpMovRegMem(temp, TargetPtrReg(kSp), current_src_offset, kMovA128FP); in GenDalvikArgsRange() 1021 ld1 = OpMovRegMem(temp, TargetPtrReg(kSp), current_src_offset, kMovLo128FP); in GenDalvikArgsRange() 1022 ld2 = OpMovRegMem(temp, TargetPtrReg(kSp), current_src_offset + (bytes_to_move >> 1), in GenDalvikArgsRange() 1025 ld1 = OpMovRegMem(temp, TargetPtrReg(kSp), current_src_offset, kMovU128FP); in GenDalvikArgsRange() 1029 st1 = OpMovMemReg(TargetPtrReg(kSp), current_dest_offset, temp, kMovA128FP); in GenDalvikArgsRange() 1031 st1 = OpMovMemReg(TargetPtrReg(kSp), current_dest_offset, temp, kMovLo128FP); in GenDalvikArgsRange() 1033 temp, kMovHi128FP); in GenDalvikArgsRange() 1035 st1 = OpMovMemReg(TargetPtrReg(kSp), current_dest_offset, temp, kMovU128FP); in GenDalvikArgsRange() 1064 FreeTemp(temp); in GenDalvikArgsRange() [all …]
|
D | gen_loadstore.cc | 414 RegStorage temp = AllocTempWide(); in ForceTempWide() local 415 OpRegCopy(temp, loc.reg); in ForceTempWide() 416 loc.reg = temp; in ForceTempWide()
|
/art/runtime/gc/allocator/ |
D | rosalloc.h | 176 Run temp; in fixed_header_size() local 177 size_t size = reinterpret_cast<byte*>(&temp.alloc_bit_map_) - reinterpret_cast<byte*>(&temp); in fixed_header_size()
|
/art/compiler/utils/ |
D | assembler_test.h | 637 char temp[1024]; in GetRootPath() local 638 return getcwd(temp, 1024) ? std::string(temp) + "/" : std::string(""); in GetRootPath()
|
/art/compiler/ |
D | image_writer.cc | 636 std::string temp; in IsImageClass() local 637 return compiler_driver_.IsImageClass(klass->GetDescriptor(&temp)); in IsImageClass() 695 std::string temp; in NonImageClassesVisitor() local 696 context->non_image_classes->insert(klass->GetDescriptor(&temp)); in NonImageClassesVisitor() 715 std::string temp; in CheckNonImageClassesRemovedCallback() local 716 CHECK(image_writer->IsImageClass(klass)) << klass->GetDescriptor(&temp) in CheckNonImageClassesRemovedCallback()
|
/art/runtime/verifier/ |
D | reg_type.cc | 623 std::string temp; in GetSuperClass() local 624 return cache->FromClass(super_klass->GetDescriptor(&temp), super_klass, false); in GetSuperClass() 902 std::string temp; in Merge() local 903 return reg_types->FromClass(join_class->GetDescriptor(&temp), join_class, false); in Merge()
|