Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DDemandedBits.cpp87 const Instruction *UserI, const Value *Val, unsigned OperandNo, in determineLiveOperandBits() argument
132 if (OperandNo == 0) { in determineLiveOperandBits()
142 if (OperandNo == 0) { in determineLiveOperandBits()
154 if (OperandNo == 2) { in determineLiveOperandBits()
166 if (OperandNo == 0) in determineLiveOperandBits()
168 else if (OperandNo == 1) in determineLiveOperandBits()
189 AB = determineLiveOperandBitsAdd(OperandNo, AOut, Known, Known2); in determineLiveOperandBits()
197 AB = determineLiveOperandBitsSub(OperandNo, AOut, Known, Known2); in determineLiveOperandBits()
207 if (OperandNo == 0) { in determineLiveOperandBits()
224 if (OperandNo == 0) { in determineLiveOperandBits()
[all …]
H A DBasicAliasAnalysis.cpp839 unsigned OperandNo = 0; in getModRefInfo() local
841 CI != CE; ++CI, ++OperandNo) { in getModRefInfo()
846 (!Call->doesNotCapture(OperandNo) && in getModRefInfo()
847 OperandNo < Call->getNumArgOperands() && in getModRefInfo()
848 !Call->isByValArgument(OperandNo))) in getModRefInfo()
853 if (Call->doesNotAccessMemory(OperandNo)) in getModRefInfo()
868 if (Call->onlyReadsMemory(OperandNo)) { in getModRefInfo()
873 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()
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
H A DDemandedBits.h66 static APInt determineLiveOperandBitsAdd(unsigned OperandNo,
73 static APInt determineLiveOperandBitsSub(unsigned OperandNo,
81 const Value *Val, unsigned OperandNo,
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Instrumentation/
H A DAddressSanitizerCommon.h32 InterestingMemoryOperand(Instruction *I, unsigned OperandNo, bool IsWrite,
39 PtrUse = &I->getOperandUse(OperandNo); in IsWrite()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DInferAddressSpaces.cpp599 unsigned OperandNo = PHINode::getOperandNumForIncomingValue(Index); in cloneInstructionWithNewAddressSpace() local
600 NewPHI->addIncoming(NewPointerOperands[OperandNo], in cloneInstructionWithNewAddressSpace()
1053 unsigned OperandNo = UndefUse->getOperandNo(); in rewriteWithNewAddressSpaces() local
1054 assert(isa<UndefValue>(NewV->getOperand(OperandNo))); in rewriteWithNewAddressSpaces()
1055 NewV->setOperand(OperandNo, ValueWithNewAddrSpace.lookup(UndefUse->get())); in rewriteWithNewAddressSpaces()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DConstantsContext.h755 unsigned OperandNo = ~0u) {
768 assert(OperandNo < CP->getNumOperands() && "Invalid index");
769 assert(CP->getOperand(OperandNo) != To && "I didn't contain From!");
770 CP->setOperand(OperandNo, To);
H A DConstants.cpp3368 unsigned OperandNo = 0; in handleOperandChangeImpl() local
3372 OperandNo = (O - OperandList); in handleOperandChangeImpl()
3392 Values, this, From, ToC, NumUpdated, OperandNo); in handleOperandChangeImpl()
3408 unsigned OperandNo = 0; in handleOperandChangeImpl() local
3412 OperandNo = (O - OperandList); in handleOperandChangeImpl()
3428 Values, this, From, ToC, NumUpdated, OperandNo); in handleOperandChangeImpl()
3438 unsigned OperandNo = 0; in handleOperandChangeImpl() local
3442 OperandNo = i; in handleOperandChangeImpl()
3454 Values, this, From, ToC, NumUpdated, OperandNo); in handleOperandChangeImpl()
3463 unsigned OperandNo = 0; in handleOperandChangeImpl() local
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DRenameIndependentSubregs.cpp252 unsigned OperandNo = MI->getOperandNo(&MO); in rewriteOperands() local
253 unsigned TiedIdx = MI->findTiedOperandIdx(OperandNo); in rewriteOperands()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/ObjCARC/
H A DObjCARCContract.cpp599 unsigned OperandNo = U.getOperandNo(); in run() local
615 unsigned ValNo = PHINode::getIncomingValueNumForOperand(OperandNo); in run()
/netbsd-src/external/apache2/llvm/dist/clang/include/clang/AST/
H A DStmt.h3018 unsigned OperandNo; variable
3027 : MyKind(Operand), Str(S), OperandNo(OpNo), in AsmStringPiece()
3037 return OperandNo; in getOperandNo()
/netbsd-src/external/apache2/llvm/dist/llvm/utils/TableGen/
H A DCodeGenDAGPatterns.h377 unsigned OperandNo; // The operand # this constraint applies to. member
H A DCodeGenDAGPatterns.cpp1497 OperandNo = R->getValueAsInt("OperandNum"); in SDTypeConstraint()
1592 TreePatternNode *NodeToApply = getOperandNum(OperandNo, N, NodeInfo, ResNo); in ApplyTypeConstraint()
1801 if (Constraint.OperandNo >= NumResults) // FIXME: need value # in getKnownType()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86FastISel.cpp3932 unsigned OperandNo = 0; in tryToFoldLoadIntoMI() local
3934 E = Result->operands_end(); I != E; ++I, ++OperandNo) { in tryToFoldLoadIntoMI()
3940 MO.getReg(), OperandNo); in tryToFoldLoadIntoMI()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp8309 findMatchingInlineAsmOperand(unsigned OperandNo, in findMatchingInlineAsmOperand() argument
8313 for (; OperandNo; --OperandNo) { in findMatchingInlineAsmOperand()