Searched refs:OpInit (Results 1 – 3 of 3) sorted by relevance
| /freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/TableGen/ |
| HD | Record.h | 727 class OpInit : public TypedInit { 729 explicit OpInit(InitKind K, RecTy *Type, uint8_t Opc) in OpInit() function 733 OpInit(const OpInit &) = delete; 734 OpInit &operator=(OpInit &) = delete; 742 virtual OpInit *clone(ArrayRef<Init *> Operands) const = 0; 752 class UnOpInit : public OpInit, public FoldingSetNode { 760 : OpInit(IK_UnOpInit, Type, opc), LHS(lhs) {} in UnOpInit() 775 OpInit *clone(ArrayRef<Init *> Operands) const override { in clone() 801 class BinOpInit : public OpInit, public FoldingSetNode { 811 OpInit(IK_BinOpInit, Type, opc), LHS(lhs), RHS(rhs) {} in BinOpInit() [all …]
|
| /freebsd-11-stable/contrib/llvm-project/llvm/lib/TableGen/ |
| HD | SetTheory.cpp | 299 DefInit *OpInit = dyn_cast<DefInit>(DagExpr->getOperator()); in evaluate() local 300 if (!OpInit) in evaluate() 302 auto I = Operators.find(OpInit->getDef()->getName()); in evaluate()
|
| HD | Record.cpp | 680 Init *OpInit::getBit(unsigned Bit) const { in getBit() 682 return const_cast<OpInit*>(this); in getBit() 683 return VarBitInit::get(const_cast<OpInit*>(this), Bit); in getBit()
|