Home
last modified time | relevance | path

Searched refs:NumUserOperands (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DUser.h122 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 DGlobalVariable.h86 NumUserOperands = NumOps; in setGlobalVariableNumOperands()
H A DValue.h109 unsigned NumUserOperands : NumUserOperandsBits; variable
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DUser.cpp149 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 DInstructions.cpp129 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 DValue.cpp55 SubclassData(0), NumUserOperands(0), IsUsedByMD(false), HasName(false), in Value()