Searched refs:NumUserOperands (Results 1 – 6 of 6) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | User.h | 122 NumUserOperands = AllocInfo.NumOps; in User() 211 return reinterpret_cast<const Use *>(this) - NumUserOperands; in getIntrusiveOperands() 215 return reinterpret_cast<Use *>(this) - NumUserOperands; in getIntrusiveOperands() 233 assert(i < NumUserOperands && "getOperand() out of range!"); in getOperand() 238 assert(i < NumUserOperands && "setOperand() out of range!"); in setOperand() 246 assert(i < NumUserOperands && "getOperandUse() out of range!"); in getOperandUse() 250 assert(i < NumUserOperands && "getOperandUse() out of range!"); in getOperandUse() 254 unsigned getNumOperands() const { return NumUserOperands; } in getNumOperands() 268 NumUserOperands = NumOps; in setNumHungOffUseOperands() 287 return getOperandList() + NumUserOperands; in op_end() [all …]
|
| H A D | GlobalVariable.h | 86 NumUserOperands = NumOps; in setGlobalVariableNumOperands()
|
| H A D | Value.h | 109 unsigned NumUserOperands : NumUserOperandsBits; variable
|
| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | User.cpp | 149 Obj->NumUserOperands = Us; in allocateFixedOperandUser() 178 Obj->NumUserOperands = 0; in operator new() 200 Use::zap(*HungOffOperandList, *HungOffOperandList + Obj->NumUserOperands, in operator delete() 204 Use *UseBegin = static_cast<Use *>(Usr) - Obj->NumUserOperands; in operator delete() 205 Use::zap(UseBegin, UseBegin + Obj->NumUserOperands, /* Delete */ false); in operator delete() 211 Use *Storage = static_cast<Use *>(Usr) - Obj->NumUserOperands; in operator delete() 212 Use::zap(Storage, Storage + Obj->NumUserOperands, in operator delete()
|
| H A D | Instructions.cpp | 129 NumUserOperands = PN.getNumOperands(); in PHINode() 257 NumUserOperands = LP.getNumOperands(); in LandingPadInst() 1097 NumUserOperands = CSI.NumUserOperands; in CatchSwitchInst() 4269 NumUserOperands = IBI.NumUserOperands; in IndirectBrInst()
|
| H A D | Value.cpp | 55 SubclassData(0), NumUserOperands(0), IsUsedByMD(false), HasName(false), in Value()
|