HomeSort by: relevance | last modified time | path
    Searched refs:DIEInteger (Results 1 - 7 of 7) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
DIE.cpp 370 // DIEInteger Implementation
375 void DIEInteger::emitValue(const AsmPrinter *Asm, dwarf::Form Form) const {
430 unsigned DIEInteger::SizeOf(const AsmPrinter *AP, dwarf::Form Form) const {
455 void DIEInteger::print(raw_ostream &O) const {
582 DIEInteger(S.getIndex()).emitValue(AP, Form);
588 DIEInteger(S.getOffset()).emitValue(AP, Form);
606 return DIEInteger(S.getIndex()).SizeOf(AP, Form);
610 return DIEInteger(S.getOffset()).SizeOf(AP, Form);
DwarfUnit.cpp 222 addAttribute(Die, Attribute, dwarf::DW_FORM_flag_present, DIEInteger(1));
224 addAttribute(Die, Attribute, dwarf::DW_FORM_flag, DIEInteger(1));
230 Form = DIEInteger::BestForm(false, Integer);
233 addAttribute(Die, Attribute, *Form, DIEInteger(Integer));
244 Form = DIEInteger::BestForm(true, Integer);
245 addAttribute(Die, Attribute, *Form, DIEInteger(Integer));
371 DIEInteger(Signature));
AccelTable.cpp 412 dwarf::Form Form = DIEInteger::BestForm(/*IsSigned*/ false, LargestCUIndex);
481 DIEInteger ID(getCUIndexForEntry(Entry));
DwarfCompileUnit.cpp 89 DIEInteger(idx));
117 addAttribute(Die, Attribute, dwarf::DW_FORM_addr, DIEInteger(0));
  /src/external/apache2/llvm/dist/llvm/lib/DWARFLinker/
DWARFLinker.cpp 863 DIEInteger(StringEntry.getOffset()));
893 DIEInteger Attr(Ctxt->getCanonicalDIEOffset());
922 dwarf::DW_FORM_ref_addr, DIEInteger(Attr));
929 dwarf::DW_FORM_ref_addr, DIEInteger(Attr)));
1045 dwarf::DW_FORM_data1, DIEInteger(Byte));
1066 dwarf::Form(AttrSpec.Form), DIEInteger(Val.getRawUValue()));
1132 static_cast<dwarf::Form>(Form), DIEInteger(Addr));
1158 dwarf::Form(AttrSpec.Form), DIEInteger(Value));
1182 dwarf::Form(AttrSpec.Form), DIEInteger(Value));
1627 static void patchStmtList(DIE &Die, DIEInteger Offset)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
DIE.h 163 class DIEInteger {
167 explicit DIEInteger(uint64_t I) : Integer(I) {}
351 DIEInteger Addr;
388 AlignedCharArrayUnion<DIEInteger, DIEString, DIEExpr, DIELabel,
  /src/external/apache2/llvm/dist/llvm/include/llvm/DWARFLinker/
DWARFLinkerCompileUnit.h 39 *I = DIEValue(Old.getAttribute(), Old.getForm(), DIEInteger(New));

Completed in 27 milliseconds