Chris Lattner
d96428597b
Fix a significant code quality regression I introduced on PPC64 quite
a while ago. We now produce:
_foo:
mflr r0
std r0, 16(r1)
ld r2, 16(r1)
std r2, 0(r3)
ld r0, 16(r1)
mtlr r0
blr
instead of:
_foo:
mflr r0
std r0, 16(r1)
lis r0, 0
ori r0, r0, 16
ldx r2, r1, r0
std r2, 0(r3)
ld r0, 16(r1)
mtlr r0
blr
for:
void foo(void **X) {
*X = __builtin_return_address(0);
}
on ppc64.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@44701 91177308-0d34-0410-b5e6-96231b3b80d8
2007-12-08 07:04:58 +00:00
..
2007-08-15 13:36:28 +00:00
2007-07-13 10:08:18 +00:00
2007-08-15 13:36:28 +00:00
2007-07-13 10:08:18 +00:00
2007-04-30 05:11:58 +00:00
2007-08-15 13:36:28 +00:00
2007-08-04 01:51:18 +00:00
2007-04-24 22:49:57 +00:00
2007-04-30 21:10:13 +00:00
2007-05-03 16:54:08 +00:00
2007-05-15 01:33:12 +00:00
2007-08-15 13:36:28 +00:00
2007-07-19 23:13:04 +00:00
2007-07-05 23:00:50 +00:00
2007-08-14 23:21:10 +00:00
2007-09-05 04:05:20 +00:00
2007-09-07 22:01:02 +00:00
2007-09-08 19:29:23 +00:00
2007-09-11 22:34:47 +00:00
2007-09-12 23:02:04 +00:00
2007-10-16 18:00:18 +00:00
2007-10-18 08:32:37 +00:00
2007-10-23 06:42:42 +00:00
2007-10-22 19:46:19 +00:00
2007-11-05 06:46:45 +00:00
2007-11-16 23:16:35 +00:00
2007-11-19 21:43:22 +00:00
2007-08-15 13:36:28 +00:00
2007-08-15 13:36:28 +00:00
2007-07-19 23:13:04 +00:00
2007-07-19 23:13:04 +00:00
2007-07-06 13:15:51 +00:00
2007-07-16 13:37:30 +00:00
2007-07-06 13:15:51 +00:00
2007-08-15 13:36:28 +00:00
2007-08-15 13:36:28 +00:00
2007-08-15 13:36:28 +00:00
2007-08-15 13:36:28 +00:00
2007-07-09 17:14:58 +00:00
2007-08-15 13:36:28 +00:00
2007-04-21 20:41:27 +00:00
2007-08-15 13:36:28 +00:00
2007-08-15 13:36:28 +00:00
2007-09-14 20:37:18 +00:00
2007-08-15 13:36:28 +00:00
2007-05-14 22:04:16 +00:00
2007-08-15 13:36:28 +00:00
2007-08-15 13:36:28 +00:00
2007-05-09 19:20:37 +00:00
2007-07-30 19:09:17 +00:00
2007-11-27 22:14:42 +00:00
2007-04-30 05:11:58 +00:00
2007-08-15 13:36:28 +00:00
2007-08-22 19:36:31 +00:00
2007-07-12 13:21:08 +00:00
2007-10-05 20:04:43 +00:00
2007-10-05 20:04:43 +00:00
2007-12-08 07:04:58 +00:00
2007-08-15 13:36:28 +00:00
2007-08-15 13:36:28 +00:00
2007-08-15 13:36:28 +00:00
2007-08-15 13:36:28 +00:00
2007-08-15 13:36:28 +00:00
2007-09-04 20:20:29 +00:00
2007-08-15 13:36:28 +00:00
2007-07-19 23:13:04 +00:00
2007-08-15 13:36:28 +00:00
2007-08-15 13:36:28 +00:00
2007-08-15 13:36:28 +00:00
2007-07-30 07:52:03 +00:00
2007-08-15 13:36:28 +00:00
2007-08-15 13:36:28 +00:00
2007-04-30 05:11:58 +00:00
2007-09-05 17:50:36 +00:00