<feed xmlns='http://www.w3.org/2005/Atom'>
<title>llvm/lib/Target/CppBackend, branch release_33</title>
<subtitle>http://llvm.org</subtitle>
<id>https://git.amat.us/llvm/atom/lib/Target/CppBackend?h=release_33</id>
<link rel='self' href='https://git.amat.us/llvm/atom/lib/Target/CppBackend?h=release_33'/>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/'/>
<updated>2013-03-25T17:42:20Z</updated>
<entry>
<title>Remove assert. There may be target-dependent attributes left.</title>
<updated>2013-03-25T17:42:20Z</updated>
<author>
<name>Bill Wendling</name>
<email>isanbard@gmail.com</email>
</author>
<published>2013-03-25T17:42:20Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=66d11e9aa7ce6b2c81f001d9a433e3a886ae0b5e'/>
<id>urn:sha1:66d11e9aa7ce6b2c81f001d9a433e3a886ae0b5e</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@177878 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Convert the CPP backend to use the AttributeSet instead of AttributeWithIndex.</title>
<updated>2013-01-27T01:22:51Z</updated>
<author>
<name>Bill Wendling</name>
<email>isanbard@gmail.com</email>
</author>
<published>2013-01-27T01:22:51Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=9a131c544cc06c46a3c39ed0c3e6d4311998b5f1'/>
<id>urn:sha1:9a131c544cc06c46a3c39ed0c3e6d4311998b5f1</id>
<content type='text'>
Further removal of the introspective AttributeWithIndex thing. Also fix the #includes.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173599 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Remove some introspection functions.</title>
<updated>2013-01-25T23:09:36Z</updated>
<author>
<name>Bill Wendling</name>
<email>isanbard@gmail.com</email>
</author>
<published>2013-01-25T23:09:36Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=8e47daf2858e980210f3e1f007036b24da342c29'/>
<id>urn:sha1:8e47daf2858e980210f3e1f007036b24da342c29</id>
<content type='text'>
The 'getSlot' function and its ilk allow introspection into the AttributeSet
class. However, that class should be opaque. Allow access through accessor
methods instead.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173522 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Use the new 'getSlotIndex' method to retrieve the attribute's slot index.</title>
<updated>2013-01-25T21:46:52Z</updated>
<author>
<name>Bill Wendling</name>
<email>isanbard@gmail.com</email>
</author>
<published>2013-01-25T21:46:52Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=85875647d6f85cbcbe506809640b9857eaaa26a4'/>
<id>urn:sha1:85875647d6f85cbcbe506809640b9857eaaa26a4</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173499 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Add the IR attribute 'sspstrong'.</title>
<updated>2013-01-23T06:41:41Z</updated>
<author>
<name>Bill Wendling</name>
<email>isanbard@gmail.com</email>
</author>
<published>2013-01-23T06:41:41Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=114baee1fa017daefad2339c77b45b9ca3d79a41'/>
<id>urn:sha1:114baee1fa017daefad2339c77b45b9ca3d79a41</id>
<content type='text'>
SSPStrong applies a heuristic to insert stack protectors in these situations:

* A Protector is required for functions which contain an array, regardless of
  type or length.

* A Protector is required for functions which contain a structure/union which
  contains an array, regardless of type or length.  Note, there is no limit to
  the depth of nesting.

* A protector is required when the address of a local variable (i.e., stack
  based variable) is exposed. (E.g., such as through a local whose address is
  taken as part of the RHS of an assignment or a local whose address is taken as
  part of a function argument.)

This patch implements the SSPString attribute to be equivalent to
SSPRequired. This will change in a subsequent patch.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173230 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Move all of the header files which are involved in modelling the LLVM IR</title>
<updated>2013-01-02T11:36:10Z</updated>
<author>
<name>Chandler Carruth</name>
<email>chandlerc@gmail.com</email>
</author>
<published>2013-01-02T11:36:10Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=0b8c9a80f20772c3793201ab5b251d3520b9cea3'/>
<id>urn:sha1:0b8c9a80f20772c3793201ab5b251d3520b9cea3</id>
<content type='text'>
into their new header subdirectory: include/llvm/IR. This matches the
directory structure of lib, and begins to correct a long standing point
of file layout clutter in LLVM.

There are still more header files to move here, but I wanted to handle
them in separate commits to make tracking what files make sense at each
layer easier.

The only really questionable files here are the target intrinsic
tablegen files. But that's a battle I'd rather not fight today.

I've updated both CMake and Makefile build systems (I think, and my
tests think, but I may have missed something).

I've also re-sorted the includes throughout the project. I'll be
committing updates to Clang, DragonEgg, and Polly momentarily.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171366 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>s/hasAttribute/contains/g to be more consistent with other method names.</title>
<updated>2012-12-30T09:17:46Z</updated>
<author>
<name>Bill Wendling</name>
<email>isanbard@gmail.com</email>
</author>
<published>2012-12-30T09:17:46Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=377660355ccdde389eb4f473bbb24125f160ea23'/>
<id>urn:sha1:377660355ccdde389eb4f473bbb24125f160ea23</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@171252 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Rename the 'Attributes' class to 'Attribute'. It's going to represent a single attribute in the future.</title>
<updated>2012-12-19T07:18:57Z</updated>
<author>
<name>Bill Wendling</name>
<email>isanbard@gmail.com</email>
</author>
<published>2012-12-19T07:18:57Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=034b94b17006f51722886b0f2283fb6fb19aca1f'/>
<id>urn:sha1:034b94b17006f51722886b0f2283fb6fb19aca1f</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170502 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>s/AttrListPtr/AttributeSet/g to better label what this class is going to be in the near future.</title>
<updated>2012-12-07T23:16:57Z</updated>
<author>
<name>Bill Wendling</name>
<email>isanbard@gmail.com</email>
</author>
<published>2012-12-07T23:16:57Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=99faa3b4ec6d03ac7808fe4ff3fbf3d04e375502'/>
<id>urn:sha1:99faa3b4ec6d03ac7808fe4ff3fbf3d04e375502</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169651 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Sort includes for all of the .h files under the 'lib' tree. These were</title>
<updated>2012-12-04T07:12:27Z</updated>
<author>
<name>Chandler Carruth</name>
<email>chandlerc@gmail.com</email>
</author>
<published>2012-12-04T07:12:27Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=a1514e24cc24b050f53a12650e047799358833a1'/>
<id>urn:sha1:a1514e24cc24b050f53a12650e047799358833a1</id>
<content type='text'>
missed in the first pass because the script didn't yet handle include
guards.

Note that the script is now able to handle all of these headers without
manual edits. =]

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@169224 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
</feed>
