2003-09-30 20:37:50 +02:00
|
|
|
//===-- Local.h - Functions to perform local transformations ----*- C++ -*-===//
|
2005-04-21 22:59:05 +02:00
|
|
|
//
|
2003-10-20 22:19:47 +02:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:59:42 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 22:59:05 +02:00
|
|
|
//
|
2003-10-20 22:19:47 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2002-05-07 20:52:48 +02:00
|
|
|
//
|
|
|
|
// This family of functions perform various local transformations to the
|
|
|
|
// program.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_TRANSFORMS_UTILS_LOCAL_H
|
|
|
|
#define LLVM_TRANSFORMS_UTILS_LOCAL_H
|
|
|
|
|
|
|
|
#include "llvm/Function.h"
|
2003-11-11 23:41:34 +01:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2002-09-06 04:19:25 +02:00
|
|
|
class Pass;
|
2003-12-19 06:56:28 +01:00
|
|
|
class PHINode;
|
2004-03-14 03:13:07 +01:00
|
|
|
class AllocaInst;
|
2005-09-26 07:26:32 +02:00
|
|
|
class ConstantExpr;
|
2007-01-31 00:12:47 +01:00
|
|
|
class TargetData;
|
2002-05-07 20:52:48 +02:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
2003-05-20 23:01:22 +02:00
|
|
|
// Local constant propagation...
|
2002-05-07 20:52:48 +02:00
|
|
|
//
|
|
|
|
|
2003-05-20 23:01:22 +02:00
|
|
|
/// doConstantPropagation - Constant prop a specific instruction. Returns true
|
|
|
|
/// and potentially moves the iterator if constant propagation was performed.
|
2002-09-06 04:19:25 +02:00
|
|
|
///
|
2007-01-31 00:12:47 +01:00
|
|
|
bool doConstantPropagation(BasicBlock::iterator &I, const TargetData *TD = 0);
|
2002-05-07 20:52:48 +02:00
|
|
|
|
2002-09-06 04:19:25 +02:00
|
|
|
/// ConstantFoldTerminator - If a terminator instruction is predicated on a
|
|
|
|
/// constant value, convert it into an unconditional branch to the constant
|
|
|
|
/// destination. This is a nontrivial operation because the successors of this
|
|
|
|
/// basic block must have their PHI nodes updated.
|
|
|
|
///
|
2002-05-21 22:04:50 +02:00
|
|
|
bool ConstantFoldTerminator(BasicBlock *BB);
|
2002-05-07 20:52:48 +02:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Local dead code elimination...
|
|
|
|
//
|
|
|
|
|
2002-09-06 04:19:25 +02:00
|
|
|
/// isInstructionTriviallyDead - Return true if the result produced by the
|
|
|
|
/// instruction is not used, and the instruction has no side effects.
|
|
|
|
///
|
2002-05-07 20:52:48 +02:00
|
|
|
bool isInstructionTriviallyDead(Instruction *I);
|
|
|
|
|
|
|
|
|
2002-09-06 04:19:25 +02:00
|
|
|
/// dceInstruction - Inspect the instruction at *BBI and figure out if it
|
|
|
|
/// isTriviallyDead. If so, remove the instruction and update the iterator to
|
|
|
|
/// point to the instruction that immediately succeeded the original
|
|
|
|
/// instruction.
|
|
|
|
///
|
2002-05-26 22:18:35 +02:00
|
|
|
bool dceInstruction(BasicBlock::iterator &BBI);
|
2002-05-07 20:52:48 +02:00
|
|
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Control Flow Graph Restructuring...
|
|
|
|
//
|
|
|
|
|
2002-09-06 04:19:25 +02:00
|
|
|
/// SimplifyCFG - This function is used to do simplification of a CFG. For
|
|
|
|
/// example, it adjusts branches to branches to eliminate the extra hop, it
|
|
|
|
/// eliminates unreachable basic blocks, and does other "peephole" optimization
|
|
|
|
/// of the CFG. It returns true if a modification was made, possibly deleting
|
|
|
|
/// the basic block that was pointed to.
|
|
|
|
///
|
|
|
|
/// WARNING: The entry node of a method may not be simplified.
|
|
|
|
///
|
2002-06-25 18:12:52 +02:00
|
|
|
bool SimplifyCFG(BasicBlock *BB);
|
2002-05-07 20:52:48 +02:00
|
|
|
|
2004-03-14 03:13:07 +01:00
|
|
|
/// DemoteRegToStack - This function takes a virtual register computed by an
|
2004-03-17 02:29:36 +01:00
|
|
|
/// Instruction and replaces it with a slot in the stack frame, allocated via
|
2004-03-14 03:13:07 +01:00
|
|
|
/// alloca. This allows the CFG to be changed around without fear of
|
|
|
|
/// invalidating the SSA information for the value. It returns the pointer to
|
|
|
|
/// the alloca inserted to create a stack slot for X.
|
|
|
|
///
|
2007-10-22 01:05:16 +02:00
|
|
|
AllocaInst *DemoteRegToStack(Instruction &X, bool VolatileLoads = false,
|
|
|
|
Instruction *AllocaPoint = NULL);
|
2004-03-14 03:13:07 +01:00
|
|
|
|
2007-07-11 20:41:34 +02:00
|
|
|
/// DemotePHIToStack - This function takes a virtual register computed by a phi
|
|
|
|
/// node and replaces it with a slot in the stack frame, allocated via alloca.
|
|
|
|
/// The phi node is deleted and it returns the pointer to the alloca inserted.
|
2007-10-22 01:05:16 +02:00
|
|
|
AllocaInst *DemotePHIToStack(PHINode *P, Instruction *AllocaPoint = NULL);
|
2007-07-11 20:41:34 +02:00
|
|
|
|
2003-11-11 23:41:34 +01:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2002-05-07 20:52:48 +02:00
|
|
|
#endif
|