Home
last modified time | relevance | path

Searched refs:SrcOp (Results 1 – 6 of 6) sorted by relevance

/external/llvm/lib/Linker/
DLinkModules.cpp1274 MDNode *SrcOp = SrcModFlags->getOperand(I); in linkModuleFlagsMetadata() local
1275 ConstantInt *SrcBehavior = cast<ConstantInt>(SrcOp->getOperand(0)); in linkModuleFlagsMetadata()
1276 MDString *ID = cast<MDString>(SrcOp->getOperand(1)); in linkModuleFlagsMetadata()
1284 if (Requirements.insert(cast<MDNode>(SrcOp->getOperand(2)))) { in linkModuleFlagsMetadata()
1285 DstModFlags->addOperand(SrcOp); in linkModuleFlagsMetadata()
1292 Flags[ID] = SrcOp; in linkModuleFlagsMetadata()
1293 DstModFlags->addOperand(SrcOp); in linkModuleFlagsMetadata()
1305 SrcOp->getOperand(2) != DstOp->getOperand(2)) { in linkModuleFlagsMetadata()
1313 DstOp->replaceOperandWith(2, SrcOp->getOperand(2)); in linkModuleFlagsMetadata()
1330 if (SrcOp->getOperand(2) != DstOp->getOperand(2)) { in linkModuleFlagsMetadata()
[all …]
/external/llvm/utils/TableGen/
DCodeGenInstruction.cpp238 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()
/external/llvm/lib/Analysis/
DInstructionSimplify.cpp2021 Value *SrcOp = LI->getOperand(0); in SimplifyICmpInst() local
2022 Type *SrcTy = SrcOp->getType(); in SimplifyICmpInst()
2031 if (Value *V = SimplifyICmpInst(Pred, SrcOp, in SimplifyICmpInst()
2038 if (Value *V = SimplifyICmpInst(Pred, SrcOp, RI->getOperand(0), in SimplifyICmpInst()
2051 SrcOp, RI->getOperand(0), Q, in SimplifyICmpInst()
2067 SrcOp, Trunc, Q, MaxRecurse-1)) in SimplifyICmpInst()
2110 if (Value *V = SimplifyICmpInst(Pred, SrcOp, RI->getOperand(0), in SimplifyICmpInst()
2125 if (Value *V = SimplifyICmpInst(Pred, SrcOp, Trunc, Q, MaxRecurse-1)) in SimplifyICmpInst()
2157 if (Value *V = SimplifyICmpInst(ICmpInst::ICMP_SLT, SrcOp, in SimplifyICmpInst()
2166 if (Value *V = SimplifyICmpInst(ICmpInst::ICMP_SGE, SrcOp, in SimplifyICmpInst()
/external/llvm/lib/Transforms/Vectorize/
DLoopVectorize.cpp1758 Value *SrcOp = Instr->getOperand(op); in scalarizeInstruction() local
1761 if (SrcOp == OldInduction) { in scalarizeInstruction()
1762 Params.push_back(getVectorValue(SrcOp)); in scalarizeInstruction()
1767 Instruction *SrcInst = dyn_cast<Instruction>(SrcOp); in scalarizeInstruction()
1778 Scalars.append(UF, SrcOp); in scalarizeInstruction()
5897 Value *SrcOp = Instr->getOperand(op); in scalarizeInstruction() local
5900 if (SrcOp == OldInduction) { in scalarizeInstruction()
5901 Params.push_back(getVectorValue(SrcOp)); in scalarizeInstruction()
5906 Instruction *SrcInst = dyn_cast<Instruction>(SrcOp); in scalarizeInstruction()
5917 Scalars.append(UF, SrcOp); in scalarizeInstruction()
/external/llvm/lib/CodeGen/SelectionDAG/
DLegalizeDAG.cpp121 SDValue EmitStackConvert(SDValue SrcOp, EVT SlotVT, EVT DestVT, SDLoc dl);
1760 SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp, in EmitStackConvert() argument
1766 TLI.getDataLayout()->getPrefTypeAlignment(SrcOp.getValueType(). in EmitStackConvert()
1774 unsigned SrcSize = SrcOp.getValueType().getSizeInBits(); in EmitStackConvert()
1785 Store = DAG.getTruncStore(DAG.getEntryNode(), dl, SrcOp, FIPtr, in EmitStackConvert()
1789 Store = DAG.getStore(DAG.getEntryNode(), dl, SrcOp, FIPtr, in EmitStackConvert()
/external/llvm/lib/Target/X86/
DX86ISelLowering.cpp5553 static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp, in getVShift() argument
5559 SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp); in getVShift()
5561 DAG.getNode(Opc, dl, ShVT, SrcOp, in getVShift()
5563 TLI.getScalarShiftAmountTy(SrcOp.getValueType())))); in getVShift()
5567 LowerAsSplatVectorLoad(SDValue SrcOp, MVT VT, SDLoc dl, SelectionDAG &DAG) { in LowerAsSplatVectorLoad() argument
5572 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) { in LowerAsSplatVectorLoad()
8611 SDValue SrcOp, SelectionDAG &DAG, in getVZextMovL() argument
8615 if (!isScalarLoadToVector(SrcOp.getNode(), &LD)) in getVZextMovL()
8616 LD = dyn_cast<LoadSDNode>(SrcOp); in getVZextMovL()
8622 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR && in getVZextMovL()
[all …]