Searched refs:FoldSelect (Results 1 – 7 of 7) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | IRBuilderFolder.h | 57 virtual Value *FoldSelect(Value *C, Value *True, Value *False) const = 0;
|
| H A D | NoFolder.h | 82 Value *FoldSelect(Value *C, Value *True, Value *False) const override { in FoldSelect() function
|
| H A D | ConstantFolder.h | 124 Value *FoldSelect(Value *C, Value *True, Value *False) const override { in FoldSelect() function
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | InstSimplifyFolder.h | 84 Value *FoldSelect(Value *C, Value *True, Value *False) const override { in FoldSelect() function
|
| H A D | TargetFolder.h | 134 Value *FoldSelect(Value *C, Value *True, Value *False) const override { in FoldSelect() function
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| H A D | AArch64FastISel.cpp | 2719 const Value *FoldSelect = nullptr; in selectSelect() local 2724 FoldSelect = SI->getFalseValue(); in selectSelect() 2727 FoldSelect = SI->getTrueValue(); in selectSelect() 2731 if (FoldSelect) { in selectSelect() 2732 Register SrcReg = getRegForValue(FoldSelect); in selectSelect()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/IR/ |
| H A D | IRBuilder.cpp | 1110 if (auto *V = Folder.FoldSelect(C, True, False)) in CreateSelect()
|