/llvm-project/llvm/tools/llvm-reduce/deltas/ |
H A D | ReduceOperands.cpp | 28 for (auto &Op : Phi->incoming_values()) { in extractOperandsFromModule() local 38 for (auto &Op : I.operands()) { in extractOperandsFromModule() local 48 static bool isOne(Use &Op) { in isOne() 53 static bool isZero(Use &Op) { in isZero() 58 static bool isZeroOrOneFP(Value *Op) { in isZeroOrOneFP() 64 static bool shouldReduceOperand(Use &Op) { in shouldReduceOperand() 79 static bool switchCaseExists(Use &Op, ConstantInt *CI) { in switchCaseExists() 87 auto ReduceValue = [](Use &Op) -> Value * { in reduceOperandsOneDeltaPass() 130 auto ReduceValue = [](Use &Op) -> Value * { in reduceOperandsZeroDeltaPass() 149 auto ReduceValue = [](Use &Op) -> Value * { in reduceOperandsNaNDeltaPass()
|
/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | LegalizeTypes.h | 251 SDValue GetPromotedInteger(SDValue Op) { in GetPromotedInteger() argument 260 SExtPromotedInteger(SDValue Op) SExtPromotedInteger() argument 269 ZExtPromotedInteger(SDValue Op) ZExtPromotedInteger() argument 277 VPSExtPromotedInteger(SDValue Op,SDValue Mask,SDValue EVL) VPSExtPromotedInteger() argument 290 VPZExtPromotedInteger(SDValue Op,SDValue Mask,SDValue EVL) VPZExtPromotedInteger() argument 535 GetSoftenedFloat(SDValue Op) GetSoftenedFloat() argument 706 GetPromotedFloat(SDValue Op) GetPromotedFloat() argument 752 GetSoftPromotedHalf(SDValue Op) GetSoftPromotedHalf() argument 801 GetScalarizedVector(SDValue Op) GetScalarizedVector() argument 968 GetWidenedVector(SDValue Op) GetWidenedVector() argument 1117 GetSplitOp(SDValue Op,SDValue & Lo,SDValue & Hi) GetSplitOp() argument 1149 GetExpandedOp(SDValue Op,SDValue & Lo,SDValue & Hi) GetExpandedOp() argument [all...] |
H A D | LegalizeTypes.cpp | 310 LLVM_DEBUG(dbgs() << "Analyzing operand: "; Op.dump(&DAG)); in run() local 518 SDValue Op = OrigOp; AnalyzeNewNode() local 707 SetPromotedInteger(SDValue Op,SDValue Result) SetPromotedInteger() argument 720 SetSoftenedFloat(SDValue Op,SDValue Result) SetSoftenedFloat() argument 735 SetPromotedFloat(SDValue Op,SDValue Result) SetPromotedFloat() argument 746 SetSoftPromotedHalf(SDValue Op,SDValue Result) SetSoftPromotedHalf() argument 756 SetScalarizedVector(SDValue Op,SDValue Result) SetScalarizedVector() argument 772 GetExpandedInteger(SDValue Op,SDValue & Lo,SDValue & Hi) GetExpandedInteger() argument 780 SetExpandedInteger(SDValue Op,SDValue Lo,SDValue Hi) SetExpandedInteger() argument 809 GetExpandedFloat(SDValue Op,SDValue & Lo,SDValue & Hi) GetExpandedFloat() argument 817 SetExpandedFloat(SDValue Op,SDValue Lo,SDValue Hi) SetExpandedFloat() argument 833 GetSplitVector(SDValue Op,SDValue & Lo,SDValue & Hi) GetSplitVector() argument 842 SetSplitVector(SDValue Op,SDValue Lo,SDValue Hi) SetSplitVector() argument 861 SetWidenedVector(SDValue Op,SDValue Result) SetWidenedVector() argument 878 BitConvertToInteger(SDValue Op) BitConvertToInteger() argument 885 BitConvertVectorToIntegerVector(SDValue Op) BitConvertVectorToIntegerVector() argument 894 CreateStackStoreLoad(SDValue Op,EVT DestVT) CreateStackStoreLoad() argument 1019 SplitInteger(SDValue Op,EVT LoVT,EVT HiVT,SDValue & Lo,SDValue & Hi) SplitInteger() argument 1039 SplitInteger(SDValue Op,SDValue & Lo,SDValue & Hi) SplitInteger() argument [all...] |
/llvm-project/llvm/lib/Target/X86/MCTargetDesc/ |
H A D | X86IntelInstPrinter.cpp | 360 const MCOperand &Op = MI->getOperand(OpNo); printOperand() local 372 printMemReference(const MCInst * MI,unsigned Op,raw_ostream & O) printMemReference() argument 430 printSrcIdx(const MCInst * MI,unsigned Op,raw_ostream & O) printSrcIdx() argument 441 printDstIdx(const MCInst * MI,unsigned Op,raw_ostream & O) printDstIdx() argument 452 printMemOffset(const MCInst * MI,unsigned Op,raw_ostream & O) printMemOffset() argument 472 printU8Imm(const MCInst * MI,unsigned Op,raw_ostream & O) printU8Imm() argument 482 const MCOperand &Op = MI->getOperand(OpNo); printSTiRegOperand() local [all...] |
H A D | X86ATTInstPrinter.cpp | 414 assert(Op.isExpr() && "unknown operand kind in printOperand"); in printMemReference() argument 383 const MCOperand &Op = MI->getOperand(OpNo); printOperand() local 462 printSrcIdx(const MCInst * MI,unsigned Op,raw_ostream & O) printSrcIdx() argument 474 printDstIdx(const MCInst * MI,unsigned Op,raw_ostream & O) printDstIdx() argument 483 printMemOffset(const MCInst * MI,unsigned Op,raw_ostream & O) printMemOffset() argument 500 printU8Imm(const MCInst * MI,unsigned Op,raw_ostream & O) printU8Imm() argument 511 const MCOperand &Op = MI->getOperand(OpNo); printSTiRegOperand() local [all...] |
H A D | X86InstPrinterCommon.cpp | 29 void X86InstPrinterCommon::printCondCode(const MCInst *MI, unsigned Op, in printCondCode() argument 59 printCondFlags(const MCInst * MI,unsigned Op,raw_ostream & O) printCondFlags() argument 80 printSSEAVXCC(const MCInst * MI,unsigned Op,raw_ostream & O) printSSEAVXCC() argument 316 printRoundingControl(const MCInst * MI,unsigned Op,raw_ostream & O) printRoundingControl() argument 348 const MCOperand &Op = MI->getOperand(OpNo); printPCRelImm() local [all...] |
/llvm-project/clang-tools-extra/clang-tidy/bugprone/ |
H A D | ChainedComparisonCheck.cpp | 20 if (const auto *Op = dyn_cast_or_null<BinaryOperator>(E->IgnoreImplicit())) in isExprAComparisonOperator() local 22 if (const auto *Op = in isExprAComparisonOperator() local 68 void ChainedComparisonData::extract(const BinaryOperator *Op) { in extract() 84 void ChainedComparisonData::extract(const CXXOperatorCallExpr *Op) { in extract() 100 void ChainedComparisonData::extract(const Expr *Op) { in extract()
|
/llvm-project/llvm/include/llvm/MC/ |
H A D | MCInst.h | 135 MCOperand Op; createReg() local 142 MCOperand Op; createImm() local 149 MCOperand Op; createSFPImm() local 156 MCOperand Op; createDFPImm() local 163 MCOperand Op; createExpr() local 170 MCOperand Op; createInst() local 197 setOpcode(unsigned Op) setOpcode() argument 210 addOperand(const MCOperand Op) addOperand() argument 224 insert(iterator I,const MCOperand & Op) insert() argument [all...] |
/llvm-project/clang/lib/Tooling/Transformer/ |
H A D | SourceCodeBuilders.cpp | 45 if (const auto *Op = dyn_cast<CXXOperatorCallExpr>(Expr)) in mayEverNeedParens() local 57 if (const auto *Op = dyn_cast<CXXOperatorCallExpr>(Expr)) in needParensAfterUnaryOperator() local 87 if (const auto *Op = dyn_cast<UnaryOperator>(&E)) in buildDereference() local 110 if (const auto *Op = dyn_cast<UnaryOperator>(&E)) in buildAddressOf() local 133 if (const auto *Op = llvm::dyn_cast<UnaryOperator>(&E)) in buildAccessForValue() local 159 if (const auto *Op = llvm::dyn_cast<UnaryOperator>(&E)) in buildAccessForPointer() local
|
H A D | Parsing.cpp | 195 RangeSelectorOp<T> Op, in parseSingle() 216 RangeSelectorOp<T, T> Op, in parsePair() argument 252 if (auto Op = findOptional(getUnaryStringSelectors(), OpName)) in parseRangeSelectorImpl() local 255 if (auto Op = findOptional(getUnaryRangeSelectors(), OpName)) in parseRangeSelectorImpl() local 258 if (auto Op = findOptional(getBinaryStringSelectors(), OpName)) in parseRangeSelectorImpl() local 261 if (auto Op = findOptional(getBinaryRangeSelectors(), OpName)) in parseRangeSelectorImpl() local
|
/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/ |
H A D | CSEMIRBuilder.h | 66 profileDstOp(Op, B); in profileSrcOps() local 59 for (const DstOp &Op : Ops) profileDstOps() local
|
/llvm-project/llvm/lib/Transforms/Vectorize/ |
H A D | VPlanSLP.cpp | 70 if (!all_of(Operands, [](VPValue *Op) { in areVectorizable() 86 if (!all_of(Operands, [Opcode, Width](VPValue *Op) { in areVectorizable() 96 if (any_of(Operands, [this](VPValue *Op) { in areVectorizable() 104 [](VPValue *Op) { return Op->hasMoreThanOneUniqueUser(); })) { in areVectorizable() 133 if (!all_of(Operands, [](VPValue *Op) { in areVectorizable() 143 if (!all_of(Operands, [](VPValue *Op) { in areVectorizable() 325 for (unsigned Op = 0, E = MultiNodeOps.size(); Op < E; ++Op) { in reorderMultiNodeOps() local 347 for (auto *Op : Values) { in dumpBundle() local 411 VPInstruction *Op = new VPInstruction(0, {}); in buildGraph() local
|
/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64ISelDAGToDAG.cpp | 180 SDValue Op = N->getOperand(0); SelectRoundingVLShr() local 562 SelectInlineAsmMemoryOperand(const SDValue & Op,const InlineAsm::ConstraintCode ConstraintID,std::vector<SDValue> & OutOps) SelectInlineAsmMemoryOperand() argument 1926 SelectClamp(SDNode * N,unsigned NumVecs,unsigned Op) SelectClamp() argument 1975 SelectMultiVectorMove(SDNode * N,unsigned NumVecs,unsigned BaseReg,unsigned Op) SelectMultiVectorMove() argument 2009 SelectMultiVectorMoveZ(SDNode * N,unsigned NumVecs,unsigned Op,unsigned MaxIdx,unsigned Scale,unsigned BaseReg) SelectMultiVectorMoveZ() argument 2450 SDValue Op = N->getOperand(0); isBitfieldExtractOpFromSExtInReg() local 2589 SDValue Op = N->getOperand(0); tryBitfieldExtractOpFromSExt() local 2707 getUsefulBitsFromAndWithImmediate(SDValue Op,APInt & UsefulBits,unsigned Depth) getUsefulBitsFromAndWithImmediate() argument 2716 getUsefulBitsFromBitfieldMoveOpd(SDValue Op,APInt & UsefulBits,uint64_t Imm,uint64_t MSB,unsigned Depth) getUsefulBitsFromBitfieldMoveOpd() argument 2743 getUsefulBitsFromUBFM(SDValue Op,APInt & UsefulBits,unsigned Depth) getUsefulBitsFromUBFM() argument 2753 getUsefulBitsFromOrWithShiftedReg(SDValue Op,APInt & UsefulBits,unsigned Depth) getUsefulBitsFromOrWithShiftedReg() argument 2781 getUsefulBitsFromBFM(SDValue Op,SDValue Orig,APInt & UsefulBits,unsigned Depth) getUsefulBitsFromBFM() argument 2884 getUsefulBits(SDValue Op,APInt & UsefulBits,unsigned Depth) getUsefulBits() argument 2911 getLeftShift(SelectionDAG * CurDAG,SDValue Op,int ShlAmount) getLeftShift() argument 2955 isBitfieldPositioningOp(SelectionDAG * CurDAG,SDValue Op,bool BiggerPattern,SDValue & Src,int & DstLSB,int & Width) isBitfieldPositioningOp() argument 2985 isBitfieldPositioningOpFromAnd(SelectionDAG * CurDAG,SDValue Op,bool BiggerPattern,const uint64_t NonZeroBits,SDValue & Src,int & DstLSB,int & Width) isBitfieldPositioningOpFromAnd() argument 3075 isSeveralBitsPositioningOpFromShl(const uint64_t ShlImm,SDValue Op,SDValue & Src,int & DstLSB,int & Width) isSeveralBitsPositioningOpFromShl() argument 3107 isBitfieldPositioningOpFromShl(SelectionDAG * CurDAG,SDValue Op,bool BiggerPattern,const uint64_t NonZeroBits,SDValue & Src,int & DstLSB,int & Width) isBitfieldPositioningOpFromShl() argument 4592 unsigned Op = Select() local 4610 unsigned Op = Select() local 5459 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int>( Select() local 5466 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int>( Select() local 5473 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int>( Select() local 5480 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int>( Select() local 5487 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int>( Select() local 5494 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int>( Select() local 5501 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int>( Select() local 5508 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int>( Select() local 5515 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int>( Select() local 5522 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int>( Select() local 5529 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int>( Select() local 5536 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int>( Select() local 5543 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int1>( Select() local 5550 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int1>( Select() local 5557 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int1>( Select() local 5564 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int1>( Select() local 5571 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int1>( Select() local 5578 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int1>( Select() local 5585 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int1>( Select() local 5592 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int1>( Select() local 5599 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int>( Select() local 5606 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int>( Select() local 5613 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::FP>( Select() local 5620 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int>( Select() local 5627 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int>( Select() local 5634 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::FP>( Select() local 5641 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int>( Select() local 5648 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int>( Select() local 5655 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::FP>( Select() local 5662 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int>( Select() local 5669 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int>( Select() local 5676 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::FP>( Select() local 5683 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int>( Select() local 5690 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int>( Select() local 5697 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::FP>( Select() local 5704 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int>( Select() local 5711 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int>( Select() local 5718 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::FP>( Select() local 5725 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int>( Select() local 5732 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int>( Select() local 5739 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::FP>( Select() local 5746 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int>( Select() local 5753 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int>( Select() local 5760 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::FP>( Select() local 5767 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::FP>( Select() local 5774 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::FP>( Select() local 5781 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::FP>( Select() local 5788 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::FP>( Select() local 5795 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::FP>( Select() local 5802 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::FP>( Select() local 5809 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::FP>( Select() local 5816 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::FP>( Select() local 5853 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int>( Select() local 5860 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int>( Select() local 5867 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::FP>( Select() local 5877 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int>( Select() local 5884 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int>( Select() local 5891 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::FP>( Select() local 5901 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int>( Select() local 5908 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int>( Select() local 5915 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::AnyType>( Select() local 5926 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::AnyType>( Select() local 5937 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::AnyType>( Select() local 5948 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::AnyType>( Select() local 5959 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::AnyType>( Select() local 5966 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::AnyType>( Select() local 5997 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int>( Select() local 6004 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int>( Select() local 6011 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int>( Select() local 6018 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::Int>( Select() local 6025 if (auto Op = SelectOpcodeFromVT<SelectTypeKind::AnyType>( Select() local [all...] |
/llvm-project/llvm/lib/Target/VE/ |
H A D | VECustomDAG.cpp | 50 bool isMaskArithmetic(SDValue Op) { in isMaskArithmetic() argument 85 bool maySafelyIgnoreMask(SDValue Op) { in maySafelyIgnoreMask() argument 218 SDValue getNodeChain(SDValue Op) { in getNodeChain() argument 230 getMemoryPtr(SDValue Op) getMemoryPtr() argument 243 getIdiomaticVectorType(SDNode * Op) getIdiomaticVectorType() argument 292 getLoadStoreStride(SDValue Op,VECustomDAG & CDAG) getLoadStoreStride() argument 316 getGatherScatterIndex(SDValue Op) getGatherScatterIndex() argument 324 getGatherScatterScale(SDValue Op) getGatherScatterScale() argument 332 getStoredValue(SDValue Op) getStoredValue() argument 353 getNodePassthru(SDValue Op) getNodePassthru() argument 385 getNodeAVL(SDValue Op) getNodeAVL() argument 390 getNodeMask(SDValue Op) getNodeMask() argument 395 getAnnotatedNodeAVL(SDValue Op) getAnnotatedNodeAVL() argument [all...] |
H A D | VVPISelLowering.cpp | 21 SDValue VETargetLowering::splitMaskArithmetic(SDValue Op, in splitMaskArithmetic() 38 SDValue VETargetLowering::lowerToVVP(SDValue Op, SelectionDAG &DAG) const { in lowerToVVP() 123 SDValue VETargetLowering::lowerVVP_LOAD_STORE(SDValue Op, in lowerVVP_LOAD_STORE() 182 SDValue VETargetLowering::splitPackedLoadStore(SDValue Op, in splitPackedLoadStore() 269 SDValue VETargetLowering::lowerVVP_GATHER_SCATTER(SDValue Op, in lowerVVP_GATHER_SCATTER() 317 SDValue VETargetLowering::legalizeInternalLoadStoreOp(SDValue Op, in legalizeInternalLoadStoreOp() 329 SDValue VETargetLowering::legalizeInternalVectorOp(SDValue Op, in legalizeInternalVectorOp() 350 SDValue VETargetLowering::splitVectorOp(SDValue Op, VECustomDAG &CDAG) const { in splitVectorOp() 402 SDValue VETargetLowering::legalizePackedAVL(SDValue Op, in legalizePackedAVL()
|
/llvm-project/llvm/lib/Target/AMDGPU/MCTargetDesc/ |
H A D | AMDGPUMCCodeEmitter.cpp | 430 const MCOperand &Op = MI.getOperand(i); encodeInstruction() local 457 getSOPPBrEncoding(const MCInst & MI,unsigned OpNo,APInt & Op,SmallVectorImpl<MCFixup> & Fixups,const MCSubtargetInfo & STI) const getSOPPBrEncoding() argument 473 getSMEMOffsetEncoding(const MCInst & MI,unsigned OpNo,APInt & Op,SmallVectorImpl<MCFixup> & Fixups,const MCSubtargetInfo & STI) const getSMEMOffsetEncoding() argument 482 getSDWASrcEncoding(const MCInst & MI,unsigned OpNo,APInt & Op,SmallVectorImpl<MCFixup> & Fixups,const MCSubtargetInfo & STI) const getSDWASrcEncoding() argument 513 getSDWAVopcDstEncoding(const MCInst & MI,unsigned OpNo,APInt & Op,SmallVectorImpl<MCFixup> & Fixups,const MCSubtargetInfo & STI) const getSDWAVopcDstEncoding() argument 531 getAVOperandEncoding(const MCInst & MI,unsigned OpNo,APInt & Op,SmallVectorImpl<MCFixup> & Fixups,const MCSubtargetInfo & STI) const getAVOperandEncoding() argument 585 getMachineOpValue(const MCInst & MI,const MCOperand & MO,APInt & Op,SmallVectorImpl<MCFixup> & Fixups,const MCSubtargetInfo & STI) const getMachineOpValue() argument 600 getMachineOpValueT16(const MCInst & MI,unsigned OpNo,APInt & Op,SmallVectorImpl<MCFixup> & Fixups,const MCSubtargetInfo & STI) const getMachineOpValueT16() argument 647 getMachineOpValueT16Lo128(const MCInst & MI,unsigned OpNo,APInt & Op,SmallVectorImpl<MCFixup> & Fixups,const MCSubtargetInfo & STI) const getMachineOpValueT16Lo128() argument 663 getMachineOpValueCommon(const MCInst & MI,const MCOperand & MO,unsigned OpNo,APInt & Op,SmallVectorImpl<MCFixup> & Fixups,const MCSubtargetInfo & STI) const getMachineOpValueCommon() argument [all...] |
/llvm-project/llvm/include/llvm/Transforms/Utils/ |
H A D | PredicateInfo.h | 108 PredicateBase(PredicateType PT, Value *Op, Value *Condition) in PredicateBase() 118 PredicateAssume(Value *Op, IntrinsicInst *AssumeInst, Value *Condition) in PredicateAssume() 139 PredicateWithEdge(PredicateType PType, Value *Op, BasicBlock *From, in PredicateWithEdge() 149 PredicateBranch(Value *Op, BasicBlock *BranchBB, BasicBlock *SplitBB, in PredicateBranch() 164 PredicateSwitch(Value *Op, BasicBlock *SwitchBB, BasicBlock *TargetBB, in PredicateSwitch()
|
/llvm-project/llvm/tools/llvm-cov/ |
H A D | CoverageFilters.h | 91 StatisticThresholdFilter(Operation Op, T Threshold) in StatisticThresholdFilter() 112 RegionCoverageFilter(Operation Op, double Threshold) in RegionCoverageFilter() 124 LineCoverageFilter(Operation Op, double Threshold) in LineCoverageFilter()
|
/llvm-project/llvm/lib/Target/MSP430/MCTargetDesc/ |
H A D | MSP430MCCodeEmitter.cpp | 122 getMemOpValue(const MCInst & MI,unsigned Op,SmallVectorImpl<MCFixup> & Fixups,const MCSubtargetInfo & STI) const getMemOpValue() argument 154 getPCRelImmOpValue(const MCInst & MI,unsigned Op,SmallVectorImpl<MCFixup> & Fixups,const MCSubtargetInfo & STI) const getPCRelImmOpValue() argument 167 getCGImmOpValue(const MCInst & MI,unsigned Op,SmallVectorImpl<MCFixup> & Fixups,const MCSubtargetInfo & STI) const getCGImmOpValue() argument 186 getCCOpValue(const MCInst & MI,unsigned Op,SmallVectorImpl<MCFixup> & Fixups,const MCSubtargetInfo & STI) const getCCOpValue() argument [all...] |
/llvm-project/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyISelDAGToDAG.cpp | 260 SDValue Op = Node->getOperand(i); Select() local 305 SelectInlineAsmMemoryOperand(const SDValue & Op,InlineAsm::ConstraintCode ConstraintID,std::vector<SDValue> & OutOps) SelectInlineAsmMemoryOperand() argument 333 SDValue Op = N.getOperand(i); SelectAddrAddOperands() local 354 SDValue Op(N); SelectAddrOperands() local 406 SelectAddrOperands32(SDValue Op,SDValue & Offset,SDValue & Addr) SelectAddrOperands32() argument 411 SelectAddrOperands64(SDValue Op,SDValue & Offset,SDValue & Addr) SelectAddrOperands64() argument [all...] |
/llvm-project/llvm/tools/llvm-exegesis/lib/ |
H A D | MCInstrDescView.cpp | 148 for (auto &Op : Operands) create() local 157 for (auto &Op : Operands) create() local 161 for (auto &Op : Operands) create() local 169 for (const auto &Op : Operands) { create() local 198 __anon3c5e06510102(const Operand &Op) hasMemoryOperands() argument 251 for (const auto &Op : Operands) { dump() local 326 for (const auto &Op : Operands) { addOperandIfAlias() local 368 DumpMCOperand(const MCRegisterInfo & MCRegisterInfo,const MCOperand & Op,raw_ostream & OS) DumpMCOperand() argument [all...] |
/llvm-project/llvm/lib/Target/BPF/MCTargetDesc/ |
H A D | BPFInstPrinter.cpp | 59 } else if (Op.isImm()) { in printOperand() local 93 const MCOperand &Op = MI->getOperand(OpNo); printImm64Operand() local 104 const MCOperand &Op = MI->getOperand(OpNo); printBrTargetOperand() local [all...] |
/llvm-project/llvm/lib/Transforms/ObjCARC/ |
H A D | DependencyAnalysis.cpp | 55 for (const Value *Op : Call->args()) { in CanAlterRefCount() local 97 for (const Value *Op : CS->args()) in CanUse() local 104 const Value *Op = GetUnderlyingObjCPtr(SI->getPointerOperand()); in CanUse() local 112 const Value *Op in CanUse() local [all...] |
/llvm-project/llvm/lib/IR/ |
H A D | DIExpressionOptimizer.cpp | 20 static std::optional<uint64_t> isConstantVal(DIExpression::ExprOperand Op) { in isConstantVal() argument 27 static bool isNeutralElement(uint64_t Op, uint64_t Val) { in isNeutralElement() argument 97 consumeOneOperator(DIExpressionCursor & Cursor,uint64_t & Loc,const DIExpression::ExprOperand & Op) consumeOneOperator() argument 118 auto Op = Cursor.peek(); canonicalizeDwarfOperations() local 299 auto Op = Cursor.peek(); foldConstantMath() local [all...] |
/llvm-project/llvm/lib/Target/SPIRV/ |
H A D | SPIRVEmitIntrinsics.cpp | 282 deduceElementTypeByUsersDeep(Value * Op,std::unordered_set<Value * > & Visited) deduceElementTypeByUsersDeep() argument 355 Value *Op = Ref->getNewValOperand(); deduceElementTypeHelper() local 358 Value *Op = Ref->getValOperand(); deduceElementTypeHelper() local 430 Value *Op = U->getOperand(i); deduceNestedTypeHelper() local 450 if (Value *Op = U->getNumOperands() > 0 ? U->getOperand(0) : nullptr) { deduceNestedTypeHelper() local 466 if (Value *Op = U->getNumOperands() > 0 ? U->getOperand(0) : nullptr) { deduceNestedTypeHelper() local 505 Value *Op = Ref->getIncomingValue(i); deduceOperandElementType() local 514 Value *Op = Ref->getOperand(i); deduceOperandElementType() local 522 Value *Op = Ref->getReturnValue(); deduceOperandElementType() local 560 Value *Op = CI->getArgOperand(i); deduceOperandElementType() local 580 Value *Op = OpIt.first; deduceOperandElementType() local 656 for (auto &Op : I->operands()) { preprocessUndefs() local 684 for (const auto &Op : I->operands()) { preprocessCompositeConstants() local 757 for (auto &Op : I.operands()) { visitSwitchInst() local 790 for (auto &Op : I.operands()) visitGetElementPtrInst() local 1061 for (auto &Op : I.operands()) visitInsertValueInst() local 1066 for (auto &Op : I.indices()) visitInsertValueInst() local 1078 for (auto &Op : I.operands()) visitExtractValueInst() local 1080 for (auto &Op : I.indices()) visitExtractValueInst() local 1156 for (auto &Op : I.operands()) visitAtomicCmpXchgInst() local 1235 for (const auto &Op : I->operands()) { insertAssignTypeIntrs() local 1287 for (const auto &Op : I->operands()) { processInstrAfterVisit() local [all...] |