Searched refs:index_ (Results 1 – 12 of 12) sorted by relevance
/art/compiler/optimizing/ |
D | bytecode_utils.h | 138 index_(0u) {} in DexSwitchTableIterator() 140 bool Done() const { return index_ >= num_entries_; } in Done() 141 bool IsLast() const { return index_ == num_entries_ - 1; } in IsLast() 145 index_++; in Advance() 149 return table_.IsSparse() ? table_.GetEntryAt(index_) : table_.GetEntryAt(0) + index_; in CurrentKey() 153 return table_.GetEntryAt(index_ + first_target_offset_); in CurrentTargetOffset() 156 uint32_t GetDexPcForCurrentIndex() const { return table_.GetDexPcForIndex(index_); } in GetDexPcForCurrentIndex() 163 size_t index_; variable
|
D | nodes.h | 1353 size_t GetIndex() const { return index_; } 1354 void SetIndex(size_t index) { index_ = index; } 1362 : user_(user), index_(index) {} 1365 size_t index_; local 2179 explicit HInputIterator(HInstruction* instruction) : instruction_(instruction), index_(0) {} in HInputIterator() 2181 bool Done() const { return index_ == instruction_->InputCount(); } in Done() 2182 HInstruction* Current() const { return instruction_->InputAt(index_); } in Current() 2183 void Advance() { index_++; } in Advance() 2187 size_t index_; variable 2838 index_(index) { in HClassTableGet() [all …]
|
D | load_store_elimination.cc | 129 index_(index), in HeapLocation() 144 HInstruction* GetIndex() const { return index_; } in GetIndex() 153 return index_ != nullptr; in IsArrayElement() 167 HInstruction* const index_; // index of an array element. member in art::HeapLocation
|
D | code_generator_arm64.cc | 639 index_(index) { in ReadBarrierForHeapReferenceSlowPathARM64() 677 Location index = index_; in EmitNativeCode() 678 if (index_.IsValid()) { in EmitNativeCode() 682 Register index_reg = RegisterFrom(index_, Primitive::kPrimInt); in EmitNativeCode() 683 DCHECK(locations->GetLiveRegisters()->ContainsCoreRegister(index_.reg())); in EmitNativeCode() 684 if (codegen->IsCoreCalleeSaveRegister(index_.reg())) { in EmitNativeCode() 733 DCHECK(index_.IsRegisterPair()); in EmitNativeCode() 736 index = index_.ToLow(); in EmitNativeCode() 802 const Location index_; member in art::arm64::ReadBarrierForHeapReferenceSlowPathARM64
|
D | code_generator_arm.cc | 471 index_(index) { in ReadBarrierForHeapReferenceSlowPathARM() 504 Location index = index_; in EmitNativeCode() 505 if (index_.IsValid()) { in EmitNativeCode() 509 Register index_reg = index_.AsRegister<Register>(); in EmitNativeCode() 560 DCHECK(index_.IsRegisterPair()); in EmitNativeCode() 563 index = index_.ToLow(); in EmitNativeCode() 628 const Location index_; member in art::arm::ReadBarrierForHeapReferenceSlowPathARM
|
D | code_generator_x86.cc | 488 index_(index) { in ReadBarrierForHeapReferenceSlowPathX86() 521 Location index = index_; in EmitNativeCode() 522 if (index_.IsValid()) { in EmitNativeCode() 526 Register index_reg = index_.AsRegister<Register>(); in EmitNativeCode() 577 DCHECK(index_.IsRegisterPair()); in EmitNativeCode() 580 index = index_.ToLow(); in EmitNativeCode() 645 const Location index_; member in art::x86::ReadBarrierForHeapReferenceSlowPathX86
|
D | code_generator_x86_64.cc | 509 index_(index) { in ReadBarrierForHeapReferenceSlowPathX86_64() 542 Location index = index_; in EmitNativeCode() 543 if (index_.IsValid()) { in EmitNativeCode() 547 Register index_reg = index_.AsRegister<CpuRegister>().AsRegister(); in EmitNativeCode() 598 DCHECK(index_.IsRegister()); in EmitNativeCode() 665 const Location index_; member in art::x86_64::ReadBarrierForHeapReferenceSlowPathX86_64
|
/art/runtime/base/ |
D | hash_set.h | 67 BaseIterator(HashSetType* hash_set, size_t index) : index_(index), hash_set_(hash_set) { in BaseIterator() 73 return hash_set_ == other.hash_set_ && this->index_ == other.index_; 81 this->index_ = this->NextNonEmptySlot(this->index_, hash_set_); 87 this->index_ = this->NextNonEmptySlot(this->index_, hash_set_); 92 DCHECK(!hash_set_->IsFreeSlot(this->index_)); 93 return hash_set_->ElementForIndex(this->index_); 103 size_t index_; 274 if (num_buckets_ != 0 && IsFreeSlot(ret.index_)) { in begin() 283 if (num_buckets_ != 0 && IsFreeSlot(ret.index_)) { in begin() 318 size_t empty_index = it.index_; in Erase()
|
/art/runtime/lambda/ |
D | closure.h | 104 size_t index_; in PACKED() member
|
D | closure.cc | 82 result.index_ = count; in ParseTypeDescriptor()
|
/art/compiler/driver/ |
D | compiler_driver.cc | 1866 : index_(0), in ParallelCompilationManager() 1903 index_.StoreRelaxed(begin); in ForAll() 1921 return index_.FetchAndAddSequentiallyConsistent(1); in NextIndex() 1953 AtomicInteger index_; member in art::ParallelCompilationManager
|
/art/runtime/ |
D | class_linker.cc | 1944 : arr_(arr), index_(0) {} in GetClassInToObjectArray() 1947 ++index_; in operator ()() 1948 if (index_ <= arr_->GetLength()) { in operator ()() 1949 arr_->Set(index_ - 1, klass); in operator ()() 1956 return index_ <= arr_->GetLength(); in Succeeded() 1961 int32_t index_; member in art::GetClassInToObjectArray
|