OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DIEBlock
(Results
1 - 6
of
6
) sorted by null
/external/llvm/lib/CodeGen/AsmPrinter/
DIE.h
392
///
DIEBlock
- A block of values. Primarily used for location expressions.
394
class
DIEBlock
: public DIEValue, public DIE {
397
DIEBlock
()
399
virtual ~
DIEBlock
() {}
423
static bool classof(const
DIEBlock
*) { return true; }
DwarfCompileUnit.h
68
std::vector<
DIEBlock
*> DIEBlocks;
96
DIEBlock
*getDIEBlock() {
97
return new (DIEValueAllocator)
DIEBlock
();
167
void addBlock(DIE *Die, unsigned Attribute, unsigned Form,
DIEBlock
*Block);
DwarfCompileUnit.cpp
38
DIEBlocks[j]->~
DIEBlock
();
102
DIEBlock
*Block) {
241
DIEBlock
*Block = new (DIEValueAllocator)
DIEBlock
();
260
DIEBlock
*Block = new (DIEValueAllocator)
DIEBlock
();
393
DIEBlock
*Block = new (DIEValueAllocator)
DIEBlock
();
446
DIEBlock
*Block = new (DIEValueAllocator)
DIEBlock
();
[
all
...]
DIE.cpp
319
//
DIEBlock
Implementation
324
unsigned
DIEBlock
::ComputeSize(AsmPrinter *AP) {
336
void
DIEBlock
::EmitValue(AsmPrinter *Asm, unsigned Form) const {
352
unsigned
DIEBlock
::SizeOf(AsmPrinter *AP, unsigned Form) const {
364
void
DIEBlock
::print(raw_ostream &O) {
DwarfDebug.h
41
class
DIEBlock
;
DwarfDebug.cpp
365
DIEBlock
*Block = SPCU->getDIEBlock();
[
all
...]
Completed in 1332 milliseconds