| /freebsd-9-stable/contrib/llvm/lib/Linker/ |
| D | LinkModules.cpp | 1074 MDNode *SrcOp = SrcModFlags->getOperand(I); in linkModuleFlagsMetadata() local 1075 ConstantInt *SrcBehavior = cast<ConstantInt>(SrcOp->getOperand(0)); in linkModuleFlagsMetadata() 1076 MDString *ID = cast<MDString>(SrcOp->getOperand(1)); in linkModuleFlagsMetadata() 1084 if (Requirements.insert(cast<MDNode>(SrcOp->getOperand(2)))) { in linkModuleFlagsMetadata() 1085 DstModFlags->addOperand(SrcOp); in linkModuleFlagsMetadata() 1092 Flags[ID] = SrcOp; in linkModuleFlagsMetadata() 1093 DstModFlags->addOperand(SrcOp); in linkModuleFlagsMetadata() 1105 SrcOp->getOperand(2) != DstOp->getOperand(2)) { in linkModuleFlagsMetadata() 1113 DstOp->replaceOperandWith(2, SrcOp->getOperand(2)); in linkModuleFlagsMetadata() 1130 if (SrcOp->getOperand(2) != DstOp->getOperand(2)) { in linkModuleFlagsMetadata() [all …]
|
| /freebsd-9-stable/contrib/llvm/utils/TableGen/ |
| D | CodeGenInstruction.cpp | 238 std::pair<unsigned,unsigned> SrcOp = Ops.ParseOperandName(SrcOpName, false); in ParseConstraint() local 239 if (SrcOp > DestOp) { in ParseConstraint() 240 std::swap(SrcOp, DestOp); in ParseConstraint() 244 unsigned FlatOpNo = Ops.getFlattenedOperandNumber(SrcOp); in ParseConstraint()
|
| /freebsd-9-stable/contrib/llvm/lib/Analysis/ |
| D | InstructionSimplify.cpp | 2042 Value *SrcOp = LI->getOperand(0); in SimplifyICmpInst() local 2043 Type *SrcTy = SrcOp->getType(); in SimplifyICmpInst() 2052 if (Value *V = SimplifyICmpInst(Pred, SrcOp, in SimplifyICmpInst() 2059 if (Value *V = SimplifyICmpInst(Pred, SrcOp, RI->getOperand(0), in SimplifyICmpInst() 2072 SrcOp, RI->getOperand(0), Q, in SimplifyICmpInst() 2088 SrcOp, Trunc, Q, MaxRecurse-1)) in SimplifyICmpInst() 2131 if (Value *V = SimplifyICmpInst(Pred, SrcOp, RI->getOperand(0), in SimplifyICmpInst() 2146 if (Value *V = SimplifyICmpInst(Pred, SrcOp, Trunc, Q, MaxRecurse-1)) in SimplifyICmpInst() 2178 if (Value *V = SimplifyICmpInst(ICmpInst::ICMP_SLT, SrcOp, in SimplifyICmpInst() 2187 if (Value *V = SimplifyICmpInst(ICmpInst::ICMP_SGE, SrcOp, in SimplifyICmpInst()
|
| /freebsd-9-stable/contrib/llvm/lib/Transforms/Vectorize/ |
| D | LoopVectorize.cpp | 1343 Value *SrcOp = Instr->getOperand(op); in scalarizeInstruction() local 1346 if (SrcOp == OldInduction) { in scalarizeInstruction() 1347 Params.push_back(getVectorValue(SrcOp)); in scalarizeInstruction() 1352 Instruction *SrcInst = dyn_cast<Instruction>(SrcOp); in scalarizeInstruction() 1363 Scalars.append(UF, SrcOp); in scalarizeInstruction() 5093 Value *SrcOp = Instr->getOperand(op); in scalarizeInstruction() local 5096 if (SrcOp == OldInduction) { in scalarizeInstruction() 5097 Params.push_back(getVectorValue(SrcOp)); in scalarizeInstruction() 5102 Instruction *SrcInst = dyn_cast<Instruction>(SrcOp); in scalarizeInstruction() 5113 Scalars.append(UF, SrcOp); in scalarizeInstruction()
|
| /freebsd-9-stable/contrib/llvm/lib/CodeGen/SelectionDAG/ |
| D | LegalizeDAG.cpp | 120 SDValue EmitStackConvert(SDValue SrcOp, EVT SlotVT, EVT DestVT, SDLoc dl); 1717 SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp, in EmitStackConvert() argument 1723 TLI.getDataLayout()->getPrefTypeAlignment(SrcOp.getValueType(). in EmitStackConvert() 1731 unsigned SrcSize = SrcOp.getValueType().getSizeInBits(); in EmitStackConvert() 1742 Store = DAG.getTruncStore(DAG.getEntryNode(), dl, SrcOp, FIPtr, in EmitStackConvert() 1746 Store = DAG.getStore(DAG.getEntryNode(), dl, SrcOp, FIPtr, in EmitStackConvert()
|
| /freebsd-9-stable/contrib/llvm/lib/Target/X86/ |
| D | X86ISelLowering.cpp | 5301 static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp, in getVShift() argument 5307 SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp); in getVShift() 5309 DAG.getNode(Opc, dl, ShVT, SrcOp, in getVShift() 5311 TLI.getScalarShiftAmountTy(SrcOp.getValueType())))); in getVShift() 5315 LowerAsSplatVectorLoad(SDValue SrcOp, MVT VT, SDLoc dl, SelectionDAG &DAG) { in LowerAsSplatVectorLoad() argument 5320 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) { in LowerAsSplatVectorLoad() 6709 SDValue SrcOp, SelectionDAG &DAG, in getVZextMovL() argument 6713 if (!isScalarLoadToVector(SrcOp.getNode(), &LD)) in getVZextMovL() 6714 LD = dyn_cast<LoadSDNode>(SrcOp); in getVZextMovL() 6720 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR && in getVZextMovL() [all …]
|