Add more const qualifiers for LLVM IR pointers in CodeGen.

llvm-svn: 101342
This commit is contained in:
Dan Gohman 2010-04-15 04:33:49 +00:00
parent 553267e9cc
commit 64a84ceb3f
9 changed files with 30 additions and 28 deletions

View File

@ -70,7 +70,7 @@ struct MachineFunctionInfo {
}; };
class MachineFunction { class MachineFunction {
Function *Fn; const Function *Fn;
const TargetMachine &Target; const TargetMachine &Target;
MCContext &Ctx; MCContext &Ctx;
MachineModuleInfo &MMI; MachineModuleInfo &MMI;
@ -124,8 +124,8 @@ class MachineFunction {
MachineFunction(const MachineFunction &); // DO NOT IMPLEMENT MachineFunction(const MachineFunction &); // DO NOT IMPLEMENT
void operator=(const MachineFunction&); // DO NOT IMPLEMENT void operator=(const MachineFunction&); // DO NOT IMPLEMENT
public: public:
MachineFunction(Function *Fn, const TargetMachine &TM, unsigned FunctionNum, MachineFunction(const Function *Fn, const TargetMachine &TM,
MachineModuleInfo &MMI); unsigned FunctionNum, MachineModuleInfo &MMI);
~MachineFunction(); ~MachineFunction();
MachineModuleInfo &getMMI() const { return MMI; } MachineModuleInfo &getMMI() const { return MMI; }
@ -133,7 +133,7 @@ public:
/// getFunction - Return the LLVM function that this machine code represents /// getFunction - Return the LLVM function that this machine code represents
/// ///
Function *getFunction() const { return Fn; } const Function *getFunction() const { return Fn; }
/// getFunctionNumber - Return a unique ID for the current function. /// getFunctionNumber - Return a unique ID for the current function.
/// ///

View File

@ -208,7 +208,7 @@ ELFSection &ELFWriter::getDtorSection() {
} }
// getTextSection - Get the text section for the specified function // getTextSection - Get the text section for the specified function
ELFSection &ELFWriter::getTextSection(Function *F) { ELFSection &ELFWriter::getTextSection(const Function *F) {
const MCSectionELF *Text = const MCSectionELF *Text =
(const MCSectionELF *)TLOF.SectionForGlobal(F, Mang, TM); (const MCSectionELF *)TLOF.SectionForGlobal(F, Mang, TM);
return getSection(Text->getSectionName(), Text->getType(), Text->getFlags()); return getSection(Text->getSectionName(), Text->getType(), Text->getFlags());

View File

@ -191,7 +191,7 @@ namespace llvm {
ELFSection &getDtorSection(); ELFSection &getDtorSection();
ELFSection &getJumpTableSection(); ELFSection &getJumpTableSection();
ELFSection &getConstantPoolSection(MachineConstantPoolEntry &CPE); ELFSection &getConstantPoolSection(MachineConstantPoolEntry &CPE);
ELFSection &getTextSection(Function *F); ELFSection &getTextSection(const Function *F);
ELFSection &getRelocSection(ELFSection &S); ELFSection &getRelocSection(ELFSection &S);
// Helpers for obtaining ELF specific info. // Helpers for obtaining ELF specific info.

View File

@ -51,7 +51,7 @@ void ilist_traits<MachineBasicBlock>::deleteNode(MachineBasicBlock *MBB) {
MBB->getParent()->DeleteMachineBasicBlock(MBB); MBB->getParent()->DeleteMachineBasicBlock(MBB);
} }
MachineFunction::MachineFunction(Function *F, const TargetMachine &TM, MachineFunction::MachineFunction(const Function *F, const TargetMachine &TM,
unsigned FunctionNum, MachineModuleInfo &mmi) unsigned FunctionNum, MachineModuleInfo &mmi)
: Fn(F), Target(TM), Ctx(mmi.getContext()), MMI(mmi) { : Fn(F), Target(TM), Ctx(mmi.getContext()), MMI(mmi) {
if (TM.getRegisterInfo()) if (TM.getRegisterInfo())

View File

@ -123,10 +123,11 @@ void llvm::ComputeValueVTs(const TargetLowering &TLI, const Type *Ty,
/// isUsedOutsideOfDefiningBlock - Return true if this instruction is used by /// isUsedOutsideOfDefiningBlock - Return true if this instruction is used by
/// PHI nodes or outside of the basic block that defines it, or used by a /// PHI nodes or outside of the basic block that defines it, or used by a
/// switch or atomic instruction, which may expand to multiple basic blocks. /// switch or atomic instruction, which may expand to multiple basic blocks.
static bool isUsedOutsideOfDefiningBlock(Instruction *I) { static bool isUsedOutsideOfDefiningBlock(const Instruction *I) {
if (isa<PHINode>(I)) return true; if (isa<PHINode>(I)) return true;
BasicBlock *BB = I->getParent(); const BasicBlock *BB = I->getParent();
for (Value::use_iterator UI = I->use_begin(), E = I->use_end(); UI != E; ++UI) for (Value::const_use_iterator UI = I->use_begin(), E = I->use_end();
UI != E; ++UI)
if (cast<Instruction>(*UI)->getParent() != BB || isa<PHINode>(*UI)) if (cast<Instruction>(*UI)->getParent() != BB || isa<PHINode>(*UI))
return true; return true;
return false; return false;
@ -135,7 +136,7 @@ static bool isUsedOutsideOfDefiningBlock(Instruction *I) {
/// isOnlyUsedInEntryBlock - If the specified argument is only used in the /// isOnlyUsedInEntryBlock - If the specified argument is only used in the
/// entry block, return true. This includes arguments used by switches, since /// entry block, return true. This includes arguments used by switches, since
/// the switch may expand into multiple basic blocks. /// the switch may expand into multiple basic blocks.
static bool isOnlyUsedInEntryBlock(Argument *A, bool EnableFastISel) { static bool isOnlyUsedInEntryBlock(const Argument *A, bool EnableFastISel) {
// With FastISel active, we may be splitting blocks, so force creation // With FastISel active, we may be splitting blocks, so force creation
// of virtual registers for all non-dead arguments. // of virtual registers for all non-dead arguments.
// Don't force virtual registers for byval arguments though, because // Don't force virtual registers for byval arguments though, because
@ -143,8 +144,9 @@ static bool isOnlyUsedInEntryBlock(Argument *A, bool EnableFastISel) {
if (EnableFastISel && !A->hasByValAttr()) if (EnableFastISel && !A->hasByValAttr())
return A->use_empty(); return A->use_empty();
BasicBlock *Entry = A->getParent()->begin(); const BasicBlock *Entry = A->getParent()->begin();
for (Value::use_iterator UI = A->use_begin(), E = A->use_end(); UI != E; ++UI) for (Value::const_use_iterator UI = A->use_begin(), E = A->use_end();
UI != E; ++UI)
if (cast<Instruction>(*UI)->getParent() != Entry || isa<SwitchInst>(*UI)) if (cast<Instruction>(*UI)->getParent() != Entry || isa<SwitchInst>(*UI))
return false; // Use not in entry block. return false; // Use not in entry block.
return true; return true;
@ -154,7 +156,7 @@ FunctionLoweringInfo::FunctionLoweringInfo(TargetLowering &tli)
: TLI(tli) { : TLI(tli) {
} }
void FunctionLoweringInfo::set(Function &fn, MachineFunction &mf, void FunctionLoweringInfo::set(const Function &fn, MachineFunction &mf,
bool EnableFastISel) { bool EnableFastISel) {
Fn = &fn; Fn = &fn;
MF = &mf; MF = &mf;
@ -162,7 +164,7 @@ void FunctionLoweringInfo::set(Function &fn, MachineFunction &mf,
// Create a vreg for each argument register that is not dead and is used // Create a vreg for each argument register that is not dead and is used
// outside of the entry block for the function. // outside of the entry block for the function.
for (Function::arg_iterator AI = Fn->arg_begin(), E = Fn->arg_end(); for (Function::const_arg_iterator AI = Fn->arg_begin(), E = Fn->arg_end();
AI != E; ++AI) AI != E; ++AI)
if (!isOnlyUsedInEntryBlock(AI, EnableFastISel)) if (!isOnlyUsedInEntryBlock(AI, EnableFastISel))
InitializeRegForValue(AI); InitializeRegForValue(AI);
@ -170,10 +172,10 @@ void FunctionLoweringInfo::set(Function &fn, MachineFunction &mf,
// Initialize the mapping of values to registers. This is only set up for // Initialize the mapping of values to registers. This is only set up for
// instruction values that are used outside of the block that defines // instruction values that are used outside of the block that defines
// them. // them.
Function::iterator BB = Fn->begin(), EB = Fn->end(); Function::const_iterator BB = Fn->begin(), EB = Fn->end();
for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E; ++I)
if (AllocaInst *AI = dyn_cast<AllocaInst>(I)) if (const AllocaInst *AI = dyn_cast<AllocaInst>(I))
if (ConstantInt *CUI = dyn_cast<ConstantInt>(AI->getArraySize())) { if (const ConstantInt *CUI = dyn_cast<ConstantInt>(AI->getArraySize())) {
const Type *Ty = AI->getAllocatedType(); const Type *Ty = AI->getAllocatedType();
uint64_t TySize = TLI.getTargetData()->getTypeAllocSize(Ty); uint64_t TySize = TLI.getTargetData()->getTypeAllocSize(Ty);
unsigned Align = unsigned Align =
@ -187,7 +189,7 @@ void FunctionLoweringInfo::set(Function &fn, MachineFunction &mf,
} }
for (; BB != EB; ++BB) for (; BB != EB; ++BB)
for (BasicBlock::iterator I = BB->begin(), E = BB->end(); I != E; ++I) for (BasicBlock::const_iterator I = BB->begin(), E = BB->end(); I != E; ++I)
if (!I->use_empty() && isUsedOutsideOfDefiningBlock(I)) if (!I->use_empty() && isUsedOutsideOfDefiningBlock(I))
if (!isa<AllocaInst>(I) || if (!isa<AllocaInst>(I) ||
!StaticAllocaMap.count(cast<AllocaInst>(I))) !StaticAllocaMap.count(cast<AllocaInst>(I)))
@ -209,9 +211,9 @@ void FunctionLoweringInfo::set(Function &fn, MachineFunction &mf,
// Create Machine PHI nodes for LLVM PHI nodes, lowering them as // Create Machine PHI nodes for LLVM PHI nodes, lowering them as
// appropriate. // appropriate.
PHINode *PN; const PHINode *PN;
DebugLoc DL; DebugLoc DL;
for (BasicBlock::iterator for (BasicBlock::const_iterator
I = BB->begin(), E = BB->end(); I != E; ++I) { I = BB->begin(), E = BB->end(); I != E; ++I) {
PN = dyn_cast<PHINode>(I); PN = dyn_cast<PHINode>(I);
@ -235,7 +237,7 @@ void FunctionLoweringInfo::set(Function &fn, MachineFunction &mf,
// Mark landing pad blocks. // Mark landing pad blocks.
for (BB = Fn->begin(); BB != EB; ++BB) for (BB = Fn->begin(); BB != EB; ++BB)
if (InvokeInst *Invoke = dyn_cast<InvokeInst>(BB->getTerminator())) if (const InvokeInst *Invoke = dyn_cast<InvokeInst>(BB->getTerminator()))
MBBMap[Invoke->getSuccessor(1)]->setIsLandingPad(); MBBMap[Invoke->getSuccessor(1)]->setIsLandingPad();
} }

View File

@ -48,7 +48,7 @@ class Value;
class FunctionLoweringInfo { class FunctionLoweringInfo {
public: public:
TargetLowering &TLI; TargetLowering &TLI;
Function *Fn; const Function *Fn;
MachineFunction *MF; MachineFunction *MF;
MachineRegisterInfo *RegInfo; MachineRegisterInfo *RegInfo;
@ -93,7 +93,7 @@ public:
/// set - Initialize this FunctionLoweringInfo with the given Function /// set - Initialize this FunctionLoweringInfo with the given Function
/// and its associated MachineFunction. /// and its associated MachineFunction.
/// ///
void set(Function &Fn, MachineFunction &MF, bool EnableFastISel); void set(const Function &Fn, MachineFunction &MF, bool EnableFastISel);
/// clear - Clear out all the function-specific state. This returns this /// clear - Clear out all the function-specific state. This returns this
/// FunctionLoweringInfo to an empty state, ready to be used for a /// FunctionLoweringInfo to an empty state, ready to be used for a

View File

@ -3610,7 +3610,7 @@ static SDValue ExpandPowI(DebugLoc DL, SDValue LHS, SDValue RHS,
if (Val == 0) if (Val == 0)
return DAG.getConstantFP(1.0, LHS.getValueType()); return DAG.getConstantFP(1.0, LHS.getValueType());
Function *F = DAG.getMachineFunction().getFunction(); const Function *F = DAG.getMachineFunction().getFunction();
if (!F->hasFnAttr(Attribute::OptimizeForSize) || if (!F->hasFnAttr(Attribute::OptimizeForSize) ||
// If optimizing for size, don't insert too many multiplies. This // If optimizing for size, don't insert too many multiplies. This
// inserts up to 5 multiplies. // inserts up to 5 multiplies.

View File

@ -195,7 +195,7 @@ bool SelectionDAGISel::runOnMachineFunction(MachineFunction &mf) {
assert((!EnableFastISelAbort || EnableFastISel) && assert((!EnableFastISelAbort || EnableFastISel) &&
"-fast-isel-abort requires -fast-isel"); "-fast-isel-abort requires -fast-isel");
Function &Fn = *mf.getFunction(); const Function &Fn = *mf.getFunction();
const TargetInstrInfo &TII = *TM.getInstrInfo(); const TargetInstrInfo &TII = *TM.getInstrInfo();
const TargetRegisterInfo &TRI = *TM.getRegisterInfo(); const TargetRegisterInfo &TRI = *TM.getRegisterInfo();

View File

@ -1358,7 +1358,7 @@ ARMPreAllocLoadStoreOpt::CanFormLdStDWord(MachineInstr *Op0, MachineInstr *Op1,
return false; return false;
unsigned Align = (*Op0->memoperands_begin())->getAlignment(); unsigned Align = (*Op0->memoperands_begin())->getAlignment();
Function *Func = MF->getFunction(); const Function *Func = MF->getFunction();
unsigned ReqAlign = STI->hasV6Ops() unsigned ReqAlign = STI->hasV6Ops()
? TD->getPrefTypeAlignment(Type::getInt64Ty(Func->getContext())) ? TD->getPrefTypeAlignment(Type::getInt64Ty(Func->getContext()))
: 8; // Pre-v6 need 8-byte align : 8; // Pre-v6 need 8-byte align