HomeSort by relevance Sort by last modified time
    Searched defs:EntryKind (Results 1 - 2 of 2) sorted by null

  /external/llvm/include/llvm/CodeGen/
MachineJumpTableInfo.h 74 JTEntryKind EntryKind;
77 explicit MachineJumpTableInfo(JTEntryKind Kind): EntryKind(Kind) {}
79 JTEntryKind getEntryKind() const { return EntryKind; }
  /external/llvm/lib/CodeGen/AsmPrinter/
DwarfDebug.h 79 enum EntryType EntryKind;
92 Constant(false) { Constants.Int = 0; EntryKind = E_Location; }
95 Constant(true) { Constants.Int = i; EntryKind = E_Integer; }
98 Constant(true) { Constants.CFP = FPtr; EntryKind = E_ConstantFP; }
101 Constant(true) { Constants.CIP = IPtr; EntryKind = E_ConstantInt; }
113 bool isLocation() const { return EntryKind == E_Location; }
114 bool isInt() const { return EntryKind == E_Integer; }
115 bool isConstantFP() const { return EntryKind == E_ConstantFP; }
116 bool isConstantInt() const { return EntryKind == E_ConstantInt; }

Completed in 52 milliseconds