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

12

/art/compiler/optimizing/
H A Dssa_type_propagation.cc38 Primitive::Type existing = phi->GetType();
42 Primitive::Type input_type = phi->InputAt(i)->GetType();
62 phi->SetType(phi->InputAt(0)->GetType());
H A Dcode_generator_x86_64.cc249 switch (load->GetType()) {
260 LOG(FATAL) << "Unimplemented type " << load->GetType();
267 LOG(FATAL) << "Unexpected type " << load->GetType();
326 switch (instruction->GetType()) {
341 LOG(FATAL) << "Unimplemented local type " << instruction->GetType();
345 switch (instruction->GetType()) {
357 LOG(FATAL) << "Unimplemented type " << instruction->GetType();
447 switch (store->InputAt(1)->GetType()) {
462 LOG(FATAL) << "Unimplemented local type " << store->InputAt(1)->GetType();
557 switch (compare->InputAt(0)->GetType()) {
[all...]
H A Dcode_generator_arm.cc302 switch (load->GetType()) {
313 LOG(FATAL) << "Unimplemented type " << load->GetType();
320 LOG(FATAL) << "Unexpected type " << load->GetType();
484 switch (instruction->GetType()) {
499 LOG(FATAL) << "Unimplemented type " << instruction->GetType();
503 switch (instruction->GetType()) {
518 LOG(FATAL) << "Unimplemented type " << instruction->GetType();
699 switch (store->InputAt(1)->GetType()) {
714 LOG(FATAL) << "Unimplemented local type " << store->InputAt(1)->GetType();
751 switch (ret->InputAt(0)->GetType()) {
[all...]
H A Dcode_generator_x86.cc277 switch (load->GetType()) {
288 LOG(FATAL) << "Unimplemented type " << load->GetType();
295 LOG(FATAL) << "Unexpected type " << load->GetType();
441 switch (instruction->GetType()) {
457 LOG(FATAL) << "Unimplemented local type " << instruction->GetType();
461 switch (instruction->GetType()) {
476 LOG(FATAL) << "Unimplemented type " << instruction->GetType();
568 switch (store->InputAt(1)->GetType()) {
583 LOG(FATAL) << "Unimplemented local type " << store->InputAt(1)->GetType();
697 switch (ret->InputAt(0)->GetType()) {
[all...]
H A Dregister_allocator.cc58 if (current->GetType() == Primitive::kPrimLong && instruction_set != kX86_64) return false;
59 if (current->GetType() == Primitive::kPrimFloat) return false;
60 if (current->GetType() == Primitive::kPrimDouble) return false;
67 bool is_core_register = (interval->GetType() != Primitive::kPrimDouble)
68 && (interval->GetType() != Primitive::kPrimFloat);
141 BlockRegister(output, position, position + 1, instruction->GetType());
148 BlockRegister(input, position, position + 1, instruction->InputAt(i)->GetType());
593 if (NeedTwoSpillSlot(parent->GetType())) {
657 if (NeedTwoSpillSlot(interval->GetType())) {
808 NeedTwoSpillSlot(interval->GetType())
[all...]
H A Dnodes.h511 virtual Primitive::Type GetType() const { return Primitive::kPrimVoid; } function in class:art::HInstruction
802 virtual Primitive::Type GetType() const { return type_; } function in class:art::HExpression
908 Primitive::Type GetResultType() const { return GetType(); }
1030 DCHECK_EQ(type, first->GetType());
1031 DCHECK_EQ(type, second->GetType());
1155 virtual Primitive::Type GetType() const { return return_type_; } function in class:art::HInvoke
1284 virtual Primitive::Type GetType() const { return type_; } function in class:art::HPhi
1308 : HExpression(value->GetType()), dex_pc_(dex_pc) {
1402 return InputAt(2)->GetType() == Primitive::kPrimNot;
1430 : HExpression(index->GetType()), dex_pc
[all...]
H A Dcode_generator.cc182 AllocateFreeRegister(input->GetType(), blocked_registers_));
190 AllocateFreeRegister(input->GetType(), blocked_registers_));
215 AllocateFreeRegister(instruction->GetType(), blocked_registers_));
H A Dgraph_visualizer.cc160 DumpLocation(locations->InAt(i), instruction->InputAt(i)->GetType());
166 DumpLocation(locations->Out(), instruction->GetType());
H A Dssa_liveness_analysis.cc116 new (graph_.GetArena()) LiveInterval(graph_.GetArena(), current->GetType(), current));
133 new (graph_.GetArena()) LiveInterval(graph_.GetArena(), current->GetType(), current));
/art/runtime/
H A Dfield_helper.cc27 mirror::Class* FieldHelper::GetType(bool resolve) { function in class:art::FieldHelper
H A Dfield_helper.h39 mirror::Class* GetType(bool resolve = true) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
H A Dprimitive.h46 static Type GetType(char type) { function in class:art::Primitive
H A Dgc_root.h54 RootType GetType() const { function in class:art::RootInfo
H A Dmethod_helper.h94 return Primitive::GetType(GetShorty()[param]);
/art/runtime/gc/collector/
H A Dimmune_region.cc64 DCHECK(space->GetType() != space::kSpaceTypeBumpPointerSpace);
/art/runtime/gc/space/
H A Dspace.h98 virtual SpaceType GetType() const = 0;
102 return GetType() == kSpaceTypeImageSpace;
108 SpaceType type = GetType();
125 return GetType() == kSpaceTypeZygoteSpace;
131 return GetType() == kSpaceTypeBumpPointerSpace;
137 return GetType() == kSpaceTypeLargeObjectSpace;
H A Dimage_space.h34 SpaceType GetType() const { function in class:art::gc::space::ImageSpace
H A Dzygote_space.h40 SpaceType GetType() const OVERRIDE {
H A Dbump_pointer_space.h38 SpaceType GetType() const OVERRIDE {
H A Dmalloc_space.h52 SpaceType GetType() const { function in class:art::gc::space::MallocSpace
H A Dzygote_space.cc71 os << GetType()
/art/compiler/sea_ir/types/
H A Dtype_inference_visitor.h62 const Type* GetType() { function in class:sea_ir::TypeInferenceVisitor
H A Dtype_inference.cc157 const Type* new_type = tiv.GetType();
174 const Type* new_type = tiv.GetType();
/art/compiler/jni/quick/
H A Dcalling_convention.h34 return Primitive::GetType(shorty_[0]);
38 size_t result = Primitive::ComponentSize(Primitive::GetType(shorty_[0]));
176 size_t result = Primitive::ComponentSize(Primitive::GetType(shorty_[param]));
/art/runtime/mirror/
H A Dobject.cc216 CHECK(fh.GetType()->IsAssignableFrom(new_value->GetClass()));
236 CHECK(fh.GetType()->IsAssignableFrom(new_value->GetClass()));

Completed in 421 milliseconds

12