HomeSort by relevance Sort by last modified time
    Searched defs:OpInit (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/TableGen/
SetTheory.cpp 289 DefInit *OpInit = dyn_cast<DefInit>(DagExpr->getOperator());
290 if (!OpInit)
292 Operator *Op = Operators.lookup(OpInit->getDef()->getName());
  /external/llvm/include/llvm/TableGen/
Record.h 846 /// OpInit - Base class for operators
848 class OpInit : public TypedInit {
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) {}
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 1238 milliseconds