diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2004-02-25 18:44:15 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2004-02-25 18:44:15 +0000 |
commit | 94e95d2b3eaaf3404b9306c7f402a26beb18c9c4 (patch) | |
tree | 01a3a8922d75ff482e96b9905550c37715f16674 /llvm/lib/Target/Sparc/StackSlots.cpp | |
parent | 864c9014443c716da8851661d8e26c11b16bcca4 (diff) | |
download | bcm5719-llvm-94e95d2b3eaaf3404b9306c7f402a26beb18c9c4.tar.gz bcm5719-llvm-94e95d2b3eaaf3404b9306c7f402a26beb18c9c4.zip |
Great renaming: Sparc --> SparcV9
llvm-svn: 11826
Diffstat (limited to 'llvm/lib/Target/Sparc/StackSlots.cpp')
-rw-r--r-- | llvm/lib/Target/Sparc/StackSlots.cpp | 54 |
1 files changed, 0 insertions, 54 deletions
diff --git a/llvm/lib/Target/Sparc/StackSlots.cpp b/llvm/lib/Target/Sparc/StackSlots.cpp deleted file mode 100644 index 5fd0ba19271..00000000000 --- a/llvm/lib/Target/Sparc/StackSlots.cpp +++ /dev/null @@ -1,54 +0,0 @@ -//===- StackSlots.cpp - Specialize LLVM code for target machine ----------===// -// -// The LLVM Compiler Infrastructure -// -// This file was developed by the LLVM research group and is distributed under -// the University of Illinois Open Source License. See LICENSE.TXT for details. -// -//===----------------------------------------------------------------------===// -// -// This pass adds 2 empty slots at the top of function stack. These two slots -// are later used during code reoptimization for spilling the register values -// when rewriting branches. -// -//===----------------------------------------------------------------------===// - -#include "SparcInternals.h" -#include "llvm/Constant.h" -#include "llvm/DerivedTypes.h" -#include "llvm/Function.h" -#include "llvm/CodeGen/MachineFunctionInfo.h" -#include "llvm/CodeGen/MachineFunctionPass.h" - -namespace llvm { - -namespace { - class StackSlots : public MachineFunctionPass { - const TargetMachine &Target; - public: - StackSlots(const TargetMachine &T) : Target(T) {} - - const char *getPassName() const { - return "Stack Slot Insertion for profiling code"; - } - - virtual void getAnalysisUsage(AnalysisUsage &AU) const { - AU.setPreservesCFG(); - } - - bool runOnMachineFunction(MachineFunction &MF) { - const Type *PtrInt = PointerType::get(Type::IntTy); - unsigned Size = Target.getTargetData().getTypeSize(PtrInt); - - Value *V = Constant::getNullValue(Type::IntTy); - MF.getInfo()->allocateLocalVar(V, 2*Size); - return true; - } - }; -} - -Pass *createStackSlotsPass(const TargetMachine &Target) { - return new StackSlots(Target); -} - -} // End llvm namespace |