Home
last modified time | relevance | path

Searched refs:OperandNo (Results 1 – 16 of 16) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/Analysis/
H A DDemandedBits.cpp132 if (OperandNo == 0) { in determineLiveOperandBits()
142 if (OperandNo == 0) { in determineLiveOperandBits()
154 if (OperandNo == 2) { in determineLiveOperandBits()
184 if (OperandNo == 0) { in determineLiveOperandBits()
201 if (OperandNo == 0) { in determineLiveOperandBits()
215 if (OperandNo == 0) { in determineLiveOperandBits()
242 if (OperandNo == 0) in determineLiveOperandBits()
255 if (OperandNo == 0) in determineLiveOperandBits()
281 if (OperandNo != 0) in determineLiveOperandBits()
285 if (OperandNo == 0) in determineLiveOperandBits()
[all …]
H A DBasicAliasAnalysis.cpp865 unsigned OperandNo = 0; in getModRefInfo() local
867 CI != CE; ++CI, ++OperandNo) { in getModRefInfo()
872 (!Call->doesNotCapture(OperandNo) && in getModRefInfo()
873 OperandNo < Call->getNumArgOperands() && in getModRefInfo()
874 !Call->isByValArgument(OperandNo))) in getModRefInfo()
879 if (Call->doesNotAccessMemory(OperandNo)) in getModRefInfo()
893 if (Call->onlyReadsMemory(OperandNo)) { in getModRefInfo()
898 if (Call->doesNotReadMemory(OperandNo)) { in getModRefInfo()
H A DIVUsers.cpp221 unsigned OperandNo = U.getOperandNo(); in AddUsersImpl() local
222 unsigned ValNo = PHINode::getIncomingValueNumForOperand(OperandNo); in AddUsersImpl()
/freebsd-12.1/contrib/llvm/lib/Target/WebAssembly/
H A DWebAssemblySetP2AlignOperands.cpp57 static void RewriteP2Align(MachineInstr &MI, unsigned OperandNo) { in RewriteP2Align() argument
58 assert(MI.getOperand(OperandNo).getImm() == 0 && in RewriteP2Align()
65 assert(MI.getDesc().OpInfo[OperandNo].OperandType == in RewriteP2Align()
74 MI.getOperand(OperandNo).setImm(P2Align); in RewriteP2Align()
/freebsd-12.1/contrib/llvm/lib/Transforms/Scalar/
H A DInferAddressSpaces.cpp479 unsigned OperandNo = PHINode::getOperandNumForIncomingValue(Index); in cloneInstructionWithNewAddressSpace() local
480 NewPHI->addIncoming(NewPointerOperands[OperandNo], in cloneInstructionWithNewAddressSpace()
889 unsigned OperandNo = UndefUse->getOperandNo(); in rewriteWithNewAddressSpaces() local
890 assert(isa<UndefValue>(NewV->getOperand(OperandNo))); in rewriteWithNewAddressSpaces()
891 NewV->setOperand(OperandNo, ValueWithNewAddrSpace.lookup(UndefUse->get())); in rewriteWithNewAddressSpaces()
/freebsd-12.1/contrib/llvm/lib/IR/
H A DConstantsContext.h675 unsigned OperandNo = ~0u) {
688 assert(OperandNo < CP->getNumOperands() && "Invalid index");
689 assert(CP->getOperand(OperandNo) != To && "I didn't contain From!");
690 CP->setOperand(OperandNo, To);
H A DConstants.cpp2858 unsigned OperandNo = 0; in handleOperandChangeImpl() local
2862 OperandNo = (O - OperandList); in handleOperandChangeImpl()
2882 Values, this, From, ToC, NumUpdated, OperandNo); in handleOperandChangeImpl()
2898 unsigned OperandNo = 0; in handleOperandChangeImpl() local
2902 OperandNo = (O - OperandList); in handleOperandChangeImpl()
2918 Values, this, From, ToC, NumUpdated, OperandNo); in handleOperandChangeImpl()
2928 unsigned OperandNo = 0; in handleOperandChangeImpl() local
2932 OperandNo = i; in handleOperandChangeImpl()
2953 unsigned OperandNo = 0; in handleOperandChangeImpl() local
2957 OperandNo = i; in handleOperandChangeImpl()
[all …]
/freebsd-12.1/contrib/llvm/include/llvm/IR/
H A DCallSite.h171 unsigned OperandNo = U - (*this)->op_begin(); in isBundleOperand() local
172 return getBundleOperandsStartIndex() <= OperandNo && in isBundleOperand()
173 OperandNo < getBundleOperandsEndIndex(); in isBundleOperand()
/freebsd-12.1/contrib/llvm/include/llvm/Analysis/
H A DDemandedBits.h68 const Value *Val, unsigned OperandNo,
/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DRenameIndependentSubregs.cpp252 unsigned OperandNo = MI->getOperandNo(&MO); in rewriteOperands() local
253 unsigned TiedIdx = MI->findTiedOperandIdx(OperandNo); in rewriteOperands()
/freebsd-12.1/contrib/llvm/lib/Transforms/ObjCARC/
H A DObjCARCContract.cpp598 unsigned OperandNo = U.getOperandNo(); in runOnFunction() local
614 unsigned ValNo = PHINode::getIncomingValueNumForOperand(OperandNo); in runOnFunction()
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/AST/
H A DStmt.h2718 unsigned OperandNo; variable
2727 : MyKind(Operand), Str(S), OperandNo(OpNo), in AsmStringPiece()
2737 return OperandNo; in getOperandNo()
/freebsd-12.1/contrib/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.h370 unsigned OperandNo; // The operand # this constraint applies to. member
H A DCodeGenDAGPatterns.cpp1356 OperandNo = R->getValueAsInt("OperandNum"); in SDTypeConstraint()
1450 TreePatternNode *NodeToApply = getOperandNum(OperandNo, N, NodeInfo, ResNo); in ApplyTypeConstraint()
1659 if (Constraint.OperandNo >= NumResults) // FIXME: need value # in getKnownType()
/freebsd-12.1/contrib/llvm/lib/Target/X86/
H A DX86FastISel.cpp3980 unsigned OperandNo = 0; in tryToFoldLoadIntoMI() local
3982 E = Result->operands_end(); I != E; ++I, ++OperandNo) { in tryToFoldLoadIntoMI()
3988 MO.getReg(), OperandNo); in tryToFoldLoadIntoMI()
/freebsd-12.1/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp7448 findMatchingInlineAsmOperand(unsigned OperandNo, in findMatchingInlineAsmOperand() argument
7452 for (; OperandNo; --OperandNo) { in findMatchingInlineAsmOperand()