2003-02-22 23:04:52 +00:00
|
|
|
//===- PromoteMemToReg.h - Promote Allocas to Scalars -----------*- C++ -*-===//
|
2005-04-21 20:59:05 +00:00
|
|
|
//
|
2003-10-20 20:19:47 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 19:59:42 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 20:59:05 +00:00
|
|
|
//
|
2003-10-20 20:19:47 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2003-02-22 23:04:52 +00:00
|
|
|
//
|
|
|
|
// This file exposes an interface to promote alloca instructions to SSA
|
|
|
|
// registers, by using the SSA construction algorithm.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2013-01-10 00:45:19 +00:00
|
|
|
#ifndef LLVM_TRANSFORMS_UTILS_PROMOTEMEMTOREG_H
|
|
|
|
#define LLVM_TRANSFORMS_UTILS_PROMOTEMEMTOREG_H
|
2003-02-22 23:04:52 +00:00
|
|
|
|
2013-07-21 08:37:58 +00:00
|
|
|
#include "llvm/ADT/ArrayRef.h"
|
2003-11-11 22:41:34 +00:00
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
2003-02-22 23:04:52 +00:00
|
|
|
class AllocaInst;
|
2007-06-07 21:57:03 +00:00
|
|
|
class DominatorTree;
|
2004-09-15 01:02:30 +00:00
|
|
|
class AliasSetTracker;
|
2003-02-22 23:04:52 +00:00
|
|
|
|
2013-07-20 22:20:05 +00:00
|
|
|
/// \brief Return true if this alloca is legal for promotion.
|
2003-02-22 23:04:52 +00:00
|
|
|
///
|
2013-07-20 22:20:05 +00:00
|
|
|
/// This is true if there are only loads, stores, and lifetime markers
|
|
|
|
/// (transitively) using this alloca. This also enforces that there is only
|
|
|
|
/// ever one layer of bitcasts or GEPs between the alloca and the lifetime
|
|
|
|
/// markers.
|
2013-08-13 22:51:58 +00:00
|
|
|
bool isAllocaPromotable(const AllocaInst *AI);
|
2003-02-22 23:04:52 +00:00
|
|
|
|
2013-07-20 22:20:05 +00:00
|
|
|
/// \brief Promote the specified list of alloca instructions into scalar
|
|
|
|
/// registers, inserting PHI nodes as appropriate.
|
|
|
|
///
|
|
|
|
/// This function makes use of DominanceFrontier information. This function
|
|
|
|
/// does not modify the CFG of the function at all. All allocas must be from
|
|
|
|
/// the same function.
|
2003-02-22 23:04:52 +00:00
|
|
|
///
|
2004-09-15 01:02:30 +00:00
|
|
|
/// If AST is specified, the specified tracker is updated to reflect changes
|
|
|
|
/// made to the IR.
|
2013-07-21 08:37:58 +00:00
|
|
|
void PromoteMemToReg(ArrayRef<AllocaInst *> Allocas, DominatorTree &DT,
|
2013-08-13 22:51:58 +00:00
|
|
|
AliasSetTracker *AST = 0);
|
2003-02-22 23:04:52 +00:00
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2003-02-22 23:04:52 +00:00
|
|
|
#endif
|