HomeSort by relevance Sort by last modified time
    Searched refs:DIEInteger (Results 1 - 5 of 5) sorted by null

  /external/llvm/lib/CodeGen/AsmPrinter/
DIE.cpp 118 DIEInteger *DI = new (A) DIEInteger(0);
185 // DIEInteger Implementation
190 void DIEInteger::EmitValue(AsmPrinter *Asm, unsigned Form) const {
212 unsigned DIEInteger::SizeOf(AsmPrinter *AP, unsigned Form) const {
232 void DIEInteger::print(raw_ostream &O) {
DIE.h 237 /// DIEInteger - An integer value DIE.
239 class DIEInteger : public DIEValue {
242 explicit DIEInteger(uint64_t I) : DIEValue(isInteger), Integer(I) {}
270 static bool classof(const DIEInteger *) { return true; }
DwarfCompileUnit.h 294 DIEInteger *DIEIntegerOne;
DwarfCompileUnit.cpp 35 DIEIntegerOne = new (DIEValueAllocator) DIEInteger(1);
55 if (!Form) Form = DIEInteger::BestForm(false, Integer);
57 DIEIntegerOne : new (DIEValueAllocator) DIEInteger(Integer);
65 if (!Form) Form = DIEInteger::BestForm(true, Integer);
66 DIEValue *Value = new (DIEValueAllocator) DIEInteger(Integer);
    [all...]
DwarfDebug.cpp     [all...]

Completed in 1591 milliseconds