Searched refs:code_offset (Results 1 - 18 of 18) sorted by relevance

/art/runtime/
H A Dstack_map.cc116 uint32_t code_offset,
139 code_offset,
188 uint32_t code_offset,
195 << " [native_pc=0x" << code_offset + GetNativePcOffset(stack_map_encoding) << "]"
115 Dump(VariableIndentationOutputStream* vios, uint32_t code_offset, uint16_t number_of_dex_registers, bool dump_stack_maps) const argument
185 Dump(VariableIndentationOutputStream* vios, const CodeInfo& code_info, const CodeInfoEncoding& encoding, uint32_t code_offset, uint16_t number_of_dex_registers, const std::string& header_suffix) const argument
H A Doat_file.h134 OatMethod(const uint8_t* base, const uint32_t code_offset) argument
135 : begin_(base), code_offset_(code_offset) {
H A Doat.h174 OatMethodOffsets(uint32_t code_offset = 0);
H A Doat.cc514 OatMethodOffsets::OatMethodOffsets(uint32_t code_offset) : code_offset_(code_offset) { argument
H A Ddex_file_verifier.h71 uint32_t code_offset,
H A Dstack_map.h865 uint32_t code_offset,
1242 // Dump this CodeInfo object on `os`. `code_offset` is the (absolute)
1248 uint32_t code_offset,
H A Ddex_file_verifier.cc537 uint32_t code_offset,
566 bool has_code = (code_offset != 0);
533 CheckClassDataItemMethod(uint32_t idx, uint32_t access_flags, uint32_t class_access_flags, uint16_t class_type_index, uint32_t code_offset, std::unordered_set<uint32_t>* direct_method_indexes, bool expect_direct) argument
H A Dclass_linker.cc7946 base -= sizeof(void*); // Move backward so that code_offset != 0.
7947 const uint32_t code_offset = sizeof(void*); local
7948 return OatFile::OatMethod(base, code_offset);
/art/oatdump/
H A Doatdump.cc563 uint32_t code_offset = oat_method.GetCodeOffset(); local
565 code_offset &= ~0x1;
567 offsets_.insert(code_offset);
798 uint32_t code_offset = oat_method.GetCodeOffset(); local
801 if (resolved_addr2instr_ > code_offset + code_size) {
845 vios->Stream() << StringPrintf("code_offset: 0x%08x ", code_offset);
922 uint32_t aligned_code_begin = AlignCodeOffset(code_offset);
928 vios->Stream() << StringPrintf("(code_offset=0x%08x size_offset=0x%08x size=%u)%s\n",
929 code_offset,
[all...]
/art/compiler/
H A Doat_writer.cc732 // to 0-offset and we need to adjust it by code_offset.
733 uint32_t code_offset = quick_code_offset - thumb_offset;
734 if (vmap_table_offset != 0u && code_offset != 0u) {
735 vmap_table_offset += code_offset;
736 DCHECK_LT(vmap_table_offset, code_offset) << "Overflow in oat offsets";
779 info.code_address = code_offset - writer_->oat_header_->GetExecutableOffset();
1289 uint32_t code_offset = oat_class->method_offsets_[method_offsets_index_].code_offset_;
1299 map_offset = (code_offset - compiled_method->CodeDelta()) - map_offset;
/art/runtime/verifier/
H A Dmethod_verifier.h452 bool VerifyInstruction(const Instruction* inst, uint32_t code_offset);
H A Dmethod_verifier.cc1099 bool MethodVerifier::VerifyInstruction(const Instruction* inst, uint32_t code_offset) { argument
1165 result = result && CheckArrayData(code_offset);
1168 result = result && CheckBranchTarget(code_offset);
1171 result = result && CheckSwitchTargets(code_offset);
/art/compiler/optimizing/
H A Dcode_generator_mips64.cc3465 MemberOffset code_offset = local
3468 __ LoadFromOffset(kLoadDoubleword, T9, temp, code_offset.Int32Value());
H A Dcode_generator_arm64.cc4281 MemberOffset code_offset = ArtMethod::EntryPointFromQuickCompiledCodeOffset(kArm64WordSize);
4283 __ Ldr(lr, MemOperand(XRegisterFrom(temp), code_offset.Int32Value()));
H A Dcode_generator_mips.cc4300 MemberOffset code_offset = ArtMethod::EntryPointFromQuickCompiledCodeOffset(kMipsWordSize); local
4302 __ LoadFromOffset(kLoadWord, T9, temp, code_offset.Int32Value());
H A Dcode_generator_arm.cc3500 MemberOffset code_offset = ArtMethod::EntryPointFromQuickCompiledCodeOffset(kArmWordSize); local
3502 __ LoadFromOffset(kLoadWord, LR, temp, code_offset.Int32Value());
H A Dcode_generator_x86.cc4000 MemberOffset code_offset = ArtMethod::EntryPointFromQuickCompiledCodeOffset(kX86WordSize); local
4002 __ call(Address(temp, code_offset.Int32Value()));
H A Dcode_generator_x86_64.cc3907 MemberOffset code_offset = ArtMethod::EntryPointFromQuickCompiledCodeOffset(kX86_64WordSize); local
3909 __ call(Address(temp, code_offset.SizeValue()));

Completed in 296 milliseconds