Home
last modified time | relevance | path

Searched refs:out_method (Results 1 – 8 of 8) sorted by relevance

/art/compiler/jit/
Djit_compiler.cc208 OatFile::OatMethod* out_method) { in AddToCodeCache() argument
253 *out_method = OatFile::OatMethod(base, code_offset); in AddToCodeCache()
254 DCHECK_EQ(out_method->GetGcMap(), gc_map_ptr); in AddToCodeCache()
255 DCHECK_EQ(out_method->GetMappingTable(), mapping_table_ptr); in AddToCodeCache()
256 DCHECK_EQ(out_method->GetVmapTable(), vmap_table_ptr); in AddToCodeCache()
257 DCHECK_EQ(out_method->GetFrameSizeInBytes(), compiled_method->GetFrameSizeInBytes()); in AddToCodeCache()
258 DCHECK_EQ(out_method->GetCoreSpillMask(), compiled_method->GetCoreSpillMask()); in AddToCodeCache()
259 DCHECK_EQ(out_method->GetFpSpillMask(), compiled_method->GetFpSpillMask()); in AddToCodeCache()
Djit_compiler.h45 OatFile::OatMethod* out_method) SHARED_LOCKS_REQUIRED(Locks::mutator_lock_);
/art/runtime/arch/mips/
Dfault_handler_mips.cc43 ArtMethod** out_method, in GetMethodAndReturnPcAndSp() argument
59 *out_method = reinterpret_cast<ArtMethod*>(sc->sc_regs[4]); // A0 register in GetMethodAndReturnPcAndSp()
62 *out_method = *reinterpret_cast<ArtMethod**>(*out_sp); in GetMethodAndReturnPcAndSp()
/art/runtime/arch/mips64/
Dfault_handler_mips64.cc43 ArtMethod** out_method, in GetMethodAndReturnPcAndSp() argument
59 *out_method = reinterpret_cast<ArtMethod*>(sc->sc_regs[4]); // A0 register in GetMethodAndReturnPcAndSp()
62 *out_method = *reinterpret_cast<ArtMethod**>(*out_sp); in GetMethodAndReturnPcAndSp()
/art/runtime/arch/arm/
Dfault_handler_arm.cc68 ArtMethod** out_method, in GetMethodAndReturnPcAndSp() argument
84 *out_method = reinterpret_cast<ArtMethod*>(sc->arm_r0); in GetMethodAndReturnPcAndSp()
87 *out_method = reinterpret_cast<ArtMethod*>(reinterpret_cast<uintptr_t*>(*out_sp)[0]); in GetMethodAndReturnPcAndSp()
101 *out_method = nullptr; in GetMethodAndReturnPcAndSp()
/art/runtime/arch/x86/
Dfault_handler_x86.cc252 ArtMethod** out_method, in GetMethodAndReturnPcAndSp() argument
271 *out_method = reinterpret_cast<ArtMethod*>(uc->CTX_METHOD); in GetMethodAndReturnPcAndSp()
274 *out_method = *reinterpret_cast<ArtMethod**>(*out_sp); in GetMethodAndReturnPcAndSp()
282 *out_method = nullptr; in GetMethodAndReturnPcAndSp()
289 *out_method = nullptr; in GetMethodAndReturnPcAndSp()
/art/runtime/arch/arm64/
Dfault_handler_arm64.cc57 ArtMethod** out_method, in GetMethodAndReturnPcAndSp() argument
73 *out_method = reinterpret_cast<ArtMethod*>(sc->regs[0]); in GetMethodAndReturnPcAndSp()
76 *out_method = *reinterpret_cast<ArtMethod**>(*out_sp); in GetMethodAndReturnPcAndSp()
/art/runtime/
Dfault_handler.h58 void GetMethodAndReturnPcAndSp(siginfo_t* siginfo, void* context, ArtMethod** out_method,