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

  /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...]
  /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/lib/TableGen/
Record.cpp 685 Init *OpInit::resolveBitReference(Record &R, const RecordVal *IRV,
699 Init *OpInit::resolveListElementReference(Record &R, const RecordVal *IRV,
702 OpInit *OResolved = dynamic_cast<OpInit *>(Resolved);
1014 static Init *EvaluateOperation(OpInit *RHSo, Init *LHS, Init *Arg,
1033 OpInit *RHSoo = dynamic_cast<OpInit*>(RHSo->getOperand(i));
1051 const OpInit *NewOp = RHSo->clone(NewOperands);
1067 OpInit *RHSo = dynamic_cast<OpInit*>(RHS)
    [all...]

Completed in 1065 milliseconds