Home
last modified time | relevance | path

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

/art/runtime/gc/space/
Dregion_space.h236 state_(RegionState::kRegionStateAllocated), type_(RegionType::kRegionTypeToSpace), in Region()
242 state_(RegionState::kRegionStateFree), type_(RegionType::kRegionTypeNone), in Region()
254 return type_; in Type()
260 type_ = RegionType::kRegionTypeNone; in Clear()
291 type_ = RegionType::kRegionTypeToSpace; in Unfree()
298 type_ = RegionType::kRegionTypeToSpace; in UnfreeLarge()
305 type_ = RegionType::kRegionTypeToSpace; in UnfreeLargeTail()
341 return type_ == RegionType::kRegionTypeFromSpace; in IsInFromSpace()
345 return type_ == RegionType::kRegionTypeToSpace; in IsInToSpace()
349 return type_ == RegionType::kRegionTypeUnevacFromSpace; in IsInUnevacFromSpace()
[all …]
Dregion_space.cc413 << " state=" << static_cast<uint>(state_) << " type=" << static_cast<uint>(type_) in Dump()
/art/runtime/
Dgc_root.h58 : type_(type), thread_id_(thread_id) { in type_() function
64 return type_; in GetType()
70 os << "Type=" << type_ << " thread_id=" << thread_id_; in Describe()
75 const RootType type_;
Doat_file.cc677 : oat_file_(oat_file), status_(status), type_(type), in OatClass()
679 switch (type_) { in OatClass()
699 LOG(FATAL) << "Invalid OatClassType " << type_; in OatClass()
716 CHECK_EQ(kOatClassNoneCompiled, type_); in GetOatMethodOffsets()
721 CHECK_EQ(kOatClassAllCompiled, type_); in GetOatMethodOffsets()
724 CHECK_EQ(kOatClassSomeCompiled, type_); in GetOatMethodOffsets()
Doat_file.h173 return type_; in GetType()
211 const OatClassType type_; variable
Ddex_file.cc1189 array_size_(), pos_(-1), type_(kByte) { in EncodedStaticFieldValueIterator()
1211 type_ = static_cast<ValueType>(value_type & kEncodedValueTypeMask); in Next()
1212 switch (type_) { in Next()
1250 UNIMPLEMENTED(FATAL) << ": type " << type_; in Next()
1265 switch (type_) { in ReadValueToField()
1287 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()
1358 uint16_t type = item->type_; in CheckIntraSection()
2071 uint16_t type = item->type_; in CheckInterSection()
Dthread.h1317 : self_(self), type_(type) { in ScopedStackedShadowFramePusher()
1321 self_->PopStackedShadowFrame(type_); in ~ScopedStackedShadowFramePusher()
1326 const StackedShadowFrameType type_; variable
Ddebugger.cc138 AllocRecord() : type_(nullptr), byte_count_(0), thin_lock_id_(0) {} in AllocRecord()
141 return down_cast<mirror::Class*>(Thread::Current()->DecodeJObject(type_)); in Type()
146 type_ = Dbg::type_cache_.Add(t); in SetType()
179 jobject type_; // This is a weak global. member in art::AllocRecord
4501 type_(0), in HeapChunkContext()
4505 type_ = CHUNK_TYPE("NHSG"); in HeapChunkContext()
4507 type_ = merge ? CHUNK_TYPE("HPSG") : CHUNK_TYPE("HPSO"); in HeapChunkContext()
4554 Dbg::DdmSendChunk(type_, p_ - &buf_[0], &buf_[0]); in Flush()
4581 return type_ == CHUNK_TYPE("NHSG"); in IsNative()
4723 uint32_t type_; member in art::HeapChunkContext
Ddex_file.h130 uint16_t type_; member
1348 ValueType type_; // Type of current encoded value. variable
Dthread.cc179 type_(type), in StackedShadowFrameRecord()
183 StackedShadowFrameType GetType() const { return type_; } in GetType()
188 const StackedShadowFrameType type_; member in art::StackedShadowFrameRecord
Dclass_linker_test.cc608 addOffset(OFFSETOF_MEMBER(mirror::Field, type_), "type"); in FieldOffsets()
/art/runtime/mirror/
Dfield.h77 return GetFieldObject<mirror::Class>(OFFSET_OF_OBJECT_MEMBER(Field, type_)); in GetType()
102 HeapReference<mirror::Class> type_; variable
114 SetFieldObject<kTransactionActive>(OFFSET_OF_OBJECT_MEMBER(Field, type_), type); in SetType()
/art/compiler/utils/arm/
Dassembler_arm.h38 ShifterOperand() : type_(kUnknown), rm_(kNoRegister), rs_(kNoRegister), in ShifterOperand()
45 explicit ShifterOperand(Register rm) : type_(kRegister), rm_(rm), rs_(kNoRegister), in ShifterOperand()
49 ShifterOperand(uint32_t rotate, uint32_t immed8) : type_(kImmediate), rm_(kNoRegister), in ShifterOperand()
54 ShifterOperand(Register rm, Shift shift, uint32_t shift_imm = 0) : type_(kRegister), rm_(rm), in type_() function
60 ShifterOperand(Register rm, Shift shift, Register rs) : type_(kRegister), rm_(rm), in ShifterOperand()
65 bool is_valid() const { return (type_ == kImmediate) || (type_ == kRegister); } in is_valid()
69 return type_; in type()
76 return type_ == kUnknown; in IsEmpty()
80 return type_ == kImmediate; in IsImmediate()
84 return type_ == kRegister; in IsRegister()
[all …]
Dassembler_thumb2.h523 assembler_(assembler), type_(type), location_(location), in assembler_()
532 assembler_(assembler), type_(type), location_(location), in Branch()
541 assembler_(assembler), type_(type), location_(location), in assembler_()
549 return type_ == kCompareAndBranchNonZero || type_ == kCompareAndBranchZero; in IsCompareAndBranch()
602 return type_; in GetType()
618 type_ = type; in ResetTypeAndCondition()
637 if (assembler_->IsForced32Bit() && (type_ == kUnconditional || type_ == kConditional)) { in CalculateSize()
646 switch (type_) { in CalculateSize()
678 Type type_; variable
Dassembler_arm.cc77 : type_(kImmediate), rm_(kNoRegister), rs_(kNoRegister), in ShifterOperand()
85 switch (type_) { in encodingArm()
131 switch (type_) { in encodingThumb()
Dassembler_thumb2.cc33 shifter_op->type_ = ShifterOperand::kImmediate; in ShifterOperandCanHold()
1284 bool link = type_ == kUnconditionalLinkX || type_ == kUnconditionalLink; in Emit()
1285 bool x = type_ == kUnconditionalX || type_ == kUnconditionalLinkX; in Emit()
1324 (type_ == kCompareAndBranchNonZero ? B11 : 0) | in Emit()
Dassembler_arm32.cc31 shifter_op->type_ = ShifterOperand::kImmediate; in ShifterOperandCanHoldArm32()
41 shifter_op->type_ = ShifterOperand::kImmediate; in ShifterOperandCanHoldArm32()
/art/compiler/
Doat_writer.cc1480 type_ = kOatClassNoneCompiled; in OatClass()
1482 type_ = kOatClassAllCompiled; in OatClass()
1484 type_ = kOatClassSomeCompiled; in OatClass()
1491 uint32_t oat_method_offsets_offset_from_oat_class = sizeof(type_) + sizeof(status_); in OatClass()
1492 if (type_ == kOatClassSomeCompiled) { in OatClass()
1509 if (type_ == kOatClassSomeCompiled) { in OatClass()
1536 + sizeof(type_) in SizeOf()
1544 oat_header->UpdateChecksum(&type_, sizeof(type_)); in UpdateChecksum()
1546 CHECK_EQ(kOatClassSomeCompiled, type_); in UpdateChecksum()
1563 if (!out->WriteFully(&type_, sizeof(type_))) { in Write()
[all …]
Doat_writer.h238 uint16_t type_; variable
/art/compiler/optimizing/
Dssa_liveness_analysis.h538 return type_; in GetType()
571 LiveInterval* new_interval = new (allocator_) LiveInterval(allocator_, type_); in SplitAt()
707 return type_ == Primitive::kPrimFloat || type_ == Primitive::kPrimDouble; in IsFloatingPoint()
766 allocator_, type_, defined_by_, false, kNoRegister, is_temp, false, true);
878 type_(type), in allocator_()
1036 const Primitive::Type type_; variable
Dssa_liveness_analysis.cc473 return type_ == Primitive::kPrimLong || type_ == Primitive::kPrimDouble; in NeedsTwoSpillSlots()
Dnodes.h1713 : HTemplateInstruction<N>(side_effects), type_(type) {}
1716 Primitive::Type GetType() const OVERRIDE { return type_; } in GetType()
1719 Primitive::Type type_;
3030 type_(type), in HPhi()
3054 Primitive::Type GetType() const OVERRIDE { return type_; } in GetType()
3055 void SetType(Primitive::Type type) { type_ = type; } in SetType()
3093 Primitive::Type type_; variable
3237 void SetType(Primitive::Type type) { type_ = type; } in SetType()
3825 : source_(source), destination_(destination), type_(type), instruction_(instruction) {} in MoveOperands()
3873 Primitive::Type GetType() const { return type_; } in GetType()
[all …]
Dcode_generator_x86_64.cc86 : cpu_reg_(CpuRegister(reg)), type_(type), is_div_(is_div) {} in DivRemMinusOneSlowPathX86_64()
90 if (type_ == Primitive::kPrimInt) { in EmitNativeCode()
98 DCHECK_EQ(Primitive::kPrimLong, type_); in EmitNativeCode()
110 const Primitive::Type type_; member in art::x86_64::DivRemMinusOneSlowPathX86_64
/art/compiler/dex/quick/
Dmir_to_lir.h1867 explicit ShortyArg(char type) : type_(type) { } in ShortyArg()
1868 bool IsFP() { return type_ == 'F' || type_ == 'D'; } in IsFP()
1869 bool IsWide() { return type_ == 'J' || type_ == 'D'; } in IsWide()
1870 bool IsRef() { return type_ == 'L'; } in IsRef()
1871 char GetType() { return type_; } in GetType()
1873 char type_;