Home
last modified time | relevance | path

Searched refs:GetType (Results 1 – 25 of 49) sorted by relevance

12

/art/compiler/optimizing/
Dssa_type_propagation.cc38 Primitive::Type existing = phi->GetType(); in UpdateType()
42 Primitive::Type input_type = phi->InputAt(i)->GetType(); in UpdateType()
62 phi->SetType(phi->InputAt(0)->GetType()); in VisitBasicBlock()
Dcode_generator_x86_64.cc249 switch (load->GetType()) { in GetStackLocation()
260 LOG(FATAL) << "Unimplemented type " << load->GetType(); in GetStackLocation()
267 LOG(FATAL) << "Unexpected type " << load->GetType(); in GetStackLocation()
326 switch (instruction->GetType()) { in Move()
341 LOG(FATAL) << "Unimplemented local type " << instruction->GetType(); in Move()
345 switch (instruction->GetType()) { in Move()
357 LOG(FATAL) << "Unimplemented type " << instruction->GetType(); in Move()
447 switch (store->InputAt(1)->GetType()) { in VisitStoreLocal()
462 LOG(FATAL) << "Unimplemented local type " << store->InputAt(1)->GetType(); in VisitStoreLocal()
557 switch (compare->InputAt(0)->GetType()) { in VisitCompare()
[all …]
Dcode_generator_arm.cc302 switch (load->GetType()) { in GetStackLocation()
313 LOG(FATAL) << "Unimplemented type " << load->GetType(); in GetStackLocation()
320 LOG(FATAL) << "Unexpected type " << load->GetType(); in GetStackLocation()
484 switch (instruction->GetType()) { in Move()
499 LOG(FATAL) << "Unimplemented type " << instruction->GetType(); in Move()
503 switch (instruction->GetType()) { in Move()
518 LOG(FATAL) << "Unimplemented type " << instruction->GetType(); in Move()
699 switch (store->InputAt(1)->GetType()) { in VisitStoreLocal()
714 LOG(FATAL) << "Unimplemented local type " << store->InputAt(1)->GetType(); in VisitStoreLocal()
751 switch (ret->InputAt(0)->GetType()) { in VisitReturn()
[all …]
Dcode_generator_x86.cc277 switch (load->GetType()) { in GetStackLocation()
288 LOG(FATAL) << "Unimplemented type " << load->GetType(); in GetStackLocation()
295 LOG(FATAL) << "Unexpected type " << load->GetType(); in GetStackLocation()
441 switch (instruction->GetType()) { in Move()
457 LOG(FATAL) << "Unimplemented local type " << instruction->GetType(); in Move()
461 switch (instruction->GetType()) { in Move()
476 LOG(FATAL) << "Unimplemented type " << instruction->GetType(); in Move()
568 switch (store->InputAt(1)->GetType()) { in VisitStoreLocal()
583 LOG(FATAL) << "Unimplemented local type " << store->InputAt(1)->GetType(); in VisitStoreLocal()
697 switch (ret->InputAt(0)->GetType()) { in VisitReturn()
[all …]
Dregister_allocator.cc58 if (current->GetType() == Primitive::kPrimLong && instruction_set != kX86_64) return false; in CanAllocateRegistersFor()
59 if (current->GetType() == Primitive::kPrimFloat) return false; in CanAllocateRegistersFor()
60 if (current->GetType() == Primitive::kPrimDouble) return false; in CanAllocateRegistersFor()
67 bool is_core_register = (interval->GetType() != Primitive::kPrimDouble) in ShouldProcess()
68 && (interval->GetType() != Primitive::kPrimFloat); in ShouldProcess()
141 BlockRegister(output, position, position + 1, instruction->GetType()); in AllocateRegistersInternal()
148 BlockRegister(input, position, position + 1, instruction->InputAt(i)->GetType()); in AllocateRegistersInternal()
593 if (NeedTwoSpillSlot(parent->GetType())) { in AllocateSpillSlotFor()
657 if (NeedTwoSpillSlot(interval->GetType())) { in ConvertToLocation()
808 NeedTwoSpillSlot(interval->GetType()) in ConnectSiblings()
Dnodes.h511 virtual Primitive::Type GetType() const { return Primitive::kPrimVoid; } in GetType() function
802 virtual Primitive::Type GetType() const { return type_; } in GetType() function
908 Primitive::Type GetResultType() const { return GetType(); } in GetResultType()
1030 DCHECK_EQ(type, first->GetType()); in HCompare()
1031 DCHECK_EQ(type, second->GetType()); in HCompare()
1155 virtual Primitive::Type GetType() const { return return_type_; } in GetType() function
1284 virtual Primitive::Type GetType() const { return type_; } in GetType() function
1308 : HExpression(value->GetType()), dex_pc_(dex_pc) { in HNullCheck()
1402 return InputAt(2)->GetType() == Primitive::kPrimNot; in NeedsEnvironment()
1430 : HExpression(index->GetType()), dex_pc_(dex_pc) { in HBoundsCheck()
[all …]
Dbuilder.cc51 DCHECK(instruction->GetType() != Primitive::kPrimLong in Add()
52 && instruction->GetType() != Primitive::kPrimDouble); in Add()
114 new (arena_) HParameterValue(parameter_index++, Primitive::GetType(shorty[pos - 1])); in InitializeParameters()
120 if (parameter->GetType() == Primitive::kPrimLong) { in InitializeParameters()
331 Primitive::Type return_type = Primitive::GetType(descriptor[0]); in BuildInvoke()
355 Primitive::Type type = Primitive::GetType(descriptor[descriptor_index++]); in BuildInvoke()
Dcode_generator.cc182 AllocateFreeRegister(input->GetType(), blocked_registers_)); in AllocateRegistersLocally()
190 AllocateFreeRegister(input->GetType(), blocked_registers_)); in AllocateRegistersLocally()
215 AllocateFreeRegister(instruction->GetType(), blocked_registers_)); in AllocateRegistersLocally()
Dgraph_visualizer.cc160 DumpLocation(locations->InAt(i), instruction->InputAt(i)->GetType()); in VisitInstruction()
166 DumpLocation(locations->Out(), instruction->GetType()); in VisitInstruction()
Dssa_liveness_analysis.cc116 new (graph_.GetArena()) LiveInterval(graph_.GetArena(), current->GetType(), current)); in NumberInstructions()
133 new (graph_.GetArena()) LiveInterval(graph_.GetArena(), current->GetType(), current)); in NumberInstructions()
/art/runtime/gc/space/
Dspace.h98 virtual SpaceType GetType() const = 0;
102 return GetType() == kSpaceTypeImageSpace; in IsImageSpace()
108 SpaceType type = GetType(); in IsMallocSpace()
125 return GetType() == kSpaceTypeZygoteSpace; in IsZygoteSpace()
131 return GetType() == kSpaceTypeBumpPointerSpace; in IsBumpPointerSpace()
137 return GetType() == kSpaceTypeLargeObjectSpace; in IsLargeObjectSpace()
Dzygote_space.h40 SpaceType GetType() const OVERRIDE { in GetType() function
Dimage_space.h34 SpaceType GetType() const { in GetType() function
Dzygote_space.cc71 os << GetType() in Dump()
/art/compiler/jni/quick/
Dcalling_convention.h34 return Primitive::GetType(shorty_[0]); in GetReturnType()
38 size_t result = Primitive::ComponentSize(Primitive::GetType(shorty_[0])); in SizeOfReturnValue()
176 size_t result = Primitive::ComponentSize(Primitive::GetType(shorty_[param])); in ParamSize()
/art/runtime/
Dfield_helper.h39 mirror::Class* GetType(bool resolve = true) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
Dfield_helper.cc27 mirror::Class* FieldHelper::GetType(bool resolve) { in GetType() function in art::FieldHelper
Dprimitive.h46 static Type GetType(char type) { in GetType() function
Dgc_root.h54 RootType GetType() const { in GetType() function
Dproxy_test.cc189 EXPECT_EQ(interfacesFieldClass.Get(), fh.GetType()); in TEST_F()
197 EXPECT_EQ(throwsFieldClass.Get(), fh.GetType()); in TEST_F()
Dmethod_helper.h94 return Primitive::GetType(GetShorty()[param]); in GetParamPrimitiveType()
/art/runtime/gc/collector/
Dimmune_region.cc64 DCHECK(space->GetType() != space::kSpaceTypeBumpPointerSpace); in ContainsSpace()
/art/compiler/sea_ir/types/
Dtype_inference.cc157 const Type* new_type = tiv.GetType(); in ComputeTypes()
174 const Type* new_type = tiv.GetType(); in ComputeTypes()
Dtype_inference_visitor.h62 const Type* GetType() { in GetType() function
/art/runtime/mirror/
Dobject.cc216 CHECK(fh.GetType()->IsAssignableFrom(new_value->GetClass())); in CheckFieldAssignmentImpl()
236 CHECK(fh.GetType()->IsAssignableFrom(new_value->GetClass())); in CheckFieldAssignmentImpl()

12