Searched refs:DIEValue (Results 1 – 8 of 8) sorted by relevance
/external/llvm/lib/CodeGen/AsmPrinter/ |
D | DIEHash.h | 31 DIEValue DW_AT_name; 32 DIEValue DW_AT_accessibility; 33 DIEValue DW_AT_address_class; 34 DIEValue DW_AT_allocated; 35 DIEValue DW_AT_artificial; 36 DIEValue DW_AT_associated; 37 DIEValue DW_AT_binary_scale; 38 DIEValue DW_AT_bit_offset; 39 DIEValue DW_AT_bit_size; 40 DIEValue DW_AT_bit_stride; [all …]
|
D | DIEHash.cpp | 282 void DIEHash::hashAttribute(DIEValue Value, dwarf::Tag Tag) { in hashAttribute() 293 case DIEValue::isNone: in hashAttribute() 299 case DIEValue::isEntry: in hashAttribute() 302 case DIEValue::isInteger: { in hashAttribute() 327 case DIEValue::isString: in hashAttribute() 333 case DIEValue::isBlock: in hashAttribute() 334 case DIEValue::isLoc: in hashAttribute() 335 case DIEValue::isLocList: in hashAttribute() 339 if (Value.getType() == DIEValue::isBlock) { in hashAttribute() 342 } else if (Value.getType() == DIEValue::isLoc) { in hashAttribute() [all …]
|
D | DIE.cpp | 113 for (const DIEValue &V : values()) in generateAbbrev() 139 DIEValue DIE::findAttribute(dwarf::Attribute Attribute) const { in findAttribute() 145 return DIEValue(); in findAttribute() 194 void DIEValue::EmitValue(const AsmPrinter *AP) const { in EmitValue() 206 unsigned DIEValue::SizeOf(const AsmPrinter *AP) const { in SizeOf() 219 void DIEValue::print(raw_ostream &O) const { in print() 232 void DIEValue::dump() const { in dump()
|
D | DwarfDebug.cpp | 1363 if (DIEValue SpecVal = Die->findAttribute(dwarf::DW_AT_specification)) { in computeIndexValue()
|
/external/llvm/include/llvm/CodeGen/ |
D | DIE.h | 291 class DIEValue { 359 void copyVal(const DIEValue &X) { in copyVal() 376 DIEValue() = default; 377 DIEValue(const DIEValue &X) : Ty(X.Ty), Attribute(X.Attribute), Form(X.Form) { in DIEValue() function 380 DIEValue &operator=(const DIEValue &X) { 388 ~DIEValue() { destroyVal(); } in ~DIEValue() 391 DIEValue(dwarf::Attribute Attribute, dwarf::Form Form, const DIE##T &V) \ 396 DIEValue(dwarf::Attribute Attribute, dwarf::Form Form, const DIE##T *V) \ 541 DIEValue V; 542 explicit Node(DIEValue V) : V(V) {} in Node() [all …]
|
D | DIEValue.def | 1 //===- llvm/CodeGen/DIEValue.def - DIEValue types ---------------*- C++ -*-===// 10 // Macros for running through all types of DIEValue.
|
/external/llvm/include/llvm/ |
D | module.modulemap | 34 textual header "CodeGen/DIEValue.def"
|
/external/llvm/tools/dsymutil/ |
D | DwarfLinker.cpp | 66 assert(Old.getType() == DIEValue::isInteger); in set() 67 *I = DIEValue(Old.getAttribute(), Old.getForm(), DIEInteger(New)); in set() 2382 DIEValue Value; in cloneBlockAttribute() 2397 Value = DIEValue(dwarf::Attribute(AttrSpec.Attr), in cloneBlockAttribute() 2400 Value = DIEValue(dwarf::Attribute(AttrSpec.Attr), in cloneBlockAttribute() 2912 V = DIEValue(V.getAttribute(), V.getForm(), Offset); in patchStmtList()
|