2009-11-23 17:16:22 +00:00
|
|
|
//===-- FunctionLoweringInfo.h - Lower functions from LLVM IR to CodeGen --===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This implements routines for translating functions from LLVM IR into
|
|
|
|
// Machine IR.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef FUNCTIONLOWERINGINFO_H
|
|
|
|
#define FUNCTIONLOWERINGINFO_H
|
|
|
|
|
2010-04-14 18:31:02 +00:00
|
|
|
#include "llvm/InlineAsm.h"
|
|
|
|
#include "llvm/Instructions.h"
|
2009-11-23 17:16:22 +00:00
|
|
|
#include "llvm/ADT/APInt.h"
|
|
|
|
#include "llvm/ADT/DenseMap.h"
|
2010-04-29 01:39:13 +00:00
|
|
|
#include "llvm/ADT/SmallVector.h"
|
2009-11-23 17:16:22 +00:00
|
|
|
#ifndef NDEBUG
|
|
|
|
#include "llvm/ADT/SmallSet.h"
|
|
|
|
#endif
|
|
|
|
#include "llvm/CodeGen/ValueTypes.h"
|
2010-04-14 18:49:17 +00:00
|
|
|
#include "llvm/CodeGen/ISDOpcodes.h"
|
2010-04-19 18:41:46 +00:00
|
|
|
#include "llvm/Support/CallSite.h"
|
2009-11-23 17:16:22 +00:00
|
|
|
#include <vector>
|
|
|
|
|
|
|
|
namespace llvm {
|
|
|
|
|
|
|
|
class AllocaInst;
|
|
|
|
class BasicBlock;
|
2009-11-23 17:42:46 +00:00
|
|
|
class CallInst;
|
2009-11-23 17:16:22 +00:00
|
|
|
class Function;
|
2009-11-23 17:42:46 +00:00
|
|
|
class GlobalVariable;
|
2009-11-23 17:16:22 +00:00
|
|
|
class Instruction;
|
2010-04-22 19:55:20 +00:00
|
|
|
class MachineInstr;
|
2009-11-23 17:16:22 +00:00
|
|
|
class MachineBasicBlock;
|
|
|
|
class MachineFunction;
|
2009-11-23 17:42:46 +00:00
|
|
|
class MachineModuleInfo;
|
2009-11-23 17:16:22 +00:00
|
|
|
class MachineRegisterInfo;
|
|
|
|
class TargetLowering;
|
|
|
|
class Value;
|
|
|
|
|
|
|
|
//===--------------------------------------------------------------------===//
|
|
|
|
/// FunctionLoweringInfo - This contains information that is global to a
|
|
|
|
/// function that is used when lowering a region of the function.
|
|
|
|
///
|
|
|
|
class FunctionLoweringInfo {
|
|
|
|
public:
|
2010-04-17 15:26:15 +00:00
|
|
|
const TargetLowering &TLI;
|
2010-04-15 04:33:49 +00:00
|
|
|
const Function *Fn;
|
2009-11-23 17:16:22 +00:00
|
|
|
MachineFunction *MF;
|
|
|
|
MachineRegisterInfo *RegInfo;
|
|
|
|
|
|
|
|
/// CanLowerReturn - true iff the function's return value can be lowered to
|
|
|
|
/// registers.
|
|
|
|
bool CanLowerReturn;
|
|
|
|
|
|
|
|
/// DemoteRegister - if CanLowerReturn is false, DemoteRegister is a vreg
|
|
|
|
/// allocated to hold a pointer to the hidden sret parameter.
|
|
|
|
unsigned DemoteRegister;
|
|
|
|
|
|
|
|
/// MBBMap - A mapping from LLVM basic blocks to their machine code entry.
|
|
|
|
DenseMap<const BasicBlock*, MachineBasicBlock *> MBBMap;
|
|
|
|
|
|
|
|
/// ValueMap - Since we emit code for the function a basic block at a time,
|
|
|
|
/// we must remember which virtual registers hold the values for
|
|
|
|
/// cross-basic-block values.
|
|
|
|
DenseMap<const Value*, unsigned> ValueMap;
|
|
|
|
|
|
|
|
/// StaticAllocaMap - Keep track of frame indices for fixed sized allocas in
|
|
|
|
/// the entry block. This allows the allocas to be efficiently referenced
|
|
|
|
/// anywhere in the function.
|
|
|
|
DenseMap<const AllocaInst*, int> StaticAllocaMap;
|
|
|
|
|
2010-04-29 06:58:53 +00:00
|
|
|
/// ArgDbgValues - A list of DBG_VALUE instructions created during isel for
|
|
|
|
/// function arguments that are inserted after scheduling is completed.
|
2010-04-28 23:08:54 +00:00
|
|
|
SmallVector<MachineInstr*, 8> ArgDbgValues;
|
|
|
|
|
2009-11-23 17:16:22 +00:00
|
|
|
#ifndef NDEBUG
|
2010-04-14 19:53:31 +00:00
|
|
|
SmallSet<const Instruction *, 8> CatchInfoLost;
|
|
|
|
SmallSet<const Instruction *, 8> CatchInfoFound;
|
2009-11-23 17:16:22 +00:00
|
|
|
#endif
|
|
|
|
|
2010-04-14 02:09:45 +00:00
|
|
|
struct LiveOutInfo {
|
|
|
|
unsigned NumSignBits;
|
|
|
|
APInt KnownOne, KnownZero;
|
|
|
|
LiveOutInfo() : NumSignBits(0), KnownOne(1, 0), KnownZero(1, 0) {}
|
|
|
|
};
|
|
|
|
|
|
|
|
/// LiveOutRegInfo - Information about live out vregs, indexed by their
|
|
|
|
/// register number offset by 'FirstVirtualRegister'.
|
|
|
|
std::vector<LiveOutInfo> LiveOutRegInfo;
|
|
|
|
|
2010-04-22 19:55:20 +00:00
|
|
|
/// PHINodesToUpdate - A list of phi instructions whose operand list will
|
|
|
|
/// be updated after processing the current basic block.
|
|
|
|
/// TODO: This isn't per-function state, it's per-basic-block state. But
|
|
|
|
/// there's no other convenient place for it to live right now.
|
|
|
|
std::vector<std::pair<MachineInstr*, unsigned> > PHINodesToUpdate;
|
|
|
|
|
2010-04-17 15:26:15 +00:00
|
|
|
explicit FunctionLoweringInfo(const TargetLowering &TLI);
|
2010-04-14 02:09:45 +00:00
|
|
|
|
|
|
|
/// set - Initialize this FunctionLoweringInfo with the given Function
|
|
|
|
/// and its associated MachineFunction.
|
|
|
|
///
|
2010-05-29 17:03:36 +00:00
|
|
|
void set(const Function &Fn, MachineFunction &MF);
|
2010-04-14 02:09:45 +00:00
|
|
|
|
|
|
|
/// clear - Clear out all the function-specific state. This returns this
|
|
|
|
/// FunctionLoweringInfo to an empty state, ready to be used for a
|
|
|
|
/// different function.
|
|
|
|
void clear();
|
|
|
|
|
2009-11-23 17:16:22 +00:00
|
|
|
unsigned MakeReg(EVT VT);
|
|
|
|
|
|
|
|
/// isExportedInst - Return true if the specified value is an instruction
|
|
|
|
/// exported from its block.
|
|
|
|
bool isExportedInst(const Value *V) {
|
|
|
|
return ValueMap.count(V);
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned CreateRegForValue(const Value *V);
|
|
|
|
|
|
|
|
unsigned InitializeRegForValue(const Value *V) {
|
|
|
|
unsigned &R = ValueMap[V];
|
|
|
|
assert(R == 0 && "Already initialized this value register!");
|
|
|
|
return R = CreateRegForValue(V);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2009-11-23 17:42:46 +00:00
|
|
|
/// AddCatchInfo - Extract the personality and type infos from an eh.selector
|
|
|
|
/// call, and add them to the specified machine basic block.
|
2010-04-14 19:53:31 +00:00
|
|
|
void AddCatchInfo(const CallInst &I,
|
|
|
|
MachineModuleInfo *MMI, MachineBasicBlock *MBB);
|
2009-11-23 17:42:46 +00:00
|
|
|
|
2009-11-23 18:12:11 +00:00
|
|
|
/// CopyCatchInfo - Copy catch information from DestBB to SrcBB.
|
2010-04-14 19:53:31 +00:00
|
|
|
void CopyCatchInfo(const BasicBlock *SrcBB, const BasicBlock *DestBB,
|
2009-11-23 18:12:11 +00:00
|
|
|
MachineModuleInfo *MMI, FunctionLoweringInfo &FLI);
|
|
|
|
|
2009-11-23 17:16:22 +00:00
|
|
|
} // end namespace llvm
|
|
|
|
|
|
|
|
#endif
|