/art/tools/veridex/ |
D | flow_analysis.h | 51 type_(nullptr) {} in RegisterValue() 53 : source_(source), value_(0), reference_(reference), type_(type) {} in RegisterValue() 59 : source_(source), value_(value), reference_(reference), type_(type) {} in RegisterValue() 63 const VeriClass* GetType() const { return type_; } in GetType() 81 if (type_ == VeriClass::class_) { in ToString() 103 const VeriClass* type_; variable
|
/art/runtime/ |
D | hidden_api.cc | 130 type_ = kField; in MemberSignature() 139 type_ = kMethod; in MemberSignature() 148 type_ = kField; in MemberSignature() 157 type_ = kMethod; in MemberSignature() 161 if (type_ == kField) { in GetSignatureParts() 164 DCHECK_EQ(type_, kMethod); in GetSignatureParts() 202 LOG(WARNING) << "Accessing hidden " << (type_ == kField ? "field " : "method ") in WarnAboutAccess() 208 return type_ == other.type_ && in Equals()
|
D | gc_root.h | 64 : type_(type), thread_id_(thread_id) { in type_() function 70 return type_; in GetType() 76 os << "Type=" << type_ << " thread_id=" << thread_id_; in Describe() 81 const RootType type_;
|
D | oat_file.h | 217 return type_; in GetType() 259 const OatClassType type_; variable
|
/art/openjdkjvmti/ |
D | ti_method.cc | 640 type_(type), in GetLocalVariableClosure() 645 if (result_ == OK && type_ == art::Primitive::kPrimNot) { in GetResult() 669 return type_ == art::Primitive::kPrimInt ? OK : ERR(TYPE_MISMATCH); in GetTypeError() 674 return type_ == slot_type ? OK : ERR(TYPE_MISMATCH); in GetTypeError() 683 switch (type_) { in Execute() 703 type_ == art::Primitive::kPrimFloat ? art::kFloatVReg : art::kIntVReg, in Execute() 711 auto lo_type = type_ == art::Primitive::kPrimLong ? art::kLongLoVReg : art::kDoubleLoVReg; in Execute() 712 auto high_type = type_ == art::Primitive::kPrimLong ? art::kLongHiVReg : art::kDoubleHiVReg; in Execute() 723 LOG(FATAL) << "unexpected register type " << type_; in Execute() 731 art::Primitive::Type type_; member in openjdkjvmti::GetLocalVariableClosure [all …]
|
/art/dex2oat/linker/arm/ |
D | relative_patcher_arm_base.h | 53 : type_(type), custom_value1_(custom_value1), custom_value2_(custom_value2) { } in type_() function 56 return type_; in GetType() 68 ThunkType type_;
|
/art/runtime/mirror/ |
D | emulated_stack_frame.h | 74 return MemberOffset(OFFSETOF_MEMBER(EmulatedStackFrame, type_)); in TypeOffset() 88 HeapReference<mirror::MethodType> type_; variable
|
D | field-inl.h | 41 return GetFieldObject<mirror::Class>(OFFSET_OF_OBJECT_MEMBER(Field, type_)); in GetType() 104 SetFieldObject<kTransactionActive>(OFFSET_OF_OBJECT_MEMBER(Field, type_), type); in SetType()
|
D | emulated_stack_frame-inl.h | 30 return GetFieldObject<MethodType>(OFFSET_OF_OBJECT_MEMBER(EmulatedStackFrame, type_)); in GetType()
|
D | field.h | 85 HeapReference<mirror::Class> type_; variable
|
/art/runtime/gc/space/ |
D | region_space.h | 389 type_(RegionType::kRegionTypeToSpace) {} in Region() 397 type_ = RegionType::kRegionTypeNone; in Init() 413 return type_; in Type() 492 return type_ == RegionType::kRegionTypeFromSpace; in IsInFromSpace() 496 return type_ == RegionType::kRegionTypeToSpace; in IsInToSpace() 500 return type_ == RegionType::kRegionTypeUnevacFromSpace; in IsInUnevacFromSpace() 504 return type_ == RegionType::kRegionTypeNone; in IsInNoSpace() 512 type_ = RegionType::kRegionTypeFromSpace; in SetAsFromSpace() 538 type_ = RegionType::kRegionTypeToSpace; in SetUnevacFromSpaceAsToSpace() 620 RegionType type_; // The region type (see RegionType). variable
|
/art/compiler/driver/ |
D | compiled_method_storage.cc | 110 : type_(type), custom_value1_(custom_value1), custom_value2_(custom_value2) {} in ThunkMapKey() 119 return type_ < other.type_; in operator <() 123 linker::LinkerPatch::Type type_; member in art::CompiledMethodStorage::ThunkMapKey
|
/art/compiler/optimizing/ |
D | induction_var_analysis.cc | 239 type_(DataType::Type::kVoid), in HInductionVarAnalysis() 324 type_ = scc_[0]->GetType(); in VisitNode() 432 type_)); in ClassifyNonTrivial() 493 induction = CreateInduction(kLinear, kNop, induction, initial, /*fetch*/ nullptr, type_); in ClassifyNonTrivial() 535 type_); in RotatePeriodicInduction() 542 type_); in RotatePeriodicInduction() 579 return CreateInduction(a->induction_class, a->operation, new_a, new_b, a->fetch, type_); in TransferAddSub() 591 return CreateInduction(b->induction_class, b->operation, new_a, new_b, b->fetch, type_); in TransferAddSub() 601 return CreateInduction(a->induction_class, a->operation, new_a, new_b, a->fetch, type_); in TransferAddSub() 621 return CreateInduction(a->induction_class, a->operation, new_a, new_b, a->fetch, type_); in TransferNeg() [all …]
|
D | ssa_liveness_analysis.h | 622 return type_; in GetType() 664 LiveInterval* new_interval = new (allocator_) LiveInterval(allocator_, type_); in SplitAt() 796 return type_ == DataType::Type::kFloat32 || type_ == DataType::Type::kFloat64; in IsFloatingPoint() 855 allocator_, type_, defined_by_, false, kNoRegister, is_temp, true); 997 type_(type), in allocator_() 1115 const DataType::Type type_; variable
|
D | load_store_analysis.h | 103 type_(DataType::ToSigned(type)), in HeapLocation() 121 DataType::Type GetType() const { return type_; } in GetType() 158 const DataType::Type type_; variable
|
/art/libartbase/base/ |
D | memory_type_table.h | 34 : start_(start), limit_(limit), type_(type) {} in MemoryTypeRange() 35 MemoryTypeRange() : start_(0), limit_(0), type_() {} in MemoryTypeRange() 52 const T& Type() const { return type_; } in Type() 76 T type_; variable
|
/art/libdexfile/dex/ |
D | dex_file.cc | 192 if (map_item.type_ == kDexTypeMethodHandleItem) { in InitializeSectionsFromMapList() 195 } else if (map_item.type_ == kDexTypeCallSiteIdItem) { in InitializeSectionsFromMapList() 198 } else if (map_item.type_ == kDexTypeHiddenapiClassData) { in InitializeSectionsFromMapList() 600 type_(kByte) { in EncodedArrayValueIterator() 615 type_ = static_cast<ValueType>(value_type & kEncodedValueTypeMask); in Next() 616 switch (type_) { in Next() 656 UNIMPLEMENTED(FATAL) << ": type " << type_; in Next()
|
D | dex_file_structs.h | 35 uint16_t type_; member
|
/art/dex2oat/linker/ |
D | relative_patcher_test.h | 302 : type_(patch.GetType()), in ThunkKey() 318 return type_ < other.type_; 322 const LinkerPatch::Type type_;
|
/art/dexlayout/ |
D | dex_writer.h | 44 : type_(type), size_(size), offset_(offset) { } in MapItem() 51 uint32_t type_ = 0u; member
|
D | dex_ir.h | 678 : class_(klass), type_(type), name_(name) { size_ = kFieldIdItemSize; } in FieldId() 684 const TypeId* Type() const { return type_; } in Type() 691 const TypeId* type_; variable 767 explicit EncodedValue(uint8_t type) : type_(type) { } in EncodedValue() 769 int8_t Type() const { return type_; } in Type() 809 uint8_t type_; 853 : type_(type), elements_(elements) { } in EncodedAnnotation() 855 TypeId* GetType() const { return type_; } in GetType() 859 TypeId* type_;
|
/art/test/ti-stress/ |
D | stress.cc | 295 type_(nullptr) {} in ScopedFieldInfo() 299 jvmtienv_->Deallocate(reinterpret_cast<unsigned char*>(type_)); in ~ScopedFieldInfo() 306 declaring_class_, field_, &name_, &type_, nullptr) == JVMTI_ERROR_NONE); in Init() 322 return type_; in GetType() 331 char* type_; member in art::ScopedFieldInfo
|
/art/compiler/utils/mips64/ |
D | assembler_mips64.cc | 2353 type_ = (offset_size <= branch_info_[short_type].offset_size) ? short_type : long_type; in InitShortOrLong() 2366 type_ = initial_type; in InitializeType() 2379 type_ = (offset_size_needed <= kOffset23) ? kCondBranch : kLongCondBranch; in InitializeType() 2387 type_ = kBareCall; in InitializeType() 2391 type_ = (condition_ == kUncond) ? kBareUncondBranch : kBareCondBranch; in InitializeType() 2415 type_ = kR2BareCondBranch; in InitializeType() 2418 old_type_ = type_; in InitializeType() 2564 return type_; in GetType() 2592 return branch_info_[type_].length; in GetLength() 2616 switch (type_) { in IsBare() [all …]
|
/art/runtime/dex/ |
D | dex_file_annotations.cc | 60 uint8_t type_; member 431 annotation_value->type_ = value_type; in ProcessAnnotationValue() 629 switch (new_annotation_value.type_) { in ProcessAnnotationValue() 859 if (annotation_value.type_ != expected_type) { in GetAnnotationValue() 1602 if (annotation_value.type_ != DexFile::kDexAnnotationMethod) { in GetEnclosingClass() 1661 if (annotation_value.type_ != DexFile::kDexAnnotationNull && in GetInnerClass() 1662 annotation_value.type_ != DexFile::kDexAnnotationString) { in GetInnerClass() 1694 if (annotation_value.type_ != DexFile::kDexAnnotationInt) { in GetInnerClassFlags() 1748 if (annotation_value.type_ != DexFile::kDexAnnotationString) { in GetSourceDebugExtension() 1785 switch (type_) { in ReadValueToField() [all …]
|
/art/compiler/utils/mips/ |
D | assembler_mips.cc | 2914 type_ = (offset_size <= branch_info_[short_type].offset_size) ? short_type : long_type; in InitShortOrLong() 2924 type_ = kR6Label; in InitializeType() 2928 type_ = kR6Literal; in InitializeType() 2941 type_ = (offset_size_needed <= kOffset23) ? kR6CondBranch : kR6LongCondBranch; in InitializeType() 2949 type_ = kR6BareCall; in InitializeType() 2953 type_ = (condition_ == kUncond) ? kR6BareUncondBranch : kR6BareCondBranch; in InitializeType() 2965 type_ = kLabel; in InitializeType() 2969 type_ = kLiteral; in InitializeType() 2985 type_ = kBareCall; in InitializeType() 2989 type_ = (condition_ == kUncond) ? kBareUncondBranch : kBareCondBranch; in InitializeType() [all …]
|