Home
last modified time | relevance | path

Searched refs:MaxOperands (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/LowLevel/
H A DDWARFCFIProgram.cpp47 if (OperandIdx >= MaxOperands) in getOperandAsUnsigned()
92 if (OperandIdx >= MaxOperands) in getOperandAsSigned()
143 ArrayRef<CFIProgram::OperandType[CFIProgram::MaxOperands]>
145 static OperandType OpTypes[DW_CFA_restore + 1][MaxOperands]; in getOperandTypes()
148 return ArrayRef<OperandType[MaxOperands]>(&OpTypes[0], DW_CFA_restore + 1); in getOperandTypes()
202 return ArrayRef<OperandType[MaxOperands]>(&OpTypes[0], DW_CFA_restore + 1); in getOperandTypes()
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/LowLevel/
H A DDWARFCFIProgram.h36 static constexpr size_t MaxOperands = 3;
37 typedef SmallVector<uint64_t, MaxOperands> Operands;
255 LLVM_ABI static ArrayRef<OperandType[MaxOperands]> getOperandTypes();
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Scalar/
H A DGVNExpression.h142 unsigned MaxOperands; variable
150 : Expression(ET), MaxOperands(NumOperands) {} in BasicExpression()
196 assert(NumOperands < MaxOperands && "Tried to add too many operands"); in op_push_back()
204 Operands = Recycler.allocate(RecyclerCapacity::get(MaxOperands), Allocator); in allocateOperands()
207 Recycler.deallocate(RecyclerCapacity::get(MaxOperands), Operands); in deallocateOperands()
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/
H A DDWARFCFIPrinter.cpp46 assert(OperandIdx < CFIProgram::MaxOperands); in printOperand()