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

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

Completed in 292 milliseconds