Lines Matching refs:EntryKind
50 enum EntryType EntryKind; variable
67 DbgValueLocEntry(int64_t i) : EntryKind(E_Integer) { Constant.Int = i; } in DbgValueLocEntry()
68 DbgValueLocEntry(const ConstantFP *CFP) : EntryKind(E_ConstantFP) { in DbgValueLocEntry()
71 DbgValueLocEntry(const ConstantInt *CIP) : EntryKind(E_ConstantInt) { in DbgValueLocEntry()
74 DbgValueLocEntry(MachineLocation Loc) : EntryKind(E_Location), Loc(Loc) {} in DbgValueLocEntry()
76 : EntryKind(E_TargetIndexLocation), TIL(Loc) {} in DbgValueLocEntry()
78 bool isLocation() const { return EntryKind == E_Location; } in isLocation()
80 return EntryKind == E_Location && Loc.isIndirect(); in isIndirectLocation()
83 return EntryKind == E_TargetIndexLocation; in isTargetIndexLocation()
85 bool isInt() const { return EntryKind == E_Integer; } in isInt()
86 bool isConstantFP() const { return EntryKind == E_ConstantFP; } in isConstantFP()
87 bool isConstantInt() const { return EntryKind == E_ConstantInt; } in isConstantInt()
257 if (A.EntryKind != B.EntryKind)
260 switch (A.EntryKind) {