Searched refs:operandIndex (Results 1 – 10 of 10) sorted by relevance
/external/swiftshader/third_party/LLVM/utils/TableGen/ |
D | X86RecognizableInstr.cpp | 481 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 …]
|
D | X86DisassemblerTables.cpp | 434 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()
|
D | EDEmitter.cpp | 826 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()
|
D | X86RecognizableInstr.h | 198 unsigned &operandIndex,
|
/external/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/ |
D | X86RecognizableInstr.cpp | 372 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 …]
|
D | X86RecognizableInstr.h | 297 unsigned &operandIndex,
|
/external/llvm/utils/TableGen/ |
D | X86RecognizableInstr.cpp | 477 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 …]
|
D | X86RecognizableInstr.h | 177 unsigned &operandIndex,
|
/external/swiftshader/third_party/LLVM/tools/llvm-mc/ |
D | Disassembler.cpp | 291 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/ |
D | EDToken.cpp | 103 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()
|