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

  /external/swiftshader/third_party/LLVM/utils/TableGen/
AsmMatcherEmitter.cpp 317 /// This is the operand # in the AsmOperands list that this should be
394 /// AsmOperands - The textual operands that this instruction matches,
398 SmallVector<AsmOperand, 4> AsmOperands;
431 for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i)
432 if (N == AsmOperands[i].SrcOpName &&
433 SubOpIdx == AsmOperands[i].SubOpIdx)
441 for (unsigned i = 0, e = AsmOperands.size(); i != e; ++i)
442 if (N == AsmOperands[i].SrcOpName)
456 if (AsmOperands.size() != RHS.AsmOperands.size()
    [all...]
  /external/llvm/utils/TableGen/
AsmMatcherEmitter.cpp 411 /// This is the operand # in the AsmOperands list that this should be
491 /// AsmOperands - The textual operands that this instruction matches,
495 SmallVector<AsmOperand, 8> AsmOperands;
531 Mnemonic(RHS.Mnemonic), AsmOperands(RHS.AsmOperands),
559 auto I = std::find_if(AsmOperands.begin(), AsmOperands.end(),
563 return (I != AsmOperands.end()) ? I - AsmOperands.begin() : -1;
569 auto I = std::find_if(AsmOperands.begin(), AsmOperands.end()
    [all...]

Completed in 86 milliseconds