Searched defs:oat_method (Results 1 - 3 of 3) sorted by relevance

/art/compiler/
H A Dcommon_compiler_test.cc213 OatFile::OatMethod oat_method = CreateOatMethod(method_code, nullptr); local
214 oat_method.LinkMethod(method);
225 OatFile::OatMethod oat_method = CreateOatMethod(method_code, nullptr); local
226 oat_method.LinkMethod(method);
231 OatFile::OatMethod oat_method = CreateOatMethod(method_code, nullptr); local
232 oat_method.LinkMethod(method);
/art/oatdump/
H A Doatdump.cc343 void AddOffsets(const OatFile::OatMethod& oat_method) { argument
344 uint32_t code_offset = oat_method.GetCodeOffset();
349 offsets_.insert(oat_method.GetMappingTableOffset());
350 offsets_.insert(oat_method.GetVmapTableOffset());
351 offsets_.insert(oat_method.GetNativeGcMapOffset());
467 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_index); local
483 uint32_t code_offset = oat_method.GetCodeOffset();
485 uint32_t aligned_code_begin = AlignCodeOffset(oat_method.GetCodeOffset());
496 *indent2_os << StringPrintf("%p ", oat_method.GetNativeGcMap());
498 uint32_t gc_map_offset = oat_method
666 DumpVmap(std::ostream& os, const OatFile::OatMethod& oat_method) argument
693 DescribeVReg(std::ostream& os, const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item, size_t reg, VRegKind kind) argument
714 DumpGcMapRegisters(std::ostream& os, const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item, size_t num_regs, const uint8_t* reg_bitmap) argument
738 DumpGcMap(std::ostream& os, const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item) argument
765 DumpMappingTable(std::ostream& os, const OatFile::OatMethod& oat_method) argument
793 DumpMappingAtOffset(std::ostream& os, const OatFile::OatMethod& oat_method, size_t offset, bool suspend_point_mapping) argument
816 DumpGcMapAtNativePcOffset(std::ostream& os, const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item, size_t native_pc_offset) argument
846 DumpVRegsAtDexPc(std::ostream& os, verifier::MethodVerifier* verifier, const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item, uint32_t dex_pc) argument
913 DumpCode(std::ostream& os, verifier::MethodVerifier* verifier, const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item, bool bad_input, size_t code_size) argument
[all...]
/art/runtime/
H A Dclass_linker.cc2365 bool ClassLinker::FindOatMethodFor(mirror::ArtMethod* method, OatFile::OatMethod* oat_method) { argument
2366 DCHECK(oat_method != nullptr);
2402 *oat_method = oat_class.GetOatMethod(oat_method_index);
2412 OatFile::OatMethod oat_method; local
2414 if (FindOatMethodFor(method, &oat_method)) {
2415 result = oat_method.GetQuickCode();
2443 OatFile::OatMethod oat_method; local
2446 if (FindOatMethodFor(method, &oat_method)) {
2447 result = oat_method.GetPortableCode();
2448 quick_code = oat_method
2549 OatFile::OatMethod oat_method = oat_class.GetOatMethod(method_index); local
2606 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(method_index); local
[all...]

Completed in 298 milliseconds