Home | History | Annotate | Download | only in AsmParser

Lines Matching defs:ValID

41   /// ValID - Represents a reference of a definition of some sort with no type.
45 struct ValID {
70 ValID() : Kind(t_LocalID), APFloatVal(0.0) {}
71 ~ValID() {
76 bool operator<(const ValID &RHS) const {
81 "Ordering not defined for this ValID kind yet");
123 // References to blockaddress. The key is the function ValID, the value is
125 std::map<ValID, std::vector<std::pair<ValID, GlobalValue*> > >
304 bool ConvertValIDToValue(Type *Ty, ValID &ID, Value *&V,
344 bool ParseValID(ValID &ID, PerFunctionState *PFS = NULL);
348 bool ParseMetadataListValue(ValID &ID, PerFunctionState *PFS);
349 bool ParseMetadataValue(ValID &ID, PerFunctionState *PFS);
405 std::vector<std::pair<ValID, GlobalValue*> > &Refs,