HomeSort by relevance Sort by last modified time
    Searched defs:operandIndex (Results 1 - 2 of 2) sorted by null

  /external/llvm/lib/MC/MCDisassembler/
EDToken.cpp 103 unsigned int operandIndex;
107 operandIndex = 0;
137 ++operandIndex;
190 /// operandIndex == 0 means the operand is the instruction (which the
192 /// operandIndex == 0 and subtract 1 from all other operand indices.
194 if (operandIndex > 0)
195 token->setOperandID(operandOrder[operandIndex - 1]);
  /external/llvm/tools/llvm-mc/
Disassembler.cpp 268 int operandIndex = token->operandID();
270 if (operandIndex >= 0)
271 Out << operandIndex << "-";
320 for (unsigned operandIndex = 0; operandIndex != numOperands;
321 ++operandIndex) {
322 Out << operandIndex << ":";
325 if (inst->getOperand(operand, operandIndex)) {

Completed in 151 milliseconds