aboutsummaryrefslogtreecommitdiff
path: root/lib/Bytecode/Writer/WriterInternals.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2004-01-18 21:08:52 +0000
committerChris Lattner <sabre@nondot.org>2004-01-18 21:08:52 +0000
commitcf3e67f70a558792e2764bc107b245f50868288f (patch)
tree0611219a1769294dd7f8d8ec8b823cdd9dbb7fa5 /lib/Bytecode/Writer/WriterInternals.h
parent89e025387eee7f3f03749fd54ab5e6ce36495c0a (diff)
Add support for writing bytecode files with compactiontables for bytecode files.
This shrinks the bytecode file for 176.gcc by about 200K (10%), and 254.gap by about 167K, a 25% reduction. There is still a lot of room for improvement in the encoding of the compaction table. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10915 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Bytecode/Writer/WriterInternals.h')
-rw-r--r--lib/Bytecode/Writer/WriterInternals.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/lib/Bytecode/Writer/WriterInternals.h b/lib/Bytecode/Writer/WriterInternals.h
index 15dbeffc86..1e47f5ef99 100644
--- a/lib/Bytecode/Writer/WriterInternals.h
+++ b/lib/Bytecode/Writer/WriterInternals.h
@@ -37,7 +37,12 @@ private:
void outputConstants(bool isFunction);
void outputConstantStrings();
void outputFunction(const Function *F);
- void processInstruction(const Instruction &I);
+ void outputCompactionTable();
+ void outputCompactionTablePlane(unsigned PlaneNo,
+ const std::vector<const Value*> &TypePlane,
+ unsigned StartNo);
+ void outputInstructions(const Function *F);
+ void outputInstruction(const Instruction &I);
void outputModuleInfoBlock(const Module *C);
void outputSymbolTable(const SymbolTable &ST);