OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:CompileUnit
(Results
1 - 5
of
5
) sorted by null
/external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.h
32
class
CompileUnit
;
226
SmallVector<
CompileUnit
*, 1> CUs;
262
void addUnit(
CompileUnit
*CU) { CUs.push_back(CU); }
315
CompileUnit
*FirstCU;
317
// Maps MDNode with its corresponding
CompileUnit
.
318
DenseMap <const MDNode *,
CompileUnit
*> CUMap;
320
// Maps subprogram MDNode with its corresponding
CompileUnit
.
321
DenseMap <const MDNode *,
CompileUnit
*> SPMap;
446
SmallVector<
CompileUnit
*, 1> SkeletonCUs;
468
DIE *updateSubprogramScopeDIE(
CompileUnit
*SPCU, const MDNode *SPNode)
[
all
...]
DwarfCompileUnit.cpp
35
///
CompileUnit
- Compile unit constructor.
36
CompileUnit
::
CompileUnit
(unsigned UID, unsigned L, DIE *D, const MDNode *N,
44
/// ~
CompileUnit
- Destructor for compile unit.
45
CompileUnit
::~
CompileUnit
() {
52
DIEEntry *
CompileUnit
::createDIEEntry(DIE *Entry) {
59
int64_t
CompileUnit
::getDefaultLowerBound() const {
102
void
CompileUnit
::addFlag(DIE *Die, unsigned Attribute) {
112
void
CompileUnit
::addUInt(DIE *Die, unsigned Attribute
[
all
...]
DwarfDebug.cpp
331
static void addSubprogramNames(
CompileUnit
*TheCU, DISubprogram SP,
358
DIE *DwarfDebug::updateSubprogramScopeDIE(
CompileUnit
*SPCU,
436
DIE *DwarfDebug::constructLexicalScopeDIE(
CompileUnit
*TheCU,
484
DIE *DwarfDebug::constructInlinedScopeDIE(
CompileUnit
*TheCU,
567
DIE *DwarfDebug::constructScopeDIE(
CompileUnit
*TheCU, LexicalScope *Scope) {
690
// Create new
CompileUnit
for the given metadata node with tag
692
CompileUnit
*DwarfDebug::constructCompileUnit(const MDNode *N) {
698
CompileUnit
*NewCU = new
CompileUnit
(GlobalCUIndexCount++,
772
void DwarfDebug::constructSubprogramDIE(
CompileUnit
*TheCU
[
all
...]
DwarfCompileUnit.h
35
///
CompileUnit
- This dwarf writer support class manages information associated
37
class
CompileUnit
{
99
CompileUnit
(unsigned UID, unsigned L, DIE *D, const MDNode *N, AsmPrinter *A,
101
~
CompileUnit
();
/external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp
389
MDNode *
CompileUnit
= dyn_cast<MDNode>(N->getOperand(1));
390
if (!GCovFile || !
CompileUnit
) continue;
391
if (
CompileUnit
== CU) {
Completed in 338 milliseconds