Searched refs:index_ (Results 26 - 35 of 35) sorted by relevance

12

/art/compiler/optimizing/
H A Dcode_generator_x86.cc232 __ movl(calling_convention.GetRegisterAt(0), Immediate(string_index.index_));
272 __ movl(calling_convention.GetRegisterAt(0), Immediate(type_index.index_));
706 index_(index) {
739 // We may have to change the index's value, but as `index_` is a
742 Location index = index_;
743 if (index_.IsValid()) {
744 // Handle `index_` for HArrayGet and UnsafeGetObject/UnsafeGetObjectVolatile intrinsics.
747 Register index_reg = index_.AsRegister<Register>();
777 // The initial register stored in `index_` has already been
793 // intrinsics, `index_` i
867 const Location index_; member in class:art::x86::ReadBarrierForHeapReferenceSlowPathX86
[all...]
H A Dcode_generator_x86_64.cc252 __ movl(CpuRegister(RAX), Immediate(cls_->GetTypeIndex().index_));
312 __ movl(CpuRegister(RAX), Immediate(string_index.index_));
727 index_(index) {
760 // We may have to change the index's value, but as `index_` is a
763 Location index = index_;
764 if (index_.IsValid()) {
765 // Handle `index_` for HArrayGet and UnsafeGetObject/UnsafeGetObjectVolatile intrinsics.
767 // Compute real offset and store it in index_.
768 Register index_reg = index_.AsRegister<CpuRegister>().AsRegister();
798 // The initial register stored in `index_` ha
890 const Location index_; member in class:art::x86_64::ReadBarrierForHeapReferenceSlowPathX86_64
[all...]
H A Dcode_generator.cc523 MoveConstant(locations->GetTemp(0), cls->GetTypeIndex().index_);
/art/runtime/verifier/
H A Dmethod_verifier.cc1295 if (idx.index_ >= dex_file_->GetHeader().type_ids_size_) {
1296 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad type index " << idx.index_ << " (max "
1332 if (idx.index_ >= dex_file_->GetHeader().type_ids_size_) {
1333 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad type index " << idx.index_ << " (max "
1341 if (idx.index_ >= dex_file_->GetHeader().type_ids_size_) {
1342 Fail(VERIFY_ERROR_BAD_CLASS_HARD) << "bad type index " << idx.index_ << " (max "
/art/compiler/driver/
H A Dcompiler_driver.cc1536 : index_(0),
1573 index_.StoreRelaxed(begin);
1591 return index_.FetchAndAddSequentiallyConsistent(1);
1623 AtomicInteger index_; member in class:art::ParallelCompilationManager
/art/runtime/
H A Ddex_file_test.cc474 EXPECT_EQ(java_lang_dex_file_->GetIndexForTypeId(*type_id).index_, i);
H A Doat_file_manager.cc174 uint16_t type_idx = class_def.class_idx_.index_;
H A Dclass_linker.cc2111 : arr_(arr), index_(0) {}
2114 ++index_;
2115 if (index_ <= arr_->GetLength()) {
2116 arr_->Set(index_ - 1, klass);
2123 return index_ <= arr_->GetLength();
2128 int32_t index_; member in class:art::GetClassInToObjectArray
8954 << type_idx.index_ << " in dex " << location;
/art/runtime/mirror/
H A Dclass.h1179 SetField32<false>(OFFSET_OF_OBJECT_MEMBER(Class, dex_type_idx_), type_idx.index_);
/art/oatdump/
H A Doatdump.cc964 class_def_index, descriptor, oat_class_offset, class_def.class_idx_.index_)

Completed in 451 milliseconds

12