diff options
author | Bob Wilson <bob.wilson@apple.com> | 2011-11-16 07:57:21 +0000 |
---|---|---|
committer | Bob Wilson <bob.wilson@apple.com> | 2011-11-16 07:57:21 +0000 |
commit | f1b41dd38d2b2713e3870f384525b020bbac05f6 (patch) | |
tree | 75ef7b356d5cd0b478af9f593259edb37bbf68a6 /tools/llc | |
parent | 12755b07ab3e54d460146bfde06e2c3d8d10535a (diff) |
Record landing pads with a SmallSetVector to avoid multiple entries.
There may be many invokes that share one landing pad, and the previous code
would record the landing pad once for each invoke. Besides the wasted
effort, a pair of volatile loads gets inserted every time the landing pad is
processed. The rest of the code can get optimized away when a landing pad
is processed repeatedly, but the volatile loads remain, resulting in code like:
LBB35_18:
Ltmp483:
ldr r2, [r7, #-72]
ldr r2, [r7, #-68]
ldr r2, [r7, #-72]
ldr r2, [r7, #-68]
ldr r2, [r7, #-72]
ldr r2, [r7, #-68]
ldr r2, [r7, #-72]
ldr r2, [r7, #-68]
ldr r2, [r7, #-72]
ldr r2, [r7, #-68]
ldr r2, [r7, #-72]
ldr r2, [r7, #-68]
ldr r2, [r7, #-72]
ldr r2, [r7, #-68]
ldr r2, [r7, #-72]
ldr r2, [r7, #-68]
ldr r4, [r7, #-72]
ldr r2, [r7, #-68]
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@144787 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/llc')
0 files changed, 0 insertions, 0 deletions