Searched refs:SIToFPInst (Results 1 - 16 of 16) sorted by relevance
/external/llvm/lib/ExecutionEngine/Interpreter/ |
H A D | Interpreter.h | 165 void visitSIToFPInst(SIToFPInst &I);
|
H A D | Execution.cpp | 1685 void Interpreter::visitSIToFPInst(SIToFPInst &I) {
|
/external/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineAddSub.cpp | 1366 if (SIToFPInst *LHSConv = dyn_cast<SIToFPInst>(LHS)) { 1381 return new SIToFPInst(NewAdd, I.getType()); 1386 if (SIToFPInst *RHSConv = dyn_cast<SIToFPInst>(RHS)) { 1398 return new SIToFPInst(NewAdd, I.getType());
|
H A D | InstCombineCasts.cpp | 1343 if (!isa<UIToFPInst>(FI.getOperand(0)) && !isa<SIToFPInst>(FI.getOperand(0))) 1351 bool IsInputSigned = isa<SIToFPInst>(OpI);
|
/external/llvm/include/llvm/IR/ |
H A D | InstVisitor.h | 190 RetTy visitSIToFPInst(SIToFPInst &I) { DELEGATE(CastInst);}
|
H A D | Instructions.h | 3603 // SIToFPInst Class 3607 class SIToFPInst : public CastInst { class in inherits:CastInst 3609 /// \brief Clone an identical SIToFPInst 3610 SIToFPInst *clone_impl() const override; 3614 SIToFPInst( 3622 SIToFPInst(
|
/external/llvm/lib/IR/ |
H A D | Instructions.cpp | 2308 case SIToFP: return new SIToFPInst (S, Ty, Name, InsertBefore); 2330 case SIToFP: return new SIToFPInst (S, Ty, Name, InsertAtEnd); 2921 SIToFPInst::SIToFPInst( function in class:SIToFPInst 2927 SIToFPInst::SIToFPInst( function in class:SIToFPInst 3602 SIToFPInst *SIToFPInst::clone_impl() const { 3603 return new SIToFPInst(getOperand(0), getType());
|
H A D | Verifier.cpp | 349 void visitSIToFPInst(SIToFPInst &I); 1957 void Verifier::visitSIToFPInst(SIToFPInst &I) {
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
H A D | SelectionDAGBuilder.h | 70 class SIToFPInst;
|
/external/llvm/lib/Target/PowerPC/ |
H A D | PPCCTRLoops.cpp | 374 } else if (isa<UIToFPInst>(J) || isa<SIToFPInst>(J) ||
|
/external/llvm/tools/llvm-stress/ |
H A D | llvm-stress.cpp | 538 new SIToFPInst(V, DestTy, "FC", BB->getTerminator()));
|
/external/llvm/lib/Transforms/Utils/ |
H A D | SimplifyLibCalls.cpp | 1136 if (SIToFPInst *OpC = dyn_cast<SIToFPInst>(Op)) {
|
/external/llvm/include/llvm-c/ |
H A D | Core.h | 1223 macro(SIToFPInst) \
|
/external/llvm/lib/Transforms/Scalar/ |
H A D | IndVarSimplify.cpp | 436 Value *Conv = new SIToFPInst(NewPHI, PN->getType(), "indvar.conv",
|
H A D | LoopStrengthReduce.cpp | 1846 else if (SIToFPInst *SCast = dyn_cast<SIToFPInst>(CandidateUI->getUser())) {
|
/external/llvm/lib/Analysis/ |
H A D | ValueTracking.cpp | 2248 if (isa<SIToFPInst>(I) || isa<UIToFPInst>(I))
|
Completed in 1165 milliseconds