/art/runtime/ |
D | gc_root.h | 50 : 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_;
|
D | oat_file.cc | 515 : 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()
|
D | oat_file.h | 180 return type_; in GetType() 213 OatClassType type_; variable
|
D | dex_file.cc | 1127 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()
|
D | dex_file_verifier.cc | 320 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()
|
D | debugger.cc | 137 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
|
D | dex_file.h | 129 uint16_t type_; member 1316 ValueType type_; // Type of current encoded value. variable
|
/art/compiler/utils/arm/ |
D | assembler_arm.h | 34 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 …]
|
D | assembler_thumb2.h | 506 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
|
D | assembler_arm.cc | 77 : 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()
|
D | assembler_thumb2.cc | 1170 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/ |
D | oat_writer.cc | 1175 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 …]
|
D | oat_writer.h | 221 uint16_t type_; variable
|
/art/compiler/optimizing/ |
D | ssa_liveness_analysis.h | 141 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
|
D | nodes.h | 799 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
|