Searched refs:OpB (Results 1 – 8 of 8) sorted by relevance
| /freebsd/contrib/llvm-project/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblyDebugValueManager.cpp | 54 const MachineOperand &OpA = A->getOperand(1), &OpB = B->getOperand(1); in isSameScalarConst() local 55 if ((OpA.isImm() && OpB.isImm() && OpA.getImm() == OpB.getImm()) || in isSameScalarConst() 56 (OpA.isFPImm() && OpB.isFPImm() && OpA.getFPImm() == OpB.getFPImm()) || in isSameScalarConst() 57 (OpA.isGlobal() && OpB.isGlobal() && OpA.getGlobal() == OpB.getGlobal())) in isSameScalarConst()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | CFGUpdate.h | 109 const auto &OpB = Operations[{B.getFrom(), B.getTo()}]; 110 return ReverseResultOrder ? OpA < OpB : OpA > OpB;
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
| H A D | LoadStoreVectorizer.cpp | 1190 Instruction *OpB = dyn_cast<Instruction>(GTIB.getOperand()); in getConstantOffsetComplexAddrs() local 1191 if (!OpA || !OpB || OpA->getOpcode() != OpB->getOpcode() || in getConstantOffsetComplexAddrs() 1192 OpA->getType() != OpB->getType()) in getConstantOffsetComplexAddrs() 1205 OpB = dyn_cast<Instruction>(OpB->getOperand(0)); in getConstantOffsetComplexAddrs() 1206 if (!OpB || ValA->getType() != OpB->getType()) in getConstantOffsetComplexAddrs() 1210 const SCEV *OffsetSCEVB = SE.getSCEV(OpB); in getConstantOffsetComplexAddrs() 1228 if (OpB->getOpcode() == Instruction::Add && in getConstantOffsetComplexAddrs() 1229 isa<ConstantInt>(OpB->getOperand(1)) && in getConstantOffsetComplexAddrs() 1230 IdxDiff.sle(cast<ConstantInt>(OpB->getOperand(1))->getSExtValue()) && in getConstantOffsetComplexAddrs() 1231 checkNoWrapFlags(OpB, Signed)) in getConstantOffsetComplexAddrs() [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Instructions.cpp | 312 CallBase *CallBase::Create(CallBase *CI, OperandBundleDef OpB, in Create() argument 317 if (ChildOB.getTagName() != OpB.getTag()) in Create() 320 OpDefs.emplace_back(OpB); in Create() 738 CallInst *CallInst::Create(CallInst *CI, ArrayRef<OperandBundleDef> OpB, in Create() argument 743 Args, OpB, CI->getName(), InsertPt); in Create() 817 InvokeInst *InvokeInst::Create(InvokeInst *II, ArrayRef<OperandBundleDef> OpB, in Create() argument 823 II->getUnwindDest(), Args, OpB, II->getName(), InsertPt); in Create() 902 CallBrInst *CallBrInst::Create(CallBrInst *CBI, ArrayRef<OperandBundleDef> OpB, in Create() argument 908 CBI->getIndirectDests(), Args, OpB, CBI->getName(), InsertPt); in Create()
|
| H A D | IRBuilder.cpp | 304 ArrayRef<OperandBundleDef> OpB, in CreateMalloc() argument 332 CallInst *MCall = CreateCall(MallocFunc, AllocSize, OpB, Name); in CreateMalloc()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
| H A D | TargetInstrInfo.cpp | 1094 MachineOperand &OpB = Root.getOperand(OperandIndices[2]); in reassociateOps() local 1100 Register RegB = OpB.getReg(); in reassociateOps()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/ |
| H A D | HexagonBitSimplify.cpp | 2985 const MachineOperand &OpB = P.getOperand(i+1); in PhiInfo() local 2986 if (OpB.getMBB() == &B) { in PhiInfo() 2990 PB = OpB.getMBB(); in PhiInfo()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | IRBuilder.h | 629 Value *ArraySize, ArrayRef<OperandBundleDef> OpB,
|