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

  /external/llvm/unittests/CodeGen/
DIEHashTest.cpp 42 DIEInteger Size(4);
51 DIEInteger One(1);
66 DIEInteger One(1);
82 DIEInteger One(1);
108 DIEInteger Four(4);
115 DIEInteger Five(5);
123 DIEInteger Zero(0);
138 DIEInteger Eight(8);
141 DIEInteger Four(4);
146 DIEInteger Five(5)
    [all...]
  /external/swiftshader/third_party/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...]
  /external/llvm/lib/CodeGen/AsmPrinter/
DIE.cpp 237 // DIEInteger Implementation
242 void DIEInteger::EmitValue(const AsmPrinter *Asm, dwarf::Form Form) const {
279 unsigned DIEInteger::SizeOf(const AsmPrinter *AP, dwarf::Form Form) const {
309 void DIEInteger::print(raw_ostream &O) const {
398 DIEInteger(S.getIndex()).EmitValue(AP, Form);
410 DIEInteger(S.getOffset()).EmitValue(AP, Form);
422 return DIEInteger(S.getIndex()).SizeOf(AP, Form);
429 return DIEInteger(S.getOffset()).SizeOf(AP, Form);
DwarfUnit.cpp 187 DIEInteger(1));
190 DIEInteger(1));
196 Form = DIEInteger::BestForm(false, Integer);
197 Die.addValue(DIEValueAllocator, Attribute, *Form, DIEInteger(Integer));
208 Form = DIEInteger::BestForm(true, Integer);
209 Die.addValue(DIEValueAllocator, Attribute, *Form, DIEInteger(Integer));
277 dwarf::DW_FORM_ref_sig8, DIEInteger(Signature));
284 DIEInteger(Signature));
    [all...]
DwarfCompileUnit.cpp 47 DIEInteger(idx));
61 DIEInteger(0));
    [all...]
  /external/llvm/include/llvm/CodeGen/
DIE.h 107 /// DIEInteger - An integer value DIE.
109 class DIEInteger {
113 explicit DIEInteger(uint64_t I) : Integer(I) {}
290 typedef AlignedCharArrayUnion<DIEInteger, DIEString, DIEExpr, DIELabel,
  /external/llvm/tools/dsymutil/
DwarfLinker.cpp 67 *I = DIEValue(Old.getAttribute(), Old.getForm(), DIEInteger(New));
    [all...]

Completed in 272 milliseconds