summaryrefslogtreecommitdiff
path: root/lib/Target/Alpha/AlphaCodeEmitter.cpp
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2006-05-02 23:22:24 +0000
committerChris Lattner <sabre@nondot.org>2006-05-02 23:22:24 +0000
commitf75f9be3fb89eb6661a0ed8bfee8a6328ee5a4d1 (patch)
tree763c4953dc25b80928238b6ce38e918a2c4366c8 /lib/Target/Alpha/AlphaCodeEmitter.cpp
parent1f4549f35c69376a07360bd57ff06ed8f636d153 (diff)
downloadllvm-f75f9be3fb89eb6661a0ed8bfee8a6328ee5a4d1.tar.gz
llvm-f75f9be3fb89eb6661a0ed8bfee8a6328ee5a4d1.tar.bz2
llvm-f75f9be3fb89eb6661a0ed8bfee8a6328ee5a4d1.tar.xz
Several related changes:
1. Change several methods in the MachineCodeEmitter class to be pure virtual. 2. Suck emitConstantPool/initJumpTableInfo into startFunction, removing them from the MachineCodeEmitter interface, and reducing the amount of target- specific code. 3. Change the JITEmitter so that it allocates constantpools and jump tables *right* next to the functions that they belong to, instead of in a separate pool of memory. This makes all memory for a function be contiguous, and means the JITEmitter only tracks one block of memory now. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@28065 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/Alpha/AlphaCodeEmitter.cpp')
-rw-r--r--lib/Target/Alpha/AlphaCodeEmitter.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/lib/Target/Alpha/AlphaCodeEmitter.cpp b/lib/Target/Alpha/AlphaCodeEmitter.cpp
index a04cd37adc..1c3398ea07 100644
--- a/lib/Target/Alpha/AlphaCodeEmitter.cpp
+++ b/lib/Target/Alpha/AlphaCodeEmitter.cpp
@@ -81,7 +81,6 @@ bool AlphaCodeEmitter::runOnMachineFunction(MachineFunction &MF) {
BasicBlockAddrs.clear();
MCE.startFunction(MF);
- MCE.emitConstantPool(MF.getConstantPool());
for (MachineFunction::iterator I = MF.begin(), E = MF.end(); I != E; ++I)
emitBasicBlock(*I);
} while (MCE.finishFunction(MF));