1. constants can never occur in the symbol table.

2. All function-level constants are now incorporated into the module-level
  constant pool, since the compaction table was removed.  Eliminate extra
  work to check for them.

This speeds up the bcwriter from 24.4s to 13.1s on 447.dealII and .73 -> .56s
on kc++ in a release build.

llvm-svn: 34084
This commit is contained in:
Chris Lattner
2007-02-09 07:51:47 +00:00
parent e93db8fba2
commit fc30d1bb69
3 changed files with 0 additions and 21 deletions

View File

@@ -1112,8 +1112,6 @@ void BytecodeWriter::outputFunction(const Function *F) {
// Get slot information about the function...
Table.incorporateFunction(F);
outputConstants(true);
// Output all of the instructions in the body of the function
outputInstructions(F);