Searched refs:type_ (Results 1 - 25 of 31) sorted by relevance

12

/art/runtime/gc/space/
H A Dregion_space.h238 state_(RegionState::kRegionStateAllocated), type_(RegionType::kRegionTypeToSpace),
244 state_(RegionState::kRegionStateFree), type_(RegionType::kRegionTypeNone),
256 return type_;
262 type_ = RegionType::kRegionTypeNone;
293 type_ = RegionType::kRegionTypeToSpace;
300 type_ = RegionType::kRegionTypeToSpace;
307 type_ = RegionType::kRegionTypeToSpace;
343 return type_ == RegionType::kRegionTypeFromSpace;
347 return type_ == RegionType::kRegionTypeToSpace;
351 return type_
470 RegionType type_; // The region type (see RegionType). member in class:art::gc::space::FINAL::Region
[all...]
H A Dregion_space.cc413 << " state=" << static_cast<uint>(state_) << " type=" << static_cast<uint>(type_)
/art/runtime/mirror/
H A Dfield.h77 return GetFieldObject<mirror::Class>(OFFSET_OF_OBJECT_MEMBER(Field, type_));
102 HeapReference<mirror::Class> type_; member in class:art::mirror::Field
114 SetFieldObject<kTransactionActive>(OFFSET_OF_OBJECT_MEMBER(Field, type_), type);
/art/runtime/
H A Dgc_root.h57 // Only used by hprof. thread_id_ and type_ are only used by hprof.
62 : type_(type), thread_id_(thread_id) {
68 return type_;
74 os << "Type=" << type_ << " thread_id=" << thread_id_;
79 const RootType type_; member in class:art::RootInfo
H A Doat_file.h170 return type_;
208 const OatClassType type_; member in class:art::OatFile::FINAL
H A Doat_file.cc1232 : oat_file_(oat_file), status_(status), type_(type),
1234 switch (type_) {
1254 LOG(FATAL) << "Invalid OatClassType " << type_;
1271 CHECK_EQ(kOatClassNoneCompiled, type_);
1276 CHECK_EQ(kOatClassAllCompiled, type_);
1279 CHECK_EQ(kOatClassSomeCompiled, type_);
H A Dclass_linker.h885 return type_ == Type::kConflict;
890 return type_ == Type::kAbstract;
895 return type_ == Type::kTranslation;
913 : translation_(translation), type_(type) {}
916 const Type type_; member in class:art::ClassLinker::MethodTranslation
H A Ddex_file.cc1487 if (annotation_value.type_ != kDexAnnotationMethod) {
1537 if (annotation_value.type_ != kDexAnnotationNull &&
1538 annotation_value.type_ != kDexAnnotationString) {
1567 if (annotation_value.type_ != kDexAnnotationInt) {
1702 if (annotation_value.type_ != expected_type) {
1848 annotation_value->type_ = value_type;
2015 switch (new_annotation_value.type_) {
2377 type_(type) {
2397 type_ = static_cast<ValueType>(value_type & kEncodedValueTypeMask);
2398 switch (type_) {
[all...]
H A Ddex_file.h145 uint16_t type_; member in struct:art::DexFile::MapItem
403 uint8_t type_; member in struct:art::DexFile::AnnotationValue
1576 ValueType GetValueType() const { return type_; }
1598 ValueType type_; // Type of current encoded value. member in class:art::EncodedStaticFieldValueIterator
H A Ddex_file_verifier.cc368 if (IsDataSectionType(item->type_)) {
378 uint32_t bit = MapTypeToBitMask(item->type_);
381 ErrorStringPrintf("Unknown map section type %x", item->type_);
386 ErrorStringPrintf("Duplicate map section of type %x", item->type_);
1566 uint16_t type = item->type_;
2338 uint16_t type = item->type_;
H A Dcheck_jni.cc142 VarArgs(jmethodID m, va_list var) : m_(m), type_(kTypeVaList), cnt_(0) {
146 VarArgs(jmethodID m, const jvalue* vals) : m_(m), type_(kTypePtr), cnt_(0), ptr_(vals) {}
149 if (type_ == kTypeVaList) {
157 type_ = other.type_;
158 if (other.type_ == kTypeVaList) {
170 if (type_ == kTypeVaList) {
185 if (type_ == kTypeVaList) {
201 CHECK(type_ == kTypePtr);
223 VarArgs(jmethodID m, uint32_t cnt, va_list var) : m_(m), type_(kTypeVaLis
235 VarArgsType type_; member in class:art::VarArgs
[all...]
H A Dthread.h1567 : self_(self), type_(type) {
1571 self_->PopStackedShadowFrame(type_);
1576 const StackedShadowFrameType type_; member in class:art::ScopedStackedShadowFramePusher
H A Ddebugger.cc4522 type_(0),
4526 type_ = CHUNK_TYPE("NHSG");
4528 type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO");
4575 Dbg::DdmSendChunk(type_, p_ - &buf_[0], &buf_[0]);
4602 return type_ == CHUNK_TYPE("NHSG");
4744 uint32_t type_; member in class:art::HeapChunkContext
/art/compiler/optimizing/
H A Dinduction_var_analysis.cc178 type_ = scc_[0]->GetType();
270 AssignInfo(loop, phi, CreateInduction(kWrapAround, initial, update, type_));
304 AssignInfo(loop, phi, CreateInduction(kLinear, induction, initial, type_));
334 return CreateInduction(kPeriodic, induction, last, type_);
337 kPeriodic, induction->op_a, RotatePeriodicInduction(induction->op_b, last), type_);
369 type_);
379 return CreateInduction(b->induction_class, new_a, new_b, type_);
387 return CreateInduction(a->induction_class, new_a, new_b, type_);
405 type_);
410 type_);
[all...]
H A Dssa_liveness_analysis.h542 return type_;
584 LiveInterval* new_interval = new (allocator_) LiveInterval(allocator_, type_);
720 return type_ == Primitive::kPrimFloat || type_ == Primitive::kPrimDouble;
779 allocator_, type_, defined_by_, false, kNoRegister, is_temp, false, true);
891 type_(type),
1090 const Primitive::Type type_; member in class:art::LiveInterval
H A Dinduction_var_analysis.h225 Primitive::Type type_; member in class:art::HInductionVarAnalysis
H A Dssa_liveness_analysis.cc526 return type_ == Primitive::kPrimLong || type_ == Primitive::kPrimDouble;
/art/compiler/
H A Doat_writer.cc95 : type_(kZipEntry), source_(zip_entry) {
100 : type_(kRawFile), source_(raw_file) {
105 : type_(kRawData), source_(dex_file) {
109 bool IsZipEntry() const { return type_ == kZipEntry; }
110 bool IsRawFile() const { return type_ == kRawFile; }
111 bool IsRawData() const { return type_ == kRawData; }
132 type_ = kNone;
144 Type type_; member in class:art::OatWriter::DexFileSource
174 // null and that the OatClass::type_ should be kOatClassBitmap.
183 uint16_t type_;
[all...]
/art/compiler/utils/arm/
H A Dassembler_arm.h124 ShifterOperand() : type_(kUnknown), rm_(kNoRegister), rs_(kNoRegister),
131 explicit ShifterOperand(Register rm) : type_(kRegister), rm_(rm), rs_(kNoRegister),
135 ShifterOperand(uint32_t rotate, uint32_t immed8) : type_(kImmediate), rm_(kNoRegister),
140 ShifterOperand(Register rm, Shift shift, uint32_t shift_imm = 0) : type_(kRegister), rm_(rm),
146 ShifterOperand(Register rm, Shift shift, Register rs) : type_(kRegister), rm_(rm),
151 bool is_valid() const { return (type_ == kImmediate) || (type_ == kRegister); }
155 return type_;
162 return type_ == kUnknown;
166 return type_
200 Type type_; member in class:art::arm::ShifterOperand
[all...]
H A Dassembler_thumb2.cc460 switch (type_) {
468 LOG(FATAL) << "Unexpected type: " << static_cast<int>(type_);
519 shifter_op->type_ = ShifterOperand::kImmediate;
2126 DCHECK(type_ == kUnconditional || type_ == kConditional);
2127 DCHECK_EQ(type_ == kConditional, cond_ != AL);
2133 DCHECK(type_ == kConditional || type_ == kUnconditional ||
2134 type_ == kUnconditionalLink || type_
[all...]
H A Dassembler_arm.cc79 : type_(kImmediate), rm_(kNoRegister), rs_(kNoRegister),
87 switch (type_) {
133 switch (type_) {
H A Dassembler_thumb2.h534 return type_;
620 type_(type),
651 const Type type_; member in class:art::arm::FINAL::Fixup
H A Dassembler_arm32.cc31 shifter_op->type_ = ShifterOperand::kImmediate;
41 shifter_op->type_ = ShifterOperand::kImmediate;
/art/compiler/utils/mips/
H A Dassembler_mips.cc1471 type_ = (offset_size <= branch_info_[short_type].offset_size) ? short_type : long_type;
1485 type_ = (offset_size <= kOffset23) ? kR6CondBranch : kR6LongCondBranch;
1500 old_type_ = type_;
1650 return type_;
1678 return branch_info_[type_].length;
1702 switch (type_) {
1731 (type_ == kR6CondBranch && (condition_ == kCondEQZ || condition_ == kCondNEZ))
1733 : branch_info_[type_].offset_size;
1777 switch (type_) {
1780 type_
[all...]
/art/compiler/utils/mips64/
H A Dassembler_mips64.cc1173 type_ = (offset_size <= branch_info_[short_type].offset_size) ? short_type : long_type;
1185 type_ = (offset_size <= kOffset23) ? kCondBranch : kLongCondBranch;
1190 old_type_ = type_;
1333 return type_;
1361 return branch_info_[type_].length;
1385 switch (type_) {
1406 (type_ == kCondBranch && (condition_ == kCondEQZ || condition_ == kCondNEZ))
1408 : branch_info_[type_].offset_size;
1452 switch (type_) {
1455 type_
[all...]

Completed in 6062 milliseconds

12