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

  /external/llvm/lib/CodeGen/AsmPrinter/
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...]
DIEHash.cpp 282 void DIEHash::hashAttribute(DIEValue Value, dwarf::Tag Tag) {
293 case DIEValue::isNone:
294 llvm_unreachable("Expected valid DIEValue");
299 case DIEValue::isEntry:
302 case DIEValue::isInteger: {
327 case DIEValue::isString:
333 case DIEValue::isBlock:
334 case DIEValue::isLoc:
335 case DIEValue::isLocList:
339 if (Value.getType() == DIEValue::isBlock)
    [all...]
DIE.cpp 113 for (const DIEValue &V : values())
139 DIEValue DIE::findAttribute(dwarf::Attribute Attribute) const {
145 return DIEValue();
194 void DIEValue::EmitValue(const AsmPrinter *AP) const {
197 llvm_unreachable("Expected valid DIEValue");
202 #include "llvm/CodeGen/DIEValue.def"
206 unsigned DIEValue::SizeOf(const AsmPrinter *AP) const {
209 llvm_unreachable("Expected valid DIEValue");
213 #include "llvm/CodeGen/DIEValue.def"
219 void DIEValue::print(raw_ostream &O) const
    [all...]
DwarfDebug.cpp     [all...]
  /external/llvm/include/llvm/CodeGen/
DIE.h 286 /// DIEValue - A debug information entry value. Some of these roughly correlate
291 class DIEValue {
296 #include "llvm/CodeGen/DIEValue.def"
350 #include "llvm/CodeGen/DIEValue.def"
359 void copyVal(const DIEValue &X) {
371 #include "llvm/CodeGen/DIEValue.def"
376 DIEValue() = default;
377 DIEValue(const DIEValue &X) : Ty(X.Ty), Attribute(X.Attribute), Form(X.Form) {
380 DIEValue &operator=(const DIEValue &X)
    [all...]
  /external/llvm/tools/dsymutil/
DwarfLinker.cpp 66 assert(Old.getType() == DIEValue::isInteger);
67 *I = DIEValue(Old.getAttribute(), Old.getForm(), DIEInteger(New));
    [all...]

Completed in 764 milliseconds