diff options
author | Chris Lattner <sabre@nondot.org> | 2004-11-01 06:53:58 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-11-01 06:53:58 +0000 |
commit | 93d1e39f3e1fab11890a11d189f355033bdddde3 (patch) | |
tree | 05413a988facd2b6f0434757b5f9f24cb2a19b20 /llvm/lib/Transforms/Scalar/TailDuplication.cpp | |
parent | 615e7fbcf3a13fb79f36f7106fd0f0a5152851dd (diff) | |
download | bcm5719-llvm-93d1e39f3e1fab11890a11d189f355033bdddde3.tar.gz bcm5719-llvm-93d1e39f3e1fab11890a11d189f355033bdddde3.zip |
Do not compute the predecessor list for a block unless we need it.
This speeds up simplifycfg on this program, from 44.87s to 0.29s (with
a profiled build):
#define CL0(a) case a: goto c;
#define CL1(a) CL0(a##0) CL0(a##1) CL0(a##2) CL0(a##3) CL0(a##4) CL0(a##5) \
CL0(a##6) CL0(a##7) CL0(a##8) CL0(a##9)
#define CL2(a) CL1(a##0) CL1(a##1) CL1(a##2) CL1(a##3) CL1(a##4) CL1(a##5) \
CL1(a##6) CL1(a##7) CL1(a##8) CL1(a##9)
#define CL3(a) CL2(a##0) CL2(a##1) CL2(a##2) CL2(a##3) CL2(a##4) CL2(a##5) \
CL2(a##6) CL2(a##7) CL2(a##8) CL2(a##9)
#define CL4(a) CL3(a##0) CL3(a##1) CL3(a##2) CL3(a##3) CL3(a##4) CL3(a##5) \
CL3(a##6) CL3(a##7) CL3(a##8) CL3(a##9)
void f();
void a() {
int b;
c: switch (b) {
CL4(1)
}
}
This testcase is contrived to expose N^2 behavior, but this patch should speedup
simplifycfg on any programs that use large switch statements. This testcase
comes from GCC PR17895.
llvm-svn: 17389
Diffstat (limited to 'llvm/lib/Transforms/Scalar/TailDuplication.cpp')
0 files changed, 0 insertions, 0 deletions