Home
last modified time | relevance | path

Searched refs:operandIndex (Results 1 – 10 of 10) sorted by relevance

/external/swiftshader/third_party/LLVM/utils/TableGen/
DX86RecognizableInstr.cpp481 for (unsigned operandIndex = 0; operandIndex < numOperands; ++operandIndex) { in hasFROperands() local
482 const std::string &recName = OperandList[operandIndex].Rec->getName(); in hasFROperands()
494 for (unsigned operandIndex = 0; operandIndex < numOperands; ++operandIndex) { in has256BitOperands() local
495 const std::string &recName = OperandList[operandIndex].Rec->getName(); in has256BitOperands()
506 unsigned &operandIndex, in handleOperand() argument
518 while (operandMapping[operandIndex] != operandIndex) { in handleOperand()
519 Spec->operands[operandIndex].encoding = ENCODING_DUP; in handleOperand()
520 Spec->operands[operandIndex].type = in handleOperand()
521 (OperandType)(TYPE_DUP0 + operandMapping[operandIndex]); in handleOperand()
522 ++operandIndex; in handleOperand()
[all …]
DX86DisassemblerTables.cpp434 uint16_t index, operandIndex; in emitInstructionInfo() local
451 for (operandIndex = 0; operandIndex < X86_MAX_OPERANDS; ++operandIndex) { in emitInstructionInfo()
454 .operands[operandIndex] in emitInstructionInfo()
458 .operands[operandIndex] in emitInstructionInfo()
462 if (operandIndex < X86_MAX_OPERANDS - 1) in emitInstructionInfo()
DEDEmitter.cpp826 for (unsigned operandIndex = 0; in populateInstInfo() local
827 operandIndex < EDIS_MAX_OPERANDS; in populateInstInfo()
828 ++operandIndex) { in populateInstInfo()
829 operandTypes[operandIndex] = new LiteralConstantEmitter; in populateInstInfo()
830 operandTypeArray->addEntry(operandTypes[operandIndex]); in populateInstInfo()
832 operandFlags[operandIndex] = new FlagsConstantEmitter; in populateInstInfo()
833 operandFlagArray->addEntry(operandFlags[operandIndex]); in populateInstInfo()
DX86RecognizableInstr.h198 unsigned &operandIndex,
/external/llvm/utils/TableGen/
DX86RecognizableInstr.cpp477 void RecognizableInstr::handleOperand(bool optional, unsigned &operandIndex, in handleOperand() argument
491 while (operandMapping[operandIndex] != operandIndex) { in handleOperand()
492 Spec->operands[operandIndex].encoding = ENCODING_DUP; in handleOperand()
493 Spec->operands[operandIndex].type = in handleOperand()
494 (OperandType)(TYPE_DUP0 + operandMapping[operandIndex]); in handleOperand()
495 ++operandIndex; in handleOperand()
498 const std::string &typeName = (*Operands)[operandIndex].Rec->getName(); in handleOperand()
503 Spec->operands[operandIndex].encoding = encoding; in handleOperand()
504 Spec->operands[operandIndex].type = typeFromString(typeName, in handleOperand()
507 ++operandIndex; in handleOperand()
[all …]
DX86RecognizableInstr.h177 unsigned &operandIndex,
/external/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/
DX86RecognizableInstr.cpp372 void RecognizableInstr::handleOperand(bool optional, unsigned &operandIndex, in handleOperand() argument
386 while (operandMapping[operandIndex] != operandIndex) { in handleOperand()
387 Spec->operands[operandIndex].encoding = ENCODING_DUP; in handleOperand()
388 Spec->operands[operandIndex].type = in handleOperand()
389 (OperandType)(TYPE_DUP0 + operandMapping[operandIndex]); in handleOperand()
390 ++operandIndex; in handleOperand()
393 StringRef typeName = (*Operands)[operandIndex].Rec->getName(); in handleOperand()
398 Spec->operands[operandIndex].encoding = encoding; in handleOperand()
399 Spec->operands[operandIndex].type = typeFromString(typeName, in handleOperand()
402 ++operandIndex; in handleOperand()
[all …]
DX86RecognizableInstr.h297 unsigned &operandIndex,
/external/swiftshader/third_party/LLVM/tools/llvm-mc/
DDisassembler.cpp291 int operandIndex = token->operandID(); in disassembleEnhanced() local
293 if (operandIndex >= 0) in disassembleEnhanced()
294 Out << operandIndex << "-"; in disassembleEnhanced()
344 for (unsigned operandIndex = 0; operandIndex != numOperands; in disassembleEnhanced() local
345 ++operandIndex) { in disassembleEnhanced()
346 Out << operandIndex << ":"; in disassembleEnhanced()
349 if (inst->getOperand(operand, operandIndex)) { in disassembleEnhanced()
/external/swiftshader/third_party/LLVM/lib/MC/MCDisassembler/
DEDToken.cpp103 unsigned int operandIndex; in tokenize() local
107 operandIndex = 0; in tokenize()
137 ++operandIndex; in tokenize()
194 if (operandIndex > 0) in tokenize()
195 token->setOperandID(operandOrder[operandIndex - 1]); in tokenize()