• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10/llvmCore-3425.0.34/utils/TableGen/

Lines Matching defs:inst

221 /// @arg inst         - The instruction to use when looking up the operands
224 const CodeGenInstruction &inst,
228 AsmWriterInst awInst(inst, syntax, -1, -1);
362 /// \param inst The instruction to use as a source of information
365 const CodeGenInstruction &inst) {
366 if (!inst.TheDef->isSubClassOf("X86Inst"))
370 unsigned int numOperands = inst.Operands.size();
373 const CGIOperandList::OperandInfo &operandInfo = inst.Operands[index];
380 errs() << "Instruction name: " << inst.TheDef->getName().c_str() << "\n";
390 /// \param inst The CodeGenInstruction, which provides a way to
396 const CodeGenInstruction &inst,
401 opIndex = inst.Operands.getOperandNamed(std::string(opName));
406 #define DECORATE1(opName, opFlag) decorate1(operandFlags, inst, opName, opFlag)
444 /// \param inst A reference to the original instruction
448 const CodeGenInstruction &inst) {
449 const std::string &name = inst.TheDef->getName();
755 /// \param inst The instruction to use as a source of information
758 const CodeGenInstruction &inst) {
759 if (!inst.TheDef->isSubClassOf("InstARM") &&
760 !inst.TheDef->isSubClassOf("InstThumb"))
764 unsigned int numOperands = inst.Operands.size();
773 const CGIOperandList::OperandInfo &operandInfo = inst.Operands[index];
779 errs() << "Instruction name: " << inst.TheDef->getName() << '\n';
797 /// \param inst A reference to the original instruction
802 const CodeGenInstruction &inst) {
803 const std::string &name = inst.TheDef->getName();
824 opIndex = inst.Operands.getOperandNamed("func");
846 const CodeGenInstruction& inst = *numberedInstructions[index];
855 new LiteralConstantEmitter(inst.Operands.size());
883 if (!inst.isPseudo) {
885 X86PopulateOperands(operandTypes, inst);
886 X86ExtractSemantics(*instType, operandFlags, inst);
890 ARMPopulateOperands(operandTypes, inst);
891 ARMExtractSemantics(*instType, operandTypes, operandFlags, inst);
909 populateOperandOrder(operandOrder, inst, syntaxIndex);