HomeSort by relevance Sort by last modified time
    Searched defs:numOperands (Results 1 - 5 of 5) 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() {
  /external/llvm/tools/llvm-mc/
Disassembler.cpp 339 unsigned numOperands = inst->numOperands();
341 if ((int)numOperands < 0) {
346 for (unsigned operandIndex = 0; operandIndex != numOperands;
  /external/llvm/utils/TableGen/
EDEmitter.cpp 357 unsigned int numOperands = inst.Operands.size();
359 for (index = 0; index < numOperands; ++index) {
728 unsigned int numOperands = inst.Operands.size();
730 if (numOperands > EDIS_MAX_OPERANDS) {
731 errs() << "numOperands == " << numOperands << " > " <<
736 for (index = 0; index < numOperands; ++index) {
X86RecognizableInstr.cpp 487 unsigned numOperands = OperandList.size();
489 for (unsigned operandIndex = 0; operandIndex < numOperands; ++operandIndex) {
500 unsigned numOperands = OperandList.size();
502 for (unsigned operandIndex = 0; operandIndex < numOperands; ++operandIndex) {
568 unsigned numOperands = OperandList.size();
577 assert(numOperands < X86_MAX_OPERANDS && "X86_MAX_OPERANDS is not large enough");
579 for (operandIndex = 0; operandIndex < numOperands; ++operandIndex) {
624 // operandIndex should always be < numOperands
    [all...]

Completed in 260 milliseconds