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

  /external/llvm/utils/TableGen/
SetTheory.cpp 265 DefInit *OpInit = dynamic_cast<DefInit*>(DagExpr->getOperator());
266 if (!OpInit)
268 Operator *Op = Operators.lookup(OpInit->getDef()->getName());
  /external/llvm/include/llvm/TableGen/
Record.h 797 /// OpInit - Base class for operators
799 class OpInit : public TypedInit {
800 OpInit(const OpInit &Other); // Do not define.
801 OpInit &operator=(OpInit &Other); // Do not define.
804 explicit OpInit(RecTy *Type) : TypedInit(Type) {}
808 virtual OpInit *clone(std::vector<Init *> &Operands) const = 0;
818 return Ty->convertValue(const_cast<OpInit *>(this));
830 class UnOpInit : public OpInit {
    [all...]

Completed in 62 milliseconds