Searched refs:FPToSIInst (Results 1 – 14 of 14) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/ |
H A D | Interpreter.h | 145 void visitFPToSIInst(FPToSIInst &I);
|
H A D | Execution.cpp | 1706 void Interpreter::visitFPToSIInst(FPToSIInst &I) { in visitFPToSIInst()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | InstVisitor.h | 182 RetTy visitFPToSIInst(FPToSIInst &I) { DELEGATE(CastInst);} in visitFPToSIInst()
|
H A D | Instruction.def | 188 HANDLE_CAST_INST(42, FPToSI , FPToSIInst ) // floating point -> SInt
|
H A D | Instructions.h | 4675 class FPToSIInst : public CastInst { 4681 FPToSIInst *cloneImpl() const; 4685 FPToSIInst(Value *S, ///< The value to be converted
|
H A D | PatternMatch.h | 2104 inline CastInst_match<OpTy, FPToSIInst> m_FPToSI(const OpTy &Op) { in m_FPToSI() 2105 return CastInst_match<OpTy, FPToSIInst>(Op); in m_FPToSI()
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | Instructions.cpp | 2985 case FPToSI: return new FPToSIInst (S, Ty, Name, InsertBefore); in Create() 3397 FPToSIInst::FPToSIInst(Value *S, Type *Ty, const Twine &Name, in FPToSIInst() function in FPToSIInst 4290 FPToSIInst *FPToSIInst::cloneImpl() const { in cloneImpl() 4291 return new FPToSIInst(getOperand(0), getType()); in cloneImpl()
|
H A D | Verifier.cpp | 555 void visitFPToSIInst(FPToSIInst &I); 3367 void Verifier::visitFPToSIInst(FPToSIInst &I) { in visitFPToSIInst()
|
/freebsd/contrib/llvm-project/llvm/tools/llvm-stress/ |
H A D | llvm-stress.cpp | 589 new FPToSIInst(V, DestTy, "FC", BB->getTerminator())); in Act()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineInternal.h | 142 Instruction *visitFPToSI(FPToSIInst &FI);
|
H A D | InstCombineCasts.cpp | 1922 bool IsOutputSigned = isa<FPToSIInst>(FI); in foldItoFPtoI() 1977 Instruction *InstCombinerImpl::visitFPToSI(FPToSIInst &FI) { in visitFPToSI()
|
/freebsd/contrib/llvm-project/llvm/include/llvm-c/ |
H A D | Core.h | 1899 macro(FPToSIInst) \
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
H A D | ARMTargetTransformInfo.cpp | 390 return isa<FPToSIInst>(FP); in isFPSatMinMaxPattern()
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | ValueTracking.cpp | 9675 if (isa<FPToSIInst>(I) && BitWidth >= 17) { in setLimitForFPToI() 9717 } else if (isa<FPToUIInst>(V) || isa<FPToSIInst>(V)) { in computeConstantRange()
|