Searched refs:SimplifyCall (Results 1 – 3 of 3) sorted by relevance
| /freebsd-12.1/contrib/llvm/include/llvm/Analysis/ |
| H A D | InstructionSimplify.h | 242 Value *SimplifyCall(ImmutableCallSite CS, const SimplifyQuery &Q); 246 Value *SimplifyCall(ImmutableCallSite CS, Value *V, User::op_iterator ArgBegin, 250 Value *SimplifyCall(ImmutableCallSite CS, Value *V, ArrayRef<Value *> Args,
|
| /freebsd-12.1/contrib/llvm/lib/Analysis/ |
| H A D | InstructionSimplify.cpp | 5141 static Value *SimplifyCall(ImmutableCallSite CS, Value *V, IterTy ArgBegin, in SimplifyCall() function 5177 Value *llvm::SimplifyCall(ImmutableCallSite CS, Value *V, in SimplifyCall() function in llvm 5180 return ::SimplifyCall(CS, V, ArgBegin, ArgEnd, Q, RecursionLimit); in SimplifyCall() 5183 Value *llvm::SimplifyCall(ImmutableCallSite CS, Value *V, in SimplifyCall() function in llvm 5185 return ::SimplifyCall(CS, V, Args.begin(), Args.end(), Q, RecursionLimit); in SimplifyCall() 5188 Value *llvm::SimplifyCall(ImmutableCallSite ICS, const SimplifyQuery &Q) { in SimplifyCall() function in llvm 5190 return ::SimplifyCall(CS, CS.getCalledValue(), CS.arg_begin(), CS.arg_end(), in SimplifyCall() 5331 Result = SimplifyCall(CS, Q); in SimplifyInstruction()
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombineCalls.cpp | 1834 if (Value *V = SimplifyCall(&CI, SQ.getWithInstruction(&CI))) in visitCallInst()
|