Home | History | Annotate | Download | only in Sema

Lines Matching defs:Operands

207   // Validate the asm string, ensuring it makes sense given the operands we
217 // Validate tied input operands for type mismatches.
222 // either exactly the same type, or that they are int/ptr operands with the
297 // Either both of the operands were mentioned or the smaller one was
394 // Break the AsmSting into pieces (i.e., mnemonic and operands).
402 // Operands
543 // Parse the operands.
545 SmallVector<llvm::MCParsedAsmOperand*, 8> Operands;
547 Operands);
548 // If we had an error parsing the operands, fail gracefully.
555 HadError = TargetParser->MatchInstruction(IDLoc, Kind, Operands, Instrs,
558 // If we had an error parsing the operands, fail gracefully.
570 for (unsigned i = 1, e = Operands.size(); i != e; ++i) {
572 unsigned MCIdx = TargetParser->getMCInstOperandNum(Kind, Inst, Operands,