HomeSort by relevance Sort by last modified time
    Searched refs:NumOperands (Results 1 - 25 of 38) sorted by null

1 2

  /external/llvm/include/llvm/
User.h 47 /// NumOperands - The number of values used by this User.
49 unsigned NumOperands;
53 : Value(ty, vty), OperandList(OpList), NumOperands(NumOps) {}
56 Use::zap(OperandList, OperandList + NumOperands, true);
58 // Reset NumOperands so User::operator delete() does the right thing.
59 NumOperands = 0;
63 Use::zap(OperandList, OperandList + NumOperands);
89 assert(i < NumOperands && "getOperand() out of range!");
93 assert(i < NumOperands && "setOperand() out of range!");
100 assert(i < NumOperands && "getOperandUse() out of range!")
    [all...]
Metadata.h 83 /// NumOperands - This many 'MDNodeOperand' items are co-allocated onto the
85 unsigned NumOperands;
146 unsigned getNumOperands() const { return NumOperands; }
GlobalVariable.h 76 NumOperands = 1; // FIXME: needed by operator delete
  /external/llvm/include/llvm/Analysis/
ConstantsScanner.h 63 unsigned NumOperands = InstI->getNumOperands();
64 while (OpIdx < NumOperands && !isAtConstant()) {
68 if (OpIdx < NumOperands) return *this; // Found a constant!
ScalarEvolutionExpressions.h 145 size_t NumOperands;
149 : SCEV(ID, T), Operands(O), NumOperands(N) {}
152 size_t getNumOperands() const { return NumOperands; }
154 assert(i < NumOperands && "Operand index out of range!");
160 op_iterator op_end() const { return Operands + NumOperands; }
  /external/llvm/lib/VMCore/
User.cpp 64 Obj->NumOperands = Us;
75 Use *Storage = static_cast<Use*>(Usr) - Start->NumOperands;
77 // NumOperands reset to 0, so here we just free the User itself.
Globals.cpp 164 NumOperands = 0;
170 NumOperands = 1;
Metadata.cpp 113 NumOperands = Vals.size();
120 for (MDNodeOperand *Op = getOperandPtr(this, 0), *E = Op+NumOperands;
142 for (MDNodeOperand *Op = getOperandPtr(this, 0), *E = Op+NumOperands;
Instructions.cpp 126 --NumOperands;
227 NumOperands = 1;
254 ++NumOperands;
266 assert(NumOperands == Args.size() + 1 && "NumOperands not set up?");
288 assert(NumOperands == 1 && "NumOperands not set up?");
521 assert(NumOperands == 3 + Args.size() && "NumOperands not set up?");
    [all...]
  /external/llvm/lib/Transforms/Utils/
ValueMapper.cpp 105 unsigned OpNo = 0, NumOperands = C->getNumOperands();
107 for (; OpNo != NumOperands; ++OpNo) {
120 if (OpNo == NumOperands && NewTy == C->getType())
126 Ops.reserve(NumOperands);
131 if (OpNo != NumOperands) {
135 for (++OpNo; OpNo != NumOperands; ++OpNo)
  /external/llvm/include/llvm/MC/
MCInstrDesc.h 137 unsigned short NumOperands; // Num of args (may be more if variable_ops)
145 const MCOperandInfo *OpInfo; // 'NumOperands' entries about operands
151 if (OpNum < NumOperands &&
170 return NumOperands;
  /external/llvm/utils/TableGen/
CodeGenTarget.h 192 unsigned NumOperands;
197 ComplexPattern() : NumOperands(0) {}
201 unsigned getNumOperands() const { return NumOperands; }
CodeGenDAGPatterns.h 205 int NumOperands;
214 int getNumOperands() const { return NumOperands; }
AsmMatcherEmitter.cpp 348 static ResOperand getRenderedOp(unsigned AsmOpNum, unsigned NumOperands) {
352 X.MINumOperands = NumOperands;
    [all...]
CodeGenTarget.cpp 353 NumOperands = R->getValueAsInt("NumOperands");
  /external/llvm/lib/CodeGen/AsmPrinter/
AsmPrinterInlineAsm.cpp 149 unsigned NumOperands = MI->getNumOperands();
155 assert(NumDefs != NumOperands-2 && "No asm string?");
325 if (Val >= NumOperands-1)
  /frameworks/compile/libbcc/lib/Renderscript/
RSInfoExtractor.cpp 63 template<size_t NumOperands>
72 if ((node != NULL) && (node->getNumOperands() >= NumOperands)) {
73 // Compiler try its best to unroll this loop since NumOperands is a
76 for (unsigned j = 0; j < NumOperands; j++) {
  /external/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h 342 /// NumOperands/NumValues - The number of entries in the Operand/Value list.
343 unsigned short NumOperands, NumValues;
532 unsigned getNumOperands() const { return NumOperands; }
539 assert(Num < NumOperands && "Invalid child # of SDNode!");
545 op_iterator op_end() const { return OperandList+NumOperands; }
688 NumOperands(NumOps), NumValues(VTs.NumVTs),
702 UseList(NULL), NumOperands(0), NumValues(VTs.NumVTs),
709 NumOperands = 1;
720 NumOperands = 2;
734 NumOperands = 3
    [all...]
  /external/llvm/lib/Target/X86/
X86FloatingPoint.cpp     [all...]
  /external/llvm/lib/CodeGen/
MachineInstr.cpp     [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
LegalizeTypes.cpp 267 unsigned NumOperands = N->getNumOperands();
270 for (i = 0; i != NumOperands; ++i) {
340 if (i == NumOperands) {
    [all...]
LegalizeVectorTypes.cpp     [all...]
  /external/llvm/lib/Transforms/Vectorize/
BBVectorize.cpp     [all...]
  /external/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp     [all...]
  /frameworks/compile/slang/BitWriter_2_9/
BitcodeWriter.cpp     [all...]

Completed in 995 milliseconds

1 2