diff options
author | Chris Lattner <sabre@nondot.org> | 2002-10-28 02:08:43 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2002-10-28 02:08:43 +0000 |
commit | 8e7ae9860bd1f29c95e4e10fe151a22aaafafef9 (patch) | |
tree | dd867ae4501daffe60ef03bad06dd7ed843bde68 /include/llvm/CodeGen/MachineFunction.h | |
parent | e61a584f98b1133ca1b8e3b411a3c6fb892542e4 (diff) |
Add BasicBlock list to MchineFunction that will eventually be the only
way to access MachineBasicBlocks. For now, it is never filled.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@4324 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/MachineFunction.h')
-rw-r--r-- | include/llvm/CodeGen/MachineFunction.h | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/include/llvm/CodeGen/MachineFunction.h b/include/llvm/CodeGen/MachineFunction.h index 64cd4b5661..131b0359f7 100644 --- a/include/llvm/CodeGen/MachineFunction.h +++ b/include/llvm/CodeGen/MachineFunction.h @@ -12,7 +12,9 @@ #include "llvm/CodeGen/MachineBasicBlock.h" #include "Support/NonCopyable.h" #include "Support/HashExtras.h" -#include <Support/hash_set> +#include "Support/hash_set" +#include "Support/ilist" + class Value; class Function; class Constant; @@ -24,11 +26,14 @@ Pass *createMachineCodeConstructionPass(TargetMachine &Target); Pass *createMachineCodeDestructionPass(); class MachineFunction : private Annotation { - hash_set<const Constant*> constantsForConstPool; - hash_map<const Value*, int> offsets; - const Function* method; + const Function *method; + + // List of machine basic blocks in function + iplist<MachineBasicBlock> BasicBlocks; // FIXME: State should be held elsewhere... + hash_set<const Constant*> constantsForConstPool; + hash_map<const Value*, int> offsets; unsigned staticStackSize; unsigned automaticVarsSize; unsigned regSpillsSize; |