LLVM 19.0.0git
InstCombineCalls.cpp
Go to the documentation of this file.
1//===- InstCombineCalls.cpp -----------------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8//
9// This file implements the visitCall, visitInvoke, and visitCallBr functions.
10//
11//===----------------------------------------------------------------------===//
12
13#include "InstCombineInternal.h"
14#include "llvm/ADT/APFloat.h"
15#include "llvm/ADT/APInt.h"
16#include "llvm/ADT/APSInt.h"
17#include "llvm/ADT/ArrayRef.h"
21#include "llvm/ADT/Statistic.h"
26#include "llvm/Analysis/Loads.h"
31#include "llvm/IR/Attributes.h"
32#include "llvm/IR/BasicBlock.h"
33#include "llvm/IR/Constant.h"
34#include "llvm/IR/Constants.h"
35#include "llvm/IR/DataLayout.h"
36#include "llvm/IR/DebugInfo.h"
38#include "llvm/IR/Function.h"
40#include "llvm/IR/InlineAsm.h"
41#include "llvm/IR/InstrTypes.h"
42#include "llvm/IR/Instruction.h"
45#include "llvm/IR/Intrinsics.h"
46#include "llvm/IR/IntrinsicsAArch64.h"
47#include "llvm/IR/IntrinsicsAMDGPU.h"
48#include "llvm/IR/IntrinsicsARM.h"
49#include "llvm/IR/IntrinsicsHexagon.h"
50#include "llvm/IR/LLVMContext.h"
51#include "llvm/IR/Metadata.h"
53#include "llvm/IR/Statepoint.h"
54#include "llvm/IR/Type.h"
55#include "llvm/IR/User.h"
56#include "llvm/IR/Value.h"
57#include "llvm/IR/ValueHandle.h"
62#include "llvm/Support/Debug.h"
71#include <algorithm>
72#include <cassert>
73#include <cstdint>
74#include <optional>
75#include <utility>
76#include <vector>
77
78#define DEBUG_TYPE "instcombine"
80
81using namespace llvm;
82using namespace PatternMatch;
83
84STATISTIC(NumSimplified, "Number of library calls simplified");
85
87 "instcombine-guard-widening-window",
88 cl::init(3),
89 cl::desc("How wide an instruction window to bypass looking for "
90 "another guard"));
91
92/// Return the specified type promoted as it would be to pass though a va_arg
93/// area.
95 if (IntegerType* ITy = dyn_cast<IntegerType>(Ty)) {
96 if (ITy->getBitWidth() < 32)
97 return Type::getInt32Ty(Ty->getContext());
98 }
99 return Ty;
100}
101
102/// Recognize a memcpy/memmove from a trivially otherwise unused alloca.
103/// TODO: This should probably be integrated with visitAllocSites, but that
104/// requires a deeper change to allow either unread or unwritten objects.
106 auto *Src = MI->getRawSource();
107 while (isa<GetElementPtrInst>(Src) || isa<BitCastInst>(Src)) {
108 if (!Src->hasOneUse())
109 return false;
110 Src = cast<Instruction>(Src)->getOperand(0);
111 }
112 return isa<AllocaInst>(Src) && Src->hasOneUse();
113}
114
116 Align DstAlign = getKnownAlignment(MI->getRawDest(), DL, MI, &AC, &DT);
117 MaybeAlign CopyDstAlign = MI->getDestAlign();
118 if (!CopyDstAlign || *CopyDstAlign < DstAlign) {
119 MI->setDestAlignment(DstAlign);
120 return MI;
121 }
122
123 Align SrcAlign = getKnownAlignment(MI->getRawSource(), DL, MI, &AC, &DT);
124 MaybeAlign CopySrcAlign = MI->getSourceAlign();
125 if (!CopySrcAlign || *CopySrcAlign < SrcAlign) {
126 MI->setSourceAlignment(SrcAlign);
127 return MI;
128 }
129
130 // If we have a store to a location which is known constant, we can conclude
131 // that the store must be storing the constant value (else the memory
132 // wouldn't be constant), and this must be a noop.
133 if (!isModSet(AA->getModRefInfoMask(MI->getDest()))) {
134 // Set the size of the copy to 0, it will be deleted on the next iteration.
135 MI->setLength(Constant::getNullValue(MI->getLength()->getType()));
136 return MI;
137 }
138
139 // If the source is provably undef, the memcpy/memmove doesn't do anything
140 // (unless the transfer is volatile).
141 if (hasUndefSource(MI) && !MI->isVolatile()) {
142 // Set the size of the copy to 0, it will be deleted on the next iteration.
143 MI->setLength(Constant::getNullValue(MI->getLength()->getType()));
144 return MI;
145 }
146
147 // If MemCpyInst length is 1/2/4/8 bytes then replace memcpy with
148 // load/store.
149 ConstantInt *MemOpLength = dyn_cast<ConstantInt>(MI->getLength());
150 if (!MemOpLength) return nullptr;
151
152 // Source and destination pointer types are always "i8*" for intrinsic. See
153 // if the size is something we can handle with a single primitive load/store.
154 // A single load+store correctly handles overlapping memory in the memmove
155 // case.
156 uint64_t Size = MemOpLength->getLimitedValue();
157 assert(Size && "0-sized memory transferring should be removed already.");
158
159 if (Size > 8 || (Size&(Size-1)))
160 return nullptr; // If not 1/2/4/8 bytes, exit.
161
162 // If it is an atomic and alignment is less than the size then we will
163 // introduce the unaligned memory access which will be later transformed
164 // into libcall in CodeGen. This is not evident performance gain so disable
165 // it now.
166 if (isa<AtomicMemTransferInst>(MI))
167 if (*CopyDstAlign < Size || *CopySrcAlign < Size)
168 return nullptr;
169
170 // Use an integer load+store unless we can find something better.
171 IntegerType* IntType = IntegerType::get(MI->getContext(), Size<<3);
172
173 // If the memcpy has metadata describing the members, see if we can get the
174 // TBAA tag describing our copy.
175 AAMDNodes AACopyMD = MI->getAAMetadata().adjustForAccess(Size);
176
177 Value *Src = MI->getArgOperand(1);
178 Value *Dest = MI->getArgOperand(0);
179 LoadInst *L = Builder.CreateLoad(IntType, Src);
180 // Alignment from the mem intrinsic will be better, so use it.
181 L->setAlignment(*CopySrcAlign);
182 L->setAAMetadata(AACopyMD);
183 MDNode *LoopMemParallelMD =
184 MI->getMetadata(LLVMContext::MD_mem_parallel_loop_access);
185 if (LoopMemParallelMD)
186 L->setMetadata(LLVMContext::MD_mem_parallel_loop_access, LoopMemParallelMD);
187 MDNode *AccessGroupMD = MI->getMetadata(LLVMContext::MD_access_group);
188 if (AccessGroupMD)
189 L->setMetadata(LLVMContext::MD_access_group, AccessGroupMD);
190
191 StoreInst *S = Builder.CreateStore(L, Dest);
192 // Alignment from the mem intrinsic will be better, so use it.
193 S->setAlignment(*CopyDstAlign);
194 S->setAAMetadata(AACopyMD);
195 if (LoopMemParallelMD)
196 S->setMetadata(LLVMContext::MD_mem_parallel_loop_access, LoopMemParallelMD);
197 if (AccessGroupMD)
198 S->setMetadata(LLVMContext::MD_access_group, AccessGroupMD);
199 S->copyMetadata(*MI, LLVMContext::MD_DIAssignID);
200
201 if (auto *MT = dyn_cast<MemTransferInst>(MI)) {
202 // non-atomics can be volatile
203 L->setVolatile(MT->isVolatile());
204 S->setVolatile(MT->isVolatile());
205 }
206 if (isa<AtomicMemTransferInst>(MI)) {
207 // atomics have to be unordered
208 L->setOrdering(AtomicOrdering::Unordered);
210 }
211
212 // Set the size of the copy to 0, it will be deleted on the next iteration.
213 MI->setLength(Constant::getNullValue(MemOpLength->getType()));
214 return MI;
215}
216
218 const Align KnownAlignment =
219 getKnownAlignment(MI->getDest(), DL, MI, &AC, &DT);
220 MaybeAlign MemSetAlign = MI->getDestAlign();
221 if (!MemSetAlign || *MemSetAlign < KnownAlignment) {
222 MI->setDestAlignment(KnownAlignment);
223 return MI;
224 }
225
226 // If we have a store to a location which is known constant, we can conclude
227 // that the store must be storing the constant value (else the memory
228 // wouldn't be constant), and this must be a noop.
229 if (!isModSet(AA->getModRefInfoMask(MI->getDest()))) {
230 // Set the size of the copy to 0, it will be deleted on the next iteration.
231 MI->setLength(Constant::getNullValue(MI->getLength()->getType()));
232 return MI;
233 }
234
235 // Remove memset with an undef value.
236 // FIXME: This is technically incorrect because it might overwrite a poison
237 // value. Change to PoisonValue once #52930 is resolved.
238 if (isa<UndefValue>(MI->getValue())) {
239 // Set the size of the copy to 0, it will be deleted on the next iteration.
240 MI->setLength(Constant::getNullValue(MI->getLength()->getType()));
241 return MI;
242 }
243
244 // Extract the length and alignment and fill if they are constant.
245 ConstantInt *LenC = dyn_cast<ConstantInt>(MI->getLength());
246 ConstantInt *FillC = dyn_cast<ConstantInt>(MI->getValue());
247 if (!LenC || !FillC || !FillC->getType()->isIntegerTy(8))
248 return nullptr;
249 const uint64_t Len = LenC->getLimitedValue();
250 assert(Len && "0-sized memory setting should be removed already.");
251 const Align Alignment = MI->getDestAlign().valueOrOne();
252
253 // If it is an atomic and alignment is less than the size then we will
254 // introduce the unaligned memory access which will be later transformed
255 // into libcall in CodeGen. This is not evident performance gain so disable
256 // it now.
257 if (isa<AtomicMemSetInst>(MI))
258 if (Alignment < Len)
259 return nullptr;
260
261 // memset(s,c,n) -> store s, c (for n=1,2,4,8)
262 if (Len <= 8 && isPowerOf2_32((uint32_t)Len)) {
263 Type *ITy = IntegerType::get(MI->getContext(), Len*8); // n=1 -> i8.
264
265 Value *Dest = MI->getDest();
266
267 // Extract the fill value and store.
268 const uint64_t Fill = FillC->getZExtValue()*0x0101010101010101ULL;
269 Constant *FillVal = ConstantInt::get(ITy, Fill);
270 StoreInst *S = Builder.CreateStore(FillVal, Dest, MI->isVolatile());
271 S->copyMetadata(*MI, LLVMContext::MD_DIAssignID);
272 auto replaceOpForAssignmentMarkers = [FillC, FillVal](auto *DbgAssign) {
273 if (llvm::is_contained(DbgAssign->location_ops(), FillC))
274 DbgAssign->replaceVariableLocationOp(FillC, FillVal);
275 };
276 for_each(at::getAssignmentMarkers(S), replaceOpForAssignmentMarkers);
277 for_each(at::getDVRAssignmentMarkers(S), replaceOpForAssignmentMarkers);
278
279 S->setAlignment(Alignment);
280 if (isa<AtomicMemSetInst>(MI))
282
283 // Set the size of the copy to 0, it will be deleted on the next iteration.
284 MI->setLength(Constant::getNullValue(LenC->getType()));
285 return MI;
286 }
287
288 return nullptr;
289}
290
291// TODO, Obvious Missing Transforms:
292// * Narrow width by halfs excluding zero/undef lanes
293Value *InstCombinerImpl::simplifyMaskedLoad(IntrinsicInst &II) {
294 Value *LoadPtr = II.getArgOperand(0);
295 const Align Alignment =
296 cast<ConstantInt>(II.getArgOperand(1))->getAlignValue();
297
298 // If the mask is all ones or undefs, this is a plain vector load of the 1st
299 // argument.
301 LoadInst *L = Builder.CreateAlignedLoad(II.getType(), LoadPtr, Alignment,
302 "unmaskedload");
303 L->copyMetadata(II);
304 return L;
305 }
306
307 // If we can unconditionally load from this address, replace with a
308 // load/select idiom. TODO: use DT for context sensitive query
309 if (isDereferenceablePointer(LoadPtr, II.getType(),
310 II.getModule()->getDataLayout(), &II, &AC)) {
311 LoadInst *LI = Builder.CreateAlignedLoad(II.getType(), LoadPtr, Alignment,
312 "unmaskedload");
313 LI->copyMetadata(II);
314 return Builder.CreateSelect(II.getArgOperand(2), LI, II.getArgOperand(3));
315 }
316
317 return nullptr;
318}
319
320// TODO, Obvious Missing Transforms:
321// * Single constant active lane -> store
322// * Narrow width by halfs excluding zero/undef lanes
323Instruction *InstCombinerImpl::simplifyMaskedStore(IntrinsicInst &II) {
324 auto *ConstMask = dyn_cast<Constant>(II.getArgOperand(3));
325 if (!ConstMask)
326 return nullptr;
327
328 // If the mask is all zeros, this instruction does nothing.
329 if (ConstMask->isNullValue())
330 return eraseInstFromFunction(II);
331
332 // If the mask is all ones, this is a plain vector store of the 1st argument.
333 if (ConstMask->isAllOnesValue()) {
334 Value *StorePtr = II.getArgOperand(1);
335 Align Alignment = cast<ConstantInt>(II.getArgOperand(2))->getAlignValue();
336 StoreInst *S =
337 new StoreInst(II.getArgOperand(0), StorePtr, false, Alignment);
338 S->copyMetadata(II);
339 return S;
340 }
341
342 if (isa<ScalableVectorType>(ConstMask->getType()))
343 return nullptr;
344
345 // Use masked off lanes to simplify operands via SimplifyDemandedVectorElts
346 APInt DemandedElts = possiblyDemandedEltsInMask(ConstMask);
347 APInt PoisonElts(DemandedElts.getBitWidth(), 0);
348 if (Value *V = SimplifyDemandedVectorElts(II.getOperand(0), DemandedElts,
349 PoisonElts))
350 return replaceOperand(II, 0, V);
351
352 return nullptr;
353}
354
355// TODO, Obvious Missing Transforms:
356// * Single constant active lane load -> load
357// * Dereferenceable address & few lanes -> scalarize speculative load/selects
358// * Adjacent vector addresses -> masked.load
359// * Narrow width by halfs excluding zero/undef lanes
360// * Vector incrementing address -> vector masked load
361Instruction *InstCombinerImpl::simplifyMaskedGather(IntrinsicInst &II) {
362 auto *ConstMask = dyn_cast<Constant>(II.getArgOperand(2));
363 if (!ConstMask)
364 return nullptr;
365
366 // Vector splat address w/known mask -> scalar load
367 // Fold the gather to load the source vector first lane
368 // because it is reloading the same value each time
369 if (ConstMask->isAllOnesValue())
370 if (auto *SplatPtr = getSplatValue(II.getArgOperand(0))) {
371 auto *VecTy = cast<VectorType>(II.getType());
372 const Align Alignment =
373 cast<ConstantInt>(II.getArgOperand(1))->getAlignValue();
374 LoadInst *L = Builder.CreateAlignedLoad(VecTy->getElementType(), SplatPtr,
375 Alignment, "load.scalar");
376 Value *Shuf =
377 Builder.CreateVectorSplat(VecTy->getElementCount(), L, "broadcast");
378 return replaceInstUsesWith(II, cast<Instruction>(Shuf));
379 }
380
381 return nullptr;
382}
383
384// TODO, Obvious Missing Transforms:
385// * Single constant active lane -> store
386// * Adjacent vector addresses -> masked.store
387// * Narrow store width by halfs excluding zero/undef lanes
388// * Vector incrementing address -> vector masked store
389Instruction *InstCombinerImpl::simplifyMaskedScatter(IntrinsicInst &II) {
390 auto *ConstMask = dyn_cast<Constant>(II.getArgOperand(3));
391 if (!ConstMask)
392 return nullptr;
393
394 // If the mask is all zeros, a scatter does nothing.
395 if (ConstMask->isNullValue())
396 return eraseInstFromFunction(II);
397
398 // Vector splat address -> scalar store
399 if (auto *SplatPtr = getSplatValue(II.getArgOperand(1))) {
400 // scatter(splat(value), splat(ptr), non-zero-mask) -> store value, ptr
401 if (auto *SplatValue = getSplatValue(II.getArgOperand(0))) {
402 if (maskContainsAllOneOrUndef(ConstMask)) {
403 Align Alignment =
404 cast<ConstantInt>(II.getArgOperand(2))->getAlignValue();
405 StoreInst *S = new StoreInst(SplatValue, SplatPtr, /*IsVolatile=*/false,
406 Alignment);
407 S->copyMetadata(II);
408 return S;
409 }
410 }
411 // scatter(vector, splat(ptr), splat(true)) -> store extract(vector,
412 // lastlane), ptr
413 if (ConstMask->isAllOnesValue()) {
414 Align Alignment = cast<ConstantInt>(II.getArgOperand(2))->getAlignValue();
415 VectorType *WideLoadTy = cast<VectorType>(II.getArgOperand(1)->getType());
416 ElementCount VF = WideLoadTy->getElementCount();
418 Value *LastLane = Builder.CreateSub(RunTimeVF, Builder.getInt32(1));
419 Value *Extract =
421 StoreInst *S =
422 new StoreInst(Extract, SplatPtr, /*IsVolatile=*/false, Alignment);
423 S->copyMetadata(II);
424 return S;
425 }
426 }
427 if (isa<ScalableVectorType>(ConstMask->getType()))
428 return nullptr;
429
430 // Use masked off lanes to simplify operands via SimplifyDemandedVectorElts
431 APInt DemandedElts = possiblyDemandedEltsInMask(ConstMask);
432 APInt PoisonElts(DemandedElts.getBitWidth(), 0);
433 if (Value *V = SimplifyDemandedVectorElts(II.getOperand(0), DemandedElts,
434 PoisonElts))
435 return replaceOperand(II, 0, V);
436 if (Value *V = SimplifyDemandedVectorElts(II.getOperand(1), DemandedElts,
437 PoisonElts))
438 return replaceOperand(II, 1, V);
439
440 return nullptr;
441}
442
443/// This function transforms launder.invariant.group and strip.invariant.group
444/// like:
445/// launder(launder(%x)) -> launder(%x) (the result is not the argument)
446/// launder(strip(%x)) -> launder(%x)
447/// strip(strip(%x)) -> strip(%x) (the result is not the argument)
448/// strip(launder(%x)) -> strip(%x)
449/// This is legal because it preserves the most recent information about
450/// the presence or absence of invariant.group.
452 InstCombinerImpl &IC) {
453 auto *Arg = II.getArgOperand(0);
454 auto *StrippedArg = Arg->stripPointerCasts();
455 auto *StrippedInvariantGroupsArg = StrippedArg;
456 while (auto *Intr = dyn_cast<IntrinsicInst>(StrippedInvariantGroupsArg)) {
457 if (Intr->getIntrinsicID() != Intrinsic::launder_invariant_group &&
458 Intr->getIntrinsicID() != Intrinsic::strip_invariant_group)
459 break;
460 StrippedInvariantGroupsArg = Intr->getArgOperand(0)->stripPointerCasts();
461 }
462 if (StrippedArg == StrippedInvariantGroupsArg)
463 return nullptr; // No launders/strips to remove.
464
465 Value *Result = nullptr;
466
467 if (II.getIntrinsicID() == Intrinsic::launder_invariant_group)
468 Result = IC.Builder.CreateLaunderInvariantGroup(StrippedInvariantGroupsArg);
469 else if (II.getIntrinsicID() == Intrinsic::strip_invariant_group)
470 Result = IC.Builder.CreateStripInvariantGroup(StrippedInvariantGroupsArg);
471 else
473 "simplifyInvariantGroupIntrinsic only handles launder and strip");
474 if (Result->getType()->getPointerAddressSpace() !=
476 Result = IC.Builder.CreateAddrSpaceCast(Result, II.getType());
477
478 return cast<Instruction>(Result);
479}
480
482 assert((II.getIntrinsicID() == Intrinsic::cttz ||
483 II.getIntrinsicID() == Intrinsic::ctlz) &&
484 "Expected cttz or ctlz intrinsic");
485 bool IsTZ = II.getIntrinsicID() == Intrinsic::cttz;
486 Value *Op0 = II.getArgOperand(0);
487 Value *Op1 = II.getArgOperand(1);
488 Value *X;
489 // ctlz(bitreverse(x)) -> cttz(x)
490 // cttz(bitreverse(x)) -> ctlz(x)
491 if (match(Op0, m_BitReverse(m_Value(X)))) {
492 Intrinsic::ID ID = IsTZ ? Intrinsic::ctlz : Intrinsic::cttz;
494 return CallInst::Create(F, {X, II.getArgOperand(1)});
495 }
496
497 if (II.getType()->isIntOrIntVectorTy(1)) {
498 // ctlz/cttz i1 Op0 --> not Op0
499 if (match(Op1, m_Zero()))
500 return BinaryOperator::CreateNot(Op0);
501 // If zero is poison, then the input can be assumed to be "true", so the
502 // instruction simplifies to "false".
503 assert(match(Op1, m_One()) && "Expected ctlz/cttz operand to be 0 or 1");
505 }
506
507 // If ctlz/cttz is only used as a shift amount, set is_zero_poison to true.
508 if (II.hasOneUse() && match(Op1, m_Zero()) &&
509 match(II.user_back(), m_Shift(m_Value(), m_Specific(&II))))
510 return IC.replaceOperand(II, 1, IC.Builder.getTrue());
511
512 Constant *C;
513
514 if (IsTZ) {
515 // cttz(-x) -> cttz(x)
516 if (match(Op0, m_Neg(m_Value(X))))
517 return IC.replaceOperand(II, 0, X);
518
519 // cttz(-x & x) -> cttz(x)
520 if (match(Op0, m_c_And(m_Neg(m_Value(X)), m_Deferred(X))))
521 return IC.replaceOperand(II, 0, X);
522
523 // cttz(sext(x)) -> cttz(zext(x))
524 if (match(Op0, m_OneUse(m_SExt(m_Value(X))))) {
525 auto *Zext = IC.Builder.CreateZExt(X, II.getType());
526 auto *CttzZext =
527 IC.Builder.CreateBinaryIntrinsic(Intrinsic::cttz, Zext, Op1);
528 return IC.replaceInstUsesWith(II, CttzZext);
529 }
530
531 // Zext doesn't change the number of trailing zeros, so narrow:
532 // cttz(zext(x)) -> zext(cttz(x)) if the 'ZeroIsPoison' parameter is 'true'.
533 if (match(Op0, m_OneUse(m_ZExt(m_Value(X)))) && match(Op1, m_One())) {
534 auto *Cttz = IC.Builder.CreateBinaryIntrinsic(Intrinsic::cttz, X,
535 IC.Builder.getTrue());
536 auto *ZextCttz = IC.Builder.CreateZExt(Cttz, II.getType());
537 return IC.replaceInstUsesWith(II, ZextCttz);
538 }
539
540 // cttz(abs(x)) -> cttz(x)
541 // cttz(nabs(x)) -> cttz(x)
542 Value *Y;
544 if (SPF == SPF_ABS || SPF == SPF_NABS)
545 return IC.replaceOperand(II, 0, X);
546
547 if (match(Op0, m_Intrinsic<Intrinsic::abs>(m_Value(X))))
548 return IC.replaceOperand(II, 0, X);
549
550 // cttz(shl(%const, %val), 1) --> add(cttz(%const, 1), %val)
551 if (match(Op0, m_Shl(m_ImmConstant(C), m_Value(X))) &&
552 match(Op1, m_One())) {
553 Value *ConstCttz =
554 IC.Builder.CreateBinaryIntrinsic(Intrinsic::cttz, C, Op1);
555 return BinaryOperator::CreateAdd(ConstCttz, X);
556 }
557
558 // cttz(lshr exact (%const, %val), 1) --> sub(cttz(%const, 1), %val)
559 if (match(Op0, m_Exact(m_LShr(m_ImmConstant(C), m_Value(X)))) &&
560 match(Op1, m_One())) {
561 Value *ConstCttz =
562 IC.Builder.CreateBinaryIntrinsic(Intrinsic::cttz, C, Op1);
563 return BinaryOperator::CreateSub(ConstCttz, X);
564 }
565
566 // cttz(add(lshr(UINT_MAX, %val), 1)) --> sub(width, %val)
567 if (match(Op0, m_Add(m_LShr(m_AllOnes(), m_Value(X)), m_One()))) {
568 Value *Width =
569 ConstantInt::get(II.getType(), II.getType()->getScalarSizeInBits());
570 return BinaryOperator::CreateSub(Width, X);
571 }
572 } else {
573 // ctlz(lshr(%const, %val), 1) --> add(ctlz(%const, 1), %val)
574 if (match(Op0, m_LShr(m_ImmConstant(C), m_Value(X))) &&
575 match(Op1, m_One())) {
576 Value *ConstCtlz =
577 IC.Builder.CreateBinaryIntrinsic(Intrinsic::ctlz, C, Op1);
578 return BinaryOperator::CreateAdd(ConstCtlz, X);
579 }
580
581 // ctlz(shl nuw (%const, %val), 1) --> sub(ctlz(%const, 1), %val)
582 if (match(Op0, m_NUWShl(m_ImmConstant(C), m_Value(X))) &&
583 match(Op1, m_One())) {
584 Value *ConstCtlz =
585 IC.Builder.CreateBinaryIntrinsic(Intrinsic::ctlz, C, Op1);
586 return BinaryOperator::CreateSub(ConstCtlz, X);
587 }
588 }
589
590 KnownBits Known = IC.computeKnownBits(Op0, 0, &II);
591
592 // Create a mask for bits above (ctlz) or below (cttz) the first known one.
593 unsigned PossibleZeros = IsTZ ? Known.countMaxTrailingZeros()
594 : Known.countMaxLeadingZeros();
595 unsigned DefiniteZeros = IsTZ ? Known.countMinTrailingZeros()
596 : Known.countMinLeadingZeros();
597
598 // If all bits above (ctlz) or below (cttz) the first known one are known
599 // zero, this value is constant.
600 // FIXME: This should be in InstSimplify because we're replacing an
601 // instruction with a constant.
602 if (PossibleZeros == DefiniteZeros) {
603 auto *C = ConstantInt::get(Op0->getType(), DefiniteZeros);
604 return IC.replaceInstUsesWith(II, C);
605 }
606
607 // If the input to cttz/ctlz is known to be non-zero,
608 // then change the 'ZeroIsPoison' parameter to 'true'
609 // because we know the zero behavior can't affect the result.
610 if (!Known.One.isZero() ||
612 if (!match(II.getArgOperand(1), m_One()))
613 return IC.replaceOperand(II, 1, IC.Builder.getTrue());
614 }
615
616 // Add range attribute since known bits can't completely reflect what we know.
617 unsigned BitWidth = Op0->getType()->getScalarSizeInBits();
618 if (BitWidth != 1 && !II.hasRetAttr(Attribute::Range) &&
619 !II.getMetadata(LLVMContext::MD_range)) {
620 ConstantRange Range(APInt(BitWidth, DefiniteZeros),
621 APInt(BitWidth, PossibleZeros + 1));
622 II.addRangeRetAttr(Range);
623 return &II;
624 }
625
626 return nullptr;
627}
628
630 assert(II.getIntrinsicID() == Intrinsic::ctpop &&
631 "Expected ctpop intrinsic");
632 Type *Ty = II.getType();
633 unsigned BitWidth = Ty->getScalarSizeInBits();
634 Value *Op0 = II.getArgOperand(0);
635 Value *X, *Y;
636
637 // ctpop(bitreverse(x)) -> ctpop(x)
638 // ctpop(bswap(x)) -> ctpop(x)
639 if (match(Op0, m_BitReverse(m_Value(X))) || match(Op0, m_BSwap(m_Value(X))))
640 return IC.replaceOperand(II, 0, X);
641
642 // ctpop(rot(x)) -> ctpop(x)
643 if ((match(Op0, m_FShl(m_Value(X), m_Value(Y), m_Value())) ||
644 match(Op0, m_FShr(m_Value(X), m_Value(Y), m_Value()))) &&
645 X == Y)
646 return IC.replaceOperand(II, 0, X);
647
648 // ctpop(x | -x) -> bitwidth - cttz(x, false)
649 if (Op0->hasOneUse() &&
650 match(Op0, m_c_Or(m_Value(X), m_Neg(m_Deferred(X))))) {
651 Function *F =
652 Intrinsic::getDeclaration(II.getModule(), Intrinsic::cttz, Ty);
653 auto *Cttz = IC.Builder.CreateCall(F, {X, IC.Builder.getFalse()});
654 auto *Bw = ConstantInt::get(Ty, APInt(BitWidth, BitWidth));
655 return IC.replaceInstUsesWith(II, IC.Builder.CreateSub(Bw, Cttz));
656 }
657
658 // ctpop(~x & (x - 1)) -> cttz(x, false)
659 if (match(Op0,
661 Function *F =
662 Intrinsic::getDeclaration(II.getModule(), Intrinsic::cttz, Ty);
663 return CallInst::Create(F, {X, IC.Builder.getFalse()});
664 }
665
666 // Zext doesn't change the number of set bits, so narrow:
667 // ctpop (zext X) --> zext (ctpop X)
668 if (match(Op0, m_OneUse(m_ZExt(m_Value(X))))) {
669 Value *NarrowPop = IC.Builder.CreateUnaryIntrinsic(Intrinsic::ctpop, X);
670 return CastInst::Create(Instruction::ZExt, NarrowPop, Ty);
671 }
672
673 KnownBits Known(BitWidth);
674 IC.computeKnownBits(Op0, Known, 0, &II);
675
676 // If all bits are zero except for exactly one fixed bit, then the result
677 // must be 0 or 1, and we can get that answer by shifting to LSB:
678 // ctpop (X & 32) --> (X & 32) >> 5
679 // TODO: Investigate removing this as its likely unnecessary given the below
680 // `isKnownToBeAPowerOfTwo` check.
681 if ((~Known.Zero).isPowerOf2())
682 return BinaryOperator::CreateLShr(
683 Op0, ConstantInt::get(Ty, (~Known.Zero).exactLogBase2()));
684
685 // More generally we can also handle non-constant power of 2 patterns such as
686 // shl/shr(Pow2, X), (X & -X), etc... by transforming:
687 // ctpop(Pow2OrZero) --> icmp ne X, 0
688 if (IC.isKnownToBeAPowerOfTwo(Op0, /* OrZero */ true))
689 return CastInst::Create(Instruction::ZExt,
692 Ty);
693
694 // Add range attribute since known bits can't completely reflect what we know.
695 if (BitWidth != 1 && !II.hasRetAttr(Attribute::Range) &&
696 !II.getMetadata(LLVMContext::MD_range)) {
698 APInt(BitWidth, Known.countMaxPopulation() + 1));
699 II.addRangeRetAttr(Range);
700 return &II;
701 }
702
703 return nullptr;
704}
705
706/// Convert a table lookup to shufflevector if the mask is constant.
707/// This could benefit tbl1 if the mask is { 7,6,5,4,3,2,1,0 }, in
708/// which case we could lower the shufflevector with rev64 instructions
709/// as it's actually a byte reverse.
711 InstCombiner::BuilderTy &Builder) {
712 // Bail out if the mask is not a constant.
713 auto *C = dyn_cast<Constant>(II.getArgOperand(1));
714 if (!C)
715 return nullptr;
716
717 auto *VecTy = cast<FixedVectorType>(II.getType());
718 unsigned NumElts = VecTy->getNumElements();
719
720 // Only perform this transformation for <8 x i8> vector types.
721 if (!VecTy->getElementType()->isIntegerTy(8) || NumElts != 8)
722 return nullptr;
723
724 int Indexes[8];
725
726 for (unsigned I = 0; I < NumElts; ++I) {
727 Constant *COp = C->getAggregateElement(I);
728
729 if (!COp || !isa<ConstantInt>(COp))
730 return nullptr;
731
732 Indexes[I] = cast<ConstantInt>(COp)->getLimitedValue();
733
734 // Make sure the mask indices are in range.
735 if ((unsigned)Indexes[I] >= NumElts)
736 return nullptr;
737 }
738
739 auto *V1 = II.getArgOperand(0);
740 auto *V2 = Constant::getNullValue(V1->getType());
741 return Builder.CreateShuffleVector(V1, V2, ArrayRef(Indexes));
742}
743
744// Returns true iff the 2 intrinsics have the same operands, limiting the
745// comparison to the first NumOperands.
746static bool haveSameOperands(const IntrinsicInst &I, const IntrinsicInst &E,
747 unsigned NumOperands) {
748 assert(I.arg_size() >= NumOperands && "Not enough operands");
749 assert(E.arg_size() >= NumOperands && "Not enough operands");
750 for (unsigned i = 0; i < NumOperands; i++)
751 if (I.getArgOperand(i) != E.getArgOperand(i))
752 return false;
753 return true;
754}
755
756// Remove trivially empty start/end intrinsic ranges, i.e. a start
757// immediately followed by an end (ignoring debuginfo or other
758// start/end intrinsics in between). As this handles only the most trivial
759// cases, tracking the nesting level is not needed:
760//
761// call @llvm.foo.start(i1 0)
762// call @llvm.foo.start(i1 0) ; This one won't be skipped: it will be removed
763// call @llvm.foo.end(i1 0)
764// call @llvm.foo.end(i1 0) ; &I
765static bool
767 std::function<bool(const IntrinsicInst &)> IsStart) {
768 // We start from the end intrinsic and scan backwards, so that InstCombine
769 // has already processed (and potentially removed) all the instructions
770 // before the end intrinsic.
771 BasicBlock::reverse_iterator BI(EndI), BE(EndI.getParent()->rend());
772 for (; BI != BE; ++BI) {
773 if (auto *I = dyn_cast<IntrinsicInst>(&*BI)) {
774 if (I->isDebugOrPseudoInst() ||
775 I->getIntrinsicID() == EndI.getIntrinsicID())
776 continue;
777 if (IsStart(*I)) {
778 if (haveSameOperands(EndI, *I, EndI.arg_size())) {
780 IC.eraseInstFromFunction(EndI);
781 return true;
782 }
783 // Skip start intrinsics that don't pair with this end intrinsic.
784 continue;
785 }
786 }
787 break;
788 }
789
790 return false;
791}
792
794 removeTriviallyEmptyRange(I, *this, [](const IntrinsicInst &I) {
795 return I.getIntrinsicID() == Intrinsic::vastart ||
796 I.getIntrinsicID() == Intrinsic::vacopy;
797 });
798 return nullptr;
799}
800
802 assert(Call.arg_size() > 1 && "Need at least 2 args to swap");
803 Value *Arg0 = Call.getArgOperand(0), *Arg1 = Call.getArgOperand(1);
804 if (isa<Constant>(Arg0) && !isa<Constant>(Arg1)) {
805 Call.setArgOperand(0, Arg1);
806 Call.setArgOperand(1, Arg0);
807 return &Call;
808 }
809 return nullptr;
810}
811
812/// Creates a result tuple for an overflow intrinsic \p II with a given
813/// \p Result and a constant \p Overflow value.
815 Constant *Overflow) {
816 Constant *V[] = {PoisonValue::get(Result->getType()), Overflow};
817 StructType *ST = cast<StructType>(II->getType());
819 return InsertValueInst::Create(Struct, Result, 0);
820}
821
823InstCombinerImpl::foldIntrinsicWithOverflowCommon(IntrinsicInst *II) {
824 WithOverflowInst *WO = cast<WithOverflowInst>(II);
825 Value *OperationResult = nullptr;
826 Constant *OverflowResult = nullptr;
827 if (OptimizeOverflowCheck(WO->getBinaryOp(), WO->isSigned(), WO->getLHS(),
828 WO->getRHS(), *WO, OperationResult, OverflowResult))
829 return createOverflowTuple(WO, OperationResult, OverflowResult);
830 return nullptr;
831}
832
833static bool inputDenormalIsIEEE(const Function &F, const Type *Ty) {
834 Ty = Ty->getScalarType();
835 return F.getDenormalMode(Ty->getFltSemantics()).Input == DenormalMode::IEEE;
836}
837
838static bool inputDenormalIsDAZ(const Function &F, const Type *Ty) {
839 Ty = Ty->getScalarType();
840 return F.getDenormalMode(Ty->getFltSemantics()).inputsAreZero();
841}
842
843/// \returns the compare predicate type if the test performed by
844/// llvm.is.fpclass(x, \p Mask) is equivalent to fcmp o__ x, 0.0 with the
845/// floating-point environment assumed for \p F for type \p Ty
847 const Function &F, Type *Ty) {
848 switch (static_cast<unsigned>(Mask)) {
849 case fcZero:
850 if (inputDenormalIsIEEE(F, Ty))
851 return FCmpInst::FCMP_OEQ;
852 break;
853 case fcZero | fcSubnormal:
854 if (inputDenormalIsDAZ(F, Ty))
855 return FCmpInst::FCMP_OEQ;
856 break;
857 case fcPositive | fcNegZero:
858 if (inputDenormalIsIEEE(F, Ty))
859 return FCmpInst::FCMP_OGE;
860 break;
862 if (inputDenormalIsDAZ(F, Ty))
863 return FCmpInst::FCMP_OGE;
864 break;
866 if (inputDenormalIsIEEE(F, Ty))
867 return FCmpInst::FCMP_OGT;
868 break;
869 case fcNegative | fcPosZero:
870 if (inputDenormalIsIEEE(F, Ty))
871 return FCmpInst::FCMP_OLE;
872 break;
874 if (inputDenormalIsDAZ(F, Ty))
875 return FCmpInst::FCMP_OLE;
876 break;
878 if (inputDenormalIsIEEE(F, Ty))
879 return FCmpInst::FCMP_OLT;
880 break;
881 case fcPosNormal | fcPosInf:
882 if (inputDenormalIsDAZ(F, Ty))
883 return FCmpInst::FCMP_OGT;
884 break;
885 case fcNegNormal | fcNegInf:
886 if (inputDenormalIsDAZ(F, Ty))
887 return FCmpInst::FCMP_OLT;
888 break;
889 case ~fcZero & ~fcNan:
890 if (inputDenormalIsIEEE(F, Ty))
891 return FCmpInst::FCMP_ONE;
892 break;
893 case ~(fcZero | fcSubnormal) & ~fcNan:
894 if (inputDenormalIsDAZ(F, Ty))
895 return FCmpInst::FCMP_ONE;
896 break;
897 default:
898 break;
899 }
900
902}
903
904Instruction *InstCombinerImpl::foldIntrinsicIsFPClass(IntrinsicInst &II) {
905 Value *Src0 = II.getArgOperand(0);
906 Value *Src1 = II.getArgOperand(1);
907 const ConstantInt *CMask = cast<ConstantInt>(Src1);
908 FPClassTest Mask = static_cast<FPClassTest>(CMask->getZExtValue());
909 const bool IsUnordered = (Mask & fcNan) == fcNan;
910 const bool IsOrdered = (Mask & fcNan) == fcNone;
911 const FPClassTest OrderedMask = Mask & ~fcNan;
912 const FPClassTest OrderedInvertedMask = ~OrderedMask & ~fcNan;
913
914 const bool IsStrict =
915 II.getFunction()->getAttributes().hasFnAttr(Attribute::StrictFP);
916
917 Value *FNegSrc;
918 if (match(Src0, m_FNeg(m_Value(FNegSrc)))) {
919 // is.fpclass (fneg x), mask -> is.fpclass x, (fneg mask)
920
921 II.setArgOperand(1, ConstantInt::get(Src1->getType(), fneg(Mask)));
922 return replaceOperand(II, 0, FNegSrc);
923 }
924
925 Value *FAbsSrc;
926 if (match(Src0, m_FAbs(m_Value(FAbsSrc)))) {
927 II.setArgOperand(1, ConstantInt::get(Src1->getType(), inverse_fabs(Mask)));
928 return replaceOperand(II, 0, FAbsSrc);
929 }
930
931 if ((OrderedMask == fcInf || OrderedInvertedMask == fcInf) &&
932 (IsOrdered || IsUnordered) && !IsStrict) {
933 // is.fpclass(x, fcInf) -> fcmp oeq fabs(x), +inf
934 // is.fpclass(x, ~fcInf) -> fcmp one fabs(x), +inf
935 // is.fpclass(x, fcInf|fcNan) -> fcmp ueq fabs(x), +inf
936 // is.fpclass(x, ~(fcInf|fcNan)) -> fcmp une fabs(x), +inf
940 if (OrderedInvertedMask == fcInf)
941 Pred = IsUnordered ? FCmpInst::FCMP_UNE : FCmpInst::FCMP_ONE;
942
943 Value *Fabs = Builder.CreateUnaryIntrinsic(Intrinsic::fabs, Src0);
944 Value *CmpInf = Builder.CreateFCmp(Pred, Fabs, Inf);
945 CmpInf->takeName(&II);
946 return replaceInstUsesWith(II, CmpInf);
947 }
948
949 if ((OrderedMask == fcPosInf || OrderedMask == fcNegInf) &&
950 (IsOrdered || IsUnordered) && !IsStrict) {
951 // is.fpclass(x, fcPosInf) -> fcmp oeq x, +inf
952 // is.fpclass(x, fcNegInf) -> fcmp oeq x, -inf
953 // is.fpclass(x, fcPosInf|fcNan) -> fcmp ueq x, +inf
954 // is.fpclass(x, fcNegInf|fcNan) -> fcmp ueq x, -inf
955 Constant *Inf =
956 ConstantFP::getInfinity(Src0->getType(), OrderedMask == fcNegInf);
957 Value *EqInf = IsUnordered ? Builder.CreateFCmpUEQ(Src0, Inf)
958 : Builder.CreateFCmpOEQ(Src0, Inf);
959
960 EqInf->takeName(&II);
961 return replaceInstUsesWith(II, EqInf);
962 }
963
964 if ((OrderedInvertedMask == fcPosInf || OrderedInvertedMask == fcNegInf) &&
965 (IsOrdered || IsUnordered) && !IsStrict) {
966 // is.fpclass(x, ~fcPosInf) -> fcmp one x, +inf
967 // is.fpclass(x, ~fcNegInf) -> fcmp one x, -inf
968 // is.fpclass(x, ~fcPosInf|fcNan) -> fcmp une x, +inf
969 // is.fpclass(x, ~fcNegInf|fcNan) -> fcmp une x, -inf
971 OrderedInvertedMask == fcNegInf);
972 Value *NeInf = IsUnordered ? Builder.CreateFCmpUNE(Src0, Inf)
973 : Builder.CreateFCmpONE(Src0, Inf);
974 NeInf->takeName(&II);
975 return replaceInstUsesWith(II, NeInf);
976 }
977
978 if (Mask == fcNan && !IsStrict) {
979 // Equivalent of isnan. Replace with standard fcmp if we don't care about FP
980 // exceptions.
981 Value *IsNan =
983 IsNan->takeName(&II);
984 return replaceInstUsesWith(II, IsNan);
985 }
986
987 if (Mask == (~fcNan & fcAllFlags) && !IsStrict) {
988 // Equivalent of !isnan. Replace with standard fcmp.
989 Value *FCmp =
991 FCmp->takeName(&II);
992 return replaceInstUsesWith(II, FCmp);
993 }
994
996
997 // Try to replace with an fcmp with 0
998 //
999 // is.fpclass(x, fcZero) -> fcmp oeq x, 0.0
1000 // is.fpclass(x, fcZero | fcNan) -> fcmp ueq x, 0.0
1001 // is.fpclass(x, ~fcZero & ~fcNan) -> fcmp one x, 0.0
1002 // is.fpclass(x, ~fcZero) -> fcmp une x, 0.0
1003 //
1004 // is.fpclass(x, fcPosSubnormal | fcPosNormal | fcPosInf) -> fcmp ogt x, 0.0
1005 // is.fpclass(x, fcPositive | fcNegZero) -> fcmp oge x, 0.0
1006 //
1007 // is.fpclass(x, fcNegSubnormal | fcNegNormal | fcNegInf) -> fcmp olt x, 0.0
1008 // is.fpclass(x, fcNegative | fcPosZero) -> fcmp ole x, 0.0
1009 //
1010 if (!IsStrict && (IsOrdered || IsUnordered) &&
1011 (PredType = fpclassTestIsFCmp0(OrderedMask, *II.getFunction(),
1012 Src0->getType())) !=
1015 // Equivalent of == 0.
1016 Value *FCmp = Builder.CreateFCmp(
1017 IsUnordered ? FCmpInst::getUnorderedPredicate(PredType) : PredType,
1018 Src0, Zero);
1019
1020 FCmp->takeName(&II);
1021 return replaceInstUsesWith(II, FCmp);
1022 }
1023
1024 KnownFPClass Known = computeKnownFPClass(Src0, Mask, &II);
1025
1026 // Clear test bits we know must be false from the source value.
1027 // fp_class (nnan x), qnan|snan|other -> fp_class (nnan x), other
1028 // fp_class (ninf x), ninf|pinf|other -> fp_class (ninf x), other
1029 if ((Mask & Known.KnownFPClasses) != Mask) {
1030 II.setArgOperand(
1031 1, ConstantInt::get(Src1->getType(), Mask & Known.KnownFPClasses));
1032 return &II;
1033 }
1034
1035 // If none of the tests which can return false are possible, fold to true.
1036 // fp_class (nnan x), ~(qnan|snan) -> true
1037 // fp_class (ninf x), ~(ninf|pinf) -> true
1038 if (Mask == Known.KnownFPClasses)
1039 return replaceInstUsesWith(II, ConstantInt::get(II.getType(), true));
1040
1041 return nullptr;
1042}
1043
1044static std::optional<bool> getKnownSign(Value *Op, Instruction *CxtI,
1045 const DataLayout &DL, AssumptionCache *AC,
1046 DominatorTree *DT) {
1047 KnownBits Known = computeKnownBits(Op, DL, 0, AC, CxtI, DT);
1048 if (Known.isNonNegative())
1049 return false;
1050 if (Known.isNegative())
1051 return true;
1052
1053 Value *X, *Y;
1054 if (match(Op, m_NSWSub(m_Value(X), m_Value(Y))))
1056
1058 ICmpInst::ICMP_SLT, Op, Constant::getNullValue(Op->getType()), CxtI, DL);
1059}
1060
1061static std::optional<bool> getKnownSignOrZero(Value *Op, Instruction *CxtI,
1062 const DataLayout &DL,
1063 AssumptionCache *AC,
1064 DominatorTree *DT) {
1065 if (std::optional<bool> Sign = getKnownSign(Op, CxtI, DL, AC, DT))
1066 return Sign;
1067
1068 Value *X, *Y;
1069 if (match(Op, m_NSWSub(m_Value(X), m_Value(Y))))
1071
1072 return std::nullopt;
1073}
1074
1075/// Return true if two values \p Op0 and \p Op1 are known to have the same sign.
1076static bool signBitMustBeTheSame(Value *Op0, Value *Op1, Instruction *CxtI,
1077 const DataLayout &DL, AssumptionCache *AC,
1078 DominatorTree *DT) {
1079 std::optional<bool> Known1 = getKnownSign(Op1, CxtI, DL, AC, DT);
1080 if (!Known1)
1081 return false;
1082 std::optional<bool> Known0 = getKnownSign(Op0, CxtI, DL, AC, DT);
1083 if (!Known0)
1084 return false;
1085 return *Known0 == *Known1;
1086}
1087
1088/// Try to canonicalize min/max(X + C0, C1) as min/max(X, C1 - C0) + C0. This
1089/// can trigger other combines.
1091 InstCombiner::BuilderTy &Builder) {
1092 Intrinsic::ID MinMaxID = II->getIntrinsicID();
1093 assert((MinMaxID == Intrinsic::smax || MinMaxID == Intrinsic::smin ||
1094 MinMaxID == Intrinsic::umax || MinMaxID == Intrinsic::umin) &&
1095 "Expected a min or max intrinsic");
1096
1097 // TODO: Match vectors with undef elements, but undef may not propagate.
1098 Value *Op0 = II->getArgOperand(0), *Op1 = II->getArgOperand(1);
1099 Value *X;
1100 const APInt *C0, *C1;
1101 if (!match(Op0, m_OneUse(m_Add(m_Value(X), m_APInt(C0)))) ||
1102 !match(Op1, m_APInt(C1)))
1103 return nullptr;
1104
1105 // Check for necessary no-wrap and overflow constraints.
1106 bool IsSigned = MinMaxID == Intrinsic::smax || MinMaxID == Intrinsic::smin;
1107 auto *Add = cast<BinaryOperator>(Op0);
1108 if ((IsSigned && !Add->hasNoSignedWrap()) ||
1109 (!IsSigned && !Add->hasNoUnsignedWrap()))
1110 return nullptr;
1111
1112 // If the constant difference overflows, then instsimplify should reduce the
1113 // min/max to the add or C1.
1114 bool Overflow;
1115 APInt CDiff =
1116 IsSigned ? C1->ssub_ov(*C0, Overflow) : C1->usub_ov(*C0, Overflow);
1117 assert(!Overflow && "Expected simplify of min/max");
1118
1119 // min/max (add X, C0), C1 --> add (min/max X, C1 - C0), C0
1120 // Note: the "mismatched" no-overflow setting does not propagate.
1121 Constant *NewMinMaxC = ConstantInt::get(II->getType(), CDiff);
1122 Value *NewMinMax = Builder.CreateBinaryIntrinsic(MinMaxID, X, NewMinMaxC);
1123 return IsSigned ? BinaryOperator::CreateNSWAdd(NewMinMax, Add->getOperand(1))
1124 : BinaryOperator::CreateNUWAdd(NewMinMax, Add->getOperand(1));
1125}
1126/// Match a sadd_sat or ssub_sat which is using min/max to clamp the value.
1127Instruction *InstCombinerImpl::matchSAddSubSat(IntrinsicInst &MinMax1) {
1128 Type *Ty = MinMax1.getType();
1129
1130 // We are looking for a tree of:
1131 // max(INT_MIN, min(INT_MAX, add(sext(A), sext(B))))
1132 // Where the min and max could be reversed
1133 Instruction *MinMax2;
1135 const APInt *MinValue, *MaxValue;
1136 if (match(&MinMax1, m_SMin(m_Instruction(MinMax2), m_APInt(MaxValue)))) {
1137 if (!match(MinMax2, m_SMax(m_BinOp(AddSub), m_APInt(MinValue))))
1138 return nullptr;
1139 } else if (match(&MinMax1,
1140 m_SMax(m_Instruction(MinMax2), m_APInt(MinValue)))) {
1141 if (!match(MinMax2, m_SMin(m_BinOp(AddSub), m_APInt(MaxValue))))
1142 return nullptr;
1143 } else
1144 return nullptr;
1145
1146 // Check that the constants clamp a saturate, and that the new type would be
1147 // sensible to convert to.
1148 if (!(*MaxValue + 1).isPowerOf2() || -*MinValue != *MaxValue + 1)
1149 return nullptr;
1150 // In what bitwidth can this be treated as saturating arithmetics?
1151 unsigned NewBitWidth = (*MaxValue + 1).logBase2() + 1;
1152 // FIXME: This isn't quite right for vectors, but using the scalar type is a
1153 // good first approximation for what should be done there.
1154 if (!shouldChangeType(Ty->getScalarType()->getIntegerBitWidth(), NewBitWidth))
1155 return nullptr;
1156
1157 // Also make sure that the inner min/max and the add/sub have one use.
1158 if (!MinMax2->hasOneUse() || !AddSub->hasOneUse())
1159 return nullptr;
1160
1161 // Create the new type (which can be a vector type)
1162 Type *NewTy = Ty->getWithNewBitWidth(NewBitWidth);
1163
1164 Intrinsic::ID IntrinsicID;
1165 if (AddSub->getOpcode() == Instruction::Add)
1166 IntrinsicID = Intrinsic::sadd_sat;
1167 else if (AddSub->getOpcode() == Instruction::Sub)
1168 IntrinsicID = Intrinsic::ssub_sat;
1169 else
1170 return nullptr;
1171
1172 // The two operands of the add/sub must be nsw-truncatable to the NewTy. This
1173 // is usually achieved via a sext from a smaller type.
1174 if (ComputeMaxSignificantBits(AddSub->getOperand(0), 0, AddSub) >
1175 NewBitWidth ||
1176 ComputeMaxSignificantBits(AddSub->getOperand(1), 0, AddSub) > NewBitWidth)
1177 return nullptr;
1178
1179 // Finally create and return the sat intrinsic, truncated to the new type
1180 Function *F = Intrinsic::getDeclaration(MinMax1.getModule(), IntrinsicID, NewTy);
1181 Value *AT = Builder.CreateTrunc(AddSub->getOperand(0), NewTy);
1182 Value *BT = Builder.CreateTrunc(AddSub->getOperand(1), NewTy);
1183 Value *Sat = Builder.CreateCall(F, {AT, BT});
1184 return CastInst::Create(Instruction::SExt, Sat, Ty);
1185}
1186
1187
1188/// If we have a clamp pattern like max (min X, 42), 41 -- where the output
1189/// can only be one of two possible constant values -- turn that into a select
1190/// of constants.
1192 InstCombiner::BuilderTy &Builder) {
1193 Value *I0 = II->getArgOperand(0), *I1 = II->getArgOperand(1);
1194 Value *X;
1195 const APInt *C0, *C1;
1196 if (!match(I1, m_APInt(C1)) || !I0->hasOneUse())
1197 return nullptr;
1198
1200 switch (II->getIntrinsicID()) {
1201 case Intrinsic::smax:
1202 if (match(I0, m_SMin(m_Value(X), m_APInt(C0))) && *C0 == *C1 + 1)
1203 Pred = ICmpInst::ICMP_SGT;
1204 break;
1205 case Intrinsic::smin:
1206 if (match(I0, m_SMax(m_Value(X), m_APInt(C0))) && *C1 == *C0 + 1)
1207 Pred = ICmpInst::ICMP_SLT;
1208 break;
1209 case Intrinsic::umax:
1210 if (match(I0, m_UMin(m_Value(X), m_APInt(C0))) && *C0 == *C1 + 1)
1211 Pred = ICmpInst::ICMP_UGT;
1212 break;
1213 case Intrinsic::umin:
1214 if (match(I0, m_UMax(m_Value(X), m_APInt(C0))) && *C1 == *C0 + 1)
1215 Pred = ICmpInst::ICMP_ULT;
1216 break;
1217 default:
1218 llvm_unreachable("Expected min/max intrinsic");
1219 }
1220 if (Pred == CmpInst::BAD_ICMP_PREDICATE)
1221 return nullptr;
1222
1223 // max (min X, 42), 41 --> X > 41 ? 42 : 41
1224 // min (max X, 42), 43 --> X < 43 ? 42 : 43
1225 Value *Cmp = Builder.CreateICmp(Pred, X, I1);
1226 return SelectInst::Create(Cmp, ConstantInt::get(II->getType(), *C0), I1);
1227}
1228
1229/// If this min/max has a constant operand and an operand that is a matching
1230/// min/max with a constant operand, constant-fold the 2 constant operands.
1232 IRBuilderBase &Builder,
1233 const SimplifyQuery &SQ) {
1234 Intrinsic::ID MinMaxID = II->getIntrinsicID();
1235 auto *LHS = dyn_cast<MinMaxIntrinsic>(II->getArgOperand(0));
1236 if (!LHS)
1237 return nullptr;
1238
1239 Constant *C0, *C1;
1240 if (!match(LHS->getArgOperand(1), m_ImmConstant(C0)) ||
1241 !match(II->getArgOperand(1), m_ImmConstant(C1)))
1242 return nullptr;
1243
1244 // max (max X, C0), C1 --> max X, (max C0, C1)
1245 // min (min X, C0), C1 --> min X, (min C0, C1)
1246 // umax (smax X, nneg C0), nneg C1 --> smax X, (umax C0, C1)
1247 // smin (umin X, nneg C0), nneg C1 --> umin X, (smin C0, C1)
1248 Intrinsic::ID InnerMinMaxID = LHS->getIntrinsicID();
1249 if (InnerMinMaxID != MinMaxID &&
1250 !(((MinMaxID == Intrinsic::umax && InnerMinMaxID == Intrinsic::smax) ||
1251 (MinMaxID == Intrinsic::smin && InnerMinMaxID == Intrinsic::umin)) &&
1252 isKnownNonNegative(C0, SQ) && isKnownNonNegative(C1, SQ)))
1253 return nullptr;
1254
1256 Value *CondC = Builder.CreateICmp(Pred, C0, C1);
1257 Value *NewC = Builder.CreateSelect(CondC, C0, C1);
1258 return Builder.CreateIntrinsic(InnerMinMaxID, II->getType(),
1259 {LHS->getArgOperand(0), NewC});
1260}
1261
1262/// If this min/max has a matching min/max operand with a constant, try to push
1263/// the constant operand into this instruction. This can enable more folds.
1264static Instruction *
1266 InstCombiner::BuilderTy &Builder) {
1267 // Match and capture a min/max operand candidate.
1268 Value *X, *Y;
1269 Constant *C;
1270 Instruction *Inner;
1272 m_Instruction(Inner),
1274 m_Value(Y))))
1275 return nullptr;
1276
1277 // The inner op must match. Check for constants to avoid infinite loops.
1278 Intrinsic::ID MinMaxID = II->getIntrinsicID();
1279 auto *InnerMM = dyn_cast<IntrinsicInst>(Inner);
1280 if (!InnerMM || InnerMM->getIntrinsicID() != MinMaxID ||
1282 return nullptr;
1283
1284 // max (max X, C), Y --> max (max X, Y), C
1285 Function *MinMax =
1286 Intrinsic::getDeclaration(II->getModule(), MinMaxID, II->getType());
1287 Value *NewInner = Builder.CreateBinaryIntrinsic(MinMaxID, X, Y);
1288 NewInner->takeName(Inner);
1289 return CallInst::Create(MinMax, {NewInner, C});
1290}
1291
1292/// Reduce a sequence of min/max intrinsics with a common operand.
1294 // Match 3 of the same min/max ops. Example: umin(umin(), umin()).
1295 auto *LHS = dyn_cast<IntrinsicInst>(II->getArgOperand(0));
1296 auto *RHS = dyn_cast<IntrinsicInst>(II->getArgOperand(1));
1297 Intrinsic::ID MinMaxID = II->getIntrinsicID();
1298 if (!LHS || !RHS || LHS->getIntrinsicID() != MinMaxID ||
1299 RHS->getIntrinsicID() != MinMaxID ||
1300 (!LHS->hasOneUse() && !RHS->hasOneUse()))
1301 return nullptr;
1302
1303 Value *A = LHS->getArgOperand(0);
1304 Value *B = LHS->getArgOperand(1);
1305 Value *C = RHS->getArgOperand(0);
1306 Value *D = RHS->getArgOperand(1);
1307
1308 // Look for a common operand.
1309 Value *MinMaxOp = nullptr;
1310 Value *ThirdOp = nullptr;
1311 if (LHS->hasOneUse()) {
1312 // If the LHS is only used in this chain and the RHS is used outside of it,
1313 // reuse the RHS min/max because that will eliminate the LHS.
1314 if (D == A || C == A) {
1315 // min(min(a, b), min(c, a)) --> min(min(c, a), b)
1316 // min(min(a, b), min(a, d)) --> min(min(a, d), b)
1317 MinMaxOp = RHS;
1318 ThirdOp = B;
1319 } else if (D == B || C == B) {
1320 // min(min(a, b), min(c, b)) --> min(min(c, b), a)
1321 // min(min(a, b), min(b, d)) --> min(min(b, d), a)
1322 MinMaxOp = RHS;
1323 ThirdOp = A;
1324 }
1325 } else {
1326 assert(RHS->hasOneUse() && "Expected one-use operand");
1327 // Reuse the LHS. This will eliminate the RHS.
1328 if (D == A || D == B) {
1329 // min(min(a, b), min(c, a)) --> min(min(a, b), c)
1330 // min(min(a, b), min(c, b)) --> min(min(a, b), c)
1331 MinMaxOp = LHS;
1332 ThirdOp = C;
1333 } else if (C == A || C == B) {
1334 // min(min(a, b), min(b, d)) --> min(min(a, b), d)
1335 // min(min(a, b), min(c, b)) --> min(min(a, b), d)
1336 MinMaxOp = LHS;
1337 ThirdOp = D;
1338 }
1339 }
1340
1341 if (!MinMaxOp || !ThirdOp)
1342 return nullptr;
1343
1344 Module *Mod = II->getModule();
1346 return CallInst::Create(MinMax, { MinMaxOp, ThirdOp });
1347}
1348
1349/// If all arguments of the intrinsic are unary shuffles with the same mask,
1350/// try to shuffle after the intrinsic.
1351static Instruction *
1353 InstCombiner::BuilderTy &Builder) {
1354 // TODO: This should be extended to handle other intrinsics like fshl, ctpop,
1355 // etc. Use llvm::isTriviallyVectorizable() and related to determine
1356 // which intrinsics are safe to shuffle?
1357 switch (II->getIntrinsicID()) {
1358 case Intrinsic::smax:
1359 case Intrinsic::smin:
1360 case Intrinsic::umax:
1361 case Intrinsic::umin:
1362 case Intrinsic::fma:
1363 case Intrinsic::fshl:
1364 case Intrinsic::fshr:
1365 break;
1366 default:
1367 return nullptr;
1368 }
1369
1370 Value *X;
1371 ArrayRef<int> Mask;
1372 if (!match(II->getArgOperand(0),
1373 m_Shuffle(m_Value(X), m_Undef(), m_Mask(Mask))))
1374 return nullptr;
1375
1376 // At least 1 operand must have 1 use because we are creating 2 instructions.
1377 if (none_of(II->args(), [](Value *V) { return V->hasOneUse(); }))
1378 return nullptr;
1379
1380 // See if all arguments are shuffled with the same mask.
1381 SmallVector<Value *, 4> NewArgs(II->arg_size());
1382 NewArgs[0] = X;
1383 Type *SrcTy = X->getType();
1384 for (unsigned i = 1, e = II->arg_size(); i != e; ++i) {
1385 if (!match(II->getArgOperand(i),
1386 m_Shuffle(m_Value(X), m_Undef(), m_SpecificMask(Mask))) ||
1387 X->getType() != SrcTy)
1388 return nullptr;
1389 NewArgs[i] = X;
1390 }
1391
1392 // intrinsic (shuf X, M), (shuf Y, M), ... --> shuf (intrinsic X, Y, ...), M
1393 Instruction *FPI = isa<FPMathOperator>(II) ? II : nullptr;
1394 Value *NewIntrinsic =
1395 Builder.CreateIntrinsic(II->getIntrinsicID(), SrcTy, NewArgs, FPI);
1396 return new ShuffleVectorInst(NewIntrinsic, Mask);
1397}
1398
1399/// Fold the following cases and accepts bswap and bitreverse intrinsics:
1400/// bswap(logic_op(bswap(x), y)) --> logic_op(x, bswap(y))
1401/// bswap(logic_op(bswap(x), bswap(y))) --> logic_op(x, y) (ignores multiuse)
1402template <Intrinsic::ID IntrID>
1404 InstCombiner::BuilderTy &Builder) {
1405 static_assert(IntrID == Intrinsic::bswap || IntrID == Intrinsic::bitreverse,
1406 "This helper only supports BSWAP and BITREVERSE intrinsics");
1407
1408 Value *X, *Y;
1409 // Find bitwise logic op. Check that it is a BinaryOperator explicitly so we
1410 // don't match ConstantExpr that aren't meaningful for this transform.
1412 isa<BinaryOperator>(V)) {
1413 Value *OldReorderX, *OldReorderY;
1414 BinaryOperator::BinaryOps Op = cast<BinaryOperator>(V)->getOpcode();
1415
1416 // If both X and Y are bswap/bitreverse, the transform reduces the number
1417 // of instructions even if there's multiuse.
1418 // If only one operand is bswap/bitreverse, we need to ensure the operand
1419 // have only one use.
1420 if (match(X, m_Intrinsic<IntrID>(m_Value(OldReorderX))) &&
1421 match(Y, m_Intrinsic<IntrID>(m_Value(OldReorderY)))) {
1422 return BinaryOperator::Create(Op, OldReorderX, OldReorderY);
1423 }
1424
1425 if (match(X, m_OneUse(m_Intrinsic<IntrID>(m_Value(OldReorderX))))) {
1426 Value *NewReorder = Builder.CreateUnaryIntrinsic(IntrID, Y);
1427 return BinaryOperator::Create(Op, OldReorderX, NewReorder);
1428 }
1429
1430 if (match(Y, m_OneUse(m_Intrinsic<IntrID>(m_Value(OldReorderY))))) {
1431 Value *NewReorder = Builder.CreateUnaryIntrinsic(IntrID, X);
1432 return BinaryOperator::Create(Op, NewReorder, OldReorderY);
1433 }
1434 }
1435 return nullptr;
1436}
1437
1438/// CallInst simplification. This mostly only handles folding of intrinsic
1439/// instructions. For normal calls, it allows visitCallBase to do the heavy
1440/// lifting.
1442 // Don't try to simplify calls without uses. It will not do anything useful,
1443 // but will result in the following folds being skipped.
1444 if (!CI.use_empty()) {
1446 Args.reserve(CI.arg_size());
1447 for (Value *Op : CI.args())
1448 Args.push_back(Op);
1449 if (Value *V = simplifyCall(&CI, CI.getCalledOperand(), Args,
1450 SQ.getWithInstruction(&CI)))
1451 return replaceInstUsesWith(CI, V);
1452 }
1453
1454 if (Value *FreedOp = getFreedOperand(&CI, &TLI))
1455 return visitFree(CI, FreedOp);
1456
1457 // If the caller function (i.e. us, the function that contains this CallInst)
1458 // is nounwind, mark the call as nounwind, even if the callee isn't.
1459 if (CI.getFunction()->doesNotThrow() && !CI.doesNotThrow()) {
1460 CI.setDoesNotThrow();
1461 return &CI;
1462 }
1463
1464 IntrinsicInst *II = dyn_cast<IntrinsicInst>(&CI);
1465 if (!II) return visitCallBase(CI);
1466
1467 // For atomic unordered mem intrinsics if len is not a positive or
1468 // not a multiple of element size then behavior is undefined.
1469 if (auto *AMI = dyn_cast<AtomicMemIntrinsic>(II))
1470 if (ConstantInt *NumBytes = dyn_cast<ConstantInt>(AMI->getLength()))
1471 if (NumBytes->isNegative() ||
1472 (NumBytes->getZExtValue() % AMI->getElementSizeInBytes() != 0)) {
1474 assert(AMI->getType()->isVoidTy() &&
1475 "non void atomic unordered mem intrinsic");
1476 return eraseInstFromFunction(*AMI);
1477 }
1478
1479 // Intrinsics cannot occur in an invoke or a callbr, so handle them here
1480 // instead of in visitCallBase.
1481 if (auto *MI = dyn_cast<AnyMemIntrinsic>(II)) {
1482 bool Changed = false;
1483
1484 // memmove/cpy/set of zero bytes is a noop.
1485 if (Constant *NumBytes = dyn_cast<Constant>(MI->getLength())) {
1486 if (NumBytes->isNullValue())
1487 return eraseInstFromFunction(CI);
1488 }
1489
1490 // No other transformations apply to volatile transfers.
1491 if (auto *M = dyn_cast<MemIntrinsic>(MI))
1492 if (M->isVolatile())
1493 return nullptr;
1494
1495 // If we have a memmove and the source operation is a constant global,
1496 // then the source and dest pointers can't alias, so we can change this
1497 // into a call to memcpy.
1498 if (auto *MMI = dyn_cast<AnyMemMoveInst>(MI)) {
1499 if (GlobalVariable *GVSrc = dyn_cast<GlobalVariable>(MMI->getSource()))
1500 if (GVSrc->isConstant()) {
1501 Module *M = CI.getModule();
1502 Intrinsic::ID MemCpyID =
1503 isa<AtomicMemMoveInst>(MMI)
1504 ? Intrinsic::memcpy_element_unordered_atomic
1505 : Intrinsic::memcpy;
1506 Type *Tys[3] = { CI.getArgOperand(0)->getType(),
1507 CI.getArgOperand(1)->getType(),
1508 CI.getArgOperand(2)->getType() };
1509 CI.setCalledFunction(Intrinsic::getDeclaration(M, MemCpyID, Tys));
1510 Changed = true;
1511 }
1512 }
1513
1514 if (AnyMemTransferInst *MTI = dyn_cast<AnyMemTransferInst>(MI)) {
1515 // memmove(x,x,size) -> noop.
1516 if (MTI->getSource() == MTI->getDest())
1517 return eraseInstFromFunction(CI);
1518 }
1519
1520 // If we can determine a pointer alignment that is bigger than currently
1521 // set, update the alignment.
1522 if (auto *MTI = dyn_cast<AnyMemTransferInst>(MI)) {
1524 return I;
1525 } else if (auto *MSI = dyn_cast<AnyMemSetInst>(MI)) {
1526 if (Instruction *I = SimplifyAnyMemSet(MSI))
1527 return I;
1528 }
1529
1530 if (Changed) return II;
1531 }
1532
1533 // For fixed width vector result intrinsics, use the generic demanded vector
1534 // support.
1535 if (auto *IIFVTy = dyn_cast<FixedVectorType>(II->getType())) {
1536 auto VWidth = IIFVTy->getNumElements();
1537 APInt PoisonElts(VWidth, 0);
1538 APInt AllOnesEltMask(APInt::getAllOnes(VWidth));
1539 if (Value *V = SimplifyDemandedVectorElts(II, AllOnesEltMask, PoisonElts)) {
1540 if (V != II)
1541 return replaceInstUsesWith(*II, V);
1542 return II;
1543 }
1544 }
1545
1546 if (II->isCommutative()) {
1547 if (auto Pair = matchSymmetricPair(II->getOperand(0), II->getOperand(1))) {
1548 replaceOperand(*II, 0, Pair->first);
1549 replaceOperand(*II, 1, Pair->second);
1550 return II;
1551 }
1552
1553 if (CallInst *NewCall = canonicalizeConstantArg0ToArg1(CI))
1554 return NewCall;
1555 }
1556
1557 // Unused constrained FP intrinsic calls may have declared side effect, which
1558 // prevents it from being removed. In some cases however the side effect is
1559 // actually absent. To detect this case, call SimplifyConstrainedFPCall. If it
1560 // returns a replacement, the call may be removed.
1561 if (CI.use_empty() && isa<ConstrainedFPIntrinsic>(CI)) {
1563 return eraseInstFromFunction(CI);
1564 }
1565
1566 Intrinsic::ID IID = II->getIntrinsicID();
1567 switch (IID) {
1568 case Intrinsic::objectsize: {
1569 SmallVector<Instruction *> InsertedInstructions;
1570 if (Value *V = lowerObjectSizeCall(II, DL, &TLI, AA, /*MustSucceed=*/false,
1571 &InsertedInstructions)) {
1572 for (Instruction *Inserted : InsertedInstructions)
1573 Worklist.add(Inserted);
1574 return replaceInstUsesWith(CI, V);
1575 }
1576 return nullptr;
1577 }
1578 case Intrinsic::abs: {
1579 Value *IIOperand = II->getArgOperand(0);
1580 bool IntMinIsPoison = cast<Constant>(II->getArgOperand(1))->isOneValue();
1581
1582 // abs(-x) -> abs(x)
1583 // TODO: Copy nsw if it was present on the neg?
1584 Value *X;
1585 if (match(IIOperand, m_Neg(m_Value(X))))
1586 return replaceOperand(*II, 0, X);
1587 if (match(IIOperand, m_Select(m_Value(), m_Value(X), m_Neg(m_Deferred(X)))))
1588 return replaceOperand(*II, 0, X);
1589 if (match(IIOperand, m_Select(m_Value(), m_Neg(m_Value(X)), m_Deferred(X))))
1590 return replaceOperand(*II, 0, X);
1591
1592 Value *Y;
1593 // abs(a * abs(b)) -> abs(a * b)
1594 if (match(IIOperand,
1596 m_Intrinsic<Intrinsic::abs>(m_Value(Y)))))) {
1597 bool NSW =
1598 cast<Instruction>(IIOperand)->hasNoSignedWrap() && IntMinIsPoison;
1599 auto *XY = NSW ? Builder.CreateNSWMul(X, Y) : Builder.CreateMul(X, Y);
1600 return replaceOperand(*II, 0, XY);
1601 }
1602
1603 if (std::optional<bool> Known =
1604 getKnownSignOrZero(IIOperand, II, DL, &AC, &DT)) {
1605 // abs(x) -> x if x >= 0 (include abs(x-y) --> x - y where x >= y)
1606 // abs(x) -> x if x > 0 (include abs(x-y) --> x - y where x > y)
1607 if (!*Known)
1608 return replaceInstUsesWith(*II, IIOperand);
1609
1610 // abs(x) -> -x if x < 0
1611 // abs(x) -> -x if x < = 0 (include abs(x-y) --> y - x where x <= y)
1612 if (IntMinIsPoison)
1613 return BinaryOperator::CreateNSWNeg(IIOperand);
1614 return BinaryOperator::CreateNeg(IIOperand);
1615 }
1616
1617 // abs (sext X) --> zext (abs X*)
1618 // Clear the IsIntMin (nsw) bit on the abs to allow narrowing.
1619 if (match(IIOperand, m_OneUse(m_SExt(m_Value(X))))) {
1620 Value *NarrowAbs =
1621 Builder.CreateBinaryIntrinsic(Intrinsic::abs, X, Builder.getFalse());
1622 return CastInst::Create(Instruction::ZExt, NarrowAbs, II->getType());
1623 }
1624
1625 // Match a complicated way to check if a number is odd/even:
1626 // abs (srem X, 2) --> and X, 1
1627 const APInt *C;
1628 if (match(IIOperand, m_SRem(m_Value(X), m_APInt(C))) && *C == 2)
1629 return BinaryOperator::CreateAnd(X, ConstantInt::get(II->getType(), 1));
1630
1631 break;
1632 }
1633 case Intrinsic::umin: {
1634 Value *I0 = II->getArgOperand(0), *I1 = II->getArgOperand(1);
1635 // umin(x, 1) == zext(x != 0)
1636 if (match(I1, m_One())) {
1637 assert(II->getType()->getScalarSizeInBits() != 1 &&
1638 "Expected simplify of umin with max constant");
1639 Value *Zero = Constant::getNullValue(I0->getType());
1640 Value *Cmp = Builder.CreateICmpNE(I0, Zero);
1641 return CastInst::Create(Instruction::ZExt, Cmp, II->getType());
1642 }
1643 [[fallthrough]];
1644 }
1645 case Intrinsic::umax: {
1646 Value *I0 = II->getArgOperand(0), *I1 = II->getArgOperand(1);
1647 Value *X, *Y;
1648 if (match(I0, m_ZExt(m_Value(X))) && match(I1, m_ZExt(m_Value(Y))) &&
1649 (I0->hasOneUse() || I1->hasOneUse()) && X->getType() == Y->getType()) {
1650 Value *NarrowMaxMin = Builder.CreateBinaryIntrinsic(IID, X, Y);
1651 return CastInst::Create(Instruction::ZExt, NarrowMaxMin, II->getType());
1652 }
1653 Constant *C;
1654 if (match(I0, m_ZExt(m_Value(X))) && match(I1, m_Constant(C)) &&
1655 I0->hasOneUse()) {
1656 if (Constant *NarrowC = getLosslessUnsignedTrunc(C, X->getType())) {
1657 Value *NarrowMaxMin = Builder.CreateBinaryIntrinsic(IID, X, NarrowC);
1658 return CastInst::Create(Instruction::ZExt, NarrowMaxMin, II->getType());
1659 }
1660 }
1661 // If both operands of unsigned min/max are sign-extended, it is still ok
1662 // to narrow the operation.
1663 [[fallthrough]];
1664 }
1665 case Intrinsic::smax:
1666 case Intrinsic::smin: {
1667 Value *I0 = II->getArgOperand(0), *I1 = II->getArgOperand(1);
1668 Value *X, *Y;
1669 if (match(I0, m_SExt(m_Value(X))) && match(I1, m_SExt(m_Value(Y))) &&
1670 (I0->hasOneUse() || I1->hasOneUse()) && X->getType() == Y->getType()) {
1671 Value *NarrowMaxMin = Builder.CreateBinaryIntrinsic(IID, X, Y);
1672 return CastInst::Create(Instruction::SExt, NarrowMaxMin, II->getType());
1673 }
1674
1675 Constant *C;
1676 if (match(I0, m_SExt(m_Value(X))) && match(I1, m_Constant(C)) &&
1677 I0->hasOneUse()) {
1678 if (Constant *NarrowC = getLosslessSignedTrunc(C, X->getType())) {
1679 Value *NarrowMaxMin = Builder.CreateBinaryIntrinsic(IID, X, NarrowC);
1680 return CastInst::Create(Instruction::SExt, NarrowMaxMin, II->getType());
1681 }
1682 }
1683
1684 // umin(i1 X, i1 Y) -> and i1 X, Y
1685 // smax(i1 X, i1 Y) -> and i1 X, Y
1686 if ((IID == Intrinsic::umin || IID == Intrinsic::smax) &&
1687 II->getType()->isIntOrIntVectorTy(1)) {
1688 return BinaryOperator::CreateAnd(I0, I1);
1689 }
1690
1691 // umax(i1 X, i1 Y) -> or i1 X, Y
1692 // smin(i1 X, i1 Y) -> or i1 X, Y
1693 if ((IID == Intrinsic::umax || IID == Intrinsic::smin) &&
1694 II->getType()->isIntOrIntVectorTy(1)) {
1695 return BinaryOperator::CreateOr(I0, I1);
1696 }
1697
1698 if (IID == Intrinsic::smax || IID == Intrinsic::smin) {
1699 // smax (neg nsw X), (neg nsw Y) --> neg nsw (smin X, Y)
1700 // smin (neg nsw X), (neg nsw Y) --> neg nsw (smax X, Y)
1701 // TODO: Canonicalize neg after min/max if I1 is constant.
1702 if (match(I0, m_NSWNeg(m_Value(X))) && match(I1, m_NSWNeg(m_Value(Y))) &&
1703 (I0->hasOneUse() || I1->hasOneUse())) {
1705 Value *InvMaxMin = Builder.CreateBinaryIntrinsic(InvID, X, Y);
1706 return BinaryOperator::CreateNSWNeg(InvMaxMin);
1707 }
1708 }
1709
1710 // (umax X, (xor X, Pow2))
1711 // -> (or X, Pow2)
1712 // (umin X, (xor X, Pow2))
1713 // -> (and X, ~Pow2)
1714 // (smax X, (xor X, Pos_Pow2))
1715 // -> (or X, Pos_Pow2)
1716 // (smin X, (xor X, Pos_Pow2))
1717 // -> (and X, ~Pos_Pow2)
1718 // (smax X, (xor X, Neg_Pow2))
1719 // -> (and X, ~Neg_Pow2)
1720 // (smin X, (xor X, Neg_Pow2))
1721 // -> (or X, Neg_Pow2)
1722 if ((match(I0, m_c_Xor(m_Specific(I1), m_Value(X))) ||
1723 match(I1, m_c_Xor(m_Specific(I0), m_Value(X)))) &&
1724 isKnownToBeAPowerOfTwo(X, /* OrZero */ true)) {
1725 bool UseOr = IID == Intrinsic::smax || IID == Intrinsic::umax;
1726 bool UseAndN = IID == Intrinsic::smin || IID == Intrinsic::umin;
1727
1728 if (IID == Intrinsic::smax || IID == Intrinsic::smin) {
1729 auto KnownSign = getKnownSign(X, II, DL, &AC, &DT);
1730 if (KnownSign == std::nullopt) {
1731 UseOr = false;
1732 UseAndN = false;
1733 } else if (*KnownSign /* true is Signed. */) {
1734 UseOr ^= true;
1735 UseAndN ^= true;
1736 Type *Ty = I0->getType();
1737 // Negative power of 2 must be IntMin. It's possible to be able to
1738 // prove negative / power of 2 without actually having known bits, so
1739 // just get the value by hand.
1742 }
1743 }
1744 if (UseOr)
1745 return BinaryOperator::CreateOr(I0, X);
1746 else if (UseAndN)
1747 return BinaryOperator::CreateAnd(I0, Builder.CreateNot(X));
1748 }
1749
1750 // If we can eliminate ~A and Y is free to invert:
1751 // max ~A, Y --> ~(min A, ~Y)
1752 //
1753 // Examples:
1754 // max ~A, ~Y --> ~(min A, Y)
1755 // max ~A, C --> ~(min A, ~C)
1756 // max ~A, (max ~Y, ~Z) --> ~min( A, (min Y, Z))
1757 auto moveNotAfterMinMax = [&](Value *X, Value *Y) -> Instruction * {
1758 Value *A;
1759 if (match(X, m_OneUse(m_Not(m_Value(A)))) &&
1760 !isFreeToInvert(A, A->hasOneUse())) {
1761 if (Value *NotY = getFreelyInverted(Y, Y->hasOneUse(), &Builder)) {
1763 Value *InvMaxMin = Builder.CreateBinaryIntrinsic(InvID, A, NotY);
1764 return BinaryOperator::CreateNot(InvMaxMin);
1765 }
1766 }
1767 return nullptr;
1768 };
1769
1770 if (Instruction *I = moveNotAfterMinMax(I0, I1))
1771 return I;
1772 if (Instruction *I = moveNotAfterMinMax(I1, I0))
1773 return I;
1774
1776 return I;
1777
1778 // minmax (X & NegPow2C, Y & NegPow2C) --> minmax(X, Y) & NegPow2C
1779 const APInt *RHSC;
1780 if (match(I0, m_OneUse(m_And(m_Value(X), m_NegatedPower2(RHSC)))) &&
1781 match(I1, m_OneUse(m_And(m_Value(Y), m_SpecificInt(*RHSC)))))
1782 return BinaryOperator::CreateAnd(Builder.CreateBinaryIntrinsic(IID, X, Y),
1783 ConstantInt::get(II->getType(), *RHSC));
1784
1785 // smax(X, -X) --> abs(X)
1786 // smin(X, -X) --> -abs(X)
1787 // umax(X, -X) --> -abs(X)
1788 // umin(X, -X) --> abs(X)
1789 if (isKnownNegation(I0, I1)) {
1790 // We can choose either operand as the input to abs(), but if we can
1791 // eliminate the only use of a value, that's better for subsequent
1792 // transforms/analysis.
1793 if (I0->hasOneUse() && !I1->hasOneUse())
1794 std::swap(I0, I1);
1795
1796 // This is some variant of abs(). See if we can propagate 'nsw' to the abs
1797 // operation and potentially its negation.
1798 bool IntMinIsPoison = isKnownNegation(I0, I1, /* NeedNSW */ true);
1800 Intrinsic::abs, I0,
1801 ConstantInt::getBool(II->getContext(), IntMinIsPoison));
1802
1803 // We don't have a "nabs" intrinsic, so negate if needed based on the
1804 // max/min operation.
1805 if (IID == Intrinsic::smin || IID == Intrinsic::umax)
1806 Abs = Builder.CreateNeg(Abs, "nabs", IntMinIsPoison);
1807 return replaceInstUsesWith(CI, Abs);
1808 }
1809
1810 if (Instruction *Sel = foldClampRangeOfTwo(II, Builder))
1811 return Sel;
1812
1813 if (Instruction *SAdd = matchSAddSubSat(*II))
1814 return SAdd;
1815
1816 if (Value *NewMinMax = reassociateMinMaxWithConstants(II, Builder, SQ))
1817 return replaceInstUsesWith(*II, NewMinMax);
1818
1820 return R;
1821
1822 if (Instruction *NewMinMax = factorizeMinMaxTree(II))
1823 return NewMinMax;
1824
1825 // Try to fold minmax with constant RHS based on range information
1826 if (match(I1, m_APIntAllowPoison(RHSC))) {
1827 ICmpInst::Predicate Pred =
1829 bool IsSigned = MinMaxIntrinsic::isSigned(IID);
1831 I0, IsSigned, SQ.getWithInstruction(II));
1832 if (!LHS_CR.isFullSet()) {
1833 if (LHS_CR.icmp(Pred, *RHSC))
1834 return replaceInstUsesWith(*II, I0);
1835 if (LHS_CR.icmp(ICmpInst::getSwappedPredicate(Pred), *RHSC))
1836 return replaceInstUsesWith(*II,
1837 ConstantInt::get(II->getType(), *RHSC));
1838 }
1839 }
1840
1841 break;
1842 }
1843 case Intrinsic::bitreverse: {
1844 Value *IIOperand = II->getArgOperand(0);
1845 // bitrev (zext i1 X to ?) --> X ? SignBitC : 0
1846 Value *X;
1847 if (match(IIOperand, m_ZExt(m_Value(X))) &&
1848 X->getType()->isIntOrIntVectorTy(1)) {
1849 Type *Ty = II->getType();
1851 return SelectInst::Create(X, ConstantInt::get(Ty, SignBit),
1853 }
1854
1855 if (Instruction *crossLogicOpFold =
1856 foldBitOrderCrossLogicOp<Intrinsic::bitreverse>(IIOperand, Builder))
1857 return crossLogicOpFold;
1858
1859 break;
1860 }
1861 case Intrinsic::bswap: {
1862 Value *IIOperand = II->getArgOperand(0);
1863
1864 // Try to canonicalize bswap-of-logical-shift-by-8-bit-multiple as
1865 // inverse-shift-of-bswap:
1866 // bswap (shl X, Y) --> lshr (bswap X), Y
1867 // bswap (lshr X, Y) --> shl (bswap X), Y
1868 Value *X, *Y;
1869 if (match(IIOperand, m_OneUse(m_LogicalShift(m_Value(X), m_Value(Y))))) {
1870 unsigned BitWidth = IIOperand->getType()->getScalarSizeInBits();
1872 Value *NewSwap = Builder.CreateUnaryIntrinsic(Intrinsic::bswap, X);
1873 BinaryOperator::BinaryOps InverseShift =
1874 cast<BinaryOperator>(IIOperand)->getOpcode() == Instruction::Shl
1875 ? Instruction::LShr
1876 : Instruction::Shl;
1877 return BinaryOperator::Create(InverseShift, NewSwap, Y);
1878 }
1879 }
1880
1881 KnownBits Known = computeKnownBits(IIOperand, 0, II);
1882 uint64_t LZ = alignDown(Known.countMinLeadingZeros(), 8);
1883 uint64_t TZ = alignDown(Known.countMinTrailingZeros(), 8);
1884 unsigned BW = Known.getBitWidth();
1885
1886 // bswap(x) -> shift(x) if x has exactly one "active byte"
1887 if (BW - LZ - TZ == 8) {
1888 assert(LZ != TZ && "active byte cannot be in the middle");
1889 if (LZ > TZ) // -> shl(x) if the "active byte" is in the low part of x
1890 return BinaryOperator::CreateNUWShl(
1891 IIOperand, ConstantInt::get(IIOperand->getType(), LZ - TZ));
1892 // -> lshr(x) if the "active byte" is in the high part of x
1893 return BinaryOperator::CreateExactLShr(
1894 IIOperand, ConstantInt::get(IIOperand->getType(), TZ - LZ));
1895 }
1896
1897 // bswap(trunc(bswap(x))) -> trunc(lshr(x, c))
1898 if (match(IIOperand, m_Trunc(m_BSwap(m_Value(X))))) {
1899 unsigned C = X->getType()->getScalarSizeInBits() - BW;
1900 Value *CV = ConstantInt::get(X->getType(), C);
1901 Value *V = Builder.CreateLShr(X, CV);
1902 return new TruncInst(V, IIOperand->getType());
1903 }
1904
1905 if (Instruction *crossLogicOpFold =
1906 foldBitOrderCrossLogicOp<Intrinsic::bswap>(IIOperand, Builder)) {
1907 return crossLogicOpFold;
1908 }
1909
1910 // Try to fold into bitreverse if bswap is the root of the expression tree.
1911 if (Instruction *BitOp = matchBSwapOrBitReverse(*II, /*MatchBSwaps*/ false,
1912 /*MatchBitReversals*/ true))
1913 return BitOp;
1914 break;
1915 }
1916 case Intrinsic::masked_load:
1917 if (Value *SimplifiedMaskedOp = simplifyMaskedLoad(*II))
1918 return replaceInstUsesWith(CI, SimplifiedMaskedOp);
1919 break;
1920 case Intrinsic::masked_store:
1921 return simplifyMaskedStore(*II);
1922 case Intrinsic::masked_gather:
1923 return simplifyMaskedGather(*II);
1924 case Intrinsic::masked_scatter:
1925 return simplifyMaskedScatter(*II);
1926 case Intrinsic::launder_invariant_group:
1927 case Intrinsic::strip_invariant_group:
1928 if (auto *SkippedBarrier = simplifyInvariantGroupIntrinsic(*II, *this))
1929 return replaceInstUsesWith(*II, SkippedBarrier);
1930 break;
1931 case Intrinsic::powi:
1932 if (ConstantInt *Power = dyn_cast<ConstantInt>(II->getArgOperand(1))) {
1933 // 0 and 1 are handled in instsimplify
1934 // powi(x, -1) -> 1/x
1935 if (Power->isMinusOne())
1936 return BinaryOperator::CreateFDivFMF(ConstantFP::get(CI.getType(), 1.0),
1937 II->getArgOperand(0), II);
1938 // powi(x, 2) -> x*x
1939 if (Power->equalsInt(2))
1941 II->getArgOperand(0), II);
1942
1943 if (!Power->getValue()[0]) {
1944 Value *X;
1945 // If power is even:
1946 // powi(-x, p) -> powi(x, p)
1947 // powi(fabs(x), p) -> powi(x, p)
1948 // powi(copysign(x, y), p) -> powi(x, p)
1949 if (match(II->getArgOperand(0), m_FNeg(m_Value(X))) ||
1950 match(II->getArgOperand(0), m_FAbs(m_Value(X))) ||
1951 match(II->getArgOperand(0),
1952 m_Intrinsic<Intrinsic::copysign>(m_Value(X), m_Value())))
1953 return replaceOperand(*II, 0, X);
1954 }
1955 }
1956 break;
1957
1958 case Intrinsic::cttz:
1959 case Intrinsic::ctlz:
1960 if (auto *I = foldCttzCtlz(*II, *this))
1961 return I;
1962 break;
1963
1964 case Intrinsic::ctpop:
1965 if (auto *I = foldCtpop(*II, *this))
1966 return I;
1967 break;
1968
1969 case Intrinsic::fshl:
1970 case Intrinsic::fshr: {
1971 Value *Op0 = II->getArgOperand(0), *Op1 = II->getArgOperand(1);
1972 Type *Ty = II->getType();
1973 unsigned BitWidth = Ty->getScalarSizeInBits();
1974 Constant *ShAmtC;
1975 if (match(II->getArgOperand(2), m_ImmConstant(ShAmtC))) {
1976 // Canonicalize a shift amount constant operand to modulo the bit-width.
1977 Constant *WidthC = ConstantInt::get(Ty, BitWidth);
1978 Constant *ModuloC =
1979 ConstantFoldBinaryOpOperands(Instruction::URem, ShAmtC, WidthC, DL);
1980 if (!ModuloC)
1981 return nullptr;
1982 if (ModuloC != ShAmtC)
1983 return replaceOperand(*II, 2, ModuloC);
1984
1986 ShAmtC, DL),
1987 m_One()) &&
1988 "Shift amount expected to be modulo bitwidth");
1989
1990 // Canonicalize funnel shift right by constant to funnel shift left. This
1991 // is not entirely arbitrary. For historical reasons, the backend may
1992 // recognize rotate left patterns but miss rotate right patterns.
1993 if (IID == Intrinsic::fshr) {
1994 // fshr X, Y, C --> fshl X, Y, (BitWidth - C) if C is not zero.
1995 if (!isKnownNonZero(ShAmtC, SQ.getWithInstruction(II)))
1996 return nullptr;
1997
1998 Constant *LeftShiftC = ConstantExpr::getSub(WidthC, ShAmtC);
1999 Module *Mod = II->getModule();
2000 Function *Fshl = Intrinsic::getDeclaration(Mod, Intrinsic::fshl, Ty);
2001 return CallInst::Create(Fshl, { Op0, Op1, LeftShiftC });
2002 }
2003 assert(IID == Intrinsic::fshl &&
2004 "All funnel shifts by simple constants should go left");
2005
2006 // fshl(X, 0, C) --> shl X, C
2007 // fshl(X, undef, C) --> shl X, C
2008 if (match(Op1, m_ZeroInt()) || match(Op1, m_Undef()))
2009 return BinaryOperator::CreateShl(Op0, ShAmtC);
2010
2011 // fshl(0, X, C) --> lshr X, (BW-C)
2012 // fshl(undef, X, C) --> lshr X, (BW-C)
2013 if (match(Op0, m_ZeroInt()) || match(Op0, m_Undef()))
2014 return BinaryOperator::CreateLShr(Op1,
2015 ConstantExpr::getSub(WidthC, ShAmtC));
2016
2017 // fshl i16 X, X, 8 --> bswap i16 X (reduce to more-specific form)
2018 if (Op0 == Op1 && BitWidth == 16 && match(ShAmtC, m_SpecificInt(8))) {
2019 Module *Mod = II->getModule();
2020 Function *Bswap = Intrinsic::getDeclaration(Mod, Intrinsic::bswap, Ty);
2021 return CallInst::Create(Bswap, { Op0 });
2022 }
2023 if (Instruction *BitOp =
2024 matchBSwapOrBitReverse(*II, /*MatchBSwaps*/ true,
2025 /*MatchBitReversals*/ true))
2026 return BitOp;
2027 }
2028
2029 // Left or right might be masked.
2031 return &CI;
2032
2033 // The shift amount (operand 2) of a funnel shift is modulo the bitwidth,
2034 // so only the low bits of the shift amount are demanded if the bitwidth is
2035 // a power-of-2.
2036 if (!isPowerOf2_32(BitWidth))
2037 break;
2039 KnownBits Op2Known(BitWidth);
2040 if (SimplifyDemandedBits(II, 2, Op2Demanded, Op2Known))
2041 return &CI;
2042 break;
2043 }
2044 case Intrinsic::ptrmask: {
2045 unsigned BitWidth = DL.getPointerTypeSizeInBits(II->getType());
2046 KnownBits Known(BitWidth);
2047 if (SimplifyDemandedInstructionBits(*II, Known))
2048 return II;
2049
2050 Value *InnerPtr, *InnerMask;
2051 bool Changed = false;
2052 // Combine:
2053 // (ptrmask (ptrmask p, A), B)
2054 // -> (ptrmask p, (and A, B))
2055 if (match(II->getArgOperand(0),
2056 m_OneUse(m_Intrinsic<Intrinsic::ptrmask>(m_Value(InnerPtr),
2057 m_Value(InnerMask))))) {
2058 assert(II->getArgOperand(1)->getType() == InnerMask->getType() &&
2059 "Mask types must match");
2060 // TODO: If InnerMask == Op1, we could copy attributes from inner
2061 // callsite -> outer callsite.
2062 Value *NewMask = Builder.CreateAnd(II->getArgOperand(1), InnerMask);
2063 replaceOperand(CI, 0, InnerPtr);
2064 replaceOperand(CI, 1, NewMask);
2065 Changed = true;
2066 }
2067
2068 // See if we can deduce non-null.
2069 if (!CI.hasRetAttr(Attribute::NonNull) &&
2070 (Known.isNonZero() ||
2071 isKnownNonZero(II, getSimplifyQuery().getWithInstruction(II)))) {
2072 CI.addRetAttr(Attribute::NonNull);
2073 Changed = true;
2074 }
2075
2076 unsigned NewAlignmentLog =
2078 std::min(BitWidth - 1, Known.countMinTrailingZeros()));
2079 // Known bits will capture if we had alignment information associated with
2080 // the pointer argument.
2081 if (NewAlignmentLog > Log2(CI.getRetAlign().valueOrOne())) {
2083 CI.getContext(), Align(uint64_t(1) << NewAlignmentLog)));
2084 Changed = true;
2085 }
2086 if (Changed)
2087 return &CI;
2088 break;
2089 }
2090 case Intrinsic::uadd_with_overflow:
2091 case Intrinsic::sadd_with_overflow: {
2092 if (Instruction *I = foldIntrinsicWithOverflowCommon(II))
2093 return I;
2094
2095 // Given 2 constant operands whose sum does not overflow:
2096 // uaddo (X +nuw C0), C1 -> uaddo X, C0 + C1
2097 // saddo (X +nsw C0), C1 -> saddo X, C0 + C1
2098 Value *X;
2099 const APInt *C0, *C1;
2100 Value *Arg0 = II->getArgOperand(0);
2101 Value *Arg1 = II->getArgOperand(1);
2102 bool IsSigned = IID == Intrinsic::sadd_with_overflow;
2103 bool HasNWAdd = IsSigned
2104 ? match(Arg0, m_NSWAddLike(m_Value(X), m_APInt(C0)))
2105 : match(Arg0, m_NUWAddLike(m_Value(X), m_APInt(C0)));
2106 if (HasNWAdd && match(Arg1, m_APInt(C1))) {
2107 bool Overflow;
2108 APInt NewC =
2109 IsSigned ? C1->sadd_ov(*C0, Overflow) : C1->uadd_ov(*C0, Overflow);
2110 if (!Overflow)
2111 return replaceInstUsesWith(
2113 IID, X, ConstantInt::get(Arg1->getType(), NewC)));
2114 }
2115 break;
2116 }
2117
2118 case Intrinsic::umul_with_overflow:
2119 case Intrinsic::smul_with_overflow:
2120 case Intrinsic::usub_with_overflow:
2121 if (Instruction *I = foldIntrinsicWithOverflowCommon(II))
2122 return I;
2123 break;
2124
2125 case Intrinsic::ssub_with_overflow: {
2126 if (Instruction *I = foldIntrinsicWithOverflowCommon(II))
2127 return I;
2128
2129 Constant *C;
2130 Value *Arg0 = II->getArgOperand(0);
2131 Value *Arg1 = II->getArgOperand(1);
2132 // Given a constant C that is not the minimum signed value
2133 // for an integer of a given bit width:
2134 //
2135 // ssubo X, C -> saddo X, -C
2136 if (match(Arg1, m_Constant(C)) && C->isNotMinSignedValue()) {
2137 Value *NegVal = ConstantExpr::getNeg(C);
2138 // Build a saddo call that is equivalent to the discovered
2139 // ssubo call.
2140 return replaceInstUsesWith(
2141 *II, Builder.CreateBinaryIntrinsic(Intrinsic::sadd_with_overflow,
2142 Arg0, NegVal));
2143 }
2144
2145 break;
2146 }
2147
2148 case Intrinsic::uadd_sat:
2149 case Intrinsic::sadd_sat:
2150 case Intrinsic::usub_sat:
2151 case Intrinsic::ssub_sat: {
2152 SaturatingInst *SI = cast<SaturatingInst>(II);
2153 Type *Ty = SI->getType();
2154 Value *Arg0 = SI->getLHS();
2155 Value *Arg1 = SI->getRHS();
2156
2157 // Make use of known overflow information.
2158 OverflowResult OR = computeOverflow(SI->getBinaryOp(), SI->isSigned(),
2159 Arg0, Arg1, SI);
2160 switch (OR) {
2162 break;
2164 if (SI->isSigned())
2165 return BinaryOperator::CreateNSW(SI->getBinaryOp(), Arg0, Arg1);
2166 else
2167 return BinaryOperator::CreateNUW(SI->getBinaryOp(), Arg0, Arg1);
2169 unsigned BitWidth = Ty->getScalarSizeInBits();
2170 APInt Min = APSInt::getMinValue(BitWidth, !SI->isSigned());
2171 return replaceInstUsesWith(*SI, ConstantInt::get(Ty, Min));
2172 }
2174 unsigned BitWidth = Ty->getScalarSizeInBits();
2175 APInt Max = APSInt::getMaxValue(BitWidth, !SI->isSigned());
2176 return replaceInstUsesWith(*SI, ConstantInt::get(Ty, Max));
2177 }
2178 }
2179
2180 // usub_sat((sub nuw C, A), C1) -> usub_sat(usub_sat(C, C1), A)
2181 // which after that:
2182 // usub_sat((sub nuw C, A), C1) -> usub_sat(C - C1, A) if C1 u< C
2183 // usub_sat((sub nuw C, A), C1) -> 0 otherwise
2184 Constant *C, *C1;
2185 Value *A;
2186 if (IID == Intrinsic::usub_sat &&
2187 match(Arg0, m_NUWSub(m_ImmConstant(C), m_Value(A))) &&
2188 match(Arg1, m_ImmConstant(C1))) {
2189 auto *NewC = Builder.CreateBinaryIntrinsic(Intrinsic::usub_sat, C, C1);
2190 auto *NewSub =
2191 Builder.CreateBinaryIntrinsic(Intrinsic::usub_sat, NewC, A);
2192 return replaceInstUsesWith(*SI, NewSub);
2193 }
2194
2195 // ssub.sat(X, C) -> sadd.sat(X, -C) if C != MIN
2196 if (IID == Intrinsic::ssub_sat && match(Arg1, m_Constant(C)) &&
2197 C->isNotMinSignedValue()) {
2198 Value *NegVal = ConstantExpr::getNeg(C);
2199 return replaceInstUsesWith(
2201 Intrinsic::sadd_sat, Arg0, NegVal));
2202 }
2203
2204 // sat(sat(X + Val2) + Val) -> sat(X + (Val+Val2))
2205 // sat(sat(X - Val2) - Val) -> sat(X - (Val+Val2))
2206 // if Val and Val2 have the same sign
2207 if (auto *Other = dyn_cast<IntrinsicInst>(Arg0)) {
2208 Value *X;
2209 const APInt *Val, *Val2;
2210 APInt NewVal;
2211 bool IsUnsigned =
2212 IID == Intrinsic::uadd_sat || IID == Intrinsic::usub_sat;
2213 if (Other->getIntrinsicID() == IID &&
2214 match(Arg1, m_APInt(Val)) &&
2215 match(Other->getArgOperand(0), m_Value(X)) &&
2216 match(Other->getArgOperand(1), m_APInt(Val2))) {
2217 if (IsUnsigned)
2218 NewVal = Val->uadd_sat(*Val2);
2219 else if (Val->isNonNegative() == Val2->isNonNegative()) {
2220 bool Overflow;
2221 NewVal = Val->sadd_ov(*Val2, Overflow);
2222 if (Overflow) {
2223 // Both adds together may add more than SignedMaxValue
2224 // without saturating the final result.
2225 break;
2226 }
2227 } else {
2228 // Cannot fold saturated addition with different signs.
2229 break;
2230 }
2231
2232 return replaceInstUsesWith(
2234 IID, X, ConstantInt::get(II->getType(), NewVal)));
2235 }
2236 }
2237 break;
2238 }
2239
2240 case Intrinsic::minnum:
2241 case Intrinsic::maxnum:
2242 case Intrinsic::minimum:
2243 case Intrinsic::maximum: {
2244 Value *Arg0 = II->getArgOperand(0);
2245 Value *Arg1 = II->getArgOperand(1);
2246 Value *X, *Y;
2247 if (match(Arg0, m_FNeg(m_Value(X))) && match(Arg1, m_FNeg(m_Value(Y))) &&
2248 (Arg0->hasOneUse() || Arg1->hasOneUse())) {
2249 // If both operands are negated, invert the call and negate the result:
2250 // min(-X, -Y) --> -(max(X, Y))
2251 // max(-X, -Y) --> -(min(X, Y))
2252 Intrinsic::ID NewIID;
2253 switch (IID) {
2254 case Intrinsic::maxnum:
2255 NewIID = Intrinsic::minnum;
2256 break;
2257 case Intrinsic::minnum:
2258 NewIID = Intrinsic::maxnum;
2259 break;
2260 case Intrinsic::maximum:
2261 NewIID = Intrinsic::minimum;
2262 break;
2263 case Intrinsic::minimum:
2264 NewIID = Intrinsic::maximum;
2265 break;
2266 default:
2267 llvm_unreachable("unexpected intrinsic ID");
2268 }
2269 Value *NewCall = Builder.CreateBinaryIntrinsic(NewIID, X, Y, II);
2270 Instruction *FNeg = UnaryOperator::CreateFNeg(NewCall);
2271 FNeg->copyIRFlags(II);
2272 return FNeg;
2273 }
2274
2275 // m(m(X, C2), C1) -> m(X, C)
2276 const APFloat *C1, *C2;
2277 if (auto *M = dyn_cast<IntrinsicInst>(Arg0)) {
2278 if (M->getIntrinsicID() == IID && match(Arg1, m_APFloat(C1)) &&
2279 ((match(M->getArgOperand(0), m_Value(X)) &&
2280 match(M->getArgOperand(1), m_APFloat(C2))) ||
2281 (match(M->getArgOperand(1), m_Value(X)) &&
2282 match(M->getArgOperand(0), m_APFloat(C2))))) {
2283 APFloat Res(0.0);
2284 switch (IID) {
2285 case Intrinsic::maxnum:
2286 Res = maxnum(*C1, *C2);
2287 break;
2288 case Intrinsic::minnum:
2289 Res = minnum(*C1, *C2);
2290 break;
2291 case Intrinsic::maximum:
2292 Res = maximum(*C1, *C2);
2293 break;
2294 case Intrinsic::minimum:
2295 Res = minimum(*C1, *C2);
2296 break;
2297 default:
2298 llvm_unreachable("unexpected intrinsic ID");
2299 }
2301 IID, X, ConstantFP::get(Arg0->getType(), Res), II);
2302 // TODO: Conservatively intersecting FMF. If Res == C2, the transform
2303 // was a simplification (so Arg0 and its original flags could
2304 // propagate?)
2305 if (auto *CI = dyn_cast<CallInst>(V))
2306 CI->andIRFlags(M);
2307 return replaceInstUsesWith(*II, V);
2308 }
2309 }
2310
2311 // m((fpext X), (fpext Y)) -> fpext (m(X, Y))
2312 if (match(Arg0, m_OneUse(m_FPExt(m_Value(X)))) &&
2313 match(Arg1, m_OneUse(m_FPExt(m_Value(Y)))) &&
2314 X->getType() == Y->getType()) {
2315 Value *NewCall =
2316 Builder.CreateBinaryIntrinsic(IID, X, Y, II, II->getName());
2317 return new FPExtInst(NewCall, II->getType());
2318 }
2319
2320 // max X, -X --> fabs X
2321 // min X, -X --> -(fabs X)
2322 // TODO: Remove one-use limitation? That is obviously better for max,
2323 // hence why we don't check for one-use for that. However,
2324 // it would be an extra instruction for min (fnabs), but
2325 // that is still likely better for analysis and codegen.
2326 auto IsMinMaxOrXNegX = [IID, &X](Value *Op0, Value *Op1) {
2327 if (match(Op0, m_FNeg(m_Value(X))) && match(Op1, m_Specific(X)))
2328 return Op0->hasOneUse() ||
2329 (IID != Intrinsic::minimum && IID != Intrinsic::minnum);
2330 return false;
2331 };
2332
2333 if (IsMinMaxOrXNegX(Arg0, Arg1) || IsMinMaxOrXNegX(Arg1, Arg0)) {
2334 Value *R = Builder.CreateUnaryIntrinsic(Intrinsic::fabs, X, II);
2335 if (IID == Intrinsic::minimum || IID == Intrinsic::minnum)
2336 R = Builder.CreateFNegFMF(R, II);
2337 return replaceInstUsesWith(*II, R);
2338 }
2339
2340 break;
2341 }
2342 case Intrinsic::matrix_multiply: {
2343 // Optimize negation in matrix multiplication.
2344
2345 // -A * -B -> A * B
2346 Value *A, *B;
2347 if (match(II->getArgOperand(0), m_FNeg(m_Value(A))) &&
2348 match(II->getArgOperand(1), m_FNeg(m_Value(B)))) {
2349 replaceOperand(*II, 0, A);
2350 replaceOperand(*II, 1, B);
2351 return II;
2352 }
2353
2354 Value *Op0 = II->getOperand(0);
2355 Value *Op1 = II->getOperand(1);
2356 Value *OpNotNeg, *NegatedOp;
2357 unsigned NegatedOpArg, OtherOpArg;
2358 if (match(Op0, m_FNeg(m_Value(OpNotNeg)))) {
2359 NegatedOp = Op0;
2360 NegatedOpArg = 0;
2361 OtherOpArg = 1;
2362 } else if (match(Op1, m_FNeg(m_Value(OpNotNeg)))) {
2363 NegatedOp = Op1;
2364 NegatedOpArg = 1;
2365 OtherOpArg = 0;
2366 } else
2367 // Multiplication doesn't have a negated operand.
2368 break;
2369
2370 // Only optimize if the negated operand has only one use.
2371 if (!NegatedOp->hasOneUse())
2372 break;
2373
2374 Value *OtherOp = II->getOperand(OtherOpArg);
2375 VectorType *RetTy = cast<VectorType>(II->getType());
2376 VectorType *NegatedOpTy = cast<VectorType>(NegatedOp->getType());
2377 VectorType *OtherOpTy = cast<VectorType>(OtherOp->getType());
2378 ElementCount NegatedCount = NegatedOpTy->getElementCount();
2379 ElementCount OtherCount = OtherOpTy->getElementCount();
2380 ElementCount RetCount = RetTy->getElementCount();
2381 // (-A) * B -> A * (-B), if it is cheaper to negate B and vice versa.
2382 if (ElementCount::isKnownGT(NegatedCount, OtherCount) &&
2383 ElementCount::isKnownLT(OtherCount, RetCount)) {
2384 Value *InverseOtherOp = Builder.CreateFNeg(OtherOp);
2385 replaceOperand(*II, NegatedOpArg, OpNotNeg);
2386 replaceOperand(*II, OtherOpArg, InverseOtherOp);
2387 return II;
2388 }
2389 // (-A) * B -> -(A * B), if it is cheaper to negate the result
2390 if (ElementCount::isKnownGT(NegatedCount, RetCount)) {
2391 SmallVector<Value *, 5> NewArgs(II->args());
2392 NewArgs[NegatedOpArg] = OpNotNeg;
2393 Instruction *NewMul =
2394 Builder.CreateIntrinsic(II->getType(), IID, NewArgs, II);
2395 return replaceInstUsesWith(*II, Builder.CreateFNegFMF(NewMul, II));
2396 }
2397 break;
2398 }
2399 case Intrinsic::fmuladd: {
2400 // Canonicalize fast fmuladd to the separate fmul + fadd.
2401 if (II->isFast()) {
2405 II->getArgOperand(1));
2407 Add->takeName(II);
2408 return replaceInstUsesWith(*II, Add);
2409 }
2410
2411 // Try to simplify the underlying FMul.
2412 if (Value *V = simplifyFMulInst(II->getArgOperand(0), II->getArgOperand(1),
2413 II->getFastMathFlags(),
2414 SQ.getWithInstruction(II))) {
2415 auto *FAdd = BinaryOperator::CreateFAdd(V, II->getArgOperand(2));
2416 FAdd->copyFastMathFlags(II);
2417 return FAdd;
2418 }
2419
2420 [[fallthrough]];
2421 }
2422 case Intrinsic::fma: {
2423 // fma fneg(x), fneg(y), z -> fma x, y, z
2424 Value *Src0 = II->getArgOperand(0);
2425 Value *Src1 = II->getArgOperand(1);
2426 Value *X, *Y;
2427 if (match(Src0, m_FNeg(m_Value(X))) && match(Src1, m_FNeg(m_Value(Y)))) {
2428 replaceOperand(*II, 0, X);
2429 replaceOperand(*II, 1, Y);
2430 return II;
2431 }
2432
2433 // fma fabs(x), fabs(x), z -> fma x, x, z
2434 if (match(Src0, m_FAbs(m_Value(X))) &&
2435 match(Src1, m_FAbs(m_Specific(X)))) {
2436 replaceOperand(*II, 0, X);
2437 replaceOperand(*II, 1, X);
2438 return II;
2439 }
2440
2441 // Try to simplify the underlying FMul. We can only apply simplifications
2442 // that do not require rounding.
2443 if (Value *V = simplifyFMAFMul(II->getArgOperand(0), II->getArgOperand(1),
2444 II->getFastMathFlags(),
2445 SQ.getWithInstruction(II))) {
2446 auto *FAdd = BinaryOperator::CreateFAdd(V, II->getArgOperand(2));
2447 FAdd->copyFastMathFlags(II);
2448 return FAdd;
2449 }
2450
2451 // fma x, y, 0 -> fmul x, y
2452 // This is always valid for -0.0, but requires nsz for +0.0 as
2453 // -0.0 + 0.0 = 0.0, which would not be the same as the fmul on its own.
2454 if (match(II->getArgOperand(2), m_NegZeroFP()) ||
2455 (match(II->getArgOperand(2), m_PosZeroFP()) &&
2457 return BinaryOperator::CreateFMulFMF(Src0, Src1, II);
2458
2459 break;
2460 }
2461 case Intrinsic::copysign: {
2462 Value *Mag = II->getArgOperand(0), *Sign = II->getArgOperand(1);
2463 if (std::optional<bool> KnownSignBit = computeKnownFPSignBit(
2464 Sign, /*Depth=*/0, getSimplifyQuery().getWithInstruction(II))) {
2465 if (*KnownSignBit) {
2466 // If we know that the sign argument is negative, reduce to FNABS:
2467 // copysign Mag, -Sign --> fneg (fabs Mag)
2468 Value *Fabs = Builder.CreateUnaryIntrinsic(Intrinsic::fabs, Mag, II);
2469 return replaceInstUsesWith(*II, Builder.CreateFNegFMF(Fabs, II));
2470 }
2471
2472 // If we know that the sign argument is positive, reduce to FABS:
2473 // copysign Mag, +Sign --> fabs Mag
2474 Value *Fabs = Builder.CreateUnaryIntrinsic(Intrinsic::fabs, Mag, II);
2475 return replaceInstUsesWith(*II, Fabs);
2476 }
2477
2478 // Propagate sign argument through nested calls:
2479 // copysign Mag, (copysign ?, X) --> copysign Mag, X
2480 Value *X;
2481 if (match(Sign, m_Intrinsic<Intrinsic::copysign>(m_Value(), m_Value(X))))
2482 return replaceOperand(*II, 1, X);
2483
2484 // Clear sign-bit of constant magnitude:
2485 // copysign -MagC, X --> copysign MagC, X
2486 // TODO: Support constant folding for fabs
2487 const APFloat *MagC;
2488 if (match(Mag, m_APFloat(MagC)) && MagC->isNegative()) {
2489 APFloat PosMagC = *MagC;
2490 PosMagC.clearSign();
2491 return replaceOperand(*II, 0, ConstantFP::get(Mag->getType(), PosMagC));
2492 }
2493
2494 // Peek through changes of magnitude's sign-bit. This call rewrites those:
2495 // copysign (fabs X), Sign --> copysign X, Sign
2496 // copysign (fneg X), Sign --> copysign X, Sign
2497 if (match(Mag, m_FAbs(m_Value(X))) || match(Mag, m_FNeg(m_Value(X))))
2498 return replaceOperand(*II, 0, X);
2499
2500 break;
2501 }
2502 case Intrinsic::fabs: {
2503 Value *Cond, *TVal, *FVal;
2504 if (match(II->getArgOperand(0),
2505 m_Select(m_Value(Cond), m_Value(TVal), m_Value(FVal)))) {
2506 // fabs (select Cond, TrueC, FalseC) --> select Cond, AbsT, AbsF
2507 if (isa<Constant>(TVal) || isa<Constant>(FVal)) {
2508 CallInst *AbsT = Builder.CreateCall(II->getCalledFunction(), {TVal});
2509 CallInst *AbsF = Builder.CreateCall(II->getCalledFunction(), {FVal});
2510 SelectInst *SI = SelectInst::Create(Cond, AbsT, AbsF);
2511 FastMathFlags FMF1 = II->getFastMathFlags();
2512 FastMathFlags FMF2 =
2513 cast<SelectInst>(II->getArgOperand(0))->getFastMathFlags();
2514 FMF2.setNoSignedZeros(false);
2515 SI->setFastMathFlags(FMF1 | FMF2);
2516 return SI;
2517 }
2518 // fabs (select Cond, -FVal, FVal) --> fabs FVal
2519 if (match(TVal, m_FNeg(m_Specific(FVal))))
2520 return replaceOperand(*II, 0, FVal);
2521 // fabs (select Cond, TVal, -TVal) --> fabs TVal
2522 if (match(FVal, m_FNeg(m_Specific(TVal))))
2523 return replaceOperand(*II, 0, TVal);
2524 }
2525
2526 Value *Magnitude, *Sign;
2527 if (match(II->getArgOperand(0),
2528 m_CopySign(m_Value(Magnitude), m_Value(Sign)))) {
2529 // fabs (copysign x, y) -> (fabs x)
2530 CallInst *AbsSign =
2531 Builder.CreateCall(II->getCalledFunction(), {Magnitude});
2532 AbsSign->copyFastMathFlags(II);
2533 return replaceInstUsesWith(*II, AbsSign);
2534 }
2535
2536 [[fallthrough]];
2537 }
2538 case Intrinsic::ceil:
2539 case Intrinsic::floor:
2540 case Intrinsic::round:
2541 case Intrinsic::roundeven:
2542 case Intrinsic::nearbyint:
2543 case Intrinsic::rint:
2544 case Intrinsic::trunc: {
2545 Value *ExtSrc;
2546 if (match(II->getArgOperand(0), m_OneUse(m_FPExt(m_Value(ExtSrc))))) {
2547 // Narrow the call: intrinsic (fpext x) -> fpext (intrinsic x)
2548 Value *NarrowII = Builder.CreateUnaryIntrinsic(IID, ExtSrc, II);
2549 return new FPExtInst(NarrowII, II->getType());
2550 }
2551 break;
2552 }
2553 case Intrinsic::cos:
2554 case Intrinsic::amdgcn_cos: {
2555 Value *X, *Sign;
2556 Value *Src = II->getArgOperand(0);
2557 if (match(Src, m_FNeg(m_Value(X))) || match(Src, m_FAbs(m_Value(X))) ||
2558 match(Src, m_CopySign(m_Value(X), m_Value(Sign)))) {
2559 // cos(-x) --> cos(x)
2560 // cos(fabs(x)) --> cos(x)
2561 // cos(copysign(x, y)) --> cos(x)
2562 return replaceOperand(*II, 0, X);
2563 }
2564 break;
2565 }
2566 case Intrinsic::sin: {
2567 Value *X;
2568 if (match(II->getArgOperand(0), m_OneUse(m_FNeg(m_Value(X))))) {
2569 // sin(-x) --> -sin(x)
2570 Value *NewSin = Builder.CreateUnaryIntrinsic(Intrinsic::sin, X, II);
2571 Instruction *FNeg = UnaryOperator::CreateFNeg(NewSin);
2572 FNeg->copyFastMathFlags(II);
2573 return FNeg;
2574 }
2575 break;
2576 }
2577 case Intrinsic::ldexp: {
2578 // ldexp(ldexp(x, a), b) -> ldexp(x, a + b)
2579 //
2580 // The danger is if the first ldexp would overflow to infinity or underflow
2581 // to zero, but the combined exponent avoids it. We ignore this with
2582 // reassoc.
2583 //
2584 // It's also safe to fold if we know both exponents are >= 0 or <= 0 since
2585 // it would just double down on the overflow/underflow which would occur
2586 // anyway.
2587 //
2588 // TODO: Could do better if we had range tracking for the input value
2589 // exponent. Also could broaden sign check to cover == 0 case.
2590 Value *Src = II->getArgOperand(0);
2591 Value *Exp = II->getArgOperand(1);
2592 Value *InnerSrc;
2593 Value *InnerExp;
2594 if (match(Src, m_OneUse(m_Intrinsic<Intrinsic::ldexp>(
2595 m_Value(InnerSrc), m_Value(InnerExp)))) &&
2596 Exp->getType() == InnerExp->getType()) {
2597 FastMathFlags FMF = II->getFastMathFlags();
2598 FastMathFlags InnerFlags = cast<FPMathOperator>(Src)->getFastMathFlags();
2599
2600 if ((FMF.allowReassoc() && InnerFlags.allowReassoc()) ||
2601 signBitMustBeTheSame(Exp, InnerExp, II, DL, &AC, &DT)) {
2602 // TODO: Add nsw/nuw probably safe if integer type exceeds exponent
2603 // width.
2604 Value *NewExp = Builder.CreateAdd(InnerExp, Exp);
2605 II->setArgOperand(1, NewExp);
2606 II->setFastMathFlags(InnerFlags); // Or the inner flags.
2607 return replaceOperand(*II, 0, InnerSrc);
2608 }
2609 }
2610
2611 break;
2612 }
2613 case Intrinsic::ptrauth_auth:
2614 case Intrinsic::ptrauth_resign: {
2615 // (sign|resign) + (auth|resign) can be folded by omitting the middle
2616 // sign+auth component if the key and discriminator match.
2617 bool NeedSign = II->getIntrinsicID() == Intrinsic::ptrauth_resign;
2618 Value *Key = II->getArgOperand(1);
2619 Value *Disc = II->getArgOperand(2);
2620
2621 // AuthKey will be the key we need to end up authenticating against in
2622 // whatever we replace this sequence with.
2623 Value *AuthKey = nullptr, *AuthDisc = nullptr, *BasePtr;
2624 if (auto CI = dyn_cast<CallBase>(II->getArgOperand(0))) {
2625 BasePtr = CI->getArgOperand(0);
2626 if (CI->getIntrinsicID() == Intrinsic::ptrauth_sign) {
2627 if (CI->getArgOperand(1) != Key || CI->getArgOperand(2) != Disc)
2628 break;
2629 } else if (CI->getIntrinsicID() == Intrinsic::ptrauth_resign) {
2630 if (CI->getArgOperand(3) != Key || CI->getArgOperand(4) != Disc)
2631 break;
2632 AuthKey = CI->getArgOperand(1);
2633 AuthDisc = CI->getArgOperand(2);
2634 } else
2635 break;
2636 } else
2637 break;
2638
2639 unsigned NewIntrin;
2640 if (AuthKey && NeedSign) {
2641 // resign(0,1) + resign(1,2) = resign(0, 2)
2642 NewIntrin = Intrinsic::ptrauth_resign;
2643 } else if (AuthKey) {
2644 // resign(0,1) + auth(1) = auth(0)
2645 NewIntrin = Intrinsic::ptrauth_auth;
2646 } else if (NeedSign) {
2647 // sign(0) + resign(0, 1) = sign(1)
2648 NewIntrin = Intrinsic::ptrauth_sign;
2649 } else {
2650 // sign(0) + auth(0) = nop
2651 replaceInstUsesWith(*II, BasePtr);
2653 return nullptr;
2654 }
2655
2656 SmallVector<Value *, 4> CallArgs;
2657 CallArgs.push_back(BasePtr);
2658 if (AuthKey) {
2659 CallArgs.push_back(AuthKey);
2660 CallArgs.push_back(AuthDisc);
2661 }
2662
2663 if (NeedSign) {
2664 CallArgs.push_back(II->getArgOperand(3));
2665 CallArgs.push_back(II->getArgOperand(4));
2666 }
2667
2668 Function *NewFn = Intrinsic::getDeclaration(II->getModule(), NewIntrin);
2669 return CallInst::Create(NewFn, CallArgs);
2670 }
2671 case Intrinsic::arm_neon_vtbl1:
2672 case Intrinsic::aarch64_neon_tbl1:
2673 if (Value *V = simplifyNeonTbl1(*II, Builder))
2674 return replaceInstUsesWith(*II, V);
2675 break;
2676
2677 case Intrinsic::arm_neon_vmulls:
2678 case Intrinsic::arm_neon_vmullu:
2679 case Intrinsic::aarch64_neon_smull:
2680 case Intrinsic::aarch64_neon_umull: {
2681 Value *Arg0 = II->getArgOperand(0);
2682 Value *Arg1 = II->getArgOperand(1);
2683
2684 // Handle mul by zero first:
2685 if (isa<ConstantAggregateZero>(Arg0) || isa<ConstantAggregateZero>(Arg1)) {
2687 }
2688
2689 // Check for constant LHS & RHS - in this case we just simplify.
2690 bool Zext = (IID == Intrinsic::arm_neon_vmullu ||
2691 IID == Intrinsic::aarch64_neon_umull);
2692 VectorType *NewVT = cast<VectorType>(II->getType());
2693 if (Constant *CV0 = dyn_cast<Constant>(Arg0)) {
2694 if (Constant *CV1 = dyn_cast<Constant>(Arg1)) {
2695 Value *V0 = Builder.CreateIntCast(CV0, NewVT, /*isSigned=*/!Zext);
2696 Value *V1 = Builder.CreateIntCast(CV1, NewVT, /*isSigned=*/!Zext);
2697 return replaceInstUsesWith(CI, Builder.CreateMul(V0, V1));
2698 }
2699
2700 // Couldn't simplify - canonicalize constant to the RHS.
2701 std::swap(Arg0, Arg1);
2702 }
2703
2704 // Handle mul by one:
2705 if (Constant *CV1 = dyn_cast<Constant>(Arg1))
2706 if (ConstantInt *Splat =
2707 dyn_cast_or_null<ConstantInt>(CV1->getSplatValue()))
2708 if (Splat->isOne())
2709 return CastInst::CreateIntegerCast(Arg0, II->getType(),
2710 /*isSigned=*/!Zext);
2711
2712 break;
2713 }
2714 case Intrinsic::arm_neon_aesd:
2715 case Intrinsic::arm_neon_aese:
2716 case Intrinsic::aarch64_crypto_aesd:
2717 case Intrinsic::aarch64_crypto_aese: {
2718 Value *DataArg = II->getArgOperand(0);
2719 Value *KeyArg = II->getArgOperand(1);
2720
2721 // Try to use the builtin XOR in AESE and AESD to eliminate a prior XOR
2722 Value *Data, *Key;
2723 if (match(KeyArg, m_ZeroInt()) &&
2724 match(DataArg, m_Xor(m_Value(Data), m_Value(Key)))) {
2725 replaceOperand(*II, 0, Data);
2726 replaceOperand(*II, 1, Key);
2727 return II;
2728 }
2729 break;
2730 }
2731 case Intrinsic::hexagon_V6_vandvrt:
2732 case Intrinsic::hexagon_V6_vandvrt_128B: {
2733 // Simplify Q -> V -> Q conversion.
2734 if (auto Op0 = dyn_cast<IntrinsicInst>(II->getArgOperand(0))) {
2735 Intrinsic::ID ID0 = Op0->getIntrinsicID();
2736 if (ID0 != Intrinsic::hexagon_V6_vandqrt &&
2737 ID0 != Intrinsic::hexagon_V6_vandqrt_128B)
2738 break;
2739 Value *Bytes = Op0->getArgOperand(1), *Mask = II->getArgOperand(1);
2740 uint64_t Bytes1 = computeKnownBits(Bytes, 0, Op0).One.getZExtValue();
2741 uint64_t Mask1 = computeKnownBits(Mask, 0, II).One.getZExtValue();
2742 // Check if every byte has common bits in Bytes and Mask.
2743 uint64_t C = Bytes1 & Mask1;
2744 if ((C & 0xFF) && (C & 0xFF00) && (C & 0xFF0000) && (C & 0xFF000000))
2745 return replaceInstUsesWith(*II, Op0->getArgOperand(0));
2746 }
2747 break;
2748 }
2749 case Intrinsic::stackrestore: {
2750 enum class ClassifyResult {
2751 None,
2752 Alloca,
2753 StackRestore,
2754 CallWithSideEffects,
2755 };
2756 auto Classify = [](const Instruction *I) {
2757 if (isa<AllocaInst>(I))
2758 return ClassifyResult::Alloca;
2759
2760 if (auto *CI = dyn_cast<CallInst>(I)) {
2761 if (auto *II = dyn_cast<IntrinsicInst>(CI)) {
2762 if (II->getIntrinsicID() == Intrinsic::stackrestore)
2763 return ClassifyResult::StackRestore;
2764
2765 if (II->mayHaveSideEffects())
2766 return ClassifyResult::CallWithSideEffects;
2767 } else {
2768 // Consider all non-intrinsic calls to be side effects
2769 return ClassifyResult::CallWithSideEffects;
2770 }
2771 }
2772
2773 return ClassifyResult::None;
2774 };
2775
2776 // If the stacksave and the stackrestore are in the same BB, and there is
2777 // no intervening call, alloca, or stackrestore of a different stacksave,
2778 // remove the restore. This can happen when variable allocas are DCE'd.
2779 if (IntrinsicInst *SS = dyn_cast<IntrinsicInst>(II->getArgOperand(0))) {
2780 if (SS->getIntrinsicID() == Intrinsic::stacksave &&
2781 SS->getParent() == II->getParent()) {
2782 BasicBlock::iterator BI(SS);
2783 bool CannotRemove = false;
2784 for (++BI; &*BI != II; ++BI) {
2785 switch (Classify(&*BI)) {
2786 case ClassifyResult::None:
2787 // So far so good, look at next instructions.
2788 break;
2789
2790 case ClassifyResult::StackRestore:
2791 // If we found an intervening stackrestore for a different
2792 // stacksave, we can't remove the stackrestore. Otherwise, continue.
2793 if (cast<IntrinsicInst>(*BI).getArgOperand(0) != SS)
2794 CannotRemove = true;
2795 break;
2796
2797 case ClassifyResult::Alloca:
2798 case ClassifyResult::CallWithSideEffects:
2799 // If we found an alloca, a non-intrinsic call, or an intrinsic
2800 // call with side effects, we can't remove the stackrestore.
2801 CannotRemove = true;
2802 break;
2803 }
2804 if (CannotRemove)
2805 break;
2806 }
2807
2808 if (!CannotRemove)
2809 return eraseInstFromFunction(CI);
2810 }
2811 }
2812
2813 // Scan down this block to see if there is another stack restore in the
2814 // same block without an intervening call/alloca.
2815 BasicBlock::iterator BI(II);
2816 Instruction *TI = II->getParent()->getTerminator();
2817 bool CannotRemove = false;
2818 for (++BI; &*BI != TI; ++BI) {
2819 switch (Classify(&*BI)) {
2820 case ClassifyResult::None:
2821 // So far so good, look at next instructions.
2822 break;
2823
2824 case ClassifyResult::StackRestore:
2825 // If there is a stackrestore below this one, remove this one.
2826 return eraseInstFromFunction(CI);
2827
2828 case ClassifyResult::Alloca:
2829 case ClassifyResult::CallWithSideEffects:
2830 // If we found an alloca, a non-intrinsic call, or an intrinsic call
2831 // with side effects (such as llvm.stacksave and llvm.read_register),
2832 // we can't remove the stack restore.
2833 CannotRemove = true;
2834 break;
2835 }
2836 if (CannotRemove)
2837 break;
2838 }
2839
2840 // If the stack restore is in a return, resume, or unwind block and if there
2841 // are no allocas or calls between the restore and the return, nuke the
2842 // restore.
2843 if (!CannotRemove && (isa<ReturnInst>(TI) || isa<ResumeInst>(TI)))
2844 return eraseInstFromFunction(CI);
2845 break;
2846 }
2847 case Intrinsic::lifetime_end:
2848 // Asan needs to poison memory to detect invalid access which is possible
2849 // even for empty lifetime range.
2850 if (II->getFunction()->hasFnAttribute(Attribute::SanitizeAddress) ||
2851 II->getFunction()->hasFnAttribute(Attribute::SanitizeMemory) ||
2852 II->getFunction()->hasFnAttribute(Attribute::SanitizeHWAddress))
2853 break;
2854
2855 if (removeTriviallyEmptyRange(*II, *this, [](const IntrinsicInst &I) {
2856 return I.getIntrinsicID() == Intrinsic::lifetime_start;
2857 }))
2858 return nullptr;
2859 break;
2860 case Intrinsic::assume: {
2861 Value *IIOperand = II->getArgOperand(0);
2863 II->getOperandBundlesAsDefs(OpBundles);
2864
2865 /// This will remove the boolean Condition from the assume given as
2866 /// argument and remove the assume if it becomes useless.
2867 /// always returns nullptr for use as a return values.
2868 auto RemoveConditionFromAssume = [&](Instruction *Assume) -> Instruction * {
2869 assert(isa<AssumeInst>(Assume));
2870 if (isAssumeWithEmptyBundle(*cast<AssumeInst>(II)))
2871 return eraseInstFromFunction(CI);
2873 return nullptr;
2874 };
2875 // Remove an assume if it is followed by an identical assume.
2876 // TODO: Do we need this? Unless there are conflicting assumptions, the
2877 // computeKnownBits(IIOperand) below here eliminates redundant assumes.
2879 if (match(Next, m_Intrinsic<Intrinsic::assume>(m_Specific(IIOperand))))
2880 return RemoveConditionFromAssume(Next);
2881
2882 // Canonicalize assume(a && b) -> assume(a); assume(b);
2883 // Note: New assumption intrinsics created here are registered by
2884 // the InstCombineIRInserter object.
2885 FunctionType *AssumeIntrinsicTy = II->getFunctionType();
2886 Value *AssumeIntrinsic = II->getCalledOperand();
2887 Value *A, *B;
2888 if (match(IIOperand, m_LogicalAnd(m_Value(A), m_Value(B)))) {
2889 Builder.CreateCall(AssumeIntrinsicTy, AssumeIntrinsic, A, OpBundles,
2890 II->getName());
2891 Builder.CreateCall(AssumeIntrinsicTy, AssumeIntrinsic, B, II->getName());
2892 return eraseInstFromFunction(*II);
2893 }
2894 // assume(!(a || b)) -> assume(!a); assume(!b);
2895 if (match(IIOperand, m_Not(m_LogicalOr(m_Value(A), m_Value(B))))) {
2896 Builder.CreateCall(AssumeIntrinsicTy, AssumeIntrinsic,
2897 Builder.CreateNot(A), OpBundles, II->getName());
2898 Builder.CreateCall(AssumeIntrinsicTy, AssumeIntrinsic,
2899 Builder.CreateNot(B), II->getName());
2900 return eraseInstFromFunction(*II);
2901 }
2902
2903 // assume( (load addr) != null ) -> add 'nonnull' metadata to load
2904 // (if assume is valid at the load)
2905 CmpInst::Predicate Pred;
2907 if (match(IIOperand, m_ICmp(Pred, m_Instruction(LHS), m_Zero())) &&
2908 Pred == ICmpInst::ICMP_NE && LHS->getOpcode() == Instruction::Load &&
2909 LHS->getType()->isPointerTy() &&
2911 MDNode *MD = MDNode::get(II->getContext(), std::nullopt);
2912 LHS->setMetadata(LLVMContext::MD_nonnull, MD);
2913 LHS->setMetadata(LLVMContext::MD_noundef, MD);
2914 return RemoveConditionFromAssume(II);
2915
2916 // TODO: apply nonnull return attributes to calls and invokes
2917 // TODO: apply range metadata for range check patterns?
2918 }
2919
2920 // Separate storage assumptions apply to the underlying allocations, not any
2921 // particular pointer within them. When evaluating the hints for AA purposes
2922 // we getUnderlyingObject them; by precomputing the answers here we can
2923 // avoid having to do so repeatedly there.
2924 for (unsigned Idx = 0; Idx < II->getNumOperandBundles(); Idx++) {
2926 if (OBU.getTagName() == "separate_storage") {
2927 assert(OBU.Inputs.size() == 2);
2928 auto MaybeSimplifyHint = [&](const Use &U) {
2929 Value *Hint = U.get();
2930 // Not having a limit is safe because InstCombine removes unreachable
2931 // code.
2932 Value *UnderlyingObject = getUnderlyingObject(Hint, /*MaxLookup*/ 0);
2933 if (Hint != UnderlyingObject)
2934 replaceUse(const_cast<Use &>(U), UnderlyingObject);
2935 };
2936 MaybeSimplifyHint(OBU.Inputs[0]);
2937 MaybeSimplifyHint(OBU.Inputs[1]);
2938 }
2939 }
2940
2941 // Convert nonnull assume like:
2942 // %A = icmp ne i32* %PTR, null
2943 // call void @llvm.assume(i1 %A)
2944 // into
2945 // call void @llvm.assume(i1 true) [ "nonnull"(i32* %PTR) ]
2947 match(IIOperand, m_Cmp(Pred, m_Value(A), m_Zero())) &&
2948 Pred == CmpInst::ICMP_NE && A->getType()->isPointerTy()) {
2949 if (auto *Replacement = buildAssumeFromKnowledge(
2950 {RetainedKnowledge{Attribute::NonNull, 0, A}}, Next, &AC, &DT)) {
2951
2952 Replacement->insertBefore(Next);
2953 AC.registerAssumption(Replacement);
2954 return RemoveConditionFromAssume(II);
2955 }
2956 }
2957
2958 // Convert alignment assume like:
2959 // %B = ptrtoint i32* %A to i64
2960 // %C = and i64 %B, Constant
2961 // %D = icmp eq i64 %C, 0
2962 // call void @llvm.assume(i1 %D)
2963 // into
2964 // call void @llvm.assume(i1 true) [ "align"(i32* [[A]], i64 Constant + 1)]
2965 uint64_t AlignMask;
2967 match(IIOperand,
2968 m_Cmp(Pred, m_And(m_Value(A), m_ConstantInt(AlignMask)),
2969 m_Zero())) &&
2970 Pred == CmpInst::ICMP_EQ) {
2971 if (isPowerOf2_64(AlignMask + 1)) {
2972 uint64_t Offset = 0;
2974 if (match(A, m_PtrToInt(m_Value(A)))) {
2975 /// Note: this doesn't preserve the offset information but merges
2976 /// offset and alignment.
2977 /// TODO: we can generate a GEP instead of merging the alignment with
2978 /// the offset.
2979 RetainedKnowledge RK{Attribute::Alignment,
2980 (unsigned)MinAlign(Offset, AlignMask + 1), A};
2981 if (auto *Replacement =
2982 buildAssumeFromKnowledge(RK, Next, &AC, &DT)) {
2983
2984 Replacement->insertAfter(II);
2985 AC.registerAssumption(Replacement);
2986 }
2987 return RemoveConditionFromAssume(II);
2988 }
2989 }
2990 }
2991
2992 /// Canonicalize Knowledge in operand bundles.
2994 for (unsigned Idx = 0; Idx < II->getNumOperandBundles(); Idx++) {
2995 auto &BOI = II->bundle_op_info_begin()[Idx];
2997 llvm::getKnowledgeFromBundle(cast<AssumeInst>(*II), BOI);
2998 if (BOI.End - BOI.Begin > 2)
2999 continue; // Prevent reducing knowledge in an align with offset since
3000 // extracting a RetainedKnowledge from them looses offset
3001 // information
3002 RetainedKnowledge CanonRK =
3003 llvm::simplifyRetainedKnowledge(cast<AssumeInst>(II), RK,
3005 &getDominatorTree());
3006 if (CanonRK == RK)
3007 continue;
3008 if (!CanonRK) {
3009 if (BOI.End - BOI.Begin > 0) {
3010 Worklist.pushValue(II->op_begin()[BOI.Begin]);
3011 Value::dropDroppableUse(II->op_begin()[BOI.Begin]);
3012 }
3013 continue;
3014 }
3015 assert(RK.AttrKind == CanonRK.AttrKind);
3016 if (BOI.End - BOI.Begin > 0)
3017 II->op_begin()[BOI.Begin].set(CanonRK.WasOn);
3018 if (BOI.End - BOI.Begin > 1)
3019 II->op_begin()[BOI.Begin + 1].set(ConstantInt::get(
3020 Type::getInt64Ty(II->getContext()), CanonRK.ArgValue));
3021 if (RK.WasOn)
3023 return II;
3024 }
3025 }
3026
3027 // If there is a dominating assume with the same condition as this one,
3028 // then this one is redundant, and should be removed.
3029 KnownBits Known(1);
3030 computeKnownBits(IIOperand, Known, 0, II);
3031 if (Known.isAllOnes() && isAssumeWithEmptyBundle(cast<AssumeInst>(*II)))
3032 return eraseInstFromFunction(*II);
3033
3034 // assume(false) is unreachable.
3035 if (match(IIOperand, m_CombineOr(m_Zero(), m_Undef()))) {
3037 return eraseInstFromFunction(*II);
3038 }
3039
3040 // Update the cache of affected values for this assumption (we might be
3041 // here because we just simplified the condition).
3042 AC.updateAffectedValues(cast<AssumeInst>(II));
3043 break;
3044 }
3045 case Intrinsic::experimental_guard: {
3046 // Is this guard followed by another guard? We scan forward over a small
3047 // fixed window of instructions to handle common cases with conditions
3048 // computed between guards.
3049 Instruction *NextInst = II->getNextNonDebugInstruction();
3050 for (unsigned i = 0; i < GuardWideningWindow; i++) {
3051 // Note: Using context-free form to avoid compile time blow up
3052 if (!isSafeToSpeculativelyExecute(NextInst))
3053 break;
3054 NextInst = NextInst->getNextNonDebugInstruction();
3055 }
3056 Value *NextCond = nullptr;
3057 if (match(NextInst,
3058 m_Intrinsic<Intrinsic::experimental_guard>(m_Value(NextCond)))) {
3059 Value *CurrCond = II->getArgOperand(0);
3060
3061 // Remove a guard that it is immediately preceded by an identical guard.
3062 // Otherwise canonicalize guard(a); guard(b) -> guard(a & b).
3063 if (CurrCond != NextCond) {
3065 while (MoveI != NextInst) {
3066 auto *Temp = MoveI;
3067 MoveI = MoveI->getNextNonDebugInstruction();
3068 Temp->moveBefore(II);
3069 }
3070 replaceOperand(*II, 0, Builder.CreateAnd(CurrCond, NextCond));
3071 }
3072 eraseInstFromFunction(*NextInst);
3073 return II;
3074 }
3075 break;
3076 }
3077 case Intrinsic::vector_insert: {
3078 Value *Vec = II->getArgOperand(0);
3079 Value *SubVec = II->getArgOperand(1);
3080 Value *Idx = II->getArgOperand(2);
3081 auto *DstTy = dyn_cast<FixedVectorType>(II->getType());
3082 auto *VecTy = dyn_cast<FixedVectorType>(Vec->getType());
3083 auto *SubVecTy = dyn_cast<FixedVectorType>(SubVec->getType());
3084
3085 // Only canonicalize if the destination vector, Vec, and SubVec are all
3086 // fixed vectors.
3087 if (DstTy && VecTy && SubVecTy) {
3088 unsigned DstNumElts = DstTy->getNumElements();
3089 unsigned VecNumElts = VecTy->getNumElements();
3090 unsigned SubVecNumElts = SubVecTy->getNumElements();
3091 unsigned IdxN = cast<ConstantInt>(Idx)->getZExtValue();
3092
3093 // An insert that entirely overwrites Vec with SubVec is a nop.
3094 if (VecNumElts == SubVecNumElts)
3095 return replaceInstUsesWith(CI, SubVec);
3096
3097 // Widen SubVec into a vector of the same width as Vec, since
3098 // shufflevector requires the two input vectors to be the same width.
3099 // Elements beyond the bounds of SubVec within the widened vector are
3100 // undefined.
3101 SmallVector<int, 8> WidenMask;
3102 unsigned i;
3103 for (i = 0; i != SubVecNumElts; ++i)
3104 WidenMask.push_back(i);
3105 for (; i != VecNumElts; ++i)
3106 WidenMask.push_back(PoisonMaskElem);
3107
3108 Value *WidenShuffle = Builder.CreateShuffleVector(SubVec, WidenMask);
3109
3111 for (unsigned i = 0; i != IdxN; ++i)
3112 Mask.push_back(i);
3113 for (unsigned i = DstNumElts; i != DstNumElts + SubVecNumElts; ++i)
3114 Mask.push_back(i);
3115 for (unsigned i = IdxN + SubVecNumElts; i != DstNumElts; ++i)
3116 Mask.push_back(i);
3117
3118 Value *Shuffle = Builder.CreateShuffleVector(Vec, WidenShuffle, Mask);
3119 return replaceInstUsesWith(CI, Shuffle);
3120 }
3121 break;
3122 }
3123 case Intrinsic::vector_extract: {
3124 Value *Vec = II->getArgOperand(0);
3125 Value *Idx = II->getArgOperand(1);
3126
3127 Type *ReturnType = II->getType();
3128 // (extract_vector (insert_vector InsertTuple, InsertValue, InsertIdx),
3129 // ExtractIdx)
3130 unsigned ExtractIdx = cast<ConstantInt>(Idx)->getZExtValue();
3131 Value *InsertTuple, *InsertIdx, *InsertValue;
3132 if (match(Vec, m_Intrinsic<Intrinsic::vector_insert>(m_Value(InsertTuple),
3133 m_Value(InsertValue),
3134 m_Value(InsertIdx))) &&
3135 InsertValue->getType() == ReturnType) {
3136 unsigned Index = cast<ConstantInt>(InsertIdx)->getZExtValue();
3137 // Case where we get the same index right after setting it.
3138 // extract.vector(insert.vector(InsertTuple, InsertValue, Idx), Idx) -->
3139 // InsertValue
3140 if (ExtractIdx == Index)
3141 return replaceInstUsesWith(CI, InsertValue);
3142 // If we are getting a different index than what was set in the
3143 // insert.vector intrinsic. We can just set the input tuple to the one up
3144 // in the chain. extract.vector(insert.vector(InsertTuple, InsertValue,
3145 // InsertIndex), ExtractIndex)
3146 // --> extract.vector(InsertTuple, ExtractIndex)
3147 else
3148 return replaceOperand(CI, 0, InsertTuple);
3149 }
3150
3151 auto *DstTy = dyn_cast<VectorType>(ReturnType);
3152 auto *VecTy = dyn_cast<VectorType>(Vec->getType());
3153
3154 if (DstTy && VecTy) {
3155 auto DstEltCnt = DstTy->getElementCount();
3156 auto VecEltCnt = VecTy->getElementCount();
3157 unsigned IdxN = cast<ConstantInt>(Idx)->getZExtValue();
3158
3159 // Extracting the entirety of Vec is a nop.
3160 if (DstEltCnt == VecTy->getElementCount()) {
3161 replaceInstUsesWith(CI, Vec);
3162 return eraseInstFromFunction(CI);
3163 }
3164
3165 // Only canonicalize to shufflevector if the destination vector and
3166 // Vec are fixed vectors.
3167 if (VecEltCnt.isScalable() || DstEltCnt.isScalable())
3168 break;
3169
3171 for (unsigned i = 0; i != DstEltCnt.getKnownMinValue(); ++i)
3172 Mask.push_back(IdxN + i);
3173
3174 Value *Shuffle = Builder.CreateShuffleVector(Vec, Mask);
3175 return replaceInstUsesWith(CI, Shuffle);
3176 }
3177 break;
3178 }
3179 case Intrinsic::vector_reverse: {
3180 Value *BO0, *BO1, *X, *Y;
3181 Value *Vec = II->getArgOperand(0);
3182 if (match(Vec, m_OneUse(m_BinOp(m_Value(BO0), m_Value(BO1))))) {
3183 auto *OldBinOp = cast<BinaryOperator>(Vec);
3184 if (match(BO0, m_VecReverse(m_Value(X)))) {
3185 // rev(binop rev(X), rev(Y)) --> binop X, Y
3186 if (match(BO1, m_VecReverse(m_Value(Y))))
3188 OldBinOp->getOpcode(), X, Y,
3189 OldBinOp, OldBinOp->getName(),
3190 II->getIterator()));
3191 // rev(binop rev(X), BO1Splat) --> binop X, BO1Splat
3192 if (isSplatValue(BO1))
3194 OldBinOp->getOpcode(), X, BO1,
3195 OldBinOp, OldBinOp->getName(),
3196 II->getIterator()));
3197 }
3198 // rev(binop BO0Splat, rev(Y)) --> binop BO0Splat, Y
3199 if (match(BO1, m_VecReverse(m_Value(Y))) && isSplatValue(BO0))
3200 return replaceInstUsesWith(CI,
3202 OldBinOp->getOpcode(), BO0, Y, OldBinOp,
3203 OldBinOp->getName(), II->getIterator()));
3204 }
3205 // rev(unop rev(X)) --> unop X
3206 if (match(Vec, m_OneUse(m_UnOp(m_VecReverse(m_Value(X)))))) {
3207 auto *OldUnOp = cast<UnaryOperator>(Vec);
3209 OldUnOp->getOpcode(), X, OldUnOp, OldUnOp->getName(),
3210 II->getIterator());
3211 return replaceInstUsesWith(CI, NewUnOp);
3212 }
3213 break;
3214 }
3215 case Intrinsic::vector_reduce_or:
3216 case Intrinsic::vector_reduce_and: {
3217 // Canonicalize logical or/and reductions:
3218 // Or reduction for i1 is represented as:
3219 // %val = bitcast <ReduxWidth x i1> to iReduxWidth
3220 // %res = cmp ne iReduxWidth %val, 0
3221 // And reduction for i1 is represented as:
3222 // %val = bitcast <ReduxWidth x i1> to iReduxWidth
3223 // %res = cmp eq iReduxWidth %val, 11111
3224 Value *Arg = II->getArgOperand(0);
3225 Value *Vect;
3226 if (match(Arg, m_ZExtOrSExtOrSelf(m_Value(Vect)))) {
3227 if (auto *FTy = dyn_cast<FixedVectorType>(Vect->getType()))
3228 if (FTy->getElementType() == Builder.getInt1Ty()) {
3230 Vect, Builder.getIntNTy(FTy->getNumElements()));
3231 if (IID == Intrinsic::vector_reduce_and) {
3232 Res = Builder.CreateICmpEQ(
3234 } else {
3235 assert(IID == Intrinsic::vector_reduce_or &&
3236 "Expected or reduction.");
3237 Res = Builder.CreateIsNotNull(Res);
3238 }
3239 if (Arg != Vect)
3240 Res = Builder.CreateCast(cast<CastInst>(Arg)->getOpcode(), Res,
3241 II->getType());
3242 return replaceInstUsesWith(CI, Res);
3243 }
3244 }
3245 [[fallthrough]];
3246 }
3247 case Intrinsic::vector_reduce_add: {
3248 if (IID == Intrinsic::vector_reduce_add) {
3249 // Convert vector_reduce_add(ZExt(<n x i1>)) to
3250 // ZExtOrTrunc(ctpop(bitcast <n x i1> to in)).
3251 // Convert vector_reduce_add(SExt(<n x i1>)) to
3252 // -ZExtOrTrunc(ctpop(bitcast <n x i1> to in)).
3253 // Convert vector_reduce_add(<n x i1>) to
3254 // Trunc(ctpop(bitcast <n x i1> to in)).
3255 Value *Arg = II->getArgOperand(0);
3256 Value *Vect;
3257 if (match(Arg, m_ZExtOrSExtOrSelf(m_Value(Vect)))) {
3258 if (auto *FTy = dyn_cast<FixedVectorType>(Vect->getType()))
3259 if (FTy->getElementType() == Builder.getInt1Ty()) {
3261 Vect, Builder.getIntNTy(FTy->getNumElements()));
3262 Value *Res = Builder.CreateUnaryIntrinsic(Intrinsic::ctpop, V);
3263 if (Res->getType() != II->getType())
3264 Res = Builder.CreateZExtOrTrunc(Res, II->getType());
3265 if (Arg != Vect &&
3266 cast<Instruction>(Arg)->getOpcode() == Instruction::SExt)
3267 Res = Builder.CreateNeg(Res);
3268 return replaceInstUsesWith(CI, Res);
3269 }
3270 }
3271 }
3272 [[fallthrough]];
3273 }
3274 case Intrinsic::vector_reduce_xor: {
3275 if (IID == Intrinsic::vector_reduce_xor) {
3276 // Exclusive disjunction reduction over the vector with
3277 // (potentially-extended) i1 element type is actually a
3278 // (potentially-extended) arithmetic `add` reduction over the original
3279 // non-extended value:
3280 // vector_reduce_xor(?ext(<n x i1>))
3281 // -->
3282 // ?ext(vector_reduce_add(<n x i1>))
3283 Value *Arg = II->getArgOperand(0);
3284 Value *Vect;
3285 if (match(Arg, m_ZExtOrSExtOrSelf(m_Value(Vect)))) {
3286 if (auto *FTy = dyn_cast<FixedVectorType>(Vect->getType()))
3287 if (FTy->getElementType() == Builder.getInt1Ty()) {
3288 Value *Res = Builder.CreateAddReduce(Vect);
3289 if (Arg != Vect)
3290 Res = Builder.CreateCast(cast<CastInst>(Arg)->getOpcode(), Res,
3291 II->getType());
3292 return replaceInstUsesWith(CI, Res);
3293 }
3294 }
3295 }
3296 [[fallthrough]];
3297 }
3298 case Intrinsic::vector_reduce_mul: {
3299 if (IID == Intrinsic::vector_reduce_mul) {
3300 // Multiplicative reduction over the vector with (potentially-extended)
3301 // i1 element type is actually a (potentially zero-extended)
3302 // logical `and` reduction over the original non-extended value:
3303 // vector_reduce_mul(?ext(<n x i1>))
3304 // -->
3305 // zext(vector_reduce_and(<n x i1>))
3306 Value *Arg = II->getArgOperand(0);
3307 Value *Vect;
3308 if (match(Arg, m_ZExtOrSExtOrSelf(m_Value(Vect)))) {
3309 if (auto *FTy = dyn_cast<FixedVectorType>(Vect->getType()))
3310 if (FTy->getElementType() == Builder.getInt1Ty()) {
3311 Value *Res = Builder.CreateAndReduce(Vect);
3312 if (Res->getType() != II->getType())
3313 Res = Builder.CreateZExt(Res, II->getType());
3314 return replaceInstUsesWith(CI, Res);
3315 }
3316 }
3317 }
3318 [[fallthrough]];
3319 }
3320 case Intrinsic::vector_reduce_umin:
3321 case Intrinsic::vector_reduce_umax: {
3322 if (IID == Intrinsic::vector_reduce_umin ||
3323 IID == Intrinsic::vector_reduce_umax) {
3324 // UMin/UMax reduction over the vector with (potentially-extended)
3325 // i1 element type is actually a (potentially-extended)
3326 // logical `and`/`or` reduction over the original non-extended value:
3327 // vector_reduce_u{min,max}(?ext(<n x i1>))
3328 // -->
3329 // ?ext(vector_reduce_{and,or}(<n x i1>))
3330 Value *Arg = II->getArgOperand(0);
3331 Value *Vect;
3332 if (match(Arg, m_ZExtOrSExtOrSelf(m_Value(Vect)))) {
3333 if (auto *FTy = dyn_cast<FixedVectorType>(Vect->getType()))
3334 if (FTy->getElementType() == Builder.getInt1Ty()) {
3335 Value *Res = IID == Intrinsic::vector_reduce_umin
3336 ? Builder.CreateAndReduce(Vect)
3337 : Builder.CreateOrReduce(Vect);
3338 if (Arg != Vect)
3339 Res = Builder.CreateCast(cast<CastInst>(Arg)->getOpcode(), Res,
3340 II->getType());
3341 return replaceInstUsesWith(CI, Res);
3342 }
3343 }
3344 }
3345 [[fallthrough]];
3346 }
3347 case Intrinsic::vector_reduce_smin:
3348 case Intrinsic::vector_reduce_smax: {
3349 if (IID == Intrinsic::vector_reduce_smin ||
3350 IID == Intrinsic::vector_reduce_smax) {
3351 // SMin/SMax reduction over the vector with (potentially-extended)
3352 // i1 element type is actually a (potentially-extended)
3353 // logical `and`/`or` reduction over the original non-extended value:
3354 // vector_reduce_s{min,max}(<n x i1>)
3355 // -->
3356 // vector_reduce_{or,and}(<n x i1>)
3357 // and
3358 // vector_reduce_s{min,max}(sext(<n x i1>))
3359 // -->
3360 // sext(vector_reduce_{or,and}(<n x i1>))
3361 // and
3362 // vector_reduce_s{min,max}(zext(<n x i1>))
3363 // -->
3364 // zext(vector_reduce_{and,or}(<n x i1>))
3365 Value *Arg = II->getArgOperand(0);
3366 Value *Vect;
3367 if (match(Arg, m_ZExtOrSExtOrSelf(m_Value(Vect)))) {
3368 if (auto *FTy = dyn_cast<FixedVectorType>(Vect->getType()))
3369 if (FTy->getElementType() == Builder.getInt1Ty()) {
3370 Instruction::CastOps ExtOpc = Instruction::CastOps::CastOpsEnd;
3371 if (Arg != Vect)
3372 ExtOpc = cast<CastInst>(Arg)->getOpcode();
3373 Value *Res = ((IID == Intrinsic::vector_reduce_smin) ==
3374 (ExtOpc == Instruction::CastOps::ZExt))
3375 ? Builder.CreateAndReduce(Vect)
3376 : Builder.CreateOrReduce(Vect);
3377 if (Arg != Vect)
3378 Res = Builder.CreateCast(ExtOpc, Res, II->getType());
3379 return replaceInstUsesWith(CI, Res);
3380 }
3381 }
3382 }
3383 [[fallthrough]];
3384 }
3385 case Intrinsic::vector_reduce_fmax:
3386 case Intrinsic::vector_reduce_fmin:
3387 case Intrinsic::vector_reduce_fadd:
3388 case Intrinsic::vector_reduce_fmul: {
3389 bool CanBeReassociated = (IID != Intrinsic::vector_reduce_fadd &&
3390 IID != Intrinsic::vector_reduce_fmul) ||
3391 II->hasAllowReassoc();
3392 const unsigned ArgIdx = (IID == Intrinsic::vector_reduce_fadd ||
3393 IID == Intrinsic::vector_reduce_fmul)
3394 ? 1
3395 : 0;
3396 Value *Arg = II->getArgOperand(ArgIdx);
3397 Value *V;
3398 ArrayRef<int> Mask;
3399 if (!isa<FixedVectorType>(Arg->getType()) || !CanBeReassociated ||
3400 !match(Arg, m_Shuffle(m_Value(V), m_Undef(), m_Mask(Mask))) ||
3401 !cast<ShuffleVectorInst>(Arg)->isSingleSource())
3402 break;
3403 int Sz = Mask.size();
3404 SmallBitVector UsedIndices(Sz);
3405 for (int Idx : Mask) {
3406 if (Idx == PoisonMaskElem || UsedIndices.test(Idx))
3407 break;
3408 UsedIndices.set(Idx);
3409 }
3410 // Can remove shuffle iff just shuffled elements, no repeats, undefs, or
3411 // other changes.
3412 if (UsedIndices.all()) {
3413 replaceUse(II->getOperandUse(ArgIdx), V);
3414 return nullptr;
3415 }
3416 break;
3417 }
3418 case Intrinsic::is_fpclass: {
3419 if (Instruction *I = foldIntrinsicIsFPClass(*II))
3420 return I;
3421 break;
3422 }
3423 case Intrinsic::threadlocal_address: {
3426 if (MinAlign > Align.valueOrOne()) {
3428 return II;
3429 }
3430 break;
3431 }
3432 default: {
3433 // Handle target specific intrinsics
3434 std::optional<Instruction *> V = targetInstCombineIntrinsic(*II);
3435 if (V)
3436 return *V;
3437 break;
3438 }
3439 }
3440
3441 // Try to fold intrinsic into select operands. This is legal if:
3442 // * The intrinsic is speculatable.
3443 // * The select condition is not a vector, or the intrinsic does not
3444 // perform cross-lane operations.
3445 switch (IID) {
3446 case Intrinsic::ctlz:
3447 case Intrinsic::cttz:
3448 case Intrinsic::ctpop:
3449 case Intrinsic::umin:
3450 case Intrinsic::umax:
3451 case Intrinsic::smin:
3452 case Intrinsic::smax:
3453 case Intrinsic::usub_sat:
3454 case Intrinsic::uadd_sat:
3455 case Intrinsic::ssub_sat:
3456 case Intrinsic::sadd_sat:
3457 for (Value *Op : II->args())
3458 if (auto *Sel = dyn_cast<SelectInst>(Op))
3459 if (Instruction *R = FoldOpIntoSelect(*II, Sel))
3460 return R;
3461 [[fallthrough]];
3462 default:
3463 break;
3464 }
3465
3467 return Shuf;
3468
3469 // Some intrinsics (like experimental_gc_statepoint) can be used in invoke
3470 // context, so it is handled in visitCallBase and we should trigger it.
3471 return visitCallBase(*II);
3472}
3473
3474// Fence instruction simplification
3476 auto *NFI = dyn_cast<FenceInst>(FI.getNextNonDebugInstruction());
3477 // This check is solely here to handle arbitrary target-dependent syncscopes.
3478 // TODO: Can remove if does not matter in practice.
3479 if (NFI && FI.isIdenticalTo(NFI))
3480 return eraseInstFromFunction(FI);
3481
3482 // Returns true if FI1 is identical or stronger fence than FI2.
3483 auto isIdenticalOrStrongerFence = [](FenceInst *FI1, FenceInst *FI2) {
3484 auto FI1SyncScope = FI1->getSyncScopeID();
3485 // Consider same scope, where scope is global or single-thread.
3486 if (FI1SyncScope != FI2->getSyncScopeID() ||
3487 (FI1SyncScope != SyncScope::System &&
3488 FI1SyncScope != SyncScope::SingleThread))
3489 return false;
3490
3491 return isAtLeastOrStrongerThan(FI1->getOrdering(), FI2->getOrdering());
3492 };
3493 if (NFI && isIdenticalOrStrongerFence(NFI, &FI))
3494 return eraseInstFromFunction(FI);
3495
3496 if (auto *PFI = dyn_cast_or_null<FenceInst>(FI.getPrevNonDebugInstruction()))
3497 if (isIdenticalOrStrongerFence(PFI, &FI))
3498 return eraseInstFromFunction(FI);
3499 return nullptr;
3500}
3501
3502// InvokeInst simplification
3504 return visitCallBase(II);
3505}
3506
3507// CallBrInst simplification
3509 return visitCallBase(CBI);
3510}
3511
3512Instruction *InstCombinerImpl::tryOptimizeCall(CallInst *CI) {
3513 if (!CI->getCalledFunction()) return nullptr;
3514
3515 // Skip optimizing notail and musttail calls so
3516 // LibCallSimplifier::optimizeCall doesn't have to preserve those invariants.
3517 // LibCallSimplifier::optimizeCall should try to preseve tail calls though.
3518 if (CI->isMustTailCall() || CI->isNoTailCall())
3519 return nullptr;
3520
3521 auto InstCombineRAUW = [this](Instruction *From, Value *With) {
3522 replaceInstUsesWith(*From, With);
3523 };
3524 auto InstCombineErase = [this](Instruction *I) {
3526 };
3527 LibCallSimplifier Simplifier(DL, &TLI, &AC, ORE, BFI, PSI, InstCombineRAUW,
3528 InstCombineErase);
3529 if (Value *With = Simplifier.optimizeCall(CI, Builder)) {
3530 ++NumSimplified;
3531 return CI->use_empty() ? CI : replaceInstUsesWith(*CI, With);
3532 }
3533
3534 return nullptr;
3535}
3536
3538 // Strip off at most one level of pointer casts, looking for an alloca. This
3539 // is good enough in practice and simpler than handling any number of casts.
3540 Value *Underlying = TrampMem->stripPointerCasts();
3541 if (Underlying != TrampMem &&
3542 (!Underlying->hasOneUse() || Underlying->user_back() != TrampMem))
3543 return nullptr;
3544 if (!isa<AllocaInst>(Underlying))
3545 return nullptr;
3546
3547 IntrinsicInst *InitTrampoline = nullptr;
3548 for (User *U : TrampMem->users()) {
3549 IntrinsicInst *II = dyn_cast<IntrinsicInst>(U);
3550 if (!II)
3551 return nullptr;
3552 if (II->getIntrinsicID() == Intrinsic::init_trampoline) {
3553 if (InitTrampoline)
3554 // More than one init_trampoline writes to this value. Give up.
3555 return nullptr;
3556 InitTrampoline = II;
3557 continue;
3558 }
3559 if (II->getIntrinsicID() == Intrinsic::adjust_trampoline)
3560 // Allow any number of calls to adjust.trampoline.
3561 continue;
3562 return nullptr;
3563 }
3564
3565 // No call to init.trampoline found.
3566 if (!InitTrampoline)
3567 return nullptr;
3568
3569 // Check that the alloca is being used in the expected way.
3570 if (InitTrampoline->getOperand(0) != TrampMem)
3571 return nullptr;
3572
3573 return InitTrampoline;
3574}
3575
3577 Value *TrampMem) {
3578 // Visit all the previous instructions in the basic block, and try to find a
3579 // init.trampoline which has a direct path to the adjust.trampoline.
3580 for (BasicBlock::iterator I = AdjustTramp->getIterator(),
3581 E = AdjustTramp->getParent()->begin();
3582 I != E;) {
3583 Instruction *Inst = &*--I;
3584 if (IntrinsicInst *II = dyn_cast<IntrinsicInst>(I))
3585 if (II->getIntrinsicID() == Intrinsic::init_trampoline &&
3586 II->getOperand(0) == TrampMem)
3587 return II;
3588 if (Inst->mayWriteToMemory())
3589 return nullptr;
3590 }
3591 return nullptr;
3592}
3593
3594// Given a call to llvm.adjust.trampoline, find and return the corresponding
3595// call to llvm.init.trampoline if the call to the trampoline can be optimized
3596// to a direct call to a function. Otherwise return NULL.
3598 Callee = Callee->stripPointerCasts();
3599 IntrinsicInst *AdjustTramp = dyn_cast<IntrinsicInst>(Callee);
3600 if (!AdjustTramp ||
3601 AdjustTramp->getIntrinsicID() != Intrinsic::adjust_trampoline)
3602 return nullptr;
3603
3604 Value *TrampMem = AdjustTramp->getOperand(0);
3605
3607 return IT;
3608 if (IntrinsicInst *IT = findInitTrampolineFromBB(AdjustTramp, TrampMem))
3609 return IT;
3610 return nullptr;
3611}
3612
3613bool InstCombinerImpl::annotateAnyAllocSite(CallBase &Call,
3614 const TargetLibraryInfo *TLI) {
3615 // Note: We only handle cases which can't be driven from generic attributes
3616 // here. So, for example, nonnull and noalias (which are common properties
3617 // of some allocation functions) are expected to be handled via annotation
3618 // of the respective allocator declaration with generic attributes.
3619 bool Changed = false;
3620
3621 if (!Call.getType()->isPointerTy())
3622 return Changed;
3623
3624 std::optional<APInt> Size = getAllocSize(&Call, TLI);
3625 if (Size && *Size != 0) {
3626 // TODO: We really should just emit deref_or_null here and then
3627 // let the generic inference code combine that with nonnull.
3628 if (Call.hasRetAttr(Attribute::NonNull)) {
3629 Changed = !Call.hasRetAttr(Attribute::Dereferenceable);
3631 Call.getContext(), Size->getLimitedValue()));
3632 } else {
3633 Changed = !Call.hasRetAttr(Attribute::DereferenceableOrNull);
3635 Call.getContext(), Size->getLimitedValue()));
3636 }
3637 }
3638
3639 // Add alignment attribute if alignment is a power of two constant.
3640 Value *Alignment = getAllocAlignment(&Call, TLI);
3641 if (!Alignment)
3642 return Changed;
3643
3644 ConstantInt *AlignOpC = dyn_cast<ConstantInt>(Alignment);
3645 if (AlignOpC && AlignOpC->getValue().ult(llvm::Value::MaximumAlignment)) {
3646 uint64_t AlignmentVal = AlignOpC->getZExtValue();
3647 if (llvm::isPowerOf2_64(AlignmentVal)) {
3648 Align ExistingAlign = Call.getRetAlign().valueOrOne();
3649 Align NewAlign = Align(AlignmentVal);
3650 if (NewAlign > ExistingAlign) {
3651 Call.addRetAttr(
3652 Attribute::getWithAlignment(Call.getContext(), NewAlign));
3653 Changed = true;
3654 }
3655 }
3656 }
3657 return Changed;
3658}
3659
3660/// Improvements for call, callbr and invoke instructions.
3661Instruction *InstCombinerImpl::visitCallBase(CallBase &Call) {
3662 bool Changed = annotateAnyAllocSite(Call, &TLI);
3663
3664 // Mark any parameters that are known to be non-null with the nonnull
3665 // attribute. This is helpful for inlining calls to functions with null
3666 // checks on their arguments.
3668 unsigned ArgNo = 0;
3669
3670 for (Value *V : Call.args()) {
3671 if (V->getType()->isPointerTy() &&
3672 !Call.paramHasAttr(ArgNo, Attribute::NonNull) &&
3673 isKnownNonZero(V, getSimplifyQuery().getWithInstruction(&Call)))
3674 ArgNos.push_back(ArgNo);
3675 ArgNo++;
3676 }
3677
3678 assert(ArgNo == Call.arg_size() && "Call arguments not processed correctly.");
3679
3680 if (!ArgNos.empty()) {
3681 AttributeList AS = Call.getAttributes();
3682 LLVMContext &Ctx = Call.getContext();
3683 AS = AS.addParamAttribute(Ctx, ArgNos,
3684 Attribute::get(Ctx, Attribute::NonNull));
3685 Call.setAttributes(AS);
3686 Changed = true;
3687 }
3688
3689 // If the callee is a pointer to a function, attempt to move any casts to the
3690 // arguments of the call/callbr/invoke.
3691 Value *Callee = Call.getCalledOperand();
3692 Function *CalleeF = dyn_cast<Function>(Callee);
3693 if ((!CalleeF || CalleeF->getFunctionType() != Call.getFunctionType()) &&
3694 transformConstExprCastCall(Call))
3695 return nullptr;
3696
3697 if (CalleeF) {
3698 // Remove the convergent attr on calls when the callee is not convergent.
3699 if (Call.isConvergent() && !CalleeF->isConvergent() &&
3700 !CalleeF->isIntrinsic()) {
3701 LLVM_DEBUG(dbgs() << "Removing convergent attr from instr " << Call
3702 << "\n");
3703 Call.setNotConvergent();
3704 return &Call;
3705 }
3706
3707 // If the call and callee calling conventions don't match, and neither one
3708 // of the calling conventions is compatible with C calling convention
3709 // this call must be unreachable, as the call is undefined.
3710 if ((CalleeF->getCallingConv() != Call.getCallingConv() &&
3711 !(CalleeF->getCallingConv() == llvm::CallingConv::C &&
3713 !(Call.getCallingConv() == llvm::CallingConv::C &&
3715 // Only do this for calls to a function with a body. A prototype may
3716 // not actually end up matching the implementation's calling conv for a
3717 // variety of reasons (e.g. it may be written in assembly).
3718 !CalleeF->isDeclaration()) {
3719 Instruction *OldCall = &Call;
3721 // If OldCall does not return void then replaceInstUsesWith poison.
3722 // This allows ValueHandlers and custom metadata to adjust itself.
3723 if (!OldCall->getType()->isVoidTy())
3724 replaceInstUsesWith(*OldCall, PoisonValue::get(OldCall->getType()));
3725 if (isa<CallInst>(OldCall))
3726 return eraseInstFromFunction(*OldCall);
3727
3728 // We cannot remove an invoke or a callbr, because it would change thexi
3729 // CFG, just change the callee to a null pointer.
3730 cast<CallBase>(OldCall)->setCalledFunction(
3731 CalleeF->getFunctionType(),
3732 Constant::getNullValue(CalleeF->getType()));
3733 return nullptr;
3734 }
3735 }
3736
3737 // Calling a null function pointer is undefined if a null address isn't
3738 // dereferenceable.
3739 if ((isa<ConstantPointerNull>(Callee) &&
3740 !NullPointerIsDefined(Call.getFunction())) ||
3741 isa<UndefValue>(Callee)) {
3742 // If Call does not return void then replaceInstUsesWith poison.
3743 // This allows ValueHandlers and custom metadata to adjust itself.
3744 if (!Call.getType()->isVoidTy())
3745 replaceInstUsesWith(Call, PoisonValue::get(Call.getType()));
3746
3747 if (Call.isTerminator()) {
3748 // Can't remove an invoke or callbr because we cannot change the CFG.
3749 return nullptr;
3750 }
3751
3752 // This instruction is not reachable, just remove it.
3754 return eraseInstFromFunction(Call);
3755 }
3756
3757 if (IntrinsicInst *II = findInitTrampoline(Callee))
3758 return transformCallThroughTrampoline(Call, *II);
3759
3760 if (isa<InlineAsm>(Callee) && !Call.doesNotThrow()) {
3761 InlineAsm *IA = cast<InlineAsm>(Callee);
3762 if (!IA->canThrow()) {
3763 // Normal inline asm calls cannot throw - mark them
3764 // 'nounwind'.
3765 Call.setDoesNotThrow();
3766 Changed = true;
3767 }
3768 }
3769
3770 // Try to optimize the call if possible, we require DataLayout for most of
3771 // this. None of these calls are seen as possibly dead so go ahead and
3772 // delete the instruction now.
3773 if (CallInst *CI = dyn_cast<CallInst>(&Call)) {
3774 Instruction *I = tryOptimizeCall(CI);
3775 // If we changed something return the result, etc. Otherwise let
3776 // the fallthrough check.
3777 if (I) return eraseInstFromFunction(*I);
3778 }
3779
3780 if (!Call.use_empty() && !Call.isMustTailCall())
3781 if (Value *ReturnedArg = Call.getReturnedArgOperand()) {
3782 Type *CallTy = Call.getType();
3783 Type *RetArgTy = ReturnedArg->getType();
3784 if (RetArgTy->canLosslesslyBitCastTo(CallTy))
3785 return replaceInstUsesWith(
3786 Call, Builder.CreateBitOrPointerCast(ReturnedArg, CallTy));
3787 }
3788
3789 // Drop unnecessary kcfi operand bundles from calls that were converted
3790 // into direct calls.
3791 auto Bundle = Call.getOperandBundle(LLVMContext::OB_kcfi);
3792 if (Bundle && !Call.isIndirectCall()) {
3793 DEBUG_WITH_TYPE(DEBUG_TYPE "-kcfi", {
3794 if (CalleeF) {
3795 ConstantInt *FunctionType = nullptr;
3796 ConstantInt *ExpectedType = cast<ConstantInt>(Bundle->Inputs[0]);
3797
3798 if (MDNode *MD = CalleeF->getMetadata(LLVMContext::MD_kcfi_type))
3799 FunctionType = mdconst::extract<ConstantInt>(MD->getOperand(0));
3800
3801 if (FunctionType &&
3802 FunctionType->getZExtValue() != ExpectedType->getZExtValue())
3803 dbgs() << Call.getModule()->getName()
3804 << ": warning: kcfi: " << Call.getCaller()->getName()
3805 << ": call to " << CalleeF->getName()
3806 << " using a mismatching function pointer type\n";
3807 }
3808 });
3809
3811 }
3812
3813 if (isRemovableAlloc(&Call, &TLI))
3814 return visitAllocSite(Call);
3815
3816 // Handle intrinsics which can be used in both call and invoke context.
3817 switch (Call.getIntrinsicID()) {
3818 case Intrinsic::experimental_gc_statepoint: {
3819 GCStatepointInst &GCSP = *cast<GCStatepointInst>(&Call);
3820 SmallPtrSet<Value *, 32> LiveGcValues;
3821 for (const GCRelocateInst *Reloc : GCSP.getGCRelocates()) {
3822 GCRelocateInst &GCR = *const_cast<GCRelocateInst *>(Reloc);
3823
3824 // Remove the relocation if unused.
3825 if (GCR.use_empty()) {
3827 continue;
3828 }
3829
3830 Value *DerivedPtr = GCR.getDerivedPtr();
3831 Value *BasePtr = GCR.getBasePtr();
3832
3833 // Undef is undef, even after relocation.
3834 if (isa<UndefValue>(DerivedPtr) || isa<UndefValue>(BasePtr)) {
3837 continue;
3838 }
3839
3840 if (auto *PT = dyn_cast<PointerType>(GCR.getType())) {
3841 // The relocation of null will be null for most any collector.
3842 // TODO: provide a hook for this in GCStrategy. There might be some
3843 // weird collector this property does not hold for.
3844 if (isa<ConstantPointerNull>(DerivedPtr)) {
3845 // Use null-pointer of gc_relocate's type to replace it.
3848 continue;
3849 }
3850
3851 // isKnownNonNull -> nonnull attribute
3852 if (!GCR.hasRetAttr(Attribute::NonNull) &&
3853 isKnownNonZero(DerivedPtr,
3854 getSimplifyQuery().getWithInstruction(&Call))) {
3855 GCR.addRetAttr(Attribute::NonNull);
3856 // We discovered new fact, re-check users.
3858 }
3859 }
3860
3861 // If we have two copies of the same pointer in the statepoint argument
3862 // list, canonicalize to one. This may let us common gc.relocates.
3863 if (GCR.getBasePtr() == GCR.getDerivedPtr() &&
3864 GCR.getBasePtrIndex() != GCR.getDerivedPtrIndex()) {
3865 auto *OpIntTy = GCR.getOperand(2)->getType();
3866 GCR.setOperand(2, ConstantInt::get(OpIntTy, GCR.getBasePtrIndex()));
3867 }
3868
3869 // TODO: bitcast(relocate(p)) -> relocate(bitcast(p))
3870 // Canonicalize on the type from the uses to the defs
3871
3872 // TODO: relocate((gep p, C, C2, ...)) -> gep(relocate(p), C, C2, ...)
3873 LiveGcValues.insert(BasePtr);
3874 LiveGcValues.insert(DerivedPtr);
3875 }
3876 std::optional<OperandBundleUse> Bundle =
3878 unsigned NumOfGCLives = LiveGcValues.size();
3879 if (!Bundle || NumOfGCLives == Bundle->Inputs.size())
3880 break;
3881 // We can reduce the size of gc live bundle.
3883 std::vector<Value *> NewLiveGc;
3884 for (Value *V : Bundle->Inputs) {
3885 if (Val2Idx.count(V))
3886 continue;
3887 if (LiveGcValues.count(V)) {
3888 Val2Idx[V] = NewLiveGc.size();
3889 NewLiveGc.push_back(V);
3890 } else
3891 Val2Idx[V] = NumOfGCLives;
3892 }
3893 // Update all gc.relocates
3894 for (const GCRelocateInst *Reloc : GCSP.getGCRelocates()) {
3895 GCRelocateInst &GCR = *const_cast<GCRelocateInst *>(Reloc);
3896 Value *BasePtr = GCR.getBasePtr();
3897 assert(Val2Idx.count(BasePtr) && Val2Idx[BasePtr] != NumOfGCLives &&
3898 "Missed live gc for base pointer");
3899 auto *OpIntTy1 = GCR.getOperand(1)->getType();
3900 GCR.setOperand(1, ConstantInt::get(OpIntTy1, Val2Idx[BasePtr]));
3901 Value *DerivedPtr = GCR.getDerivedPtr();
3902 assert(Val2Idx.count(DerivedPtr) && Val2Idx[DerivedPtr] != NumOfGCLives &&
3903 "Missed live gc for derived pointer");
3904 auto *OpIntTy2 = GCR.getOperand(2)->getType();
3905 GCR.setOperand(2, ConstantInt::get(OpIntTy2, Val2Idx[DerivedPtr]));
3906 }
3907 // Create new statepoint instruction.
3908 OperandBundleDef NewBundle("gc-live", NewLiveGc);
3909 return CallBase::Create(&Call, NewBundle);
3910 }
3911 default: { break; }
3912 }
3913
3914 return Changed ? &Call : nullptr;
3915}
3916
3917/// If the callee is a constexpr cast of a function, attempt to move the cast to
3918/// the arguments of the call/invoke.
3919/// CallBrInst is not supported.
3920bool InstCombinerImpl::transformConstExprCastCall(CallBase &Call) {
3921 auto *Callee =
3922 dyn_cast<Function>(Call.getCalledOperand()->stripPointerCasts());
3923 if (!Callee)
3924 return false;
3925
3926 assert(!isa<CallBrInst>(Call) &&
3927 "CallBr's don't have a single point after a def to insert at");
3928
3929 // If this is a call to a thunk function, don't remove the cast. Thunks are
3930 // used to transparently forward all incoming parameters and outgoing return
3931 // values, so it's important to leave the cast in place.
3932 if (Callee->hasFnAttribute("thunk"))
3933 return false;
3934
3935 // If this is a call to a naked function, the assembly might be
3936 // using an argument, or otherwise rely on the frame layout,
3937 // the function prototype will mismatch.
3938 if (Callee->hasFnAttribute(Attribute::Naked))
3939 return false;
3940
3941 // If this is a musttail call, the callee's prototype must match the caller's
3942 // prototype with the exception of pointee types. The code below doesn't
3943 // implement that, so we can't do this transform.
3944 // TODO: Do the transform if it only requires adding pointer casts.
3945 if (Call.isMustTailCall())
3946 return false;
3947
3949 const AttributeList &CallerPAL = Call.getAttributes();
3950
3951 // Okay, this is a cast from a function to a different type. Unless doing so
3952 // would cause a type conversion of one of our arguments, change this call to
3953 // be a direct call with arguments casted to the appropriate types.
3954 FunctionType *FT = Callee->getFunctionType();
3955 Type *OldRetTy = Caller->getType();
3956 Type *NewRetTy = FT->getReturnType();
3957
3958 // Check to see if we are changing the return type...
3959 if (OldRetTy != NewRetTy) {
3960
3961 if (NewRetTy->isStructTy())
3962 return false; // TODO: Handle multiple return values.
3963
3964 if (!CastInst::isBitOrNoopPointerCastable(NewRetTy, OldRetTy, DL)) {
3965 if (Callee->isDeclaration())
3966 return false; // Cannot transform this return value.
3967
3968 if (!Caller->use_empty() &&
3969 // void -> non-void is handled specially
3970 !NewRetTy->isVoidTy())
3971 return false; // Cannot transform this return value.
3972 }
3973
3974 if (!CallerPAL.isEmpty() && !Caller->use_empty()) {
3975 AttrBuilder RAttrs(FT->getContext(), CallerPAL.getRetAttrs());
3976 if (RAttrs.overlaps(AttributeFuncs::typeIncompatible(NewRetTy)))
3977 return false; // Attribute not compatible with transformed value.
3978 }
3979
3980 // If the callbase is an invoke instruction, and the return value is
3981 // used by a PHI node in a successor, we cannot change the return type of
3982 // the call because there is no place to put the cast instruction (without
3983 // breaking the critical edge). Bail out in this case.
3984 if (!Caller->use_empty()) {
3985 BasicBlock *PhisNotSupportedBlock = nullptr;
3986 if (auto *II = dyn_cast<InvokeInst>(Caller))
3987 PhisNotSupportedBlock = II->getNormalDest();
3988 if (PhisNotSupportedBlock)
3989 for (User *U : Caller->users())
3990 if (PHINode *PN = dyn_cast<PHINode>(U))
3991 if (PN->getParent() == PhisNotSupportedBlock)
3992 return false;
3993 }
3994 }
3995
3996 unsigned NumActualArgs = Call.arg_size();
3997 unsigned NumCommonArgs = std::min(FT->getNumParams(), NumActualArgs);
3998
3999 // Prevent us turning:
4000 // declare void @takes_i32_inalloca(i32* inalloca)
4001 // call void bitcast (void (i32*)* @takes_i32_inalloca to void (i32)*)(i32 0)
4002 //
4003 // into:
4004 // call void @takes_i32_inalloca(i32* null)
4005 //
4006 // Similarly, avoid folding away bitcasts of byval calls.
4007 if (Callee->getAttributes().hasAttrSomewhere(Attribute::InAlloca) ||
4008 Callee->getAttributes().hasAttrSomewhere(Attribute::Preallocated))
4009 return false;
4010
4011 auto AI = Call.arg_begin();
4012 for (unsigned i = 0, e = NumCommonArgs; i != e; ++i, ++AI) {
4013 Type *ParamTy = FT->getParamType(i);
4014 Type *ActTy = (*AI)->getType();
4015
4016 if (!CastInst::isBitOrNoopPointerCastable(ActTy, ParamTy, DL))
4017 return false; // Cannot transform this parameter value.
4018
4019 // Check if there are any incompatible attributes we cannot drop safely.
4020 if (AttrBuilder(FT->getContext(), CallerPAL.getParamAttrs(i))
4023 return false; // Attribute not compatible with transformed value.
4024
4025 if (Call.isInAllocaArgument(i) ||
4026 CallerPAL.hasParamAttr(i, Attribute::Preallocated))
4027 return false; // Cannot transform to and from inalloca/preallocated.
4028
4029 if (CallerPAL.hasParamAttr(i, Attribute::SwiftError))
4030 return false;
4031
4032 if (CallerPAL.hasParamAttr(i, Attribute::ByVal) !=
4033 Callee->getAttributes().hasParamAttr(i, Attribute::ByVal))
4034 return false; // Cannot transform to or from byval.
4035 }
4036
4037 if (Callee->isDeclaration()) {
4038 // Do not delete arguments unless we have a function body.
4039 if (FT->getNumParams() < NumActualArgs && !FT->isVarArg())
4040 return false;
4041
4042 // If the callee is just a declaration, don't change the varargsness of the
4043 // call. We don't want to introduce a varargs call where one doesn't
4044 // already exist.
4045 if (FT->isVarArg() != Call.getFunctionType()->isVarArg())
4046 return false;
4047
4048 // If both the callee and the cast type are varargs, we still have to make
4049 // sure the number of fixed parameters are the same or we have the same
4050 // ABI issues as if we introduce a varargs call.
4051 if (FT->isVarArg() && Call.getFunctionType()->isVarArg() &&
4052 FT->getNumParams() != Call.getFunctionType()->getNumParams())
4053 return false;
4054 }
4055
4056 if (FT->getNumParams() < NumActualArgs && FT->isVarArg() &&
4057 !CallerPAL.isEmpty()) {
4058 // In this case we have more arguments than the new function type, but we
4059 // won't be dropping them. Check that these extra arguments have attributes
4060 // that are compatible with being a vararg call argument.
4061 unsigned SRetIdx;
4062 if (CallerPAL.hasAttrSomewhere(Attribute::StructRet, &SRetIdx) &&
4063 SRetIdx - AttributeList::FirstArgIndex >= FT->getNumParams())
4064 return false;
4065 }
4066
4067 // Okay, we decided that this is a safe thing to do: go ahead and start
4068 // inserting cast instructions as necessary.
4071 Args.reserve(NumActualArgs);
4072 ArgAttrs.reserve(NumActualArgs);
4073
4074 // Get any return attributes.
4075 AttrBuilder RAttrs(FT->getContext(), CallerPAL.getRetAttrs());
4076
4077 // If the return value is not being used, the type may not be compatible
4078 // with the existing attributes. Wipe out any problematic attributes.
4079 RAttrs.remove(AttributeFuncs::typeIncompatible(NewRetTy));
4080
4081 LLVMContext &Ctx = Call.getContext();
4082 AI = Call.arg_begin();
4083 for (unsigned i = 0; i != NumCommonArgs; ++i, ++AI) {
4084 Type *ParamTy = FT->getParamType(i);
4085
4086 Value *NewArg = *AI;
4087 if ((*AI)->getType() != ParamTy)
4088 NewArg = Builder.CreateBitOrPointerCast(*AI, ParamTy);
4089 Args.push_back(NewArg);
4090
4091 // Add any parameter attributes except the ones incompatible with the new
4092 // type. Note that we made sure all incompatible ones are safe to drop.
4095 ArgAttrs.push_back(
4096 CallerPAL.getParamAttrs(i).removeAttributes(Ctx, IncompatibleAttrs));
4097 }
4098
4099 // If the function takes more arguments than the call was taking, add them
4100 // now.
4101 for (unsigned i = NumCommonArgs; i != FT->getNumParams(); ++i) {
4102 Args.push_back(Constant::getNullValue(FT->getParamType(i)));
4103 ArgAttrs.push_back(AttributeSet());
4104 }
4105
4106 // If we are removing arguments to the function, emit an obnoxious warning.
4107 if (FT->getNumParams() < NumActualArgs) {
4108 // TODO: if (!FT->isVarArg()) this call may be unreachable. PR14722
4109 if (FT->isVarArg()) {
4110 // Add all of the arguments in their promoted form to the arg list.
4111 for (unsigned i = FT->getNumParams(); i != NumActualArgs; ++i, ++AI) {
4112 Type *PTy = getPromotedType((*AI)->getType());
4113 Value *NewArg = *AI;
4114 if (PTy != (*AI)->getType()) {
4115 // Must promote to pass through va_arg area!
4116 Instruction::CastOps opcode =
4117 CastInst::getCastOpcode(*AI, false, PTy, false);
4118 NewArg = Builder.CreateCast(opcode, *AI, PTy);
4119 }
4120 Args.push_back(NewArg);
4121
4122 // Add any parameter attributes.
4123 ArgAttrs.push_back(CallerPAL.getParamAttrs(i));
4124 }
4125 }
4126 }
4127
4128 AttributeSet FnAttrs = CallerPAL.getFnAttrs();
4129
4130 if (NewRetTy->isVoidTy())
4131 Caller->setName(""); // Void type should not have a name.
4132
4133 assert((ArgAttrs.size() == FT->getNumParams() || FT->isVarArg()) &&
4134 "missing argument attributes");
4135 AttributeList NewCallerPAL = AttributeList::get(
4136 Ctx, FnAttrs, AttributeSet::get(Ctx, RAttrs), ArgAttrs);
4137
4139 Call.getOperandBundlesAsDefs(OpBundles);
4140
4141 CallBase *NewCall;
4142 if (InvokeInst *II = dyn_cast<InvokeInst>(Caller)) {
4143 NewCall = Builder.CreateInvoke(Callee, II->getNormalDest(),
4144 II->getUnwindDest(), Args, OpBundles);
4145 } else {
4146 NewCall = Builder.CreateCall(Callee, Args, OpBundles);
4147 cast<CallInst>(NewCall)->setTailCallKind(
4148 cast<CallInst>(Caller)->getTailCallKind());
4149 }
4150 NewCall->takeName(Caller);
4151 NewCall->setCallingConv(Call.getCallingConv());
4152 NewCall->setAttributes(NewCallerPAL);
4153
4154 // Preserve prof metadata if any.
4155 NewCall->copyMetadata(*Caller, {LLVMContext::MD_prof});
4156
4157 // Insert a cast of the return type as necessary.
4158 Instruction *NC = NewCall;
4159 Value *NV = NC;
4160 if (OldRetTy != NV->getType() && !Caller->use_empty()) {
4161 if (!NV->getType()->isVoidTy()) {
4163 NC->setDebugLoc(Caller->getDebugLoc());
4164
4165 auto OptInsertPt = NewCall->getInsertionPointAfterDef();
4166 assert(OptInsertPt && "No place to insert cast");
4167 InsertNewInstBefore(NC, *OptInsertPt);
4169 } else {
4170 NV = PoisonValue::get(Caller->getType());
4171 }
4172 }
4173
4174 if (!Caller->use_empty())
4175 replaceInstUsesWith(*Caller, NV);
4176 else if (Caller->hasValueHandle()) {
4177 if (OldRetTy == NV->getType())
4179 else
4180 // We cannot call ValueIsRAUWd with a different type, and the
4181 // actual tracked value will disappear.
4183 }
4184
4185 eraseInstFromFunction(*Caller);
4186 return true;
4187}
4188
4189/// Turn a call to a function created by init_trampoline / adjust_trampoline
4190/// intrinsic pair into a direct call to the underlying function.
4192InstCombinerImpl::transformCallThroughTrampoline(CallBase &Call,
4193 IntrinsicInst &Tramp) {
4194 FunctionType *FTy = Call.getFunctionType();
4195 AttributeList Attrs = Call.getAttributes();
4196
4197 // If the call already has the 'nest' attribute somewhere then give up -
4198 // otherwise 'nest' would occur twice after splicing in the chain.
4199 if (Attrs.hasAttrSomewhere(Attribute::Nest))
4200 return nullptr;
4201
4202 Function *NestF = cast<Function>(Tramp.getArgOperand(1)->stripPointerCasts());
4203 FunctionType *NestFTy = NestF->getFunctionType();
4204
4205 AttributeList NestAttrs = NestF->getAttributes();
4206 if (!NestAttrs.isEmpty()) {
4207 unsigned NestArgNo = 0;
4208 Type *NestTy = nullptr;
4209 AttributeSet NestAttr;
4210
4211 // Look for a parameter marked with the 'nest' attribute.
4212 for (FunctionType::param_iterator I = NestFTy->param_begin(),
4213 E = NestFTy->param_end();
4214 I != E; ++NestArgNo, ++I) {
4215 AttributeSet AS = NestAttrs.getParamAttrs(NestArgNo);
4216 if (AS.hasAttribute(Attribute::Nest)) {
4217 // Record the parameter type and any other attributes.
4218 NestTy = *I;
4219 NestAttr = AS;
4220 break;
4221 }
4222 }
4223
4224 if (NestTy) {
4225 std::vector<Value*> NewArgs;
4226 std::vector<AttributeSet> NewArgAttrs;
4227 NewArgs.reserve(Call.arg_size() + 1);
4228 NewArgAttrs.reserve(Call.arg_size());
4229
4230 // Insert the nest argument into the call argument list, which may
4231 // mean appending it. Likewise for attributes.
4232
4233 {
4234 unsigned ArgNo = 0;
4235 auto I = Call.arg_begin(), E = Call.arg_end();
4236 do {
4237 if (ArgNo == NestArgNo) {
4238 // Add the chain argument and attributes.
4239 Value *NestVal = Tramp.getArgOperand(2);
4240 if (NestVal->getType() != NestTy)
4241 NestVal = Builder.CreateBitCast(NestVal, NestTy, "nest");
4242 NewArgs.push_back(NestVal);
4243 NewArgAttrs.push_back(NestAttr);
4244 }
4245
4246 if (I == E)
4247 break;
4248
4249 // Add the original argument and attributes.
4250 NewArgs.push_back(*I);
4251 NewArgAttrs.push_back(Attrs.getParamAttrs(ArgNo));
4252
4253 ++ArgNo;
4254 ++I;
4255 } while (true);
4256 }
4257
4258 // The trampoline may have been bitcast to a bogus type (FTy).
4259 // Handle this by synthesizing a new function type, equal to FTy
4260 // with the chain parameter inserted.
4261
4262 std::vector<Type*> NewTypes;
4263 NewTypes.reserve(FTy->getNumParams()+1);
4264
4265 // Insert the chain's type into the list of parameter types, which may
4266 // mean appending it.
4267 {
4268 unsigned ArgNo = 0;
4269 FunctionType::param_iterator I = FTy->param_begin(),
4270 E = FTy->param_end();
4271
4272 do {
4273 if (ArgNo == NestArgNo)
4274 // Add the chain's type.
4275 NewTypes.push_back(NestTy);
4276
4277 if (I == E)
4278 break;
4279
4280 // Add the original type.
4281 NewTypes.push_back(*I);
4282
4283 ++ArgNo;
4284 ++I;
4285 } while (true);
4286 }
4287
4288 // Replace the trampoline call with a direct call. Let the generic
4289 // code sort out any function type mismatches.
4290 FunctionType *NewFTy =
4291 FunctionType::get(FTy->getReturnType(), NewTypes, FTy->isVarArg());
4292 AttributeList NewPAL =
4293 AttributeList::get(FTy->getContext(), Attrs.getFnAttrs(),
4294 Attrs.getRetAttrs(), NewArgAttrs);
4295
4297 Call.getOperandBundlesAsDefs(OpBundles);
4298
4299 Instruction *NewCaller;
4300 if (InvokeInst *II = dyn_cast<InvokeInst>(&Call)) {
4301 NewCaller = InvokeInst::Create(NewFTy, NestF, II->getNormalDest(),
4302 II->getUnwindDest(), NewArgs, OpBundles);
4303 cast<InvokeInst>(NewCaller)->setCallingConv(II->getCallingConv());
4304 cast<InvokeInst>(NewCaller)->setAttributes(NewPAL);
4305 } else if (CallBrInst *CBI = dyn_cast<CallBrInst>(&Call)) {
4306 NewCaller =
4307 CallBrInst::Create(NewFTy, NestF, CBI->getDefaultDest(),
4308 CBI->getIndirectDests(), NewArgs, OpBundles);
4309 cast<CallBrInst>(NewCaller)->setCallingConv(CBI->getCallingConv());
4310 cast<CallBrInst>(NewCaller)->setAttributes(NewPAL);
4311 } else {
4312 NewCaller = CallInst::Create(NewFTy, NestF, NewArgs, OpBundles);
4313 cast<CallInst>(NewCaller)->setTailCallKind(
4314 cast<CallInst>(Call).getTailCallKind());
4315 cast<CallInst>(NewCaller)->setCallingConv(
4316 cast<CallInst>(Call).getCallingConv());
4317 cast<CallInst>(NewCaller)->setAttributes(NewPAL);
4318 }
4319 NewCaller->setDebugLoc(Call.getDebugLoc());
4320
4321 return NewCaller;
4322 }
4323 }
4324
4325 // Replace the trampoline call with a direct call. Since there is no 'nest'
4326 // parameter, there is no need to adjust the argument list. Let the generic
4327 // code sort out any function type mismatches.
4328 Call.setCalledFunction(FTy, NestF);
4329 return &Call;
4330}
MachineBasicBlock MachineBasicBlock::iterator DebugLoc DL
unsigned Intr
This file declares a class to represent arbitrary precision floating point values and provide a varie...
This file implements a class to represent arbitrary precision integral constant values and operations...
This file implements the APSInt class, which is a simple class that represents an arbitrary sized int...
static cl::opt< ITMode > IT(cl::desc("IT block support"), cl::Hidden, cl::init(DefaultIT), cl::values(clEnumValN(DefaultIT, "arm-default-it", "Generate any type of IT block"), clEnumValN(RestrictedIT, "arm-restrict-it", "Disallow complex IT blocks")))
Atomic ordering constants.
This file contains the simple types necessary to represent the attributes associated with functions a...
BlockVerifier::State From
static GCRegistry::Add< OcamlGC > B("ocaml", "ocaml 3.10-compatible GC")
static GCRegistry::Add< ErlangGC > A("erlang", "erlang-compatible garbage collector")
static GCRegistry::Add< StatepointGC > D("statepoint-example", "an example strategy for statepoint")
This file contains the declarations for the subclasses of Constant, which represent the different fla...
static SDValue foldBitOrderCrossLogicOp(SDNode *N, SelectionDAG &DAG)
return RetTy
Returns the sub type a function will return at a given Idx Should correspond to the result type of an ExtractValue instruction executed with just that one unsigned Idx
#define LLVM_DEBUG(X)
Definition: Debug.h:101
#define DEBUG_WITH_TYPE(TYPE, X)
DEBUG_WITH_TYPE macro - This macro should be used by passes to emit debug information.
Definition: Debug.h:64
uint64_t Size
static GCMetadataPrinterRegistry::Add< ErlangGCPrinter > X("erlang", "erlang-compatible garbage collector")
#define DEBUG_TYPE
IRTranslator LLVM IR MI
static Type * getPromotedType(Type *Ty)
Return the specified type promoted as it would be to pass though a va_arg area.
static Instruction * createOverflowTuple(IntrinsicInst *II, Value *Result, Constant *Overflow)
Creates a result tuple for an overflow intrinsic II with a given Result and a constant Overflow value...
static IntrinsicInst * findInitTrampolineFromAlloca(Value *TrampMem)
static bool removeTriviallyEmptyRange(IntrinsicInst &EndI, InstCombinerImpl &IC, std::function< bool(const IntrinsicInst &)> IsStart)
static bool inputDenormalIsDAZ(const Function &F, const Type *Ty)
static Instruction * reassociateMinMaxWithConstantInOperand(IntrinsicInst *II, InstCombiner::BuilderTy &Builder)
If this min/max has a matching min/max operand with a constant, try to push the constant operand into...
static bool signBitMustBeTheSame(Value *Op0, Value *Op1, Instruction *CxtI, const DataLayout &DL, AssumptionCache *AC, DominatorTree *DT)
Return true if two values Op0 and Op1 are known to have the same sign.
static Instruction * moveAddAfterMinMax(IntrinsicInst *II, InstCombiner::BuilderTy &Builder)
Try to canonicalize min/max(X + C0, C1) as min/max(X, C1 - C0) + C0.
static Instruction * simplifyInvariantGroupIntrinsic(IntrinsicInst &II, InstCombinerImpl &IC)
This function transforms launder.invariant.group and strip.invariant.group like: launder(launder(x)) ...
static bool haveSameOperands(const IntrinsicInst &I, const IntrinsicInst &E, unsigned NumOperands)
static cl::opt< unsigned > GuardWideningWindow("instcombine-guard-widening-window", cl::init(3), cl::desc("How wide an instruction window to bypass looking for " "another guard"))
static bool hasUndefSource(AnyMemTransferInst *MI)
Recognize a memcpy/memmove from a trivially otherwise unused alloca.
static Instruction * foldShuffledIntrinsicOperands(IntrinsicInst *II, InstCombiner::BuilderTy &Builder)
If all arguments of the intrinsic are unary shuffles with the same mask, try to shuffle after the int...
static Instruction * factorizeMinMaxTree(IntrinsicInst *II)
Reduce a sequence of min/max intrinsics with a common operand.
static Value * simplifyNeonTbl1(const IntrinsicInst &II, InstCombiner::BuilderTy &Builder)
Convert a table lookup to shufflevector if the mask is constant.
static Instruction * foldClampRangeOfTwo(IntrinsicInst *II, InstCombiner::BuilderTy &Builder)
If we have a clamp pattern like max (min X, 42), 41 – where the output can only be one of two possibl...
static IntrinsicInst * findInitTrampolineFromBB(IntrinsicInst *AdjustTramp, Value *TrampMem)
static std::optional< bool > getKnownSignOrZero(Value *Op, Instruction *CxtI, const DataLayout &DL, AssumptionCache *AC, DominatorTree *DT)
static Instruction * foldCtpop(IntrinsicInst &II, InstCombinerImpl &IC)
static Instruction * foldCttzCtlz(IntrinsicInst &II, InstCombinerImpl &IC)
static IntrinsicInst * findInitTrampoline(Value *Callee)
static FCmpInst::Predicate fpclassTestIsFCmp0(FPClassTest Mask, const Function &F, Type *Ty)
static Value * reassociateMinMaxWithConstants(IntrinsicInst *II, IRBuilderBase &Builder, const SimplifyQuery &SQ)
If this min/max has a constant operand and an operand that is a matching min/max with a constant oper...
static std::optional< bool > getKnownSign(Value *Op, Instruction *CxtI, const DataLayout &DL, AssumptionCache *AC, DominatorTree *DT)
static CallInst * canonicalizeConstantArg0ToArg1(CallInst &Call)
This file provides internal interfaces used to implement the InstCombine.
This file provides the interface for the instcombine pass implementation.
#define F(x, y, z)
Definition: MD5.cpp:55
#define I(x, y, z)
Definition: MD5.cpp:58
This file contains the declarations for metadata subclasses.
static GCMetadataPrinterRegistry::Add< OcamlGCMetadataPrinter > Y("ocaml", "ocaml 3.10-compatible collector")
const SmallVectorImpl< MachineOperand > & Cond
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
This file implements the SmallBitVector class.
This file defines the SmallVector class.
This file defines the 'Statistic' class, which is designed to be an easy way to expose various metric...
#define STATISTIC(VARNAME, DESC)
Definition: Statistic.h:167
@ Struct
static std::optional< unsigned > getOpcode(ArrayRef< VPValue * > Values)
Returns the opcode of Values or ~0 if they do not all agree.
Definition: VPlanSLP.cpp:191
static bool inputDenormalIsIEEE(const Function &F, const Type *Ty)
Return true if it's possible to assume IEEE treatment of input denormals in F for Val.
Value * RHS
Value * LHS
ModRefInfo getModRefInfoMask(const MemoryLocation &Loc, bool IgnoreLocals=false)
Returns a bitmask that should be unconditionally applied to the ModRef info of a memory location.
bool isNegative() const
Definition: APFloat.h:1295
void clearSign()
Definition: APFloat.h:1159
Class for arbitrary precision integers.
Definition: APInt.h:76
static APInt getAllOnes(unsigned numBits)
Return an APInt of a specified width with all bits set.
Definition: APInt.h:212
static APInt getSignMask(unsigned BitWidth)
Get the SignMask for a specific bit width.
Definition: APInt.h:207
APInt usub_ov(const APInt &RHS, bool &Overflow) const
Definition: APInt.cpp:1918
bool isZero() const
Determine if this value is zero, i.e. all bits are clear.
Definition: APInt.h:358
unsigned getBitWidth() const
Return the number of bits in the APInt.
Definition: APInt.h:1439
bool ult(const APInt &RHS) const
Unsigned less than comparison.
Definition: APInt.h:1089
APInt sadd_ov(const APInt &RHS, bool &Overflow) const
Definition: APInt.cpp:1898
APInt uadd_ov(const APInt &RHS, bool &Overflow) const
Definition: APInt.cpp:1905
static APInt getSignedMinValue(unsigned numBits)
Gets minimum signed value of APInt for a specific bit width.
Definition: APInt.h:197
APInt uadd_sat(const APInt &RHS) const
Definition: APInt.cpp:2006
bool isNonNegative() const
Determine if this APInt Value is non-negative (>= 0)
Definition: APInt.h:312
static APInt getLowBitsSet(unsigned numBits, unsigned loBitsSet)
Constructs an APInt value that has the bottom loBitsSet bits set.
Definition: APInt.h:284
APInt ssub_ov(const APInt &RHS, bool &Overflow) const
Definition: APInt.cpp:1911
static APSInt getMinValue(uint32_t numBits, bool Unsigned)
Return the APSInt representing the minimum integer value with the given bit width and signedness.
Definition: APSInt.h:311
static APSInt getMaxValue(uint32_t numBits, bool Unsigned)
Return the APSInt representing the maximum integer value with the given bit width and signedness.
Definition: APSInt.h:303
This class represents any memset intrinsic.
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
Definition: ArrayRef.h:41
A cache of @llvm.assume calls within a function.
void registerAssumption(AssumeInst *CI)
Add an @llvm.assume intrinsic to this function's cache.
void updateAffectedValues(AssumeInst *CI)
Update the cache of values being affected by this assumption (i.e.
bool overlaps(const AttributeMask &AM) const
Return true if the builder has any attribute that's in the specified builder.
AttributeSet getFnAttrs() const
The function attributes are returned.
static AttributeList get(LLVMContext &C, ArrayRef< std::pair< unsigned, Attribute > > Attrs)
Create an AttributeList with the specified parameters in it.
bool isEmpty() const
Return true if there are no attributes.
Definition: Attributes.h:977
AttributeSet getRetAttrs() const
The attributes for the ret value are returned.
bool hasFnAttr(Attribute::AttrKind Kind) const
Return true if the attribute exists for the function.
bool hasAttrSomewhere(Attribute::AttrKind Kind, unsigned *Index=nullptr) const
Return true if the specified attribute is set for at least one parameter or for the return value.
bool hasParamAttr(unsigned ArgNo, Attribute::AttrKind Kind) const
Return true if the attribute exists for the given argument.
Definition: Attributes.h:788
AttributeSet getParamAttrs(unsigned ArgNo) const
The attributes for the argument or parameter at the given index are returned.
AttributeList addParamAttribute(LLVMContext &C, unsigned ArgNo, Attribute::AttrKind Kind) const
Add an argument attribute to the list.
Definition: Attributes.h:589
bool hasAttribute(Attribute::AttrKind Kind) const
Return true if the attribute exists in this set.
Definition: Attributes.cpp:841
AttributeSet removeAttributes(LLVMContext &C, const AttributeMask &AttrsToRemove) const
Remove the specified attributes from this set.
Definition: Attributes.cpp:826
static AttributeSet get(LLVMContext &C, const AttrBuilder &B)
Definition: Attributes.cpp:774
static Attribute get(LLVMContext &Context, AttrKind Kind, uint64_t Val=0)
Return a uniquified Attribute object.
Definition: Attributes.cpp:93
static Attribute getWithDereferenceableBytes(LLVMContext &Context, uint64_t Bytes)
Definition: Attributes.cpp:204
static Attribute getWithDereferenceableOrNullBytes(LLVMContext &Context, uint64_t Bytes)
Definition: Attributes.cpp:210
static Attribute getWithAlignment(LLVMContext &Context, Align Alignment)
Return a uniquified Attribute object that has the specific alignment set.
Definition: Attributes.cpp:194
LLVM Basic Block Representation.
Definition: BasicBlock.h:60
iterator begin()
Instruction iterator methods.
Definition: BasicBlock.h:430
InstListType::reverse_iterator reverse_iterator
Definition: BasicBlock.h:167
reverse_iterator rend()
Definition: BasicBlock.h:448
InstListType::iterator iterator
Instruction iterators...
Definition: BasicBlock.h:165
const Instruction * getTerminator() const LLVM_READONLY
Returns the terminator instruction if the block is well formed or null if the block is not well forme...
Definition: BasicBlock.h:221
Value * getRHS() const
bool isSigned() const
Whether the intrinsic is signed or unsigned.
Instruction::BinaryOps getBinaryOp() const
Returns the binary operation underlying the intrinsic.
Value * getLHS() const
static BinaryOperator * Create(BinaryOps Op, Value *S1, Value *S2, const Twine &Name, BasicBlock::iterator InsertBefore)
Construct a binary instruction, given the opcode and the two operands.
static BinaryOperator * CreateNSWNeg(Value *Op, const Twine &Name, BasicBlock::iterator InsertBefore)
static BinaryOperator * CreateNSW(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name="")
Definition: InstrTypes.h:367
static BinaryOperator * CreateNeg(Value *Op, const Twine &Name, BasicBlock::iterator InsertBefore)
Helper functions to construct and inspect unary operations (NEG and NOT) via binary operators SUB and...
static BinaryOperator * CreateNUW(BinaryOps Opc, Value *V1, Value *V2, const Twine &Name="")
Definition: InstrTypes.h:392
static BinaryOperator * CreateFMulFMF(Value *V1, Value *V2, FastMathFlags FMF, const Twine &Name="")
Definition: InstrTypes.h:332
static BinaryOperator * CreateNot(Value *Op, const Twine &Name, BasicBlock::iterator InsertBefore)
static BinaryOperator * CreateFDivFMF(Value *V1, Value *V2, FastMathFlags FMF, const Twine &Name="")
Definition: InstrTypes.h:336
static BinaryOperator * CreateWithCopiedFlags(BinaryOps Opc, Value *V1, Value *V2, Value *CopyO, const Twine &Name, BasicBlock::iterator InsertBefore)
Definition: InstrTypes.h:299
Base class for all callable instructions (InvokeInst and CallInst) Holds everything related to callin...
Definition: InstrTypes.h:1494
void setCallingConv(CallingConv::ID CC)
Definition: InstrTypes.h:1804
bundle_op_iterator bundle_op_info_begin()
Return the start of the list of BundleOpInfo instances associated with this OperandBundleUser.
Definition: InstrTypes.h:2572
void setDoesNotThrow()
Definition: InstrTypes.h:2284
void addRangeRetAttr(const ConstantRange &CR)
adds the range attribute to the list of attributes.
Definition: InstrTypes.h:1945
MaybeAlign getRetAlign() const
Extract the alignment of the return value.
Definition: InstrTypes.h:2106
void getOperandBundlesAsDefs(SmallVectorImpl< OperandBundleDef > &Defs) const
Return the list of operand bundles attached to this instruction as a vector of OperandBundleDefs.
OperandBundleUse getOperandBundleAt(unsigned Index) const
Return the operand bundle at a specific index.
Definition: InstrTypes.h:2380
std::optional< OperandBundleUse > getOperandBundle(StringRef Name) const
Return an operand bundle by name, if present.
Definition: InstrTypes.h:2411
Function * getCalledFunction() const
Returns the function called, or null if this is an indirect function invocation or the function signa...
Definition: InstrTypes.h:1742
bool hasRetAttr(Attribute::AttrKind Kind) const
Determine whether the return value has the given attribute.
Definition: InstrTypes.h:1950
unsigned getNumOperandBundles() const
Return the number of operand bundles associated with this User.
Definition: InstrTypes.h:2324
CallingConv::ID getCallingConv() const
Definition: InstrTypes.h:1800
static CallBase * Create(CallBase *CB, ArrayRef< OperandBundleDef > Bundles, BasicBlock::iterator InsertPt)
Create a clone of CB with a different set of operand bundles and insert it before InsertPt.
static CallBase * removeOperandBundle(CallBase *CB, uint32_t ID, Instruction *InsertPt=nullptr)
Create a clone of CB with operand bundle ID removed.
Value * getCalledOperand() const
Definition: InstrTypes.h:1735
void setAttributes(AttributeList A)
Set the parameter attributes for this call.
Definition: InstrTypes.h:1823
bool doesNotThrow() const
Determine if the call cannot unwind.
Definition: InstrTypes.h:2283
void addRetAttr(Attribute::AttrKind Kind)
Adds the attribute to the return value.
Definition: InstrTypes.h:1861
Value * getArgOperand(unsigned i) const
Definition: InstrTypes.h:1687
void setArgOperand(unsigned i, Value *v)
Definition: InstrTypes.h:1692
FunctionType * getFunctionType() const
Definition: InstrTypes.h:1600
Intrinsic::ID getIntrinsicID() const
Returns the intrinsic ID of the intrinsic called or Intrinsic::not_intrinsic if the called function i...
iterator_range< User::op_iterator > args()
Iteration adapter for range-for loops.
Definition: InstrTypes.h:1678
unsigned arg_size() const
Definition: InstrTypes.h:1685
bool hasOperandBundles() const
Return true if this User has any operand bundles.
Definition: InstrTypes.h:2329
void setCalledFunction(Function *Fn)
Sets the function called, including updating the function type.
Definition: InstrTypes.h:1781
CallBr instruction, tracking function calls that may not return control but instead transfer it to a ...
static CallBrInst * Create(FunctionType *Ty, Value *Func, BasicBlock *DefaultDest, ArrayRef< BasicBlock * > IndirectDests, ArrayRef< Value * > Args, const Twine &NameStr, BasicBlock::iterator InsertBefore)
This class represents a function call, abstracting a target machine's calling convention.
bool isNoTailCall() const
static CallInst * Create(FunctionType *Ty, Value *F, const Twine &NameStr, BasicBlock::iterator InsertBefore)
void setTailCallKind(TailCallKind TCK)
bool isMustTailCall() const
static Instruction::CastOps getCastOpcode(const Value *Val, bool SrcIsSigned, Type *Ty, bool DstIsSigned)
Returns the opcode necessary to cast Val into Ty using usual casting rules.
static CastInst * Create(Instruction::CastOps, Value *S, Type *Ty, const Twine &Name, BasicBlock::iterator InsertBefore)
Provides a way to construct any of the CastInst subclasses using an opcode instead of the subclass's ...
static bool isBitOrNoopPointerCastable(Type *SrcTy, Type *DestTy, const DataLayout &DL)
Check whether a bitcast, inttoptr, or ptrtoint cast between these types is valid and a no-op.
static CastInst * CreateBitOrPointerCast(Value *S, Type *Ty, const Twine &Name, BasicBlock::iterator InsertBefore)
Create a BitCast, a PtrToInt, or an IntToPTr cast instruction.
static CastInst * CreateIntegerCast(Value *S, Type *Ty, bool isSigned, const Twine &Name, BasicBlock::iterator InsertBefore)
Create a ZExt, BitCast, or Trunc for int -> int casts.
Predicate
This enumeration lists the possible predicates for CmpInst subclasses.
Definition: InstrTypes.h:993
@ FCMP_OEQ
0 0 0 1 True if ordered and equal
Definition: InstrTypes.h:996
@ ICMP_SLT
signed less than
Definition: InstrTypes.h:1022
@ ICMP_SLE
signed less or equal
Definition: InstrTypes.h:1023
@ FCMP_OLT
0 1 0 0 True if ordered and less than
Definition: InstrTypes.h:999
@ FCMP_OGT
0 0 1 0 True if ordered and greater than
Definition: InstrTypes.h:997
@ FCMP_OGE
0 0 1 1 True if ordered and greater than or equal
Definition: InstrTypes.h:998
@ ICMP_UGT
unsigned greater than
Definition: InstrTypes.h:1016
@ ICMP_SGT
signed greater than
Definition: InstrTypes.h:1020
@ FCMP_ONE
0 1 1 0 True if ordered and operands are unequal
Definition: InstrTypes.h:1001
@ FCMP_UEQ
1 0 0 1 True if unordered or equal
Definition: InstrTypes.h:1004
@ ICMP_ULT
unsigned less than
Definition: InstrTypes.h:1018
@ FCMP_OLE
0 1 0 1 True if ordered and less than or equal
Definition: InstrTypes.h:1000
@ ICMP_EQ
equal
Definition: InstrTypes.h:1014
@ ICMP_NE
not equal
Definition: InstrTypes.h:1015
@ FCMP_UNE
1 1 1 0 True if unordered or not equal
Definition: InstrTypes.h:1009
Predicate getSwappedPredicate() const
For example, EQ->EQ, SLE->SGE, ULT->UGT, OEQ->OEQ, ULE->UGE, OLT->OGT, etc.
Definition: InstrTypes.h:1167
Predicate getNonStrictPredicate() const
For example, SGT -> SGE, SLT -> SLE, ULT -> ULE, UGT -> UGE.
Definition: InstrTypes.h:1211
Predicate getUnorderedPredicate() const
Definition: InstrTypes.h:1151
static ConstantAggregateZero * get(Type *Ty)
Definition: Constants.cpp:1663
static Constant * getSub(Constant *C1, Constant *C2, bool HasNUW=false, bool HasNSW=false)
Definition: Constants.cpp:2542
static Constant * getNeg(Constant *C, bool HasNSW=false)
Definition: Constants.cpp:2523
static Constant * getInfinity(Type *Ty, bool Negative=false)
Definition: Constants.cpp:1083
static Constant * getZero(Type *Ty, bool Negative=false)
Definition: Constants.cpp:1037
This is the shared class of boolean and integer constants.
Definition: Constants.h:80
uint64_t getLimitedValue(uint64_t Limit=~0ULL) const
getLimitedValue - If the value is smaller than the specified limit, return it, otherwise return the l...
Definition: Constants.h:255
static ConstantInt * getTrue(LLVMContext &Context)
Definition: Constants.cpp:849
uint64_t getZExtValue() const
Return the constant as a 64-bit unsigned integer value after it has been zero extended as appropriate...
Definition: Constants.h:154
const APInt & getValue() const
Return the constant as an APInt value reference.
Definition: Constants.h:145
static ConstantInt * getBool(LLVMContext &Context, bool V)
Definition: Constants.cpp:863
static ConstantPointerNull * get(PointerType *T)
Static factory methods - Return objects of the specified value.
Definition: Constants.cpp:1775
This class represents a range of values.
Definition: ConstantRange.h:47
bool isFullSet() const
Return true if this set contains all of the elements possible for this data-type.
bool icmp(CmpInst::Predicate Pred, const ConstantRange &Other) const
Does the predicate Pred hold between ranges this and Other? NOTE: false does not mean that inverse pr...
static Constant * get(StructType *T, ArrayRef< Constant * > V)
Definition: Constants.cpp:1356
This is an important base class in LLVM.
Definition: Constant.h:41
static Constant * getIntegerValue(Type *Ty, const APInt &V)
Return the value for an integer or pointer constant, or a vector thereof, with the given scalar value...
Definition: Constants.cpp:400
static Constant * getAllOnesValue(Type *Ty)
Definition: Constants.cpp:417
static Constant * getNullValue(Type *Ty)
Constructor to create a '0' constant of arbitrary type.
Definition: Constants.cpp:370
This class represents an Operation in the Expression.
A parsed version of the target data layout string in and methods for querying it.
Definition: DataLayout.h:110
unsigned getPointerTypeSizeInBits(Type *) const
Layout pointer size, in bits, based on the type.
Definition: DataLayout.cpp:763
unsigned size() const
Definition: DenseMap.h:99
size_type count(const_arg_type_t< KeyT > Val) const
Return 1 if the specified key is in the map, 0 otherwise.
Definition: DenseMap.h:151
Concrete subclass of DominatorTreeBase that is used to compute a normal dominator tree.
Definition: Dominators.h:162
This class represents an extension of floating point types.
Convenience struct for specifying and reasoning about fast-math flags.
Definition: FMF.h:20
bool noSignedZeros() const
Definition: FMF.h:68
void setNoSignedZeros(bool B=true)
Definition: FMF.h:85
bool allowReassoc() const
Flag queries.
Definition: FMF.h:65
An instruction for ordering other memory operations.
Definition: Instructions.h:460
SyncScope::ID getSyncScopeID() const
Returns the synchronization scope ID of this fence instruction.
Definition: Instructions.h:498
AtomicOrdering getOrdering() const
Returns the ordering constraint of this fence instruction.
Definition: Instructions.h:487
Class to represent function types.
Definition: DerivedTypes.h:103
Type::subtype_iterator param_iterator
Definition: DerivedTypes.h:126
static FunctionType * get(Type *Result, ArrayRef< Type * > Params, bool isVarArg)
This static method is the primary way of constructing a FunctionType.
bool isConvergent() const
Determine if the call is convergent.
Definition: Function.h:592
FunctionType * getFunctionType() const
Returns the FunctionType for me.
Definition: Function.h:202
CallingConv::ID getCallingConv() const
getCallingConv()/setCallingConv(CC) - These method get and set the calling convention of this functio...
Definition: Function.h:264
AttributeList getAttributes() const
Return the attribute list for this Function.
Definition: Function.h:340
bool doesNotThrow() const
Determine if the function cannot unwind.
Definition: Function.h:576
bool isIntrinsic() const
isIntrinsic - Returns true if the function's name starts with "llvm.".
Definition: Function.h:237
bool hasFnAttribute(Attribute::AttrKind Kind) const
Return true if the function has the attribute.
Definition: Function.cpp:677
Represents calls to the gc.relocate intrinsic.
Value * getBasePtr() const
unsigned getBasePtrIndex() const
The index into the associate statepoint's argument list which contains the base pointer of the pointe...
Value * getDerivedPtr() const
unsigned getDerivedPtrIndex() const
The index into the associate statepoint's argument list which contains the pointer whose relocation t...
Represents a gc.statepoint intrinsic call.
Definition: Statepoint.h:61
std::vector< const GCRelocateInst * > getGCRelocates() const
Get list of all gc reloactes linked to this statepoint May contain several relocations for the same b...
Definition: Statepoint.h:206
MDNode * getMetadata(unsigned KindID) const
Get the current metadata attachments for the given kind, if any.
Definition: Value.h:565
bool isDeclaration() const
Return true if the primary definition of this global value is outside of the current translation unit...
Definition: Globals.cpp:281
PointerType * getType() const
Global values are always pointers.
Definition: GlobalValue.h:294
Common base class shared among various IRBuilders.
Definition: IRBuilder.h:94
Value * CreateFCmpONE(Value *LHS, Value *RHS, const Twine &Name="", MDNode *FPMathTag=nullptr)
Definition: IRBuilder.h:2306
CallInst * CreateUnaryIntrinsic(Intrinsic::ID ID, Value *V, Instruction *FMFSource=nullptr, const Twine &Name="")
Create a call to intrinsic ID with 1 operand which is mangled on its type.
Definition: IRBuilder.cpp:913
Value * CreateLaunderInvariantGroup(Value *Ptr)
Create a launder.invariant.group intrinsic call.
Definition: IRBuilder.cpp:1118
Value * CreateBinaryIntrinsic(Intrinsic::ID ID, Value *LHS, Value *RHS, Instruction *FMFSource=nullptr, const Twine &Name="")
Create a call to intrinsic ID with 2 operands which is mangled on the first type.
Definition: IRBuilder.cpp:921
Value * CreateFCmp(CmpInst::Predicate P, Value *LHS, Value *RHS, const Twine &Name="", MDNode *FPMathTag=nullptr)
Definition: IRBuilder.h:2361
IntegerType * getInt1Ty()
Fetch the type representing a single bit.
Definition: IRBuilder.h:511
Value * CreateExtractElement(Value *Vec, Value *Idx, const Twine &Name="")
Definition: IRBuilder.h:2460
IntegerType * getIntNTy(unsigned N)
Fetch the type representing an N-bit integer.
Definition: IRBuilder.h:539
LoadInst * CreateAlignedLoad(Type *Ty, Value *Ptr, MaybeAlign Align, const char *Name)
Definition: IRBuilder.h:1807
Value * CreateFCmpORD(Value *LHS, Value *RHS, const Twine &Name="", MDNode *FPMathTag=nullptr)
Definition: IRBuilder.h:2311
Value * CreateZExtOrTrunc(Value *V, Type *DestTy, const Twine &Name="")
Create a ZExt or Trunc from the integer value V to DestTy.
Definition: IRBuilder.h:2039
Value * CreateFAdd(Value *L, Value *R, const Twine &Name="", MDNode *FPMD=nullptr)
Definition: IRBuilder.h:1533
CallInst * CreateAndReduce(Value *Src)
Create a vector int AND reduction intrinsic of the source vector.
Definition: IRBuilder.cpp:441
Value * CreateVectorSplat(unsigned NumElts, Value *V, const Twine &Name="")
Return a vector value that contains.
Definition: IRBuilder.cpp:1193
ConstantInt * getTrue()
Get the constant value for i1 true.
Definition: IRBuilder.h:466
CallInst * CreateIntrinsic(Intrinsic::ID ID, ArrayRef< Type * > Types, ArrayRef< Value * > Args, Instruction *FMFSource=nullptr, const Twine &Name="")
Create a call to intrinsic ID with Args, mangled using Types.
Definition: IRBuilder.cpp:932
Value * CreateFNegFMF(Value *V, Instruction *FMFSource, const Twine &Name="")
Copy fast-math-flags from an instruction rather than using the builder's default FMF.
Definition: IRBuilder.h:1740
Value * CreateSelect(Value *C, Value *True, Value *False, const Twine &Name="", Instruction *MDFrom=nullptr)
Definition: IRBuilder.cpp:1091
InvokeInst * CreateInvoke(FunctionType *Ty, Value *Callee, BasicBlock *NormalDest, BasicBlock *UnwindDest, ArrayRef< Value * > Args, ArrayRef< OperandBundleDef > OpBundles, const Twine &Name="")
Create an invoke instruction.
Definition: IRBuilder.h:1158
Value * CreateFCmpUNE(Value *LHS, Value *RHS, const Twine &Name="", MDNode *FPMathTag=nullptr)
Definition: IRBuilder.h:2346
CallInst * CreateAddReduce(Value *Src)
Create a vector int add reduction intrinsic of the source vector.
Definition: IRBuilder.cpp:433
Value * CreateLShr(Value *LHS, Value *RHS, const Twine &Name="", bool isExact=false)
Definition: IRBuilder.h:1437
IntegerType * getInt32Ty()
Fetch the type representing a 32-bit integer.
Definition: IRBuilder.h:526
void setFastMathFlags(FastMathFlags NewFMF)
Set the fast-math flags to be used with generated fp-math operators.
Definition: IRBuilder.h:311
Value * CreateNSWMul(Value *LHS, Value *RHS, const Twine &Name="")
Definition: IRBuilder.h:1370
Value * CreateICmpNE(Value *LHS, Value *RHS, const Twine &Name="")
Definition: IRBuilder.h:2245
Value * CreateNeg(Value *V, const Twine &Name="", bool HasNSW=false)
Definition: IRBuilder.h:1721
CallInst * CreateOrReduce(Value *Src)
Create a vector int OR reduction intrinsic of the source vector.
Definition: IRBuilder.cpp:445
ConstantInt * getInt32(uint32_t C)
Get a constant 32-bit value.
Definition: IRBuilder.h:486
Value * CreateBitOrPointerCast(Value *V, Type *DestTy, const Twine &Name="")
Definition: IRBuilder.h:2205
Value * CreateNot(Value *V, const Twine &Name="")
Definition: IRBuilder.h:1749
Value * CreateICmpEQ(Value *LHS, Value *RHS, const Twine &Name="")
Definition: IRBuilder.h:2241
Value * CreateFCmpUEQ(Value *LHS, Value *RHS, const Twine &Name="", MDNode *FPMathTag=nullptr)
Definition: IRBuilder.h:2321
Value * CreateSub(Value *LHS, Value *RHS, const Twine &Name="", bool HasNUW=false, bool HasNSW=false)
Definition: IRBuilder.h:1344
Value * CreateBitCast(Value *V, Type *DestTy, const Twine &Name="")
Definition: IRBuilder.h:2127
LoadInst * CreateLoad(Type *Ty, Value *Ptr, const char *Name)
Provided to resolve 'CreateLoad(Ty, Ptr, "...")' correctly, instead of converting the string to 'bool...
Definition: IRBuilder.h:1790
Value * CreateZExt(Value *V, Type *DestTy, const Twine &Name="", bool IsNonNeg=false)
Definition: IRBuilder.h:2021
Value * CreateShuffleVector(Value *V1, Value *V2, Value *Mask, const Twine &Name="")
Definition: IRBuilder.h:2494
Value * CreateFCmpOEQ(Value *LHS, Value *RHS, const Twine &Name="", MDNode *FPMathTag=nullptr)
Definition: IRBuilder.h:2281
Value * CreateAnd(Value *LHS, Value *RHS, const Twine &Name="")
Definition: IRBuilder.h:1475
StoreInst * CreateStore(Value *Val, Value *Ptr, bool isVolatile=false)
Definition: IRBuilder.h:1803
Value * CreateAdd(Value *LHS, Value *RHS, const Twine &Name="", bool HasNUW=false, bool HasNSW=false)
Definition: IRBuilder.h:1327
ConstantInt * getFalse()
Get the constant value for i1 false.
Definition: IRBuilder.h:471
Value * CreateIsNotNull(Value *Arg, const Twine &Name="")
Return a boolean value testing if Arg != 0.
Definition: IRBuilder.h:2549
Value * CreateTrunc(Value *V, Type *DestTy, const Twine &Name="", bool IsNUW=false, bool IsNSW=false)
Definition: IRBuilder.h:2007
Value * CreateElementCount(Type *DstType, ElementCount EC)
Create an expression which evaluates to the number of elements in EC at runtime.
Definition: IRBuilder.cpp:99
Value * CreateCast(Instruction::CastOps Op, Value *V, Type *DestTy, const Twine &Name="")
Definition: IRBuilder.h:2161
Value * CreateIntCast(Value *V, Type *DestTy, bool isSigned, const Twine &Name="")
Definition: IRBuilder.h:2196
Value * CreateFCmpUNO(Value *LHS, Value *RHS, const Twine &Name="", MDNode *FPMathTag=nullptr)
Definition: IRBuilder.h:2316
CallInst * CreateCall(FunctionType *FTy, Value *Callee, ArrayRef< Value * > Args=std::nullopt, const Twine &Name="", MDNode *FPMathTag=nullptr)
Definition: IRBuilder.h:2412
Value * CreateICmp(CmpInst::Predicate P, Value *LHS, Value *RHS, const Twine &Name="")
Definition: IRBuilder.h:2351
Value * CreateFMul(Value *L, Value *R, const Twine &Name="", MDNode *FPMD=nullptr)
Definition: IRBuilder.h:1587
Value * CreateFNeg(Value *V, const Twine &Name="", MDNode *FPMathTag=nullptr)
Definition: IRBuilder.h:1730
Value * CreateAddrSpaceCast(Value *V, Type *DestTy, const Twine &Name="")
Definition: IRBuilder.h:2132
Value * CreateMul(Value *LHS, Value *RHS, const Twine &Name="", bool HasNUW=false, bool HasNSW=false)
Definition: IRBuilder.h:1361
Value * CreateStripInvariantGroup(Value *Ptr)
Create a strip.invariant.group intrinsic call.
Definition: IRBuilder.cpp:1134
static InsertValueInst * Create(Value *Agg, Value *Val, ArrayRef< unsigned > Idxs, const Twine &NameStr, BasicBlock::iterator InsertBefore)
Instruction * FoldOpIntoSelect(Instruction &Op, SelectInst *SI, bool FoldWithMultiUse=false)
Given an instruction with a select as one operand and a constant as the other operand,...
KnownFPClass computeKnownFPClass(Value *Val, FastMathFlags FMF, FPClassTest Interested=fcAllFlags, const Instruction *CtxI=nullptr, unsigned Depth=0) const
bool SimplifyDemandedBits(Instruction *I, unsigned Op, const APInt &DemandedMask, KnownBits &Known, unsigned Depth=0) override
This form of SimplifyDemandedBits simplifies the specified instruction operand if possible,...
Value * SimplifyDemandedVectorElts(Value *V, APInt DemandedElts, APInt &PoisonElts, unsigned Depth=0, bool AllowMultipleUsers=false) override
The specified value produces a vector with any number of elements.
Instruction * SimplifyAnyMemSet(AnyMemSetInst *MI)
Constant * getLosslessUnsignedTrunc(Constant *C, Type *TruncTy)
Instruction * visitFree(CallInst &FI, Value *FreedOp)
Instruction * visitCallBrInst(CallBrInst &CBI)
Instruction * eraseInstFromFunction(Instruction &I) override
Combiner aware instruction erasure.
Instruction * visitFenceInst(FenceInst &FI)
Instruction * visitInvokeInst(InvokeInst &II)
Constant * getLosslessSignedTrunc(Constant *C, Type *TruncTy)
bool SimplifyDemandedInstructionBits(Instruction &Inst)
Tries to simplify operands to an integer instruction based on its demanded bits.
void CreateNonTerminatorUnreachable(Instruction *InsertAt)
Create and insert the idiom we use to indicate a block is unreachable without having to rewrite the C...
Instruction * visitVAEndInst(VAEndInst &I)
Instruction * matchBSwapOrBitReverse(Instruction &I, bool MatchBSwaps, bool MatchBitReversals)
Given an initial instruction, check to see if it is the root of a bswap/bitreverse idiom.
Instruction * visitAllocSite(Instruction &FI)
Instruction * SimplifyAnyMemTransfer(AnyMemTransferInst *MI)
OverflowResult computeOverflow(Instruction::BinaryOps BinaryOp, bool IsSigned, Value *LHS, Value *RHS, Instruction *CxtI) const
Instruction * visitCallInst(CallInst &CI)
CallInst simplification.
SimplifyQuery SQ
Definition: InstCombiner.h:76
bool isFreeToInvert(Value *V, bool WillInvertAllUses, bool &DoesConsume)
Return true if the specified value is free to invert (apply ~ to).
Definition: InstCombiner.h:232
DominatorTree & getDominatorTree() const
Definition: InstCombiner.h:340
BlockFrequencyInfo * BFI
Definition: InstCombiner.h:78
TargetLibraryInfo & TLI
Definition: InstCombiner.h:73
bool isKnownToBeAPowerOfTwo(const Value *V, bool OrZero=false, unsigned Depth=0, const Instruction *CxtI=nullptr)
Definition: InstCombiner.h:441
Instruction * InsertNewInstBefore(Instruction *New, BasicBlock::iterator Old)
Inserts an instruction New before instruction Old.
Definition: InstCombiner.h:366
AAResults * AA
Definition: InstCombiner.h:69
Instruction * replaceInstUsesWith(Instruction &I, Value *V)
A combiner-aware RAUW-like routine.
Definition: InstCombiner.h:386
void replaceUse(Use &U, Value *NewValue)
Replace use and add the previously used value to the worklist.
Definition: InstCombiner.h:418
InstructionWorklist & Worklist
A worklist of the instructions that need to be simplified.
Definition: InstCombiner.h:64
const DataLayout & DL
Definition: InstCombiner.h:75
std::optional< Instruction * > targetInstCombineIntrinsic(IntrinsicInst &II)
AssumptionCache & AC
Definition: InstCombiner.h:72
Instruction * replaceOperand(Instruction &I, unsigned OpNum, Value *V)
Replace operand of instruction and add old operand to the worklist.
Definition: InstCombiner.h:410
DominatorTree & DT
Definition: InstCombiner.h:74
ProfileSummaryInfo * PSI
Definition: InstCombiner.h:80
void computeKnownBits(const Value *V, KnownBits &Known, unsigned Depth, const Instruction *CxtI) const
Definition: InstCombiner.h:431
BuilderTy & Builder
Definition: InstCombiner.h:60
AssumptionCache & getAssumptionCache() const
Definition: InstCombiner.h:338
bool MaskedValueIsZero(const Value *V, const APInt &Mask, unsigned Depth=0, const Instruction *CxtI=nullptr) const
Definition: InstCombiner.h:447
OptimizationRemarkEmitter & ORE
Definition: InstCombiner.h:77
Value * getFreelyInverted(Value *V, bool WillInvertAllUses, BuilderTy *Builder, bool &DoesConsume)
Definition: InstCombiner.h:213
const SimplifyQuery & getSimplifyQuery() const
Definition: InstCombiner.h:342
unsigned ComputeMaxSignificantBits(const Value *Op, unsigned Depth=0, const Instruction *CxtI=nullptr) const
Definition: InstCombiner.h:457
void pushUsersToWorkList(Instruction &I)
When an instruction is simplified, add all users of the instruction to the work lists because they mi...
void add(Instruction *I)
Add instruction to the worklist.
void copyFastMathFlags(FastMathFlags FMF)
Convenience function for transferring all fast-math flag values to this instruction,...
bool mayWriteToMemory() const LLVM_READONLY
Return true if this instruction may modify memory.
void copyIRFlags(const Value *V, bool IncludeWrapFlags=true)
Convenience method to copy supported exact, fast-math, and (optionally) wrapping flags from V to this...
const Module * getModule() const
Return the module owning the function this instruction belongs to or nullptr it the function does not...
Definition: Instruction.cpp:83
void setAAMetadata(const AAMDNodes &N)
Sets the AA metadata on this instruction from the AAMDNodes structure.
Definition: Metadata.cpp:1720
void andIRFlags(const Value *V)
Logical 'and' of any supported wrapping, exact, and fast-math flags of V and this instruction.
const Instruction * getPrevNonDebugInstruction(bool SkipPseudoOp=false) const
Return a pointer to the previous non-debug instruction in the same basic block as 'this',...
void setFastMathFlags(FastMathFlags FMF)
Convenience function for setting multiple fast-math flags on this instruction, which must be an opera...
const BasicBlock * getParent() const
Definition: Instruction.h:152
bool isFast() const LLVM_READONLY
Determine whether all fast-math-flags are set.
Instruction * user_back()
Specialize the methods defined in Value, as we know that an instruction can only be used by other ins...
Definition: Instruction.h:149
const Function * getFunction() const
Return the function this instruction belongs to.
Definition: Instruction.cpp:87
MDNode * getMetadata(unsigned KindID) const
Get the metadata of given kind attached to this Instruction.
Definition: Instruction.h:359
bool mayHaveSideEffects() const LLVM_READONLY
Return true if the instruction may have side effects.
const Instruction * getNextNonDebugInstruction(bool SkipPseudoOp=false) const
Return a pointer to the next non-debug instruction in the same basic block as 'this',...
void setMetadata(unsigned KindID, MDNode *Node)
Set the metadata of the specified kind to the specified node.
Definition: Metadata.cpp:1635
FastMathFlags getFastMathFlags() const LLVM_READONLY
Convenience function for getting all the fast-math flags, which must be an operator which supports th...
unsigned getOpcode() const
Returns a member of one of the enums like Instruction::Add.
Definition: Instruction.h:252
std::optional< InstListType::iterator > getInsertionPointAfterDef()
Get the first insertion point at which the result of this instruction is defined.
bool isIdenticalTo(const Instruction *I) const LLVM_READONLY
Return true if the specified instruction is exactly identical to the current one.
void setDebugLoc(DebugLoc Loc)
Set the debug location information for this instruction.
Definition: Instruction.h:451
void copyMetadata(const Instruction &SrcInst, ArrayRef< unsigned > WL=ArrayRef< unsigned >())
Copy metadata from SrcInst to this instruction.
bool hasAllowReassoc() const LLVM_READONLY
Determine whether the allow-reassociation flag is set.
void moveBefore(Instruction *MovePos)
Unlink this instruction from its current basic block and insert it into the basic block that MovePos ...
Class to represent integer types.
Definition: DerivedTypes.h:40
static IntegerType * get(LLVMContext &C, unsigned NumBits)
This static method is the primary way of constructing an IntegerType.
Definition: Type.cpp:278
A wrapper class for inspecting calls to intrinsic functions.
Definition: IntrinsicInst.h:47
Intrinsic::ID getIntrinsicID() const
Return the intrinsic ID of this intrinsic.
Definition: IntrinsicInst.h:54
bool isCommutative() const
Return true if swapping the first two arguments to the intrinsic produces the same result.
Definition: IntrinsicInst.h:72
Invoke instruction.
static InvokeInst * Create(FunctionType *Ty, Value *Func, BasicBlock *IfNormal, BasicBlock *IfException, ArrayRef< Value * > Args, const Twine &NameStr, BasicBlock::iterator InsertBefore)
This is an important class for using LLVM in a threaded context.
Definition: LLVMContext.h:67
LibCallSimplifier - This class implements a collection of optimizations that replace well formed call...
An instruction for reading from memory.
Definition: Instructions.h:184
Metadata node.
Definition: Metadata.h:1067
static MDTuple * get(LLVMContext &Context, ArrayRef< Metadata * > MDs)
Definition: Metadata.h:1541
ICmpInst::Predicate getPredicate() const
Returns the comparison predicate underlying the intrinsic.
bool isSigned() const
Whether the intrinsic is signed or unsigned.
A Module instance is used to store all the information related to an LLVM module.
Definition: Module.h:65
const DataLayout & getDataLayout() const
Get the data layout for the module's target platform.
Definition: Module.h:293
A container for an operand bundle being viewed as a set of values rather than a set of uses.
Definition: InstrTypes.h:1447
static PoisonValue * get(Type *T)
Static factory methods - Return an 'poison' object of the specified type.
Definition: Constants.cpp:1827
Represents a saturating add/sub intrinsic.
This class represents the LLVM 'select' instruction.
static SelectInst * Create(Value *C, Value *S1, Value *S2, const Twine &NameStr, BasicBlock::iterator InsertBefore, Instruction *MDFrom=nullptr)
This instruction constructs a fixed permutation of two input vectors.
This is a 'bitvector' (really, a variable-sized bit array), optimized for the case when the array is ...
SmallBitVector & set()
bool test(unsigned Idx) const
bool all() const
Returns true if all bits are set.
size_type size() const
Definition: SmallPtrSet.h:94
size_type count(ConstPtrType Ptr) const
count - Return 1 if the specified pointer is in the set, 0 otherwise.
Definition: SmallPtrSet.h:360
std::pair< iterator, bool > insert(PtrType Ptr)
Inserts Ptr if and only if there is no element in the container equal to Ptr.
Definition: SmallPtrSet.h:342
SmallPtrSet - This class implements a set which is optimized for holding SmallSize or less elements.
Definition: SmallPtrSet.h:427
bool empty() const
Definition: SmallVector.h:94
size_t size() const
Definition: SmallVector.h:91
void reserve(size_type N)
Definition: SmallVector.h:676
void push_back(const T &Elt)
Definition: SmallVector.h:426
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
Definition: SmallVector.h:1209
An instruction for storing to memory.
Definition: Instructions.h:317
void setVolatile(bool V)
Specify whether this is a volatile store or not.
Definition: Instructions.h:364
void setAlignment(Align Align)
Definition: Instructions.h:373
void setOrdering(AtomicOrdering Ordering)
Sets the ordering constraint of this store instruction.
Definition: Instructions.h:384
Class to represent struct types.
Definition: DerivedTypes.h:216
static bool isCallingConvCCompatible(CallBase *CI)
Returns true if call site / callee has cdecl-compatible calling conventions.
Provides information about what library functions are available for the current target.
This class represents a truncation of integer types.
The instances of the Type class are immutable: once they are created, they are never changed.
Definition: Type.h:45
unsigned getIntegerBitWidth() const
const fltSemantics & getFltSemantics() const
bool isIntOrIntVectorTy() const
Return true if this is an integer type or a vector of integer types.
Definition: Type.h:234
bool isPointerTy() const
True if this is an instance of PointerType.
Definition: Type.h:255
unsigned getPointerAddressSpace() const
Get the address space of this pointer or pointer vector type.
unsigned getScalarSizeInBits() const LLVM_READONLY
If this is a vector type, return the getPrimitiveSizeInBits value for the element type.
bool isStructTy() const
True if this is an instance of StructType.
Definition: Type.h:249
Type * getWithNewBitWidth(unsigned NewBitWidth) const
Given an integer or vector type, change the lane bitwidth to NewBitwidth, whilst keeping the old numb...
LLVMContext & getContext() const
Return the LLVMContext in which this type was uniqued.
Definition: Type.h:129
bool canLosslesslyBitCastTo(Type *Ty) const
Return true if this type could be converted with a lossless BitCast to type 'Ty'.
static IntegerType * getInt32Ty(LLVMContext &C)
static IntegerType * getInt64Ty(LLVMContext &C)
bool isIntegerTy() const
True if this is an instance of IntegerType.
Definition: Type.h:228
bool isVoidTy() const
Return true if this is 'void'.
Definition: Type.h:140
Type * getScalarType() const
If this is a vector type, return the element type, otherwise return 'this'.
Definition: Type.h:348
static UnaryOperator * CreateWithCopiedFlags(UnaryOps Opc, Value *V, Instruction *CopyO, const Twine &Name, BasicBlock::iterator InsertBefore)
Definition: InstrTypes.h:175
static UndefValue * get(Type *T)
Static factory methods - Return an 'undef' object of the specified type.
Definition: Constants.cpp:1808
A Use represents the edge between a Value definition and its users.
Definition: Use.h:43
void set(Value *Val)
Definition: Value.h:882
op_iterator op_begin()
Definition: User.h:234
const Use & getOperandUse(unsigned i) const
Definition: User.h:182
void setOperand(unsigned i, Value *Val)
Definition: User.h:174
Value * getOperand(unsigned i) const
Definition: User.h:169
This represents the llvm.va_end intrinsic.
static void ValueIsDeleted(Value *V)
Definition: Value.cpp:1201
static void ValueIsRAUWd(Value *Old, Value *New)
Definition: Value.cpp:1254
LLVM Value Representation.
Definition: Value.h:74
Type * getType() const
All values are typed, get the type of this value.
Definition: Value.h:255
static constexpr uint64_t MaximumAlignment
Definition: Value.h:807
void setMetadata(unsigned KindID, MDNode *Node)
Set a particular kind of metadata attachment.
Definition: Metadata.cpp:1487
bool hasOneUse() const
Return true if there is exactly one use of this value.
Definition: Value.h:434
iterator_range< user_iterator > users()
Definition: Value.h:421
static void dropDroppableUse(Use &U)
Remove the droppable use U.
Definition: Value.cpp:217
const Value * stripPointerCasts() const
Strip off pointer casts, all-zero GEPs and address space casts.
Definition: Value.cpp:693
bool use_empty() const
Definition: Value.h:344
LLVMContext & getContext() const
All values hold a context through their type.
Definition: Value.cpp:1074
static constexpr unsigned MaxAlignmentExponent
The maximum alignment for instructions.
Definition: Value.h:806
StringRef getName() const
Return a constant reference to the value's name.
Definition: Value.cpp:309
void takeName(Value *V)
Transfer the name from V to this value.
Definition: Value.cpp:383
Base class of all SIMD vector types.
Definition: DerivedTypes.h:403
ElementCount getElementCount() const
Return an ElementCount instance to represent the (possibly scalable) number of elements in the vector...
Definition: DerivedTypes.h:641
Represents an op.with.overflow intrinsic.
static constexpr bool isKnownLT(const FixedOrScalableQuantity &LHS, const FixedOrScalableQuantity &RHS)
Definition: TypeSize.h:215
static constexpr bool isKnownGT(const FixedOrScalableQuantity &LHS, const FixedOrScalableQuantity &RHS)
Definition: TypeSize.h:222
self_iterator getIterator()
Definition: ilist_node.h:109
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
constexpr char Args[]
Key for Kernel::Metadata::mArgs.
constexpr char Attrs[]
Key for Kernel::Metadata::mAttrs.
AttributeMask typeIncompatible(Type *Ty, AttributeSafetyKind ASK=ASK_ALL)
Which attributes cannot be applied to a type.
constexpr std::underlying_type_t< E > Mask()
Get a bitmask with 1s in all places up to the high-order bit of E's largest value.
Definition: BitmaskEnum.h:121
@ C
The default llvm calling convention, compatible with C.
Definition: CallingConv.h:34
Function * getDeclaration(Module *M, ID id, ArrayRef< Type * > Tys=std::nullopt)
Create or insert an LLVM Function declaration for an intrinsic, and return it.
Definition: Function.cpp:1471
cst_pred_ty< is_all_ones > m_AllOnes()
Match an integer or vector with all bits set.
Definition: PatternMatch.h:524
BinaryOp_match< LHS, RHS, Instruction::And > m_And(const LHS &L, const RHS &R)
BinaryOp_match< LHS, RHS, Instruction::Add > m_Add(const LHS &L, const RHS &R)
class_match< BinaryOperator > m_BinOp()
Match an arbitrary binary operation and ignore it.
Definition: PatternMatch.h:100
m_Intrinsic_Ty< Opnd0 >::Ty m_BitReverse(const Opnd0 &Op0)
class_match< Constant > m_Constant()
Match an arbitrary Constant and ignore it.
Definition: PatternMatch.h:165
BinaryOp_match< LHS, RHS, Instruction::And, true > m_c_And(const LHS &L, const RHS &R)
Matches an And with LHS and RHS in either order.
BinaryOp_match< LHS, RHS, Instruction::Xor > m_Xor(const LHS &L, const RHS &R)
OverflowingBinaryOp_match< LHS, RHS, Instruction::Sub, OverflowingBinaryOperator::NoSignedWrap > m_NSWSub(const LHS &L, const RHS &R)
specific_intval< false > m_SpecificInt(const APInt &V)
Match a specific integer value or vector with all elements equal to the value.
Definition: PatternMatch.h:972
bool match(Val *V, const Pattern &P)
Definition: PatternMatch.h:49
bind_ty< Instruction > m_Instruction(Instruction *&I)
Match an instruction, capturing it if we match.
Definition: PatternMatch.h:816
specificval_ty m_Specific(const Value *V)
Match if we have a specific specified value.
Definition: PatternMatch.h:875
OverflowingBinaryOp_match< cst_pred_ty< is_zero_int >, ValTy, Instruction::Sub, OverflowingBinaryOperator::NoSignedWrap > m_NSWNeg(const ValTy &V)
Matches a 'Neg' as 'sub nsw 0, V'.
class_match< ConstantInt > m_ConstantInt()
Match an arbitrary ConstantInt and ignore it.
Definition: PatternMatch.h:168
cst_pred_ty< is_one > m_One()
Match an integer 1 or a vector with all elements equal to 1.
Definition: PatternMatch.h:592
ThreeOps_match< Cond, LHS, RHS, Instruction::Select > m_Select(const Cond &C, const LHS &L, const RHS &R)
Matches SelectInst.
cstfp_pred_ty< is_neg_zero_fp > m_NegZeroFP()
Match a floating-point negative zero.
Definition: PatternMatch.h:782
BinOpPred_match< LHS, RHS, is_logical_shift_op > m_LogicalShift(const LHS &L, const RHS &R)
Matches logical shift operations.
match_combine_and< LTy, RTy > m_CombineAnd(const LTy &L, const RTy &R)
Combine two pattern matchers matching L && R.
Definition: PatternMatch.h:245
MaxMin_match< ICmpInst, LHS, RHS, smin_pred_ty > m_SMin(const LHS &L, const RHS &R)
CastOperator_match< OpTy, Instruction::Trunc > m_Trunc(const OpTy &Op)
Matches Trunc.
BinaryOp_match< LHS, RHS, Instruction::Xor, true > m_c_Xor(const LHS &L, const RHS &R)
Matches an Xor with LHS and RHS in either order.
deferredval_ty< Value > m_Deferred(Value *const &V)
Like m_Specific(), but works if the specific value to match is determined as part of the same match()...
Definition: PatternMatch.h:893
cst_pred_ty< is_zero_int > m_ZeroInt()
Match an integer 0 or a vector with all elements equal to 0.
Definition: PatternMatch.h:599
apint_match m_APIntAllowPoison(const APInt *&Res)
Match APInt while allowing poison in splat vector constants.
Definition: PatternMatch.h:305
CmpClass_match< LHS, RHS, ICmpInst, ICmpInst::Predicate > m_ICmp(ICmpInst::Predicate &Pred, const LHS &L, const RHS &R)
match_combine_or< match_combine_or< CastInst_match< OpTy, ZExtInst >, CastInst_match< OpTy, SExtInst > >, OpTy > m_ZExtOrSExtOrSelf(const OpTy &Op)
OneUse_match< T > m_OneUse(const T &SubPattern)
Definition: PatternMatch.h:67
auto m_LogicalOr()
Matches L || R where L and R are arbitrary values.
BinaryOp_match< cst_pred_ty< is_zero_int >, ValTy, Instruction::Sub > m_Neg(const ValTy &V)
Matches a 'Neg' as 'sub 0, V'.
TwoOps_match< V1_t, V2_t, Instruction::ShuffleVector > m_Shuffle(const V1_t &v1, const V2_t &v2)
Matches ShuffleVectorInst independently of mask value.
match_combine_and< class_match< Constant >, match_unless< constantexpr_match > > m_ImmConstant()
Match an arbitrary immediate Constant and ignore it.
Definition: PatternMatch.h:854
CastInst_match< OpTy, FPExtInst > m_FPExt(const OpTy &Op)
CastInst_match< OpTy, ZExtInst > m_ZExt(const OpTy &Op)
Matches ZExt.
OverflowingBinaryOp_match< LHS, RHS, Instruction::Shl, OverflowingBinaryOperator::NoUnsignedWrap > m_NUWShl(const LHS &L, const RHS &R)
MaxMin_match< ICmpInst, LHS, RHS, umax_pred_ty > m_UMax(const LHS &L, const RHS &R)
class_match< CmpInst > m_Cmp()
Matches any compare instruction and ignore it.
Definition: PatternMatch.h:105
cst_pred_ty< is_negated_power2 > m_NegatedPower2()
Match a integer or vector negated power-of-2.
Definition: PatternMatch.h:627
m_Intrinsic_Ty< Opnd0, Opnd1, Opnd2 >::Ty m_FShl(const Opnd0 &Op0, const Opnd1 &Op1, const Opnd2 &Op2)
match_combine_or< match_combine_or< MaxMin_match< ICmpInst, LHS, RHS, smax_pred_ty, true >, MaxMin_match< ICmpInst, LHS, RHS, smin_pred_ty, true > >, match_combine_or< MaxMin_match< ICmpInst, LHS, RHS, umax_pred_ty, true >, MaxMin_match< ICmpInst, LHS, RHS, umin_pred_ty, true > > > m_c_MaxOrMin(const LHS &L, const RHS &R)
class_match< UnaryOperator > m_UnOp()
Match an arbitrary unary operation and ignore it.
Definition: PatternMatch.h:95
OverflowingBinaryOp_match< LHS, RHS, Instruction::Sub, OverflowingBinaryOperator::NoUnsignedWrap > m_NUWSub(const LHS &L, const RHS &R)
MaxMin_match< ICmpInst, LHS, RHS, smax_pred_ty > m_SMax(const LHS &L, const RHS &R)
apint_match m_APInt(const APInt *&Res)
Match a ConstantInt or splatted ConstantVector, binding the specified pointer to the contained APInt.
Definition: PatternMatch.h:299
match_combine_or< OverflowingBinaryOp_match< LHS, RHS, Instruction::Add, OverflowingBinaryOperator::NoSignedWrap >, DisjointOr_match< LHS, RHS > > m_NSWAddLike(const LHS &L, const RHS &R)
Match either "add nsw" or "or disjoint".
class_match< Value > m_Value()
Match an arbitrary value and ignore it.
Definition: PatternMatch.h:92
BinaryOp_match< LHS, RHS, Instruction::LShr > m_LShr(const LHS &L, const RHS &R)
Exact_match< T > m_Exact(const T &SubPattern)
FNeg_match< OpTy > m_FNeg(const OpTy &X)
Match 'fneg X' as 'fsub -0.0, X'.
BinOpPred_match< LHS, RHS, is_shift_op > m_Shift(const LHS &L, const RHS &R)
Matches shift operations.
cstfp_pred_ty< is_pos_zero_fp > m_PosZeroFP()
Match a floating-point positive zero.
Definition: PatternMatch.h:773
BinaryOp_match< LHS, RHS, Instruction::Shl > m_Shl(const LHS &L, const RHS &R)
m_Intrinsic_Ty< Opnd0 >::Ty m_VecReverse(const Opnd0 &Op0)
apfloat_match m_APFloat(const APFloat *&Res)
Match a ConstantFP or splatted ConstantVector, binding the specified pointer to the contained APFloat...
Definition: PatternMatch.h:316
auto m_LogicalAnd()
Matches L && R where L and R are arbitrary values.
match_combine_or< match_combine_or< MaxMin_match< ICmpInst, LHS, RHS, smax_pred_ty >, MaxMin_match< ICmpInst, LHS, RHS, smin_pred_ty > >, match_combine_or< MaxMin_match< ICmpInst, LHS, RHS, umax_pred_ty >, MaxMin_match< ICmpInst, LHS, RHS, umin_pred_ty > > > m_MaxOrMin(const LHS &L, const RHS &R)
m_Intrinsic_Ty< Opnd0, Opnd1, Opnd2 >::Ty m_FShr(const Opnd0 &Op0, const Opnd1 &Op1, const Opnd2 &Op2)
BinaryOp_match< LHS, RHS, Instruction::SRem > m_SRem(const LHS &L, const RHS &R)
auto m_Undef()
Match an arbitrary undef constant.
Definition: PatternMatch.h:152
BinaryOp_match< cst_pred_ty< is_all_ones >, ValTy, Instruction::Xor, true > m_Not(const ValTy &V)
Matches a 'Not' as 'xor V, -1' or 'xor -1, V'.
m_Intrinsic_Ty< Opnd0 >::Ty m_BSwap(const Opnd0 &Op0)
CastInst_match< OpTy, SExtInst > m_SExt(const OpTy &Op)
Matches SExt.
is_zero m_Zero()
Match any null constant or a vector with all elements equal to 0.
Definition: PatternMatch.h:612
BinaryOp_match< LHS, RHS, Instruction::Or, true > m_c_Or(const LHS &L, const RHS &R)
Matches an Or with LHS and RHS in either order.
match_combine_or< OverflowingBinaryOp_match< LHS, RHS, Instruction::Add, OverflowingBinaryOperator::NoUnsignedWrap >, DisjointOr_match< LHS, RHS > > m_NUWAddLike(const LHS &L, const RHS &R)
Match either "add nuw" or "or disjoint".
BinOpPred_match< LHS, RHS, is_bitwiselogic_op > m_BitwiseLogic(const LHS &L, const RHS &R)
Matches bitwise logic operations.
m_Intrinsic_Ty< Opnd0 >::Ty m_FAbs(const Opnd0 &Op0)
BinaryOp_match< LHS, RHS, Instruction::Mul, true > m_c_Mul(const LHS &L, const RHS &R)
Matches a Mul with LHS and RHS in either order.
m_Intrinsic_Ty< Opnd0, Opnd1 >::Ty m_CopySign(const Opnd0 &Op0, const Opnd1 &Op1)
CastOperator_match< OpTy, Instruction::PtrToInt > m_PtrToInt(const OpTy &Op)
Matches PtrToInt.
MaxMin_match< ICmpInst, LHS, RHS, umin_pred_ty > m_UMin(const LHS &L, const RHS &R)
match_combine_or< LTy, RTy > m_CombineOr(const LTy &L, const RTy &R)
Combine two pattern matchers matching L || R.
Definition: PatternMatch.h:239
@ SingleThread
Synchronized with respect to signal handlers executing in the same thread.
Definition: LLVMContext.h:54
@ System
Synchronized with respect to all concurrently executing threads.
Definition: LLVMContext.h:57
AssignmentMarkerRange getAssignmentMarkers(DIAssignID *ID)
Return a range of dbg.assign intrinsics which use \ID as an operand.
Definition: DebugInfo.cpp:1895
SmallVector< DbgVariableRecord * > getDVRAssignmentMarkers(const Instruction *Inst)
Definition: DebugInfo.h:238
initializer< Ty > init(const Ty &Val)
Definition: CommandLine.h:450
constexpr double e
Definition: MathExtras.h:31
DiagnosticInfoOptimizationBase::Argument NV
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
cl::opt< bool > EnableKnowledgeRetention
Intrinsic::ID getInverseMinMaxIntrinsic(Intrinsic::ID MinMaxID)
unsigned Log2_32_Ceil(uint32_t Value)
Return the ceil log base 2 of the specified value, 32 if the value is zero.
Definition: MathExtras.h:337
@ Offset
Definition: DWP.cpp:456
OverflowResult
@ NeverOverflows
Never overflows.
@ AlwaysOverflowsHigh
Always overflows in the direction of signed/unsigned max value.
@ AlwaysOverflowsLow
Always overflows in the direction of signed/unsigned min value.
@ MayOverflow
May or may not overflow.
UnaryFunction for_each(R &&Range, UnaryFunction F)
Provide wrappers to std::for_each which take ranges instead of having to pass begin/end explicitly.
Definition: STLExtras.h:1715
Value * simplifyFMulInst(Value *LHS, Value *RHS, FastMathFlags FMF, const SimplifyQuery &Q, fp::ExceptionBehavior ExBehavior=fp::ebIgnore, RoundingMode Rounding=RoundingMode::NearestTiesToEven)
Given operands for an FMul, fold the result or return null.
bool isValidAssumeForContext(const Instruction *I, const Instruction *CxtI, const DominatorTree *DT=nullptr, bool AllowEphemerals=false)
Return true if it is valid to use the assumptions provided by an assume intrinsic,...
APInt possiblyDemandedEltsInMask(Value *Mask)
Given a mask vector of the form <Y x i1>, return an APInt (of bitwidth Y) for each lane which may be ...
RetainedKnowledge simplifyRetainedKnowledge(AssumeInst *Assume, RetainedKnowledge RK, AssumptionCache *AC, DominatorTree *DT)
canonicalize the RetainedKnowledge RK.
bool isRemovableAlloc(const CallBase *V, const TargetLibraryInfo *TLI)
Return true if this is a call to an allocation function that does not have side effects that we are r...
Value * lowerObjectSizeCall(IntrinsicInst *ObjectSize, const DataLayout &DL, const TargetLibraryInfo *TLI, bool MustSucceed)
Try to turn a call to @llvm.objectsize into an integer value of the given Type.
Value * getAllocAlignment(const CallBase *V, const TargetLibraryInfo *TLI)
Gets the alignment argument for an aligned_alloc-like function, using either built-in knowledge based...
LLVM_READONLY APFloat maximum(const APFloat &A, const APFloat &B)
Implements IEEE 754-2019 maximum semantics.
Definition: APFloat.h:1436
const Value * getUnderlyingObject(const Value *V, unsigned MaxLookup=6)
This method strips off any GEP address adjustments, pointer casts or llvm.threadlocal....
Value * simplifyCall(CallBase *Call, Value *Callee, ArrayRef< Value * > Args, const SimplifyQuery &Q)
Given a callsite, callee, and arguments, fold the result or return null.
Constant * ConstantFoldCompareInstOperands(unsigned Predicate, Constant *LHS, Constant *RHS, const DataLayout &DL, const TargetLibraryInfo *TLI=nullptr, const Instruction *I=nullptr)
Attempt to constant fold a compare instruction (icmp/fcmp) with the specified operands.
constexpr bool isPowerOf2_64(uint64_t Value)
Return true if the argument is a power of two > 0 (64 bit edition.)
Definition: MathExtras.h:280
bool isAssumeWithEmptyBundle(const AssumeInst &Assume)
Return true iff the operand bundles of the provided llvm.assume doesn't contain any valuable informat...
Value * getSplatValue(const Value *V)
Get splat value if the input is a splat vector or return nullptr.
RetainedKnowledge getKnowledgeFromBundle(AssumeInst &Assume, const CallBase::BundleOpInfo &BOI)
This extracts the Knowledge from an element of an operand bundle.
Align getKnownAlignment(Value *V, const DataLayout &DL, const Instruction *CxtI=nullptr, AssumptionCache *AC=nullptr, const DominatorTree *DT=nullptr)
Try to infer an alignment for the specified pointer.
Definition: Local.h:242
bool isSplatValue(const Value *V, int Index=-1, unsigned Depth=0)
Return true if each element of the vector value V is poisoned or equal to every other non-poisoned el...
LLVM_READONLY APFloat maxnum(const APFloat &A, const APFloat &B)
Implements IEEE-754 2019 maximumNumber semantics.
Definition: APFloat.h:1410
FPClassTest fneg(FPClassTest Mask)
Return the test mask which returns true if the value's sign bit is flipped.
SelectPatternFlavor
Specific patterns of select instructions we can match.
@ SPF_ABS
Floating point maxnum.
@ SPF_NABS
Absolute value.
constexpr bool isPowerOf2_32(uint32_t Value)
Return true if the argument is a power of two > 0.
Definition: MathExtras.h:275
bool isModSet(const ModRefInfo MRI)
Definition: ModRef.h:48
FPClassTest
Floating-point class tests, supported by 'is_fpclass' intrinsic.
SelectPatternResult matchSelectPattern(Value *V, Value *&LHS, Value *&RHS, Instruction::CastOps *CastOp=nullptr, unsigned Depth=0)
Pattern match integer [SU]MIN, [SU]MAX and ABS idioms, returning the kind and providing the out param...
bool NullPointerIsDefined(const Function *F, unsigned AS=0)
Check whether null pointer dereferencing is considered undefined behavior for a given function or an ...
Definition: Function.cpp:2060
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
Definition: Debug.cpp:163
bool none_of(R &&Range, UnaryPredicate P)
Provide wrappers to std::none_of which take ranges instead of having to pass begin/end explicitly.
Definition: STLExtras.h:1736
bool isAtLeastOrStrongerThan(AtomicOrdering AO, AtomicOrdering Other)
AssumeInst * buildAssumeFromKnowledge(ArrayRef< RetainedKnowledge > Knowledge, Instruction *CtxI, AssumptionCache *AC=nullptr, DominatorTree *DT=nullptr)
Build and return a new assume created from the provided knowledge if the knowledge in the assume is f...
FPClassTest inverse_fabs(FPClassTest Mask)
Return the test mask which returns true after fabs is applied to the value.
bool maskIsAllOneOrUndef(Value *Mask)
Given a mask vector of i1, Return true if all of the elements of this predicate mask are known to be ...
Constant * ConstantFoldBinaryOpOperands(unsigned Opcode, Constant *LHS, Constant *RHS, const DataLayout &DL)
Attempt to constant fold a binary operation with the specified operands.
bool isKnownNonZero(const Value *V, const SimplifyQuery &Q, unsigned Depth=0)
Return true if the given value is known to be non-zero when defined.
constexpr int PoisonMaskElem
@ Mod
The access may modify the value stored in memory.
Value * simplifyFMAFMul(Value *LHS, Value *RHS, FastMathFlags FMF, const SimplifyQuery &Q, fp::ExceptionBehavior ExBehavior=fp::ebIgnore, RoundingMode Rounding=RoundingMode::NearestTiesToEven)
Given operands for the multiplication of a FMA, fold the result or return null.
@ Other
Any other memory.
Value * simplifyConstrainedFPCall(CallBase *Call, const SimplifyQuery &Q)
Given a constrained FP intrinsic call, tries to compute its simplified version.
LLVM_READONLY APFloat minnum(const APFloat &A, const APFloat &B)
Implements IEEE-754 2019 minimumNumber semantics.
Definition: APFloat.h:1396
@ Mul
Product of integers.
@ None
Not a recurrence.
@ Add
Sum of integers.
@ FAdd
Sum of floats.
ConstantRange computeConstantRangeIncludingKnownBits(const WithCache< const Value * > &V, bool ForSigned, const SimplifyQuery &SQ)
Combine constant ranges from computeConstantRange() and computeKnownBits().
void computeKnownBits(const Value *V, KnownBits &Known, const DataLayout &DL, unsigned Depth=0, AssumptionCache *AC=nullptr, const Instruction *CxtI=nullptr, const DominatorTree *DT=nullptr, bool UseInstrInfo=true)
Determine which bits of V are known to be either zero or one and return them in the KnownZero/KnownOn...
constexpr uint64_t MinAlign(uint64_t A, uint64_t B)
A and B are either alignments or offsets.
Definition: MathExtras.h:349
Value * getFreedOperand(const CallBase *CB, const TargetLibraryInfo *TLI)
If this if a call to a free function, return the freed operand.
bool isSafeToSpeculativelyExecute(const Instruction *I, const Instruction *CtxI=nullptr, AssumptionCache *AC=nullptr, const DominatorTree *DT=nullptr, const TargetLibraryInfo *TLI=nullptr)
Return true if the instruction does not have any effects besides calculating the result and does not ...
constexpr unsigned BitWidth
Definition: BitmaskEnum.h:191
bool isDereferenceablePointer(const Value *V, Type *Ty, const DataLayout &DL, const Instruction *CtxI=nullptr, AssumptionCache *AC=nullptr, const DominatorTree *DT=nullptr, const TargetLibraryInfo *TLI=nullptr)
Return true if this is always a dereferenceable pointer.
Definition: Loads.cpp:221
bool is_contained(R &&Range, const E &Element)
Returns true if Element is found in Range.
Definition: STLExtras.h:1879
std::optional< APInt > getAllocSize(const CallBase *CB, const TargetLibraryInfo *TLI, function_ref< const Value *(const Value *)> Mapper=[](const Value *V) { return V;})
Return the size of the requested allocation.
std::optional< bool > computeKnownFPSignBit(const Value *V, unsigned Depth, const SimplifyQuery &SQ)
Return false if we can prove that the specified FP value's sign bit is 0.
unsigned Log2(Align A)
Returns the log2 of the alignment.
Definition: Alignment.h:208
bool maskContainsAllOneOrUndef(Value *Mask)
Given a mask vector of i1, Return true if any of the elements of this predicate mask are known to be ...
uint64_t alignDown(uint64_t Value, uint64_t Align, uint64_t Skew=0)
Returns the largest uint64_t less than or equal to Value and is Skew mod Align.
Definition: MathExtras.h:439
std::optional< bool > isImpliedByDomCondition(const Value *Cond, const Instruction *ContextI, const DataLayout &DL)
Return the boolean condition value in the context of the given instruction if it is known based on do...
LLVM_READONLY APFloat minimum(const APFloat &A, const APFloat &B)
Implements IEEE 754-2019 minimum semantics.
Definition: APFloat.h:1423
bool isKnownNegation(const Value *X, const Value *Y, bool NeedNSW=false, bool AllowPoison=true)
Return true if the two given values are negation.
bool isKnownNonNegative(const Value *V, const SimplifyQuery &SQ, unsigned Depth=0)
Returns true if the give value is known to be non-negative.
void swap(llvm::BitVector &LHS, llvm::BitVector &RHS)
Implement std::swap in terms of BitVector swap.
Definition: BitVector.h:860
#define NC
Definition: regutils.h:42
A collection of metadata nodes that might be associated with a memory access used by the alias-analys...
Definition: Metadata.h:760
This struct is a compact representation of a valid (non-zero power of two) alignment.
Definition: Alignment.h:39
@ IEEE
IEEE-754 denormal numbers preserved.
bool isNonNegative() const
Returns true if this value is known to be non-negative.
Definition: KnownBits.h:104
unsigned countMinTrailingZeros() const
Returns the minimum number of trailing zero bits.
Definition: KnownBits.h:238
unsigned countMaxTrailingZeros() const
Returns the maximum number of trailing zero bits possible.
Definition: KnownBits.h:270
unsigned countMaxPopulation() const
Returns the maximum number of bits that could be one.
Definition: KnownBits.h:285
unsigned getBitWidth() const
Get the bit width of this value.
Definition: KnownBits.h:40
bool isNonZero() const
Returns true if this value is known to be non-zero.
Definition: KnownBits.h:107
unsigned countMinLeadingZeros() const
Returns the minimum number of leading zero bits.
Definition: KnownBits.h:244
bool isNegative() const
Returns true if this value is known to be negative.
Definition: KnownBits.h:101
unsigned countMaxLeadingZeros() const
Returns the maximum number of leading zero bits possible.
Definition: KnownBits.h:276
unsigned countMinPopulation() const
Returns the number of bits known to be one.
Definition: KnownBits.h:282
bool isAllOnes() const
Returns true if value is all one bits.
Definition: KnownBits.h:83
FPClassTest KnownFPClasses
Floating-point classes the value could be one of.
This struct is a compact representation of a valid (power of two) or undefined (0) alignment.
Definition: Alignment.h:117
Align valueOrOne() const
For convenience, returns a valid alignment or 1 if undefined.
Definition: Alignment.h:141
A lightweight accessor for an operand bundle meant to be passed around by value.
Definition: InstrTypes.h:1389
StringRef getTagName() const
Return the tag of this operand bundle as a string.
Definition: InstrTypes.h:1408
ArrayRef< Use > Inputs
Definition: InstrTypes.h:1390
Represent one information held inside an operand bundle of an llvm.assume.
Attribute::AttrKind AttrKind
SelectPatternFlavor Flavor
SimplifyQuery getWithInstruction(const Instruction *I) const
Definition: SimplifyQuery.h:96