Home
last modified time | relevance | path

Searched refs:type_ (Results 1 – 15 of 15) sorted by relevance

/art/runtime/
Dgc_root.h50 : type_(type), thread_id_(thread_id) { in type_() function
55 return type_; in GetType()
61 os << "Type=" << type_ << " thread_id=" << thread_id_; in Describe()
65 const RootType type_;
Doat_file.cc515 : oat_file_(oat_file), status_(status), type_(type), in OatClass()
518 switch (type_) { in OatClass()
536 LOG(FATAL) << "Invalid OatClassType " << type_; in OatClass()
553 CHECK_EQ(kOatClassNoneCompiled, type_); in GetOatMethodOffsets()
558 CHECK_EQ(kOatClassAllCompiled, type_); in GetOatMethodOffsets()
561 CHECK_EQ(kOatClassSomeCompiled, type_); in GetOatMethodOffsets()
Doat_file.h180 return type_; in GetType()
213 OatClassType type_; variable
Ddex_file.cc1127 array_size_(), pos_(-1), type_(kByte) { in EncodedStaticFieldValueIterator()
1149 type_ = static_cast<ValueType>(value_type & kEncodedValueTypeMask); in Next()
1150 switch (type_) { in Next()
1188 UNIMPLEMENTED(FATAL) << ": type " << type_; in Next()
1202 switch (type_) { in ReadValueToField()
1225 default: UNIMPLEMENTED(FATAL) << ": type " << type_; in ReadValueToField()
Ddex_file_verifier.cc320 if (IsDataSectionType(item->type_)) { in CheckMap()
330 uint32_t bit = MapTypeToBitMask(item->type_); in CheckMap()
333 ErrorStringPrintf("Unknown map section type %x", item->type_); in CheckMap()
338 ErrorStringPrintf("Duplicate map section of type %x", item->type_); in CheckMap()
1331 uint16_t type = item->type_; in CheckIntraSection()
2044 uint16_t type = item->type_; in CheckInterSection()
Ddebugger.cc137 AllocRecord() : type_(nullptr), byte_count_(0), thin_lock_id_(0) {} in AllocRecord()
140 return down_cast<mirror::Class*>(Thread::Current()->DecodeJObject(type_)); in Type()
145 type_ = Dbg::type_cache_.Add(t); in SetType()
178 jobject type_; // This is a weak global. member in art::AllocRecord
4166 type_(0), in HeapChunkContext()
4171 type_ = CHUNK_TYPE("NHSG"); in HeapChunkContext()
4173 type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO"); in HeapChunkContext()
4220 Dbg::DdmSendChunk(type_, p_ - &buf_[0], &buf_[0]); in Flush()
4260 bool native = type_ == CHUNK_TYPE("NHSG"); in HeapChunkCallback()
4382 uint32_t type_; member in art::HeapChunkContext
Ddex_file.h129 uint16_t type_; member
1316 ValueType type_; // Type of current encoded value. variable
/art/compiler/utils/arm/
Dassembler_arm.h34 ShifterOperand() : type_(kUnknown), rm_(kNoRegister), rs_(kNoRegister), in ShifterOperand()
41 explicit ShifterOperand(Register rm) : type_(kRegister), rm_(rm), rs_(kNoRegister), in ShifterOperand()
45 ShifterOperand(uint32_t rotate, uint32_t immed8) : type_(kImmediate), rm_(kNoRegister), in ShifterOperand()
50 ShifterOperand(Register rm, Shift shift, uint32_t shift_imm = 0) : type_(kRegister), rm_(rm), in type_() function
56 ShifterOperand(Register rm, Shift shift, Register rs) : type_(kRegister), rm_(rm), in ShifterOperand()
61 bool is_valid() const { return (type_ == kImmediate) || (type_ == kRegister); } in is_valid()
65 return type_; in type()
72 return type_ == kUnknown; in IsEmpty()
76 return type_ == kImmediate; in IsImmediate()
80 return type_ == kRegister; in IsRegister()
[all …]
Dassembler_thumb2.h506 assembler_(assembler), type_(type), location_(location), in assembler_()
515 assembler_(assembler), type_(type), location_(location), in Branch()
524 assembler_(assembler), type_(type), location_(location), in assembler_()
532 return type_ == kCompareAndBranchNonZero || type_ == kCompareAndBranchZero; in IsCompareAndBranch()
585 return type_; in GetType()
601 type_ = type; in ResetTypeAndCondition()
620 if (assembler_->IsForced32Bit() && (type_ == kUnconditional || type_ == kConditional)) { in CalculateSize()
629 switch (type_) { in CalculateSize()
661 Type type_; variable
Dassembler_arm.cc77 : type_(kImmediate), rm_(kNoRegister), rs_(kNoRegister), in ShifterOperand()
85 switch (type_) { in encodingArm()
120 switch (type_) { in encodingThumb()
157 shifter_op->type_ = kImmediate; in CanHoldThumb()
Dassembler_thumb2.cc1170 bool link = type_ == kUnconditionalLinkX || type_ == kUnconditionalLink; in Emit()
1171 bool x = type_ == kUnconditionalX || type_ == kUnconditionalLinkX; in Emit()
1209 (type_ == kCompareAndBranchNonZero ? B11 : 0) | in Emit()
/art/compiler/
Doat_writer.cc1175 type_ = kOatClassNoneCompiled; in OatClass()
1177 type_ = kOatClassAllCompiled; in OatClass()
1179 type_ = kOatClassSomeCompiled; in OatClass()
1186 uint32_t oat_method_offsets_offset_from_oat_class = sizeof(type_) + sizeof(status_); in OatClass()
1187 if (type_ == kOatClassSomeCompiled) { in OatClass()
1204 if (type_ == kOatClassSomeCompiled) { in OatClass()
1231 + sizeof(type_) in SizeOf()
1239 oat_header->UpdateChecksum(&type_, sizeof(type_)); in UpdateChecksum()
1241 CHECK_EQ(kOatClassSomeCompiled, type_); in UpdateChecksum()
1258 if (!out->WriteFully(&type_, sizeof(type_))) { in Write()
[all …]
Doat_writer.h221 uint16_t type_; variable
/art/compiler/optimizing/
Dssa_liveness_analysis.h141 type_(type), in allocator_()
330 return type_; in GetType()
353 LiveInterval* new_interval = new (allocator_) LiveInterval(allocator_, type_); in SplitAt()
441 const Primitive::Type type_; variable
Dnodes.h799 explicit HExpression<N>(Primitive::Type type) : type_(type) {} in type_() function
802 virtual Primitive::Type GetType() const { return type_; } in GetType()
805 const Primitive::Type type_;
1270 type_(type), in HPhi()
1284 virtual Primitive::Type GetType() const { return type_; } in GetType()
1285 void SetType(Primitive::Type type) { type_ = type; } in SetType()
1299 Primitive::Type type_; variable