Home
last modified time | relevance | path

Searched refs:ArgB (Results 1 – 3 of 3) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DPredicateInfo.cpp101 auto *ArgB = dyn_cast_or_null<Argument>(B); in valueComesBefore() local
102 if (ArgA && !ArgB) in valueComesBefore()
104 if (ArgB && !ArgA) in valueComesBefore()
106 if (ArgA && ArgB) in valueComesBefore()
107 return ArgA->getArgNo() < ArgB->getArgNo(); in valueComesBefore()
225 auto *ArgB = dyn_cast_or_null<Argument>(BDef); in localComesBefore() local
227 if (ArgA || ArgB) in localComesBefore()
228 return valueComesBefore(ArgA, ArgB); in localComesBefore()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaARM.cpp123 Expr *ArgB = TheCall->getArg(1); in BuiltinARMMemoryTaggingCall() local
126 ExprResult ArgExprB = SemaRef.DefaultFunctionArrayLvalueConversion(ArgB); in BuiltinARMMemoryTaggingCall()
144 if (!ArgTypeB->isAnyPointerType() && !isNull(ArgB)) in BuiltinARMMemoryTaggingCall()
146 << "second" << ArgTypeB << ArgB->getSourceRange(); in BuiltinARMMemoryTaggingCall()
150 ArgTypeB->isAnyPointerType() && !isNull(ArgB)) { in BuiltinARMMemoryTaggingCall()
159 << ArgB->getSourceRange(); in BuiltinARMMemoryTaggingCall()
172 if (isNull(ArgB)) in BuiltinARMMemoryTaggingCall()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstCombineIntrinsic.cpp681 Value *ArgB = II.getArgOperand(1); in simplifyTernarylogic() local
703 bool BIsConst = match(ArgB, m_ImmConstant()); in simplifyTernarylogic()
716 std::pair<Value *, uint8_t> B = {ArgB, 0xcc}; in simplifyTernarylogic()