Home | History | Annotate | Download | only in AsmParser

Lines Matching refs:ValID

42   /// ValID - Represents a reference of a definition of some sort with no type.
46 struct ValID {
71 ValID() : Kind(t_LocalID), APFloatVal(0.0) {}
72 ~ValID() {
77 bool operator<(const ValID &RHS) const {
82 "Ordering not defined for this ValID kind yet");
129 // References to blockaddress. The key is the function ValID, the value is
131 std::map<ValID, std::vector<std::pair<ValID, GlobalValue*> > >
326 bool ConvertValIDToValue(Type *Ty, ValID &ID, Value *&V,
366 bool ParseValID(ValID &ID, PerFunctionState *PFS = nullptr);
371 bool ParseMetadataListValue(ValID &ID, PerFunctionState *PFS);
372 bool ParseMetadataValue(ValID &ID, PerFunctionState *PFS);
431 std::vector<std::pair<ValID, GlobalValue*> > &Refs,