<feed xmlns='http://www.w3.org/2005/Atom'>
<title>llvm/lib/Target/IA64, branch release_23</title>
<subtitle>http://llvm.org</subtitle>
<id>https://git.amat.us/llvm/atom/lib/Target/IA64?h=release_23</id>
<link rel='self' href='https://git.amat.us/llvm/atom/lib/Target/IA64?h=release_23'/>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/'/>
<updated>2008-04-12T04:36:06Z</updated>
<entry>
<title>Drop ISD::MEMSET, ISD::MEMMOVE, and ISD::MEMCPY, which are not Legal</title>
<updated>2008-04-12T04:36:06Z</updated>
<author>
<name>Dan Gohman</name>
<email>gohman@apple.com</email>
</author>
<published>2008-04-12T04:36:06Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=707e0184233f27e0e9f9aee0309f2daab8cfe7f8'/>
<id>urn:sha1:707e0184233f27e0e9f9aee0309f2daab8cfe7f8</id>
<content type='text'>
on any current target and aren't optimized in DAGCombiner. Instead
of using intermediate nodes, expand the operations, choosing between
simple loads/stores, target-specific code, and library calls,
immediately.

Previously, the code to emit optimized code for these operations
was only used at initial SelectionDAG construction time; now it is
used at all times. This fixes some cases where rep;movs was being
used for small copies where simple loads/stores would be better.

This also cleans up code that checks for alignments less than 4;
let the targets make that decision instead of doing it in
target-independent code. This allows x86 to use rep;movs in
low-alignment cases.

Also, this fixes a bug that resulted in the use of rep;stos for
memsets of 0 with non-constant memory size when the alignment was
at least 4. It's better to use the library in this case, which
can be significantly faster when the size is large.

This also preserves more SourceValue information when memory
intrinsics are lowered into simple loads/stores.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49572 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Move reMaterialize() from TargetRegisterInfo to TargetInstrInfo.</title>
<updated>2008-03-31T20:40:39Z</updated>
<author>
<name>Evan Cheng</name>
<email>evan.cheng@apple.com</email>
</author>
<published>2008-03-31T20:40:39Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=ca1267c02b025cc719190b05f9e1a5d174a9caf7'/>
<id>urn:sha1:ca1267c02b025cc719190b05f9e1a5d174a9caf7</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48995 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Replace all target specific implicit def instructions with a target independent one: TargetInstrInfo::IMPLICIT_DEF.</title>
<updated>2008-03-15T00:03:38Z</updated>
<author>
<name>Evan Cheng</name>
<email>evan.cheng@apple.com</email>
</author>
<published>2008-03-15T00:03:38Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=da47e6e0d003c873da960361549e57ee4617c301'/>
<id>urn:sha1:da47e6e0d003c873da960361549e57ee4617c301</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48380 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Use SDTNone instead of duplicating it.</title>
<updated>2008-03-13T23:07:40Z</updated>
<author>
<name>Dan Gohman</name>
<email>gohman@apple.com</email>
</author>
<published>2008-03-13T23:07:40Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=704df9fcbddd8bd6f358bef688ef51f8540dce4d'/>
<id>urn:sha1:704df9fcbddd8bd6f358bef688ef51f8540dce4d</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48346 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Use PassManagerBase instead of FunctionPassManager for functions</title>
<updated>2008-03-11T22:29:46Z</updated>
<author>
<name>Dan Gohman</name>
<email>gohman@apple.com</email>
</author>
<published>2008-03-11T22:29:46Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=bfae83139dcb4fffd50b939e1b1224b0126f04d4'/>
<id>urn:sha1:bfae83139dcb4fffd50b939e1b1224b0126f04d4</id>
<content type='text'>
that merely add passes. This allows them to be used with either
FunctionPassManager or PassManager, or even with a custom new
kind of pass manager.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48256 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>- Style cleanup in IA64ISelLowering.h: add 'virtual' keyword for consistency.</title>
<updated>2008-03-10T23:49:09Z</updated>
<author>
<name>Scott Michel</name>
<email>scottm@aero.org</email>
</author>
<published>2008-03-10T23:49:09Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=405fba12ce4874e0b599b19168b1d29d1c64ffab'/>
<id>urn:sha1:405fba12ce4874e0b599b19168b1d29d1c64ffab</id>
<content type='text'>
- Add test pattern matching in CellSPU's icmp32.ll test harness
- Fix CellSPU fcmp.ll-generated assert.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48197 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Default ISD::PREFETCH to expand.</title>
<updated>2008-03-10T19:38:10Z</updated>
<author>
<name>Evan Cheng</name>
<email>evan.cheng@apple.com</email>
</author>
<published>2008-03-10T19:38:10Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=d2cde68855125b6815b1575f29cd96927614b0cd'/>
<id>urn:sha1:d2cde68855125b6815b1575f29cd96927614b0cd</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48169 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Give TargetLowering::getSetCCResultType() a parameter so that ISD::SETCC's</title>
<updated>2008-03-10T15:42:14Z</updated>
<author>
<name>Scott Michel</name>
<email>scottm@aero.org</email>
</author>
<published>2008-03-10T15:42:14Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=5b8f82e35b51bf007de07a7ca9347d804084ddf8'/>
<id>urn:sha1:5b8f82e35b51bf007de07a7ca9347d804084ddf8</id>
<content type='text'>
return ValueType can depend its operands' ValueType.

This is a cosmetic change, no functionality impacted.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48145 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>make sure ar.pfs is in a register class, this fixes test/CodeGen/IA64/ret-0.ll</title>
<updated>2008-03-09T20:12:44Z</updated>
<author>
<name>Chris Lattner</name>
<email>sabre@nondot.org</email>
</author>
<published>2008-03-09T20:12:44Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=68a0d0984db8975ad9c7abbfedd80ef8427e797a'/>
<id>urn:sha1:68a0d0984db8975ad9c7abbfedd80ef8427e797a</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48118 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Implement x86 support for @llvm.prefetch. It corresponds to prefetcht{0|1|2} and prefetchnta instructions.</title>
<updated>2008-03-08T00:58:38Z</updated>
<author>
<name>Evan Cheng</name>
<email>evan.cheng@apple.com</email>
</author>
<published>2008-03-08T00:58:38Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=27b7db549e4c5bff4579d209304de5628513edeb'/>
<id>urn:sha1:27b7db549e4c5bff4579d209304de5628513edeb</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48042 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
</feed>
