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

/art/compiler/
H A Dcommon_compiler_test.cc208 OatFile::OatMethod oat_method = CreateOatMethod(method_code); local
209 oat_method.LinkMethod(method);
220 OatFile::OatMethod oat_method = CreateOatMethod(method_code); local
221 oat_method.LinkMethod(method);
226 OatFile::OatMethod oat_method = CreateOatMethod(method_code); local
227 oat_method.LinkMethod(method);
/art/oatdump/
H A Doatdump.cc350 void AddOffsets(const OatFile::OatMethod& oat_method) { argument
351 uint32_t code_offset = oat_method.GetCodeOffset();
356 offsets_.insert(oat_method.GetMappingTableOffset());
357 offsets_.insert(oat_method.GetVmapTableOffset());
358 offsets_.insert(oat_method.GetGcMapOffset());
474 const OatFile::OatMethod oat_method = oat_class.GetOatMethod(class_method_index); local
490 uint32_t code_offset = oat_method.GetCodeOffset();
492 uint32_t aligned_code_begin = AlignCodeOffset(oat_method.GetCodeOffset());
503 *indent2_os << StringPrintf("%p ", oat_method.GetGcMap());
505 uint32_t gc_map_offset = oat_method
673 DumpVmap(std::ostream& os, const OatFile::OatMethod& oat_method) argument
700 DescribeVReg(std::ostream& os, const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item, size_t reg, VRegKind kind) argument
721 DumpGcMapRegisters(std::ostream& os, const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item, size_t num_regs, const uint8_t* reg_bitmap) argument
745 DumpGcMap(std::ostream& os, const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item) argument
772 DumpMappingTable(std::ostream& os, const OatFile::OatMethod& oat_method) argument
800 DumpMappingAtOffset(std::ostream& os, const OatFile::OatMethod& oat_method, size_t offset, bool suspend_point_mapping) argument
823 DumpGcMapAtNativePcOffset(std::ostream& os, const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item, size_t native_pc_offset) argument
853 DumpVRegsAtDexPc(std::ostream& os, verifier::MethodVerifier* verifier, const OatFile::OatMethod& oat_method, const DexFile::CodeItem* code_item, uint32_t dex_pc) argument
920 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.cc2392 bool ClassLinker::FindOatMethodFor(mirror::ArtMethod* method, OatFile::OatMethod* oat_method) { argument
2393 DCHECK(oat_method != nullptr);
2429 *oat_method = oat_class.GetOatMethod(oat_method_index);
2439 OatFile::OatMethod oat_method; local
2441 if (FindOatMethodFor(method, &oat_method)) {
2442 result = oat_method.GetQuickCode();
2470 OatFile::OatMethod oat_method; local
2473 if (FindOatMethodFor(method, &oat_method)) {
2474 result = oat_method.GetPortableCode();
2475 quick_code = oat_method
2497 OatFile::OatMethod oat_method; local
2585 OatFile::OatMethod oat_method = oat_class.GetOatMethod(method_index); local
2642 const OatFile::OatMethod oat_method = oat_class->GetOatMethod(method_index); local
[all...]

Completed in 140 milliseconds