HomeSort by relevance Sort by last modified time
    Searched refs:numOperands (Results 1 - 8 of 8) sorted by null

  /external/llvm/include/llvm/MC/
EDInstInfo.h 21 uint8_t numOperands;
  /external/llvm/lib/MC/MCDisassembler/
EDInst.cpp 42 unsigned int numOperands = Operands.size();
44 for (index = 0; index < numOperands; ++index)
110 for (opIndex = 0; opIndex < ThisInstInfo->numOperands; ++opIndex) {
148 int EDInst::numOperands() {
EDInst.h 145 /// numOperands - returns the number of operands available to retrieve, or -1
147 int numOperands();
EDMain.cpp 188 return ((EDInst*)inst)->numOperands();
  /external/llvm/tools/llvm-mc/
Disassembler.cpp 313 unsigned numOperands = inst->numOperands();
315 if ((int)numOperands < 0) {
320 for (unsigned operandIndex = 0; operandIndex != numOperands;
  /external/llvm/utils/TableGen/
X86RecognizableInstr.cpp 486 unsigned numOperands = OperandList.size();
488 for (unsigned operandIndex = 0; operandIndex < numOperands; ++operandIndex) {
499 unsigned numOperands = OperandList.size();
501 for (unsigned operandIndex = 0; operandIndex < numOperands; ++operandIndex) {
567 unsigned numOperands = OperandList.size();
576 assert(numOperands <= X86_MAX_OPERANDS && "X86_MAX_OPERANDS is not large enough");
578 for (operandIndex = 0; operandIndex < numOperands; ++operandIndex) {
623 // operandIndex should always be < numOperands
    [all...]
EDEmitter.cpp 358 unsigned int numOperands = inst.Operands.size();
360 for (index = 0; index < numOperands; ++index) {
751 unsigned int numOperands = inst.Operands.size();
753 if (numOperands > EDIS_MAX_OPERANDS) {
754 errs() << "numOperands == " << numOperands << " > " <<
759 for (index = 0; index < numOperands; ++index) {
    [all...]
  /external/llvm/include/llvm/CodeGen/
SelectionDAGNodes.h 337 /// NumOperands/NumValues - The number of entries in the Operand/Value list.
338 unsigned short NumOperands, NumValues;
527 unsigned getNumOperands() const { return NumOperands; }
534 assert(Num < NumOperands && "Invalid child # of SDNode!");
540 op_iterator op_end() const { return OperandList+NumOperands; }
683 NumOperands(NumOps), NumValues(VTs.NumVTs),
697 UseList(NULL), NumOperands(0), NumValues(VTs.NumVTs),
704 NumOperands = 1;
715 NumOperands = 2;
729 NumOperands = 3
    [all...]

Completed in 95 milliseconds