1 //===-- ABI.cpp -----------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
9 #include "lldb/Target/ABI.h"
10 #include "lldb/Core/PluginManager.h"
11 #include "lldb/Core/Value.h"
12 #include "lldb/Core/ValueObjectConstResult.h"
13 #include "lldb/Expression/ExpressionVariable.h"
14 #include "lldb/Symbol/CompilerType.h"
15 #include "lldb/Symbol/TypeSystem.h"
16 #include "lldb/Target/Target.h"
17 #include "lldb/Target/Thread.h"
18 #include "lldb/Utility/Log.h"
19 #include "llvm/Support/TargetRegistry.h"
20 #include <cctype>
21 
22 using namespace lldb;
23 using namespace lldb_private;
24 
25 ABISP
FindPlugin(lldb::ProcessSP process_sp,const ArchSpec & arch)26 ABI::FindPlugin(lldb::ProcessSP process_sp, const ArchSpec &arch) {
27   ABISP abi_sp;
28   ABICreateInstance create_callback;
29 
30   for (uint32_t idx = 0;
31        (create_callback = PluginManager::GetABICreateCallbackAtIndex(idx)) !=
32        nullptr;
33        ++idx) {
34     abi_sp = create_callback(process_sp, arch);
35 
36     if (abi_sp)
37       return abi_sp;
38   }
39   abi_sp.reset();
40   return abi_sp;
41 }
42 
43 ABI::~ABI() = default;
44 
GetRegisterInfoByName(llvm::StringRef name,RegisterInfo & info)45 bool RegInfoBasedABI::GetRegisterInfoByName(llvm::StringRef name,
46                                             RegisterInfo &info) {
47   uint32_t count = 0;
48   const RegisterInfo *register_info_array = GetRegisterInfoArray(count);
49   if (register_info_array) {
50     uint32_t i;
51     for (i = 0; i < count; ++i) {
52       const char *reg_name = register_info_array[i].name;
53       if (reg_name == name) {
54         info = register_info_array[i];
55         return true;
56       }
57     }
58     for (i = 0; i < count; ++i) {
59       const char *reg_alt_name = register_info_array[i].alt_name;
60       if (reg_alt_name == name) {
61         info = register_info_array[i];
62         return true;
63       }
64     }
65   }
66   return false;
67 }
68 
GetReturnValueObject(Thread & thread,CompilerType & ast_type,bool persistent) const69 ValueObjectSP ABI::GetReturnValueObject(Thread &thread, CompilerType &ast_type,
70                                         bool persistent) const {
71   if (!ast_type.IsValid())
72     return ValueObjectSP();
73 
74   ValueObjectSP return_valobj_sp;
75 
76   return_valobj_sp = GetReturnValueObjectImpl(thread, ast_type);
77   if (!return_valobj_sp)
78     return return_valobj_sp;
79 
80   // Now turn this into a persistent variable.
81   // FIXME: This code is duplicated from Target::EvaluateExpression, and it is
82   // used in similar form in a couple
83   // of other places.  Figure out the correct Create function to do all this
84   // work.
85 
86   if (persistent) {
87     Target &target = *thread.CalculateTarget();
88     PersistentExpressionState *persistent_expression_state =
89         target.GetPersistentExpressionStateForLanguage(
90             ast_type.GetMinimumLanguage());
91 
92     if (!persistent_expression_state)
93       return {};
94 
95     ConstString persistent_variable_name =
96         persistent_expression_state->GetNextPersistentVariableName();
97 
98     lldb::ValueObjectSP const_valobj_sp;
99 
100     // Check in case our value is already a constant value
101     if (return_valobj_sp->GetIsConstant()) {
102       const_valobj_sp = return_valobj_sp;
103       const_valobj_sp->SetName(persistent_variable_name);
104     } else
105       const_valobj_sp =
106           return_valobj_sp->CreateConstantValue(persistent_variable_name);
107 
108     lldb::ValueObjectSP live_valobj_sp = return_valobj_sp;
109 
110     return_valobj_sp = const_valobj_sp;
111 
112     ExpressionVariableSP expr_variable_sp(
113         persistent_expression_state->CreatePersistentVariable(
114             return_valobj_sp));
115 
116     assert(expr_variable_sp);
117 
118     // Set flags and live data as appropriate
119 
120     const Value &result_value = live_valobj_sp->GetValue();
121 
122     switch (result_value.GetValueType()) {
123     case Value::eValueTypeHostAddress:
124     case Value::eValueTypeFileAddress:
125       // we don't do anything with these for now
126       break;
127     case Value::eValueTypeScalar:
128       expr_variable_sp->m_flags |=
129           ExpressionVariable::EVIsFreezeDried;
130       expr_variable_sp->m_flags |=
131           ExpressionVariable::EVIsLLDBAllocated;
132       expr_variable_sp->m_flags |=
133           ExpressionVariable::EVNeedsAllocation;
134       break;
135     case Value::eValueTypeLoadAddress:
136       expr_variable_sp->m_live_sp = live_valobj_sp;
137       expr_variable_sp->m_flags |=
138           ExpressionVariable::EVIsProgramReference;
139       break;
140     }
141 
142     return_valobj_sp = expr_variable_sp->GetValueObject();
143   }
144   return return_valobj_sp;
145 }
146 
GetReturnValueObject(Thread & thread,llvm::Type & ast_type,bool persistent) const147 ValueObjectSP ABI::GetReturnValueObject(Thread &thread, llvm::Type &ast_type,
148                                         bool persistent) const {
149   ValueObjectSP return_valobj_sp;
150   return_valobj_sp = GetReturnValueObjectImpl(thread, ast_type);
151   return return_valobj_sp;
152 }
153 
154 // specialized to work with llvm IR types
155 //
156 // for now we will specify a default implementation so that we don't need to
157 // modify other ABIs
GetReturnValueObjectImpl(Thread & thread,llvm::Type & ir_type) const158 lldb::ValueObjectSP ABI::GetReturnValueObjectImpl(Thread &thread,
159                                                   llvm::Type &ir_type) const {
160   ValueObjectSP return_valobj_sp;
161 
162   /* this is a dummy and will only be called if an ABI does not override this */
163 
164   return return_valobj_sp;
165 }
166 
PrepareTrivialCall(Thread & thread,lldb::addr_t sp,lldb::addr_t functionAddress,lldb::addr_t returnAddress,llvm::Type & returntype,llvm::ArrayRef<ABI::CallArgument> args) const167 bool ABI::PrepareTrivialCall(Thread &thread, lldb::addr_t sp,
168                              lldb::addr_t functionAddress,
169                              lldb::addr_t returnAddress, llvm::Type &returntype,
170                              llvm::ArrayRef<ABI::CallArgument> args) const {
171   // dummy prepare trivial call
172   llvm_unreachable("Should never get here!");
173 }
174 
GetFallbackRegisterLocation(const RegisterInfo * reg_info,UnwindPlan::Row::RegisterLocation & unwind_regloc)175 bool ABI::GetFallbackRegisterLocation(
176     const RegisterInfo *reg_info,
177     UnwindPlan::Row::RegisterLocation &unwind_regloc) {
178   // Did the UnwindPlan fail to give us the caller's stack pointer? The stack
179   // pointer is defined to be the same as THIS frame's CFA, so return the CFA
180   // value as the caller's stack pointer.  This is true on x86-32/x86-64 at
181   // least.
182   if (reg_info->kinds[eRegisterKindGeneric] == LLDB_REGNUM_GENERIC_SP) {
183     unwind_regloc.SetIsCFAPlusOffset(0);
184     return true;
185   }
186 
187   // If a volatile register is being requested, we don't want to forward the
188   // next frame's register contents up the stack -- the register is not
189   // retrievable at this frame.
190   if (RegisterIsVolatile(reg_info)) {
191     unwind_regloc.SetUndefined();
192     return true;
193   }
194 
195   return false;
196 }
197 
MakeMCRegisterInfo(const ArchSpec & arch)198 std::unique_ptr<llvm::MCRegisterInfo> ABI::MakeMCRegisterInfo(const ArchSpec &arch) {
199   std::string triple = arch.GetTriple().getTriple();
200   std::string lookup_error;
201   const llvm::Target *target =
202       llvm::TargetRegistry::lookupTarget(triple, lookup_error);
203   if (!target) {
204     LLDB_LOG(GetLogIfAllCategoriesSet(LIBLLDB_LOG_PROCESS),
205              "Failed to create an llvm target for {0}: {1}", triple,
206              lookup_error);
207     return nullptr;
208   }
209   std::unique_ptr<llvm::MCRegisterInfo> info_up(
210       target->createMCRegInfo(triple));
211   assert(info_up);
212   return info_up;
213 }
214 
AugmentRegisterInfo(RegisterInfo & info)215 void RegInfoBasedABI::AugmentRegisterInfo(RegisterInfo &info) {
216   if (info.kinds[eRegisterKindEHFrame] != LLDB_INVALID_REGNUM &&
217       info.kinds[eRegisterKindDWARF] != LLDB_INVALID_REGNUM)
218     return;
219 
220   RegisterInfo abi_info;
221   if (!GetRegisterInfoByName(info.name, abi_info))
222     return;
223 
224   if (info.kinds[eRegisterKindEHFrame] == LLDB_INVALID_REGNUM)
225     info.kinds[eRegisterKindEHFrame] = abi_info.kinds[eRegisterKindEHFrame];
226   if (info.kinds[eRegisterKindDWARF] == LLDB_INVALID_REGNUM)
227     info.kinds[eRegisterKindDWARF] = abi_info.kinds[eRegisterKindDWARF];
228   if (info.kinds[eRegisterKindGeneric] == LLDB_INVALID_REGNUM)
229     info.kinds[eRegisterKindGeneric] = abi_info.kinds[eRegisterKindGeneric];
230 }
231 
AugmentRegisterInfo(RegisterInfo & info)232 void MCBasedABI::AugmentRegisterInfo(RegisterInfo &info) {
233   uint32_t eh, dwarf;
234   std::tie(eh, dwarf) = GetEHAndDWARFNums(info.name);
235 
236   if (info.kinds[eRegisterKindEHFrame] == LLDB_INVALID_REGNUM)
237     info.kinds[eRegisterKindEHFrame] = eh;
238   if (info.kinds[eRegisterKindDWARF] == LLDB_INVALID_REGNUM)
239     info.kinds[eRegisterKindDWARF] = dwarf;
240   if (info.kinds[eRegisterKindGeneric] == LLDB_INVALID_REGNUM)
241     info.kinds[eRegisterKindGeneric] = GetGenericNum(info.name);
242 }
243 
244 std::pair<uint32_t, uint32_t>
GetEHAndDWARFNums(llvm::StringRef name)245 MCBasedABI::GetEHAndDWARFNums(llvm::StringRef name) {
246   std::string mc_name = GetMCName(name.str());
247   for (char &c : mc_name)
248     c = std::toupper(c);
249   int eh = -1;
250   int dwarf = -1;
251   for (unsigned reg = 0; reg < m_mc_register_info_up->getNumRegs(); ++reg) {
252     if (m_mc_register_info_up->getName(reg) == mc_name) {
253       eh = m_mc_register_info_up->getDwarfRegNum(reg, /*isEH=*/true);
254       dwarf = m_mc_register_info_up->getDwarfRegNum(reg, /*isEH=*/false);
255       break;
256     }
257   }
258   return std::pair<uint32_t, uint32_t>(eh == -1 ? LLDB_INVALID_REGNUM : eh,
259                                        dwarf == -1 ? LLDB_INVALID_REGNUM
260                                                    : dwarf);
261 }
262 
MapRegisterName(std::string & name,llvm::StringRef from_prefix,llvm::StringRef to_prefix)263 void MCBasedABI::MapRegisterName(std::string &name, llvm::StringRef from_prefix,
264                                  llvm::StringRef to_prefix) {
265   llvm::StringRef name_ref = name;
266   if (!name_ref.consume_front(from_prefix))
267     return;
268   uint64_t _;
269   if (name_ref.empty() || to_integer(name_ref, _, 10))
270     name = (to_prefix + name_ref).str();
271 }
272