Lines Matching defs:CPred
43 if (def->isSubClassOf("CPred"))
44 return static_cast<const CPred *>(this)->getConditionImpl();
54 CPred::CPred(const Record *record) : Pred(record) {
55 assert(def->isSubClassOf("CPred") &&
56 "must be a subclass of Tablegen 'CPred' class");
59 CPred::CPred(const Init *init) : Pred(init) {
60 assert((!def || def->isSubClassOf("CPred")) &&
61 "must be a subclass of Tablegen 'CPred' class");
65 std::string CPred::getConditionImpl() const {