Home
last modified time | relevance | path

Searched refs:abi_sp (Results 1 – 7 of 7) sorted by relevance

/external/llvm-project/lldb/source/Target/
DABI.cpp27 ABISP abi_sp; in FindPlugin() local
34 abi_sp = create_callback(process_sp, arch); in FindPlugin()
36 if (abi_sp) in FindPlugin()
37 return abi_sp; in FindPlugin()
39 abi_sp.reset(); in FindPlugin()
40 return abi_sp; in FindPlugin()
DThreadPlanStepOut.cpp514 lldb::ABISP abi_sp = m_process.GetABI(); in CalculateReturnValue() local
515 if (abi_sp) in CalculateReturnValue()
517 abi_sp->GetReturnValueObject(GetThread(), return_compiler_type); in CalculateReturnValue()
DStackFrame.cpp1540 ABISP abi_sp = frame.CalculateProcess()->GetABI(); in DoGuessValueAt() local
1541 if (!abi_sp) { in DoGuessValueAt()
1546 if (!abi_sp->GetPointerReturnRegister(return_register_name)) { in DoGuessValueAt()
/external/llvm-project/lldb/source/Plugins/UnwindAssembly/x86/
DUnwindAssembly-x86.cpp199 ABISP abi_sp = process_sp->GetABI(); in GetFastUnwindPlan() local
200 if (abi_sp) { in GetFastUnwindPlan()
201 return abi_sp->CreateDefaultUnwindPlan(unwind_plan); in GetFastUnwindPlan()
/external/llvm-project/lldb/source/API/
DSBTarget.cpp2369 ABISP abi_sp; in GetStackRedZoneSize() local
2372 abi_sp = process_sp->GetABI(); in GetStackRedZoneSize()
2374 abi_sp = ABI::FindPlugin(ProcessSP(), target_sp->GetArchitecture()); in GetStackRedZoneSize()
2375 if (abi_sp) in GetStackRedZoneSize()
2376 return abi_sp->GetRedZoneSize(); in GetStackRedZoneSize()
/external/llvm-project/lldb/source/Plugins/Process/gdb-remote/
DProcessGDBRemote.cpp581 if (ABISP abi_sp = ABI::FindPlugin(shared_from_this(), arch_to_use)) in BuildDynamicRegisterInfo() local
582 abi_sp->AugmentRegisterInfo(reg_info); in BuildDynamicRegisterInfo()
4278 GDBRemoteDynamicRegisterInfo &dyn_reg_info, ABISP abi_sp, in ParseRegisters() argument
4286 &reg_offset, &abi_sp](const XMLNode &reg_node) -> bool { in ParseRegisters()
4449 if (abi_sp) in ParseRegisters()
4450 abi_sp->AugmentRegisterInfo(reg_info); in ParseRegisters()
/external/llvm-project/lldb/source/Commands/
DCommandObjectTarget.cpp3576 ABISP abi_sp = process->GetABI(); in DoExecute() local
3577 if (abi_sp) { in DoExecute()
3579 if (abi_sp->CreateDefaultUnwindPlan(arch_default)) { in DoExecute()
3587 if (abi_sp->CreateFunctionEntryUnwindPlan(arch_entry)) { in DoExecute()