Lines Matching refs:SCCPSolver

152 /// SCCPSolver - This class is a general purpose solver for Sparse Conditional
155 class SCCPSolver : public InstVisitor<SCCPSolver> {
208 SCCPSolver(const DataLayout *td, const TargetLibraryInfo *tli)
223 /// inform the SCCPSolver that it should track loads and stores to the
459 friend class InstVisitor<SCCPSolver>;
515 void SCCPSolver::getFeasibleSuccessors(TerminatorInst &TI,
581 bool SCCPSolver::isEdgeFeasible(BasicBlock *From, BasicBlock *To) {
651 void SCCPSolver::visitPHINode(PHINode &PN) {
706 void SCCPSolver::visitReturnInst(ReturnInst &I) {
733 void SCCPSolver::visitTerminatorInst(TerminatorInst &TI) {
745 void SCCPSolver::visitCastInst(CastInst &I) {
755 void SCCPSolver::visitExtractValueInst(ExtractValueInst &EVI) {
776 void SCCPSolver::visitInsertValueInst(InsertValueInst &IVI) {
809 void SCCPSolver::visitSelectInst(SelectInst &I) {
844 void SCCPSolver::visitBinaryOperator(Instruction &I) {
902 void SCCPSolver::visitCmpInst(CmpInst &I) {
921 void SCCPSolver::visitExtractElementInst(ExtractElementInst &I) {
937 void SCCPSolver::visitInsertElementInst(InsertElementInst &I) {
961 void SCCPSolver::visitShuffleVectorInst(ShuffleVectorInst &I) {
992 void SCCPSolver::visitGetElementPtrInst(GetElementPtrInst &I) {
1015 void SCCPSolver::visitStoreInst(StoreInst &SI) {
1036 void SCCPSolver::visitLoadInst(LoadInst &I) {
1078 void SCCPSolver::visitCallSite(CallSite CS) {
1166 void SCCPSolver::Solve() {
1242 bool SCCPSolver::ResolvedUndefsIn(Function &F) {
1498 /// SCCP Class - This class uses the SCCPSolver to implement a per-function
1559 SCCPSolver Solver(TD, TLI);
1688 SCCPSolver Solver(TD, TLI);