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

  /external/llvm/utils/TableGen/
X86RecognizableInstr.cpp 488 for (unsigned operandIndex = 0; operandIndex < numOperands; ++operandIndex) {
489 const std::string &recName = OperandList[operandIndex].Rec->getName();
501 for (unsigned operandIndex = 0; operandIndex < numOperands; ++operandIndex) {
502 const std::string &recName = OperandList[operandIndex].Rec->getName();
513 unsigned &operandIndex,
525 while (operandMapping[operandIndex] != operandIndex)
    [all...]
X86RecognizableInstr.h 191 /// @param operandIndex - The index into the generated operand table.
204 unsigned &operandIndex,
X86DisassemblerTables.cpp 455 uint16_t index, operandIndex;
472 for (operandIndex = 0; operandIndex < X86_MAX_OPERANDS; ++operandIndex) {
475 .operands[operandIndex]
479 .operands[operandIndex]
483 if (operandIndex < X86_MAX_OPERANDS - 1)
EDEmitter.cpp 855 for (unsigned operandIndex = 0;
856 operandIndex < EDIS_MAX_OPERANDS;
857 ++operandIndex) {
858 operandTypes[operandIndex] = new LiteralConstantEmitter;
859 operandTypeArray->addEntry(operandTypes[operandIndex]);
861 operandFlags[operandIndex] = new FlagsConstantEmitter;
862 operandFlagArray->addEntry(operandFlags[operandIndex]);
    [all...]
  /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)) {
  /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]);

Completed in 193 milliseconds