| Greg Clayton | 078daac | 2011-04-25 21:07:40 +0000 | [diff] [blame] | 1 | //===-- UnwindAssembly-x86.cpp ----------------------------------*- C++ -*-===// | 
| Jason Molenda | fbcb7f2 | 2010-09-10 07:49:16 +0000 | [diff] [blame] | 2 | // | 
|  | 3 | //                     The LLVM Compiler Infrastructure | 
|  | 4 | // | 
|  | 5 | // This file is distributed under the University of Illinois Open Source | 
|  | 6 | // License. See LICENSE.TXT for details. | 
|  | 7 | // | 
|  | 8 | //===----------------------------------------------------------------------===// | 
|  | 9 |  | 
| Greg Clayton | 078daac | 2011-04-25 21:07:40 +0000 | [diff] [blame] | 10 | #include "UnwindAssembly-x86.h" | 
| Jason Molenda | 74b8fbc | 2016-09-29 01:00:16 +0000 | [diff] [blame] | 11 | #include "x86AssemblyInspectionEngine.h" | 
| Jason Molenda | fbcb7f2 | 2010-09-10 07:49:16 +0000 | [diff] [blame] | 12 |  | 
| Jason Molenda | a8399a8 | 2012-10-10 01:45:33 +0000 | [diff] [blame] | 13 | #include "llvm-c/Disassembler.h" | 
| Zachary Turner | af0f45f | 2015-03-03 21:05:17 +0000 | [diff] [blame] | 14 | #include "llvm/ADT/STLExtras.h" | 
| Johnny Chen | 62212f0 | 2011-11-29 01:09:49 +0000 | [diff] [blame] | 15 | #include "llvm/Support/TargetSelect.h" | 
| Greg Clayton | dc5eb69 | 2011-04-25 18:36:36 +0000 | [diff] [blame] | 16 |  | 
| Jason Molenda | fbcb7f2 | 2010-09-10 07:49:16 +0000 | [diff] [blame] | 17 | #include "lldb/Core/Address.h" | 
| Jason Molenda | fbcb7f2 | 2010-09-10 07:49:16 +0000 | [diff] [blame] | 18 | #include "lldb/Core/ArchSpec.h" | 
|  | 19 | #include "lldb/Core/PluginManager.h" | 
| Greg Clayton | dc5eb69 | 2011-04-25 18:36:36 +0000 | [diff] [blame] | 20 | #include "lldb/Symbol/UnwindPlan.h" | 
| Zachary Turner | 32abc6e | 2015-03-03 19:23:09 +0000 | [diff] [blame] | 21 | #include "lldb/Target/ABI.h" | 
| Jason Molenda | fbcb7f2 | 2010-09-10 07:49:16 +0000 | [diff] [blame] | 22 | #include "lldb/Target/ExecutionContext.h" | 
|  | 23 | #include "lldb/Target/Process.h" | 
|  | 24 | #include "lldb/Target/RegisterContext.h" | 
| Jason Molenda | fbcb7f2 | 2010-09-10 07:49:16 +0000 | [diff] [blame] | 25 | #include "lldb/Target/Target.h" | 
| Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 26 | #include "lldb/Target/Thread.h" | 
| Greg Clayton | 7be2542 | 2011-04-25 21:14:26 +0000 | [diff] [blame] | 27 | #include "lldb/Target/UnwindAssembly.h" | 
| Zachary Turner | bf9a773 | 2017-02-02 21:39:50 +0000 | [diff] [blame] | 28 | #include "lldb/Utility/Error.h" | 
| Jason Molenda | a056771 | 2015-01-10 04:01:03 +0000 | [diff] [blame] | 29 | #include "lldb/Utility/RegisterNumber.h" | 
| Jason Molenda | fbcb7f2 | 2010-09-10 07:49:16 +0000 | [diff] [blame] | 30 |  | 
|  | 31 | using namespace lldb; | 
|  | 32 | using namespace lldb_private; | 
|  | 33 |  | 
| Jason Molenda | fbcb7f2 | 2010-09-10 07:49:16 +0000 | [diff] [blame] | 34 | //----------------------------------------------------------------------------------------------- | 
| Jason Molenda | 7b967f1 | 2014-08-25 23:46:06 +0000 | [diff] [blame] | 35 | //  UnwindAssemblyParser_x86 method definitions | 
| Jason Molenda | fbcb7f2 | 2010-09-10 07:49:16 +0000 | [diff] [blame] | 36 | //----------------------------------------------------------------------------------------------- | 
|  | 37 |  | 
| Jason Molenda | 74b8fbc | 2016-09-29 01:00:16 +0000 | [diff] [blame] | 38 | UnwindAssembly_x86::UnwindAssembly_x86(const ArchSpec &arch) | 
|  | 39 | : lldb_private::UnwindAssembly(arch), | 
|  | 40 | m_assembly_inspection_engine(new x86AssemblyInspectionEngine(arch)) {} | 
| Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 41 |  | 
| Jason Molenda | 74b8fbc | 2016-09-29 01:00:16 +0000 | [diff] [blame] | 42 | UnwindAssembly_x86::~UnwindAssembly_x86() { | 
|  | 43 | delete m_assembly_inspection_engine; | 
|  | 44 | } | 
| Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 45 |  | 
|  | 46 | bool UnwindAssembly_x86::GetNonCallSiteUnwindPlanFromAssembly( | 
|  | 47 | AddressRange &func, Thread &thread, UnwindPlan &unwind_plan) { | 
| Jason Molenda | 74b8fbc | 2016-09-29 01:00:16 +0000 | [diff] [blame] | 48 | if (!func.GetBaseAddress().IsValid() || func.GetByteSize() == 0) | 
|  | 49 | return false; | 
|  | 50 | if (m_assembly_inspection_engine == nullptr) | 
|  | 51 | return false; | 
|  | 52 | ProcessSP process_sp(thread.GetProcess()); | 
|  | 53 | if (process_sp.get() == nullptr) | 
|  | 54 | return false; | 
|  | 55 | const bool prefer_file_cache = true; | 
|  | 56 | std::vector<uint8_t> function_text(func.GetByteSize()); | 
|  | 57 | Error error; | 
|  | 58 | if (process_sp->GetTarget().ReadMemory( | 
|  | 59 | func.GetBaseAddress(), prefer_file_cache, function_text.data(), | 
|  | 60 | func.GetByteSize(), error) == func.GetByteSize()) { | 
|  | 61 | RegisterContextSP reg_ctx(thread.GetRegisterContext()); | 
|  | 62 | m_assembly_inspection_engine->Initialize(reg_ctx); | 
|  | 63 | return m_assembly_inspection_engine->GetNonCallSiteUnwindPlanFromAssembly( | 
|  | 64 | function_text.data(), func.GetByteSize(), func, unwind_plan); | 
|  | 65 | } | 
|  | 66 | return false; | 
| Greg Clayton | 2ed751b | 2011-04-26 04:39:08 +0000 | [diff] [blame] | 67 | } | 
|  | 68 |  | 
| Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 69 | bool UnwindAssembly_x86::AugmentUnwindPlanFromCallSite( | 
|  | 70 | AddressRange &func, Thread &thread, UnwindPlan &unwind_plan) { | 
|  | 71 | bool do_augment_unwindplan = true; | 
| Greg Clayton | 2ed751b | 2011-04-26 04:39:08 +0000 | [diff] [blame] | 72 |  | 
| Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 73 | UnwindPlan::RowSP first_row = unwind_plan.GetRowForFunctionOffset(0); | 
|  | 74 | UnwindPlan::RowSP last_row = unwind_plan.GetRowForFunctionOffset(-1); | 
| Greg Clayton | 2ed751b | 2011-04-26 04:39:08 +0000 | [diff] [blame] | 75 |  | 
| Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 76 | int wordsize = 8; | 
|  | 77 | ProcessSP process_sp(thread.GetProcess()); | 
| Jason Molenda | 74b8fbc | 2016-09-29 01:00:16 +0000 | [diff] [blame] | 78 | if (process_sp.get() == nullptr) | 
|  | 79 | return false; | 
|  | 80 |  | 
|  | 81 | wordsize = process_sp->GetTarget().GetArchitecture().GetAddressByteSize(); | 
| Jason Molenda | fbcb7f2 | 2010-09-10 07:49:16 +0000 | [diff] [blame] | 82 |  | 
| Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 83 | RegisterNumber sp_regnum(thread, eRegisterKindGeneric, | 
|  | 84 | LLDB_REGNUM_GENERIC_SP); | 
|  | 85 | RegisterNumber pc_regnum(thread, eRegisterKindGeneric, | 
|  | 86 | LLDB_REGNUM_GENERIC_PC); | 
| Jason Molenda | a056771 | 2015-01-10 04:01:03 +0000 | [diff] [blame] | 87 |  | 
| Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 88 | // Does this UnwindPlan describe the prologue?  I want to see that the CFA is | 
|  | 89 | // set | 
|  | 90 | // in terms of the stack pointer plus an offset, and I want to see that rip is | 
|  | 91 | // retrieved at the CFA-wordsize. | 
|  | 92 | // If there is no description of the prologue, don't try to augment this | 
|  | 93 | // eh_frame | 
|  | 94 | // unwinder code, fall back to assembly parsing instead. | 
| Jason Molenda | a056771 | 2015-01-10 04:01:03 +0000 | [diff] [blame] | 95 |  | 
| Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 96 | if (first_row->GetCFAValue().GetValueType() != | 
|  | 97 | UnwindPlan::Row::CFAValue::isRegisterPlusOffset || | 
|  | 98 | RegisterNumber(thread, unwind_plan.GetRegisterKind(), | 
|  | 99 | first_row->GetCFAValue().GetRegisterNumber()) != | 
|  | 100 | sp_regnum || | 
|  | 101 | first_row->GetCFAValue().GetOffset() != wordsize) { | 
| Jason Molenda | a056771 | 2015-01-10 04:01:03 +0000 | [diff] [blame] | 102 | return false; | 
| Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 103 | } | 
|  | 104 | UnwindPlan::Row::RegisterLocation first_row_pc_loc; | 
|  | 105 | if (first_row->GetRegisterInfo( | 
|  | 106 | pc_regnum.GetAsKind(unwind_plan.GetRegisterKind()), | 
|  | 107 | first_row_pc_loc) == false || | 
|  | 108 | first_row_pc_loc.IsAtCFAPlusOffset() == false || | 
|  | 109 | first_row_pc_loc.GetOffset() != -wordsize) { | 
| Jason Molenda | 5c45c54 | 2014-12-21 10:44:54 +0000 | [diff] [blame] | 110 | return false; | 
| Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 111 | } | 
| Jason Molenda | fbcb7f2 | 2010-09-10 07:49:16 +0000 | [diff] [blame] | 112 |  | 
| Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 113 | // It looks like the prologue is described. | 
|  | 114 | // Is the epilogue described?  If it is, no need to do any augmentation. | 
|  | 115 |  | 
|  | 116 | if (first_row != last_row && | 
|  | 117 | first_row->GetOffset() != last_row->GetOffset()) { | 
|  | 118 | // The first & last row have the same CFA register | 
|  | 119 | // and the same CFA offset value | 
|  | 120 | // and the CFA register is esp/rsp (the stack pointer). | 
|  | 121 |  | 
|  | 122 | // We're checking that both of them have an unwind rule like "CFA=esp+4" or | 
|  | 123 | // CFA+rsp+8". | 
|  | 124 |  | 
|  | 125 | if (first_row->GetCFAValue().GetValueType() == | 
|  | 126 | last_row->GetCFAValue().GetValueType() && | 
|  | 127 | first_row->GetCFAValue().GetRegisterNumber() == | 
|  | 128 | last_row->GetCFAValue().GetRegisterNumber() && | 
|  | 129 | first_row->GetCFAValue().GetOffset() == | 
|  | 130 | last_row->GetCFAValue().GetOffset()) { | 
|  | 131 | // Get the register locations for eip/rip from the first & last rows. | 
|  | 132 | // Are they both CFA plus an offset?  Is it the same offset? | 
|  | 133 |  | 
|  | 134 | UnwindPlan::Row::RegisterLocation last_row_pc_loc; | 
|  | 135 | if (last_row->GetRegisterInfo( | 
|  | 136 | pc_regnum.GetAsKind(unwind_plan.GetRegisterKind()), | 
|  | 137 | last_row_pc_loc)) { | 
|  | 138 | if (last_row_pc_loc.IsAtCFAPlusOffset() && | 
|  | 139 | first_row_pc_loc.GetOffset() == last_row_pc_loc.GetOffset()) { | 
|  | 140 |  | 
|  | 141 | // One last sanity check:  Is the unwind rule for getting the caller | 
|  | 142 | // pc value | 
|  | 143 | // "deref the CFA-4" or "deref the CFA-8"? | 
|  | 144 |  | 
|  | 145 | // If so, we have an UnwindPlan that already describes the epilogue | 
|  | 146 | // and we don't need | 
|  | 147 | // to modify it at all. | 
|  | 148 |  | 
|  | 149 | if (first_row_pc_loc.GetOffset() == -wordsize) { | 
|  | 150 | do_augment_unwindplan = false; | 
|  | 151 | } | 
|  | 152 | } | 
|  | 153 | } | 
|  | 154 | } | 
|  | 155 | } | 
|  | 156 |  | 
|  | 157 | if (do_augment_unwindplan) { | 
| Jason Molenda | 74b8fbc | 2016-09-29 01:00:16 +0000 | [diff] [blame] | 158 | if (!func.GetBaseAddress().IsValid() || func.GetByteSize() == 0) | 
|  | 159 | return false; | 
|  | 160 | if (m_assembly_inspection_engine == nullptr) | 
|  | 161 | return false; | 
|  | 162 | const bool prefer_file_cache = true; | 
|  | 163 | std::vector<uint8_t> function_text(func.GetByteSize()); | 
|  | 164 | Error error; | 
|  | 165 | if (process_sp->GetTarget().ReadMemory( | 
|  | 166 | func.GetBaseAddress(), prefer_file_cache, function_text.data(), | 
|  | 167 | func.GetByteSize(), error) == func.GetByteSize()) { | 
|  | 168 | RegisterContextSP reg_ctx(thread.GetRegisterContext()); | 
|  | 169 | m_assembly_inspection_engine->Initialize(reg_ctx); | 
|  | 170 | return m_assembly_inspection_engine->AugmentUnwindPlanFromCallSite( | 
|  | 171 | function_text.data(), func.GetByteSize(), func, unwind_plan, reg_ctx); | 
|  | 172 | } | 
| Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 173 | } | 
|  | 174 |  | 
|  | 175 | return false; | 
| Jason Molenda | fbcb7f2 | 2010-09-10 07:49:16 +0000 | [diff] [blame] | 176 | } | 
|  | 177 |  | 
| Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 178 | bool UnwindAssembly_x86::GetFastUnwindPlan(AddressRange &func, Thread &thread, | 
|  | 179 | UnwindPlan &unwind_plan) { | 
|  | 180 | // if prologue is | 
|  | 181 | //   55     pushl %ebp | 
|  | 182 | //   89 e5  movl %esp, %ebp | 
|  | 183 | //  or | 
|  | 184 | //   55        pushq %rbp | 
|  | 185 | //   48 89 e5  movq %rsp, %rbp | 
|  | 186 |  | 
|  | 187 | // We should pull in the ABI architecture default unwind plan and return that | 
|  | 188 |  | 
|  | 189 | llvm::SmallVector<uint8_t, 4> opcode_data; | 
|  | 190 |  | 
|  | 191 | ProcessSP process_sp = thread.GetProcess(); | 
|  | 192 | if (process_sp) { | 
|  | 193 | Target &target(process_sp->GetTarget()); | 
|  | 194 | const bool prefer_file_cache = true; | 
|  | 195 | Error error; | 
|  | 196 | if (target.ReadMemory(func.GetBaseAddress(), prefer_file_cache, | 
|  | 197 | opcode_data.data(), 4, error) == 4) { | 
|  | 198 | uint8_t i386_push_mov[] = {0x55, 0x89, 0xe5}; | 
|  | 199 | uint8_t x86_64_push_mov[] = {0x55, 0x48, 0x89, 0xe5}; | 
|  | 200 |  | 
|  | 201 | if (memcmp(opcode_data.data(), i386_push_mov, sizeof(i386_push_mov)) == | 
|  | 202 | 0 || | 
|  | 203 | memcmp(opcode_data.data(), x86_64_push_mov, | 
|  | 204 | sizeof(x86_64_push_mov)) == 0) { | 
|  | 205 | ABISP abi_sp = process_sp->GetABI(); | 
|  | 206 | if (abi_sp) { | 
|  | 207 | return abi_sp->CreateDefaultUnwindPlan(unwind_plan); | 
|  | 208 | } | 
|  | 209 | } | 
|  | 210 | } | 
|  | 211 | } | 
|  | 212 | return false; | 
| Jason Molenda | fbcb7f2 | 2010-09-10 07:49:16 +0000 | [diff] [blame] | 213 | } | 
|  | 214 |  | 
| Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 215 | bool UnwindAssembly_x86::FirstNonPrologueInsn( | 
|  | 216 | AddressRange &func, const ExecutionContext &exe_ctx, | 
|  | 217 | Address &first_non_prologue_insn) { | 
| Jason Molenda | 74b8fbc | 2016-09-29 01:00:16 +0000 | [diff] [blame] | 218 |  | 
|  | 219 | if (!func.GetBaseAddress().IsValid()) | 
|  | 220 | return false; | 
|  | 221 |  | 
|  | 222 | Target *target = exe_ctx.GetTargetPtr(); | 
|  | 223 | if (target == nullptr) | 
|  | 224 | return false; | 
|  | 225 |  | 
|  | 226 | if (m_assembly_inspection_engine == nullptr) | 
|  | 227 | return false; | 
|  | 228 |  | 
|  | 229 | const bool prefer_file_cache = true; | 
|  | 230 | std::vector<uint8_t> function_text(func.GetByteSize()); | 
|  | 231 | Error error; | 
|  | 232 | if (target->ReadMemory(func.GetBaseAddress(), prefer_file_cache, | 
|  | 233 | function_text.data(), func.GetByteSize(), | 
|  | 234 | error) == func.GetByteSize()) { | 
|  | 235 | size_t offset; | 
|  | 236 | if (m_assembly_inspection_engine->FindFirstNonPrologueInstruction( | 
|  | 237 | function_text.data(), func.GetByteSize(), offset)) { | 
|  | 238 | first_non_prologue_insn = func.GetBaseAddress(); | 
|  | 239 | first_non_prologue_insn.Slide(offset); | 
|  | 240 | } | 
|  | 241 | return true; | 
|  | 242 | } | 
|  | 243 | return false; | 
| Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 244 | } | 
|  | 245 |  | 
|  | 246 | UnwindAssembly *UnwindAssembly_x86::CreateInstance(const ArchSpec &arch) { | 
|  | 247 | const llvm::Triple::ArchType cpu = arch.GetMachine(); | 
| Jason Molenda | 74b8fbc | 2016-09-29 01:00:16 +0000 | [diff] [blame] | 248 | if (cpu == llvm::Triple::x86 || cpu == llvm::Triple::x86_64) | 
|  | 249 | return new UnwindAssembly_x86(arch); | 
| Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 250 | return NULL; | 
|  | 251 | } | 
| Jason Molenda | fbcb7f2 | 2010-09-10 07:49:16 +0000 | [diff] [blame] | 252 |  | 
|  | 253 | //------------------------------------------------------------------ | 
|  | 254 | // PluginInterface protocol in UnwindAssemblyParser_x86 | 
|  | 255 | //------------------------------------------------------------------ | 
|  | 256 |  | 
| Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 257 | ConstString UnwindAssembly_x86::GetPluginName() { | 
|  | 258 | return GetPluginNameStatic(); | 
| Jason Molenda | fbcb7f2 | 2010-09-10 07:49:16 +0000 | [diff] [blame] | 259 | } | 
|  | 260 |  | 
| Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 261 | uint32_t UnwindAssembly_x86::GetPluginVersion() { return 1; } | 
| Jason Molenda | fbcb7f2 | 2010-09-10 07:49:16 +0000 | [diff] [blame] | 262 |  | 
| Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 263 | void UnwindAssembly_x86::Initialize() { | 
|  | 264 | PluginManager::RegisterPlugin(GetPluginNameStatic(), | 
|  | 265 | GetPluginDescriptionStatic(), CreateInstance); | 
| Jason Molenda | fbcb7f2 | 2010-09-10 07:49:16 +0000 | [diff] [blame] | 266 | } | 
|  | 267 |  | 
| Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 268 | void UnwindAssembly_x86::Terminate() { | 
|  | 269 | PluginManager::UnregisterPlugin(CreateInstance); | 
| Jason Molenda | fbcb7f2 | 2010-09-10 07:49:16 +0000 | [diff] [blame] | 270 | } | 
|  | 271 |  | 
| Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 272 | lldb_private::ConstString UnwindAssembly_x86::GetPluginNameStatic() { | 
|  | 273 | static ConstString g_name("x86"); | 
|  | 274 | return g_name; | 
| Jason Molenda | fbcb7f2 | 2010-09-10 07:49:16 +0000 | [diff] [blame] | 275 | } | 
|  | 276 |  | 
| Kate Stone | b9c1b51 | 2016-09-06 20:57:50 +0000 | [diff] [blame] | 277 | const char *UnwindAssembly_x86::GetPluginDescriptionStatic() { | 
|  | 278 | return "i386 and x86_64 assembly language profiler plugin."; | 
| Jason Molenda | fbcb7f2 | 2010-09-10 07:49:16 +0000 | [diff] [blame] | 279 | } |