<feed xmlns='http://www.w3.org/2005/Atom'>
<title>llvm/lib/Target/Alpha, branch release_23</title>
<subtitle>http://llvm.org</subtitle>
<id>https://git.amat.us/llvm/atom/lib/Target/Alpha?h=release_23</id>
<link rel='self' href='https://git.amat.us/llvm/atom/lib/Target/Alpha?h=release_23'/>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/'/>
<updated>2008-04-16T20:46:05Z</updated>
<entry>
<title>Correlate stubs with functions in JIT: when emitting a stub, the JIT tells the memory manager which function</title>
<updated>2008-04-16T20:46:05Z</updated>
<author>
<name>Nicolas Geoffray</name>
<email>nicolas.geoffray@lip6.fr</email>
</author>
<published>2008-04-16T20:46:05Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=51cc3c13eac78da242f0518fc42580e48dd5304f'/>
<id>urn:sha1:51cc3c13eac78da242f0518fc42580e48dd5304f</id>
<content type='text'>
the stub will resolve.



git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@49814 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<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>Fix "Control reaches the end of non-void function" warnings, </title>
<updated>2008-03-30T18:22:13Z</updated>
<author>
<name>Chris Lattner</name>
<email>sabre@nondot.org</email>
</author>
<published>2008-03-30T18:22:13Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=d27c991cebe48fdf82b5d9eec6c2a1a244f82622'/>
<id>urn:sha1:d27c991cebe48fdf82b5d9eec6c2a1a244f82622</id>
<content type='text'>
patch by David Chisnall.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48963 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Add explicit keywords.</title>
<updated>2008-03-25T22:06:05Z</updated>
<author>
<name>Dan Gohman</name>
<email>gohman@apple.com</email>
</author>
<published>2008-03-25T22:06:05Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=950a4c40b823cd4f09dc71be635229246dfd6cac'/>
<id>urn:sha1:950a4c40b823cd4f09dc71be635229246dfd6cac</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48801 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Unbreak JIT. Ignore TargetInstrInfo::IMPLICIT_DEF.</title>
<updated>2008-03-17T06:56:52Z</updated>
<author>
<name>Evan Cheng</name>
<email>evan.cheng@apple.com</email>
</author>
<published>2008-03-17T06:56:52Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=d18330763965745fea05536939f5aadffcc6a5a6'/>
<id>urn:sha1:d18330763965745fea05536939f5aadffcc6a5a6</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@48447 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 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>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>
</feed>
