Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DPredicateInfo.cpp100 auto *ArgA = dyn_cast_or_null<Argument>(A); 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()
224 auto *ArgA = dyn_cast_or_null<Argument>(ADef); 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.cpp122 Expr *ArgA = TheCall->getArg(0); in BuiltinARMMemoryTaggingCall() local
125 ExprResult ArgExprA = SemaRef.DefaultFunctionArrayLvalueConversion(ArgA); in BuiltinARMMemoryTaggingCall()
140 if (!ArgTypeA->isAnyPointerType() && !isNull(ArgA)) in BuiltinARMMemoryTaggingCall()
142 << "first" << ArgTypeA << ArgA->getSourceRange(); in BuiltinARMMemoryTaggingCall()
149 if (ArgTypeA->isAnyPointerType() && !isNull(ArgA) && in BuiltinARMMemoryTaggingCall()
158 << ArgTypeA << ArgTypeB << ArgA->getSourceRange() in BuiltinARMMemoryTaggingCall()
166 << ArgTypeA << ArgTypeB << ArgA->getSourceRange(); in BuiltinARMMemoryTaggingCall()
168 if (isNull(ArgA)) // adopt type of the other pointer in BuiltinARMMemoryTaggingCall()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86InstCombineIntrinsic.cpp680 Value *ArgA = II.getArgOperand(0); in simplifyTernarylogic() local
702 bool AIsConst = match(ArgA, m_ImmConstant()); in simplifyTernarylogic()
715 std::pair<Value *, uint8_t> A = {ArgA, 0xf0}; in simplifyTernarylogic()