/external/llvm/lib/Linker/ |
D | LinkModules.cpp | 1020 MDNode *SrcOp = SrcModFlags->getOperand(I); in linkModuleFlagsMetadata() local 1021 ConstantInt *SrcBehavior = cast<ConstantInt>(SrcOp->getOperand(0)); in linkModuleFlagsMetadata() 1022 MDString *ID = cast<MDString>(SrcOp->getOperand(1)); in linkModuleFlagsMetadata() 1030 if (Requirements.insert(cast<MDNode>(SrcOp->getOperand(2)))) { in linkModuleFlagsMetadata() 1031 DstModFlags->addOperand(SrcOp); in linkModuleFlagsMetadata() 1038 Flags[ID] = SrcOp; in linkModuleFlagsMetadata() 1039 DstModFlags->addOperand(SrcOp); in linkModuleFlagsMetadata() 1051 SrcOp->getOperand(2) != DstOp->getOperand(2)) { in linkModuleFlagsMetadata() 1059 DstOp->replaceOperandWith(2, SrcOp->getOperand(2)); in linkModuleFlagsMetadata() 1076 if (SrcOp->getOperand(2) != DstOp->getOperand(2)) { in linkModuleFlagsMetadata() [all …]
|
/external/llvm/utils/TableGen/ |
D | CodeGenInstruction.cpp | 237 std::pair<unsigned,unsigned> SrcOp = Ops.ParseOperandName(SrcOpName, false); in ParseConstraint() local 238 if (SrcOp > DestOp) { in ParseConstraint() 239 std::swap(SrcOp, DestOp); in ParseConstraint() 243 unsigned FlatOpNo = Ops.getFlattenedOperandNumber(SrcOp); in ParseConstraint()
|
/external/llvm/lib/Analysis/ |
D | InstructionSimplify.cpp | 2022 Value *SrcOp = LI->getOperand(0); in SimplifyICmpInst() local 2023 Type *SrcTy = SrcOp->getType(); in SimplifyICmpInst() 2032 if (Value *V = SimplifyICmpInst(Pred, SrcOp, in SimplifyICmpInst() 2039 if (Value *V = SimplifyICmpInst(Pred, SrcOp, RI->getOperand(0), in SimplifyICmpInst() 2052 SrcOp, RI->getOperand(0), Q, in SimplifyICmpInst() 2068 SrcOp, Trunc, Q, MaxRecurse-1)) in SimplifyICmpInst() 2111 if (Value *V = SimplifyICmpInst(Pred, SrcOp, RI->getOperand(0), in SimplifyICmpInst() 2126 if (Value *V = SimplifyICmpInst(Pred, SrcOp, Trunc, Q, MaxRecurse-1)) in SimplifyICmpInst() 2158 if (Value *V = SimplifyICmpInst(ICmpInst::ICMP_SLT, SrcOp, in SimplifyICmpInst() 2167 if (Value *V = SimplifyICmpInst(ICmpInst::ICMP_SGE, SrcOp, in SimplifyICmpInst()
|
/external/llvm/lib/Transforms/Vectorize/ |
D | LoopVectorize.cpp | 1007 Value *SrcOp = Instr->getOperand(op); in scalarizeInstruction() local 1010 if (SrcOp == OldInduction) { in scalarizeInstruction() 1011 Params.push_back(getVectorValue(SrcOp)); in scalarizeInstruction() 1016 Instruction *SrcInst = dyn_cast<Instruction>(SrcOp); in scalarizeInstruction() 1027 Scalars.append(UF, SrcOp); in scalarizeInstruction()
|
/external/llvm/lib/Target/X86/ |
D | X86ISelLowering.h | 789 SDValue LowerAsSplatVectorLoad(SDValue SrcOp, EVT VT, DebugLoc dl,
|
D | X86ISelLowering.cpp | 4963 static SDValue getVShift(bool isLeft, EVT VT, SDValue SrcOp, in getVShift() argument 4969 SrcOp = DAG.getNode(ISD::BITCAST, dl, ShVT, SrcOp); in getVShift() 4971 DAG.getNode(Opc, dl, ShVT, SrcOp, in getVShift() 4973 TLI.getScalarShiftAmountTy(SrcOp.getValueType())))); in getVShift() 4977 X86TargetLowering::LowerAsSplatVectorLoad(SDValue SrcOp, EVT VT, DebugLoc dl, in LowerAsSplatVectorLoad() argument 4983 if (LoadSDNode *LD = dyn_cast<LoadSDNode>(SrcOp)) { in LowerAsSplatVectorLoad() 6229 SDValue SrcOp, SelectionDAG &DAG, in getVZextMovL() argument 6233 if (!isScalarLoadToVector(SrcOp.getNode(), &LD)) in getVZextMovL() 6234 LD = dyn_cast<LoadSDNode>(SrcOp); in getVZextMovL() 6240 SrcOp.getOpcode() == ISD::SCALAR_TO_VECTOR && in getVZextMovL() [all …]
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | LegalizeDAG.cpp | 116 SDValue EmitStackConvert(SDValue SrcOp, EVT SlotVT, EVT DestVT, DebugLoc dl); 1684 SDValue SelectionDAGLegalize::EmitStackConvert(SDValue SrcOp, in EmitStackConvert() argument 1690 TLI.getDataLayout()->getPrefTypeAlignment(SrcOp.getValueType(). in EmitStackConvert() 1698 unsigned SrcSize = SrcOp.getValueType().getSizeInBits(); in EmitStackConvert() 1709 Store = DAG.getTruncStore(DAG.getEntryNode(), dl, SrcOp, FIPtr, in EmitStackConvert() 1713 Store = DAG.getStore(DAG.getEntryNode(), dl, SrcOp, FIPtr, in EmitStackConvert()
|