diff options
author | Chris Lattner <sabre@nondot.org> | 2005-01-11 23:21:30 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2005-01-11 23:21:30 +0000 |
commit | 837caa722376d3f9539d3e44e39ce7cd5a62b733 (patch) | |
tree | af793cf83f667ec03f17fdee2cc8cdb522ed7175 /lib/Analysis/DataStructure/DataStructure.cpp | |
parent | 5f75d9a88c32f4aa47cc8a91dd6e59fdce711cc3 (diff) |
Comment out debug code :)
Select [mem] += Val operations. For constants, we used to get:
mov %ECX, -32768
add %ECX, DWORD PTR [l4_match_start]
mov DWORD PTR [l4_match_start], %ECX
Now we get:
add DWORD PTR [l4_match_start], -32768
For other values we used to get:
mov %EBP, %EDI ;; because the add destroys the value
add %EBP, DWORD PTR [l4_input_len]
mov DWORD PTR [l4_input_len], %EBP
now we get:
add DWORD PTR [l4_input_len], %EDI
Both of these use less registers than the alternative, are faster and smaller.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@19488 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Analysis/DataStructure/DataStructure.cpp')
0 files changed, 0 insertions, 0 deletions