Home
last modified time | relevance | path

Searched refs:InstOps (Results 1 – 2 of 2) sorted by relevance

/freebsd-9-stable/contrib/llvm/utils/TableGen/
DDAGISelMatcherGen.cpp734 SmallVector<unsigned, 8> InstOps; in EmitResultInstructionAsOperand() local
747 EmitResultOperand(DefaultOp.DefaultOps[i], InstOps); in EmitResultInstructionAsOperand()
764 unsigned FinalNumOps = InstOps.size() + NumSubOps; in EmitResultInstructionAsOperand()
765 while (InstOps.size() < FinalNumOps) { in EmitResultInstructionAsOperand()
767 unsigned BeforeAddingNumOps = InstOps.size(); in EmitResultInstructionAsOperand()
768 EmitResultOperand(Child, InstOps); in EmitResultInstructionAsOperand()
769 assert(InstOps.size() > BeforeAddingNumOps && "Didn't add any operands"); in EmitResultInstructionAsOperand()
774 InstOps.resize(BeforeAddingNumOps+1); in EmitResultInstructionAsOperand()
854 InstOps.data(), InstOps.size(), in EmitResultInstructionAsOperand()
/freebsd-9-stable/contrib/llvm/lib/Target/X86/
DX86ISelLowering.cpp10938 SmallVector<SDValue, 11> InstOps; in LowerVAARG() local
10939 InstOps.push_back(Chain); in LowerVAARG()
10940 InstOps.push_back(SrcPtr); in LowerVAARG()
10941 InstOps.push_back(DAG.getConstant(ArgSize, MVT::i32)); in LowerVAARG()
10942 InstOps.push_back(DAG.getConstant(ArgMode, MVT::i8)); in LowerVAARG()
10943 InstOps.push_back(DAG.getConstant(Align, MVT::i32)); in LowerVAARG()
10946 VTs, &InstOps[0], InstOps.size(), in LowerVAARG()