mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-11-01 00:17:01 +00:00
For PR411:
Take an incremental step towards type plane elimination. This change separates types from values in the symbol tables by finally making use of the TypeSymbolTable class. This yields more natural interfaces for dealing with types and unclutters the SymbolTable class. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@32956 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -30,6 +30,7 @@ class Type;
|
||||
class Module;
|
||||
class Function;
|
||||
class SymbolTable;
|
||||
class TypeSymbolTable;
|
||||
class ConstantArray;
|
||||
|
||||
class SlotCalculator {
|
||||
@@ -168,7 +169,8 @@ private:
|
||||
// processSymbolTable - Insert all of the values in the specified symbol table
|
||||
// into the values table...
|
||||
//
|
||||
void processSymbolTable(const SymbolTable *ST);
|
||||
void processTypeSymbolTable(const TypeSymbolTable *ST);
|
||||
void processValueSymbolTable(const SymbolTable *ST);
|
||||
void processSymbolTableConstants(const SymbolTable *ST);
|
||||
|
||||
void buildCompactionTable(const Function *F);
|
||||
|
||||
Reference in New Issue
Block a user