HomeSort by relevance Sort by last modified time
    Searched refs:AsmOperands (Results 1 - 3 of 3) 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...]
  /external/swiftshader/third_party/llvm-7.0/llvm/utils/TableGen/
AsmMatcherEmitter.cpp 441 /// This is the operand # in the AsmOperands list that this should be
521 /// AsmOperands - The textual operands that this instruction matches,
525 SmallVector<AsmOperand, 8> AsmOperands;
561 Mnemonic(RHS.Mnemonic), AsmOperands(RHS.AsmOperands),
589 auto I = find_if(AsmOperands, [&](const AsmOperand &Op) {
592 return (I != AsmOperands.end()) ? I - AsmOperands.begin() : -1;
598 auto I = std::find_if(AsmOperands.begin() + LastIdx + 1, AsmOperands.end()
    [all...]

Completed in 300 milliseconds