Searched defs:OpInit (Results 1 - 2 of 2) sorted by relevance

/external/llvm/utils/TableGen/
H A DSetTheory.cpp287 DefInit *OpInit = dyn_cast<DefInit>(DagExpr->getOperator()); local
288 if (!OpInit)
290 Operator *Op = Operators.lookup(OpInit->getDef()->getName());
/external/llvm/include/llvm/TableGen/
H A DRecord.h845 /// OpInit - Base class for operators
847 class OpInit : public TypedInit { class in namespace:llvm
848 OpInit(const OpInit &Other) LLVM_DELETED_FUNCTION;
849 OpInit &operator=(OpInit &Other) LLVM_DELETED_FUNCTION;
852 explicit OpInit(InitKind K, RecTy *Type) : TypedInit(K, Type) {} function in class:llvm::OpInit
860 virtual OpInit *clone(std::vector<Init *> &Operands) const = 0;
870 return Ty->convertValue(const_cast<OpInit *>(this));
882 class UnOpInit : public OpInit {
[all...]

Completed in 62 milliseconds