Searched refs:dex_file_ (Results 1 - 25 of 30) sorted by relevance

12

/art/compiler/optimizing/
H A Dnodes_arm.h26 dex_file_(&dex_file),
41 return *dex_file_;
51 const DexFile* dex_file_; member in class:art::HArmDexCacheArraysBase
H A Dbuilder.h48 dex_file_(dex_file),
74 dex_file_(nullptr),
104 const DexFile* const dex_file_; member in class:art::HGraphBuilder
H A Dblock_builder.h34 dex_file_(dex_file),
74 const DexFile* const dex_file_; member in class:art::HBasicBlockBuilder
H A Dbuilder.cc54 << PrettyMethod(dex_compilation_unit_->GetDexMethodIndex(), *dex_file_)
64 << PrettyMethod(dex_compilation_unit_->GetDexMethodIndex(), *dex_file_)
H A Dinstruction_builder.cc354 dex_file_->DecodeDebugPositionInfo(&code_item_, Callback::Position, locations);
437 dex_file_->GetMethodId(dex_compilation_unit_->GetDexMethodIndex());
440 HParameterValue* parameter = new (arena_) HParameterValue(*dex_file_,
450 const DexFile::ProtoId& proto = dex_file_->GetMethodPrototype(referrer_method_id);
451 const DexFile::TypeList* arg_types = dex_file_->GetProtoParameters(proto);
454 *dex_file_,
775 const char* descriptor = dex_file_->GetMethodShorty(method_idx);
785 MethodReference target_method(dex_file_, method_idx);
790 dex_file_,
855 target_method = MethodReference(dex_file_, method_id
[all...]
H A Dinstruction_builder.h49 dex_file_(dex_file),
272 const DexFile* const dex_file_; member in class:art::HInstructionBuilder
H A Dblock_builder.cc304 new (arena_) TryCatchInformation(iterator.GetHandlerTypeIndex(), *dex_file_));
/art/runtime/
H A Ddex_file-inl.h61 if (dex_file_ == nullptr) {
62 return rhs.dex_file_ == nullptr;
64 if (rhs.dex_file_ == nullptr) {
67 if (dex_file_ == rhs.dex_file_) {
71 const char* lhs_shorty_data = dex_file_->StringDataAndUtf16LengthByIdx(proto_id_->shorty_idx_,
77 rhs.dex_file_->StringDataAndUtf16LengthByIdx(rhs.proto_id_->shorty_idx_,
85 const DexFile::TypeId& return_type_id = dex_file_->GetTypeId(proto_id_->return_type_idx_);
87 rhs.dex_file_->GetTypeId(rhs.proto_id_->return_type_idx_);
88 if (!DexFileStringEquals(dex_file_, return_type_i
[all...]
H A Dtype_lookup_table.cc42 return RawDataLength(dex_file_);
73 : dex_file_(dex_file),
110 : dex_file_(dex_file),
H A Dtype_lookup_table.h125 const uint8_t* ptr = dex_file_.Begin() + str_offset;
157 const DexFile& dex_file_; member in class:art::TypeLookupTable
H A Doat_file_manager.cc145 dex_file_(dex_file),
164 return dex_file_ < rhs.dex_file_;
168 return current_class_index_ + 1 < dex_file_->NumClassDefs();
173 cached_descriptor_ = GetClassDescriptor(dex_file_, current_class_index_);
185 return dex_file_;
196 const DexFile* dex_file_; member in class:art::DexFileAndClassPair
H A Ddex_file_verifier.cc74 if (UNLIKELY(!CheckIndex(idx, dex_file_->NumStringIds(), error_string))) {
77 return dex_file_->StringDataByIdx(idx);
81 if (UNLIKELY(!CheckIndex(type_idx, dex_file_->NumTypeIds(), error_string))) {
84 const DexFile::TypeId& type_id = dex_file_->GetTypeId(type_idx);
90 if (UNLIKELY(!CheckIndex(idx, dex_file_->NumFieldIds(), error_string))) {
93 return &dex_file_->GetFieldId(idx);
97 if (UNLIKELY(!CheckIndex(idx, dex_file_->NumMethodIds(), err_string))) {
100 return &dex_file_->GetMethodId(idx);
901 ClassDataItemIterator it(*dex_file_, ptr_);
1656 ClassDataItemIterator it(*dex_file_, pt
[all...]
H A Ddex_file.h1294 : dex_file_(dex_file), size_(0), pos_(0) {
1295 type_list_ = dex_file_.GetProtoParameters(proto_id);
1307 return dex_file_.StringByTypeIdx(GetTypeIdx());
1310 const DexFile& dex_file_; member in class:art::DexFileParameterIterator
1334 Signature(const DexFile* dex, const DexFile::ProtoId& proto) : dex_file_(dex), proto_id_(&proto) {
1337 Signature() : dex_file_(nullptr), proto_id_(nullptr) {
1342 const DexFile* const dex_file_; member in class:art::Signature
1351 : dex_file_(dex_file), pos_(0), ptr_pos_(raw_class_data_item), last_idx_(0) {
1460 return dex_file_.GetCodeItem(method_.code_off_);
1528 const DexFile& dex_file_; member in class:art::ClassDataItemIterator
1591 const DexFile& dex_file_; member in class:art::EncodedStaticFieldValueIterator
[all...]
H A Ddex_file_verifier.h38 : dex_file_(dex_file), begin_(begin), size_(size), location_(location),
175 const DexFile* const dex_file_; member in class:art::DexFileVerifier
/art/dexdump/
H A Ddexdump_test.cc40 dex_file_ = GetLibCoreDexFileNames()[0];
53 std::string dex_file_; member in class:art::DexDumpTest
64 ASSERT_FALSE(Exec({"-o", "/joho", dex_file_}, &error_msg)) << error_msg;
69 ASSERT_FALSE(Exec({"-c", "-i", dex_file_}, &error_msg)) << error_msg;
75 dex_file_}, &error_msg)) << error_msg;
81 dex_file_}, &error_msg)) << error_msg;
/art/dexlist/
H A Ddexlist_test.cc40 dex_file_ = GetLibCoreDexFileNames()[0];
57 std::string dex_file_; member in class:art::DexListTest
68 ASSERT_FALSE(Exec({"-o", "/joho", dex_file_}, &error_msg)) << error_msg;
73 ASSERT_FALSE(Exec({"-m", "joho", dex_file_}, &error_msg)) << error_msg;
78 ASSERT_TRUE(Exec({"-o", "/dev/null", dex_file_}, &error_msg)) << error_msg;
84 dex_file_}, &error_msg)) << error_msg;
/art/compiler/driver/
H A Ddex_compilation_unit.h56 return dex_file_;
72 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_);
73 return dex_file_->GetMethodShorty(method_id);
77 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_);
78 return dex_file_->GetMethodShorty(method_id, shorty_len);
120 const DexFile* const dex_file_; member in class:art::DexCompilationUnit
H A Ddex_compilation_unit.cc36 dex_file_(&dex_file),
48 symbol_ += MangleForJni(PrettyMethod(dex_method_idx_, *dex_file_));
/art/runtime/verifier/
H A Dmethod_verifier.cc521 dex_file_(dex_file),
694 const DexFile::MethodId& method_id = dex_file_->GetMethodId(dex_method_idx_);
695 const char* method_name = dex_file_->StringDataByIdx(method_id.name_idx_);
708 LOG(WARNING) << "Method " << PrettyMethod(dex_method_idx_, *dex_file_)
807 if (dex_file_->GetVersion() >= DexFile::kDefaultMethodsVersion) {
921 std::string location(StringPrintf("%s: [0x%X] ", PrettyMethod(dex_method_idx_, *dex_file_).c_str(),
929 return info_messages_ << "VFY: " << PrettyMethod(dex_method_idx_, *dex_file_)
1049 mirror::Class* exception_type = linker->ResolveType(*dex_file_,
1232 if (idx >= dex_file_->GetHeader().field_ids_size_) {
1234 << dex_file_
[all...]
H A Dmethod_verifier-inl.h58 return MethodReference(dex_file_, dex_method_idx_);
H A Dmethod_verifier.h186 return dex_file_->GetVersion();
760 const DexFile* const dex_file_; // The dex file containing the method. member in class:art::verifier::MethodVerifier
/art/runtime/mirror/
H A Ddex_cache.h191 return GetFieldPtr<const DexFile*>(OFFSET_OF_OBJECT_MEMBER(DexCache, dex_file_));
195 SetFieldPtr<false>(OFFSET_OF_OBJECT_MEMBER(DexCache, dex_file_), dex_file);
221 uint64_t dex_file_; // const DexFile* member in class:art::mirror::FINAL
/art/compiler/
H A Doat_writer.cc535 dex_file_(nullptr),
540 DCHECK(dex_file_ == nullptr);
542 dex_file_ = dex_file;
551 dex_file_ = nullptr;
570 const DexFile* dex_file_;
628 writer_->compiler_driver_->GetCompiledMethod(MethodReference(dex_file_, method_idx));
637 ClassReference class_ref(dex_file_, class_def_index_);
693 MethodReference method_ref(dex_file_, it.GetMemberIndex());
769 info.dex_file = dex_file_;
818 offset_, compiled_method, MethodReference(dex_file_, i
[all...]
/art/compiler/dex/quick/
H A Ddex_file_method_inliner.cc669 dex_file_(nullptr) {
819 DCHECK(dex_file_ == nullptr);
828 dex_file_ = dex_file;
837 if (PrettyMethod(method_idx, *dex_file_) == "int java.lang.String.length()") {
840 LOG(WARNING) << "Inliner: " << PrettyMethod(method_idx, *dex_file_) << " already inline";
H A Ddex_file_method_inliner.h391 const DexFile* dex_file_; member in class:art::DexFileMethodInliner

Completed in 3875 milliseconds

12