Home
last modified time | relevance | path

Searched refs:FPToSIInst (Results 1 – 14 of 14) sorted by relevance

/external/llvm/lib/ExecutionEngine/Interpreter/
DInterpreter.h165 void visitFPToSIInst(FPToSIInst &I);
DExecution.cpp1695 void Interpreter::visitFPToSIInst(FPToSIInst &I) { in visitFPToSIInst()
/external/llvm/include/llvm/IR/
DInstVisitor.h191 RetTy visitFPToSIInst(FPToSIInst &I) { DELEGATE(CastInst);} in visitFPToSIInst()
DInstruction.def165 HANDLE_CAST_INST(40, FPToSI , FPToSIInst ) // floating point -> SInt
DInstructions.h4602 class FPToSIInst : public CastInst {
4607 FPToSIInst *cloneImpl() const;
4611 FPToSIInst(
4619 FPToSIInst(
/external/llvm/lib/IR/
DInstructions.cpp2584 case FPToSI: return new FPToSIInst (S, Ty, Name, InsertBefore); in Create()
2606 case FPToSI: return new FPToSIInst (S, Ty, Name, InsertAtEnd); in Create()
3219 FPToSIInst::FPToSIInst( in FPToSIInst() function in FPToSIInst
3225 FPToSIInst::FPToSIInst( in FPToSIInst() function in FPToSIInst
3883 FPToSIInst *FPToSIInst::cloneImpl() const { in cloneImpl()
3884 return new FPToSIInst(getOperand(0), getType()); in cloneImpl()
DVerifier.cpp362 void visitFPToSIInst(FPToSIInst &I);
2181 void Verifier::visitFPToSIInst(FPToSIInst &I) { in visitFPToSIInst()
/external/llvm/lib/Target/PowerPC/
DPPCCTRLoops.cpp391 isa<FPToUIInst>(J) || isa<FPToSIInst>(J)) { in mightUseCTR()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineInternal.h295 Instruction *visitFPToSI(FPToSIInst &FI);
DInstCombineCasts.cpp1430 bool IsOutputSigned = isa<FPToSIInst>(FI); in FoldItoFPtoI()
1471 Instruction *InstCombiner::visitFPToSI(FPToSIInst &FI) { in visitFPToSI()
/external/llvm/lib/CodeGen/SelectionDAG/
DSelectionDAGBuilder.h44 class FPToSIInst; variable
/external/llvm/tools/llvm-stress/
Dllvm-stress.cpp537 new FPToSIInst(V, DestTy, "FC", BB->getTerminator())); in Act()
/external/llvm/include/llvm-c/
DCore.h1135 macro(FPToSIInst) \
/external/llvm/lib/Analysis/
DValueTracking.cpp4026 if (isa<FPToSIInst>(CI)) in lookThroughCast()