blob: 8fde0a423883dd4ee47a0b646c8fecf6055ac009 [file] [log] [blame]
Chris Lattner30fdc8d2010-06-08 16:52:24 +00001//===-- Function.cpp --------------------------------------------*- C++ -*-===//
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
10#include "lldb/Symbol/Function.h"
Greg Clayton44d93782014-01-27 23:43:24 +000011#include "lldb/Core/Disassembler.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000012#include "lldb/Core/Module.h"
13#include "lldb/Core/Section.h"
Greg Claytone38a5ed2012-01-05 03:57:59 +000014#include "lldb/Host/Host.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000015#include "lldb/Symbol/CompileUnit.h"
Kate Stoneb9c1b512016-09-06 20:57:50 +000016#include "lldb/Symbol/CompilerType.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000017#include "lldb/Symbol/LineTable.h"
Sean Callanan72e49402011-08-05 23:43:37 +000018#include "lldb/Symbol/SymbolFile.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000019#include "lldb/Symbol/SymbolVendor.h"
Enrico Granata6754e042015-09-30 23:12:22 +000020#include "lldb/Target/Language.h"
Sean Callanancc427fa2011-07-30 02:42:06 +000021#include "llvm/Support/Casting.h"
Chris Lattner30fdc8d2010-06-08 16:52:24 +000022
Greg Claytonc9800662010-09-10 01:30:46 +000023using namespace lldb;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000024using namespace lldb_private;
25
26//----------------------------------------------------------------------
27// Basic function information is contained in the FunctionInfo class.
28// It is designed to contain the name, linkage name, and declaration
29// location.
30//----------------------------------------------------------------------
Kate Stoneb9c1b512016-09-06 20:57:50 +000031FunctionInfo::FunctionInfo(const char *name, const Declaration *decl_ptr)
32 : m_name(name), m_declaration(decl_ptr) {}
33
34FunctionInfo::FunctionInfo(const ConstString &name, const Declaration *decl_ptr)
35 : m_name(name), m_declaration(decl_ptr) {}
36
37FunctionInfo::~FunctionInfo() {}
38
39void FunctionInfo::Dump(Stream *s, bool show_fullpaths) const {
40 if (m_name)
41 *s << ", name = \"" << m_name << "\"";
42 m_declaration.Dump(s, show_fullpaths);
Chris Lattner30fdc8d2010-06-08 16:52:24 +000043}
44
Kate Stoneb9c1b512016-09-06 20:57:50 +000045int FunctionInfo::Compare(const FunctionInfo &a, const FunctionInfo &b) {
46 int result = ConstString::Compare(a.GetName(), b.GetName());
47 if (result)
48 return result;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000049
Kate Stoneb9c1b512016-09-06 20:57:50 +000050 return Declaration::Compare(a.m_declaration, b.m_declaration);
Chris Lattner30fdc8d2010-06-08 16:52:24 +000051}
52
Kate Stoneb9c1b512016-09-06 20:57:50 +000053Declaration &FunctionInfo::GetDeclaration() { return m_declaration; }
Chris Lattner30fdc8d2010-06-08 16:52:24 +000054
Kate Stoneb9c1b512016-09-06 20:57:50 +000055const Declaration &FunctionInfo::GetDeclaration() const {
56 return m_declaration;
Chris Lattner30fdc8d2010-06-08 16:52:24 +000057}
58
Kate Stoneb9c1b512016-09-06 20:57:50 +000059ConstString FunctionInfo::GetName() const { return m_name; }
60
61size_t FunctionInfo::MemorySize() const {
62 return m_name.MemorySize() + m_declaration.MemorySize();
Chris Lattner30fdc8d2010-06-08 16:52:24 +000063}
64
Kate Stoneb9c1b512016-09-06 20:57:50 +000065InlineFunctionInfo::InlineFunctionInfo(const char *name, const char *mangled,
66 const Declaration *decl_ptr,
67 const Declaration *call_decl_ptr)
68 : FunctionInfo(name, decl_ptr), m_mangled(ConstString(mangled), true),
69 m_call_decl(call_decl_ptr) {}
Chris Lattner30fdc8d2010-06-08 16:52:24 +000070
Kate Stoneb9c1b512016-09-06 20:57:50 +000071InlineFunctionInfo::InlineFunctionInfo(const ConstString &name,
72 const Mangled &mangled,
73 const Declaration *decl_ptr,
74 const Declaration *call_decl_ptr)
75 : FunctionInfo(name, decl_ptr), m_mangled(mangled),
76 m_call_decl(call_decl_ptr) {}
Chris Lattner30fdc8d2010-06-08 16:52:24 +000077
Kate Stoneb9c1b512016-09-06 20:57:50 +000078InlineFunctionInfo::~InlineFunctionInfo() {}
79
80int InlineFunctionInfo::Compare(const InlineFunctionInfo &a,
81 const InlineFunctionInfo &b) {
82
83 int result = FunctionInfo::Compare(a, b);
84 if (result)
85 return result;
86 // only compare the mangled names if both have them
87 return Mangled::Compare(a.m_mangled, a.m_mangled);
Chris Lattner30fdc8d2010-06-08 16:52:24 +000088}
89
Kate Stoneb9c1b512016-09-06 20:57:50 +000090void InlineFunctionInfo::Dump(Stream *s, bool show_fullpaths) const {
91 FunctionInfo::Dump(s, show_fullpaths);
92 if (m_mangled)
93 m_mangled.Dump(s);
Chris Lattner30fdc8d2010-06-08 16:52:24 +000094}
95
Kate Stoneb9c1b512016-09-06 20:57:50 +000096void InlineFunctionInfo::DumpStopContext(Stream *s,
97 LanguageType language) const {
98 // s->Indent("[inlined] ");
99 s->Indent();
100 if (m_mangled)
101 s->PutCString(m_mangled.GetName(language).AsCString());
102 else
103 s->PutCString(m_name.AsCString());
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000104}
105
Kate Stoneb9c1b512016-09-06 20:57:50 +0000106ConstString InlineFunctionInfo::GetName(LanguageType language) const {
107 if (m_mangled)
108 return m_mangled.GetName(language);
109 return m_name;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000110}
111
Kate Stoneb9c1b512016-09-06 20:57:50 +0000112ConstString InlineFunctionInfo::GetDisplayName(LanguageType language) const {
113 if (m_mangled)
114 return m_mangled.GetDisplayDemangledName(language);
115 return m_name;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000116}
117
Kate Stoneb9c1b512016-09-06 20:57:50 +0000118Declaration &InlineFunctionInfo::GetCallSite() { return m_call_decl; }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000119
Kate Stoneb9c1b512016-09-06 20:57:50 +0000120const Declaration &InlineFunctionInfo::GetCallSite() const {
121 return m_call_decl;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000122}
123
Kate Stoneb9c1b512016-09-06 20:57:50 +0000124Mangled &InlineFunctionInfo::GetMangled() { return m_mangled; }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000125
Kate Stoneb9c1b512016-09-06 20:57:50 +0000126const Mangled &InlineFunctionInfo::GetMangled() const { return m_mangled; }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000127
Kate Stoneb9c1b512016-09-06 20:57:50 +0000128size_t InlineFunctionInfo::MemorySize() const {
129 return FunctionInfo::MemorySize() + m_mangled.MemorySize();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000130}
131
132//----------------------------------------------------------------------
133//
134//----------------------------------------------------------------------
Kate Stoneb9c1b512016-09-06 20:57:50 +0000135Function::Function(CompileUnit *comp_unit, lldb::user_id_t func_uid,
136 lldb::user_id_t type_uid, const Mangled &mangled, Type *type,
137 const AddressRange &range)
138 : UserID(func_uid), m_comp_unit(comp_unit), m_type_uid(type_uid),
139 m_type(type), m_mangled(mangled), m_block(func_uid), m_range(range),
140 m_frame_base(nullptr), m_flags(), m_prologue_byte_size(0) {
141 m_block.SetParentScope(this);
142 assert(comp_unit != nullptr);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000143}
144
Kate Stoneb9c1b512016-09-06 20:57:50 +0000145Function::Function(CompileUnit *comp_unit, lldb::user_id_t func_uid,
146 lldb::user_id_t type_uid, const char *mangled, Type *type,
147 const AddressRange &range)
148 : UserID(func_uid), m_comp_unit(comp_unit), m_type_uid(type_uid),
149 m_type(type), m_mangled(ConstString(mangled), true), m_block(func_uid),
150 m_range(range), m_frame_base(nullptr), m_flags(),
151 m_prologue_byte_size(0) {
152 m_block.SetParentScope(this);
153 assert(comp_unit != nullptr);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000154}
155
Kate Stoneb9c1b512016-09-06 20:57:50 +0000156Function::~Function() {}
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000157
Kate Stoneb9c1b512016-09-06 20:57:50 +0000158void Function::GetStartLineSourceInfo(FileSpec &source_file,
159 uint32_t &line_no) {
160 line_no = 0;
161 source_file.Clear();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000162
Kate Stoneb9c1b512016-09-06 20:57:50 +0000163 if (m_comp_unit == nullptr)
164 return;
Jim Ingham99760332010-08-20 01:15:01 +0000165
Jason Molendaf81f15a2016-09-08 02:26:58 +0000166 // Initialize m_type if it hasn't been initialized already
167 GetType();
168
Kate Stoneb9c1b512016-09-06 20:57:50 +0000169 if (m_type != nullptr && m_type->GetDeclaration().GetLine() != 0) {
170 source_file = m_type->GetDeclaration().GetFile();
171 line_no = m_type->GetDeclaration().GetLine();
172 } else {
Jim Ingham99760332010-08-20 01:15:01 +0000173 LineTable *line_table = m_comp_unit->GetLineTable();
Ed Masted4612ad2014-04-20 13:17:36 +0000174 if (line_table == nullptr)
Kate Stoneb9c1b512016-09-06 20:57:50 +0000175 return;
176
Jim Ingham99760332010-08-20 01:15:01 +0000177 LineEntry line_entry;
Kate Stoneb9c1b512016-09-06 20:57:50 +0000178 if (line_table->FindLineEntryByAddress(GetAddressRange().GetBaseAddress(),
179 line_entry, nullptr)) {
180 line_no = line_entry.line;
181 source_file = line_entry.file;
Jim Ingham99760332010-08-20 01:15:01 +0000182 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000183 }
Jim Ingham99760332010-08-20 01:15:01 +0000184}
185
Kate Stoneb9c1b512016-09-06 20:57:50 +0000186void Function::GetEndLineSourceInfo(FileSpec &source_file, uint32_t &line_no) {
187 line_no = 0;
188 source_file.Clear();
189
190 // The -1 is kind of cheesy, but I want to get the last line entry for the
191 // given function, not the
192 // first entry of the next.
193 Address scratch_addr(GetAddressRange().GetBaseAddress());
194 scratch_addr.SetOffset(scratch_addr.GetOffset() +
195 GetAddressRange().GetByteSize() - 1);
196
197 LineTable *line_table = m_comp_unit->GetLineTable();
198 if (line_table == nullptr)
199 return;
200
201 LineEntry line_entry;
202 if (line_table->FindLineEntryByAddress(scratch_addr, line_entry, nullptr)) {
203 line_no = line_entry.line;
204 source_file = line_entry.file;
205 }
206}
207
208Block &Function::GetBlock(bool can_create) {
209 if (!m_block.BlockInfoHasBeenParsed() && can_create) {
210 SymbolContext sc;
211 CalculateSymbolContext(&sc);
212 if (sc.module_sp) {
213 sc.module_sp->GetSymbolVendor()->ParseFunctionBlocks(sc);
214 } else {
215 Host::SystemLog(Host::eSystemLogError, "error: unable to find module "
216 "shared pointer for function '%s' "
217 "in %s\n",
218 GetName().GetCString(), m_comp_unit->GetPath().c_str());
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000219 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000220 m_block.SetBlockInfoHasBeenParsed(true, true);
221 }
222 return m_block;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000223}
224
Kate Stoneb9c1b512016-09-06 20:57:50 +0000225CompileUnit *Function::GetCompileUnit() { return m_comp_unit; }
226
227const CompileUnit *Function::GetCompileUnit() const { return m_comp_unit; }
228
229void Function::GetDescription(Stream *s, lldb::DescriptionLevel level,
230 Target *target) {
231 Type *func_type = GetType();
232 const char *name = func_type ? func_type->GetName().AsCString() : "<unknown>";
233
234 *s << "id = " << (const UserID &)*this << ", name = \"" << name
235 << "\", range = ";
236
237 Address::DumpStyle fallback_style;
238 if (level == eDescriptionLevelVerbose)
239 fallback_style = Address::DumpStyleModuleWithFileAddress;
240 else
241 fallback_style = Address::DumpStyleFileAddress;
242 GetAddressRange().Dump(s, target, Address::DumpStyleLoadAddress,
243 fallback_style);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000244}
245
Kate Stoneb9c1b512016-09-06 20:57:50 +0000246void Function::Dump(Stream *s, bool show_context) const {
247 s->Printf("%p: ", static_cast<const void *>(this));
248 s->Indent();
249 *s << "Function" << static_cast<const UserID &>(*this);
250
251 m_mangled.Dump(s);
252
253 if (m_type)
254 s->Printf(", type = %p", static_cast<void *>(m_type));
255 else if (m_type_uid != LLDB_INVALID_UID)
256 s->Printf(", type_uid = 0x%8.8" PRIx64, m_type_uid);
257
258 s->EOL();
259 // Dump the root object
260 if (m_block.BlockInfoHasBeenParsed())
261 m_block.Dump(s, m_range.GetBaseAddress().GetFileAddress(), INT_MAX,
262 show_context);
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000263}
264
Kate Stoneb9c1b512016-09-06 20:57:50 +0000265void Function::CalculateSymbolContext(SymbolContext *sc) {
266 sc->function = this;
267 m_comp_unit->CalculateSymbolContext(sc);
Greg Clayton0c5cd902010-06-28 21:30:43 +0000268}
269
Kate Stoneb9c1b512016-09-06 20:57:50 +0000270ModuleSP Function::CalculateSymbolContextModule() {
271 SectionSP section_sp(m_range.GetBaseAddress().GetSection());
272 if (section_sp)
273 return section_sp->GetModule();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000274
Kate Stoneb9c1b512016-09-06 20:57:50 +0000275 return this->GetCompileUnit()->GetModule();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000276}
277
Kate Stoneb9c1b512016-09-06 20:57:50 +0000278CompileUnit *Function::CalculateSymbolContextCompileUnit() {
279 return this->GetCompileUnit();
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000280}
281
Kate Stoneb9c1b512016-09-06 20:57:50 +0000282Function *Function::CalculateSymbolContextFunction() { return this; }
283
284lldb::DisassemblerSP Function::GetInstructions(const ExecutionContext &exe_ctx,
285 const char *flavor,
286 bool prefer_file_cache) {
287 ModuleSP module_sp(GetAddressRange().GetBaseAddress().GetModule());
288 if (module_sp) {
289 const bool prefer_file_cache = false;
290 return Disassembler::DisassembleRange(module_sp->GetArchitecture(), nullptr,
291 flavor, exe_ctx, GetAddressRange(),
292 prefer_file_cache);
293 }
294 return lldb::DisassemblerSP();
Greg Clayton7e9b1fd2011-08-12 21:40:01 +0000295}
296
Kate Stoneb9c1b512016-09-06 20:57:50 +0000297bool Function::GetDisassembly(const ExecutionContext &exe_ctx,
298 const char *flavor, bool prefer_file_cache,
299 Stream &strm) {
300 lldb::DisassemblerSP disassembler_sp =
301 GetInstructions(exe_ctx, flavor, prefer_file_cache);
302 if (disassembler_sp) {
303 const bool show_address = true;
304 const bool show_bytes = false;
305 disassembler_sp->GetInstructionList().Dump(&strm, show_address, show_bytes,
306 &exe_ctx);
307 return true;
308 }
309 return false;
Greg Clayton7e9b1fd2011-08-12 21:40:01 +0000310}
311
Kate Stoneb9c1b512016-09-06 20:57:50 +0000312// Symbol *
313// Function::CalculateSymbolContextSymbol ()
Greg Clayton7e9b1fd2011-08-12 21:40:01 +0000314//{
315// return // TODO: find the symbol for the function???
316//}
317
Kate Stoneb9c1b512016-09-06 20:57:50 +0000318void Function::DumpSymbolContext(Stream *s) {
319 m_comp_unit->DumpSymbolContext(s);
320 s->Printf(", Function{0x%8.8" PRIx64 "}", GetID());
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000321}
322
Kate Stoneb9c1b512016-09-06 20:57:50 +0000323size_t Function::MemorySize() const {
324 size_t mem_size = sizeof(Function) + m_block.MemorySize();
325 return mem_size;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000326}
327
Kate Stoneb9c1b512016-09-06 20:57:50 +0000328bool Function::GetIsOptimized() {
329 bool result = false;
Jason Molenda6ab659a2015-07-29 00:42:47 +0000330
Kate Stoneb9c1b512016-09-06 20:57:50 +0000331 // Currently optimization is only indicted by the
332 // vendor extension DW_AT_APPLE_optimized which
333 // is set on a compile unit level.
334 if (m_comp_unit) {
335 result = m_comp_unit->GetIsOptimized();
336 }
337 return result;
338}
339
340bool Function::IsTopLevelFunction() {
341 bool result = false;
342
343 if (Language *language = Language::FindPlugin(GetLanguage()))
344 result = language->IsTopLevelFunction(*this);
345
346 return result;
347}
348
349ConstString Function::GetDisplayName() const {
Kate Stoneb9c1b512016-09-06 20:57:50 +0000350 return m_mangled.GetDisplayDemangledName(GetLanguage());
351}
352
353CompilerDeclContext Function::GetDeclContext() {
354 ModuleSP module_sp = CalculateSymbolContextModule();
355
356 if (module_sp) {
357 SymbolVendor *sym_vendor = module_sp->GetSymbolVendor();
358
359 if (sym_vendor) {
360 SymbolFile *sym_file = sym_vendor->GetSymbolFile();
361
362 if (sym_file)
363 return sym_file->GetDeclContextForUID(GetID());
Jason Molenda6ab659a2015-07-29 00:42:47 +0000364 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000365 }
366 return CompilerDeclContext();
Jason Molenda6ab659a2015-07-29 00:42:47 +0000367}
368
Kate Stoneb9c1b512016-09-06 20:57:50 +0000369Type *Function::GetType() {
370 if (m_type == nullptr) {
371 SymbolContext sc;
372
373 CalculateSymbolContext(&sc);
374
375 if (!sc.module_sp)
376 return nullptr;
377
378 SymbolVendor *sym_vendor = sc.module_sp->GetSymbolVendor();
379
380 if (sym_vendor == nullptr)
381 return nullptr;
382
383 SymbolFile *sym_file = sym_vendor->GetSymbolFile();
384
385 if (sym_file == nullptr)
386 return nullptr;
387
388 m_type = sym_file->ResolveTypeUID(m_type_uid);
389 }
390 return m_type;
Enrico Granata6754e042015-09-30 23:12:22 +0000391}
392
Kate Stoneb9c1b512016-09-06 20:57:50 +0000393const Type *Function::GetType() const { return m_type; }
394
395CompilerType Function::GetCompilerType() {
396 Type *function_type = GetType();
397 if (function_type)
398 return function_type->GetFullCompilerType();
399 return CompilerType();
Enrico Granatac1f705c2015-07-06 18:28:46 +0000400}
401
Kate Stoneb9c1b512016-09-06 20:57:50 +0000402uint32_t Function::GetPrologueByteSize() {
403 if (m_prologue_byte_size == 0 &&
404 m_flags.IsClear(flagsCalculatedPrologueSize)) {
405 m_flags.Set(flagsCalculatedPrologueSize);
406 LineTable *line_table = m_comp_unit->GetLineTable();
407 uint32_t prologue_end_line_idx = 0;
Greg Clayton99558cc42015-08-24 23:46:31 +0000408
Kate Stoneb9c1b512016-09-06 20:57:50 +0000409 if (line_table) {
410 LineEntry first_line_entry;
411 uint32_t first_line_entry_idx = UINT32_MAX;
412 if (line_table->FindLineEntryByAddress(GetAddressRange().GetBaseAddress(),
413 first_line_entry,
414 &first_line_entry_idx)) {
415 // Make sure the first line entry isn't already the end of the prologue
416 addr_t prologue_end_file_addr = LLDB_INVALID_ADDRESS;
417 addr_t line_zero_end_file_addr = LLDB_INVALID_ADDRESS;
Greg Clayton99558cc42015-08-24 23:46:31 +0000418
Kate Stoneb9c1b512016-09-06 20:57:50 +0000419 if (first_line_entry.is_prologue_end) {
420 prologue_end_file_addr =
421 first_line_entry.range.GetBaseAddress().GetFileAddress();
422 prologue_end_line_idx = first_line_entry_idx;
423 } else {
424 // Check the first few instructions and look for one that has
425 // is_prologue_end set to true.
426 const uint32_t last_line_entry_idx = first_line_entry_idx + 6;
427 for (uint32_t idx = first_line_entry_idx + 1;
428 idx < last_line_entry_idx; ++idx) {
429 LineEntry line_entry;
430 if (line_table->GetLineEntryAtIndex(idx, line_entry)) {
431 if (line_entry.is_prologue_end) {
432 prologue_end_file_addr =
433 line_entry.range.GetBaseAddress().GetFileAddress();
434 prologue_end_line_idx = idx;
435 break;
436 }
Greg Claytonc3b84992010-11-11 20:13:30 +0000437 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000438 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000439 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000440
441 // If we didn't find the end of the prologue in the line tables,
442 // then just use the end address of the first line table entry
443 if (prologue_end_file_addr == LLDB_INVALID_ADDRESS) {
444 // Check the first few instructions and look for one that has
445 // a line number that's different than the first entry.
446 uint32_t last_line_entry_idx = first_line_entry_idx + 6;
447 for (uint32_t idx = first_line_entry_idx + 1;
448 idx < last_line_entry_idx; ++idx) {
449 LineEntry line_entry;
450 if (line_table->GetLineEntryAtIndex(idx, line_entry)) {
451 if (line_entry.line != first_line_entry.line) {
452 prologue_end_file_addr =
453 line_entry.range.GetBaseAddress().GetFileAddress();
454 prologue_end_line_idx = idx;
455 break;
456 }
457 }
458 }
459
460 if (prologue_end_file_addr == LLDB_INVALID_ADDRESS) {
461 prologue_end_file_addr =
462 first_line_entry.range.GetBaseAddress().GetFileAddress() +
463 first_line_entry.range.GetByteSize();
464 prologue_end_line_idx = first_line_entry_idx;
465 }
466 }
467
468 const addr_t func_start_file_addr =
469 m_range.GetBaseAddress().GetFileAddress();
470 const addr_t func_end_file_addr =
471 func_start_file_addr + m_range.GetByteSize();
472
473 // Now calculate the offset to pass the subsequent line 0 entries.
474 uint32_t first_non_zero_line = prologue_end_line_idx;
475 while (1) {
476 LineEntry line_entry;
477 if (line_table->GetLineEntryAtIndex(first_non_zero_line,
478 line_entry)) {
479 if (line_entry.line != 0)
480 break;
481 }
482 if (line_entry.range.GetBaseAddress().GetFileAddress() >=
483 func_end_file_addr)
484 break;
485
486 first_non_zero_line++;
487 }
488
489 if (first_non_zero_line > prologue_end_line_idx) {
490 LineEntry first_non_zero_entry;
491 if (line_table->GetLineEntryAtIndex(first_non_zero_line,
492 first_non_zero_entry)) {
493 line_zero_end_file_addr =
494 first_non_zero_entry.range.GetBaseAddress().GetFileAddress();
495 }
496 }
497
498 // Verify that this prologue end file address in the function's
499 // address range just to be sure
500 if (func_start_file_addr < prologue_end_file_addr &&
501 prologue_end_file_addr < func_end_file_addr) {
502 m_prologue_byte_size = prologue_end_file_addr - func_start_file_addr;
503 }
504
505 if (prologue_end_file_addr < line_zero_end_file_addr &&
506 line_zero_end_file_addr < func_end_file_addr) {
507 m_prologue_byte_size +=
508 line_zero_end_file_addr - prologue_end_file_addr;
509 }
510 }
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000511 }
Kate Stoneb9c1b512016-09-06 20:57:50 +0000512 }
513
514 return m_prologue_byte_size;
Chris Lattner30fdc8d2010-06-08 16:52:24 +0000515}
516
Kate Stoneb9c1b512016-09-06 20:57:50 +0000517lldb::LanguageType Function::GetLanguage() const {
518 if (m_comp_unit)
519 return m_comp_unit->GetLanguage();
520 else
521 return lldb::eLanguageTypeUnknown;
Greg Claytonddaf6a72015-07-08 22:32:23 +0000522}
523
Kate Stoneb9c1b512016-09-06 20:57:50 +0000524ConstString Function::GetName() const {
525 LanguageType language = lldb::eLanguageTypeUnknown;
526 if (m_comp_unit)
527 language = m_comp_unit->GetLanguage();
528 return m_mangled.GetName(language);
Greg Claytonddaf6a72015-07-08 22:32:23 +0000529}
530
Kate Stoneb9c1b512016-09-06 20:57:50 +0000531ConstString Function::GetNameNoArguments() const {
532 LanguageType language = lldb::eLanguageTypeUnknown;
533 if (m_comp_unit)
534 language = m_comp_unit->GetLanguage();
535 return m_mangled.GetName(language, Mangled::ePreferDemangledWithoutArguments);
Greg Claytonddaf6a72015-07-08 22:32:23 +0000536}