<feed xmlns='http://www.w3.org/2005/Atom'>
<title>llvm/include/llvm-c, branch stable</title>
<subtitle>http://llvm.org</subtitle>
<id>https://git.amat.us/llvm/atom/include/llvm-c?h=stable</id>
<link rel='self' href='https://git.amat.us/llvm/atom/include/llvm-c?h=stable'/>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/'/>
<updated>2013-03-10T21:58:22Z</updated>
<entry>
<title>Use LLVMBool instead of 'bool' in the C API. Based on a patch by Peter Zotov!</title>
<updated>2013-03-10T21:58:22Z</updated>
<author>
<name>Nick Lewycky</name>
<email>nicholas@mxc.ca</email>
</author>
<published>2013-03-10T21:58:22Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=0ebc084132cbf4ebebdb6c931ef42f97e3ff5fe1'/>
<id>urn:sha1:0ebc084132cbf4ebebdb6c931ef42f97e3ff5fe1</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@176793 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Add multithreading functions and shutdown to the C API.  Patch by Moritz</title>
<updated>2013-02-17T16:35:51Z</updated>
<author>
<name>Duncan Sands</name>
<email>baldrick@free.fr</email>
</author>
<published>2013-02-17T16:35:51Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=906727dcfeb359acec4caca3ba8c756c4308ff6b'/>
<id>urn:sha1:906727dcfeb359acec4caca3ba8c756c4308ff6b</id>
<content type='text'>
Maxeiner.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@175398 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>s/bool/LLVMBool/</title>
<updated>2013-02-14T19:39:14Z</updated>
<author>
<name>Bill Wendling</name>
<email>isanbard@gmail.com</email>
</author>
<published>2013-02-14T19:39:14Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=296756a2b542f99dff470a70040e97469530ee3c'/>
<id>urn:sha1:296756a2b542f99dff470a70040e97469530ee3c</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@175203 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Add two new functions to the C API:</title>
<updated>2013-02-14T19:11:28Z</updated>
<author>
<name>Bill Wendling</name>
<email>isanbard@gmail.com</email>
</author>
<published>2013-02-14T19:11:28Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=31cfc707058ad3f470924cdb3c460c8f50ee76c3'/>
<id>urn:sha1:31cfc707058ad3f470924cdb3c460c8f50ee76c3</id>
<content type='text'>
 
 LLVMCreateMemoryBufferWithMemoryRange - exposes MemoryBuffer::getMemBuffer
 LLVMCreateMemoryBufferWithMemoryRangeCopy - exposes MemoryBuffer::getMemBufferCopy

Patch by Moritz Maxeiner!


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@175199 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Extracted ObjCARC.cpp into its own library libLLVMObjCARCOpts in preparation for refactoring the ARC Optimizer.</title>
<updated>2013-01-28T01:35:51Z</updated>
<author>
<name>Michael Gottesman</name>
<email>mgottesman@apple.com</email>
</author>
<published>2013-01-28T01:35:51Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=24c4898973a074713201fb9351d302b9f7733e92'/>
<id>urn:sha1:24c4898973a074713201fb9351d302b9f7733e92</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@173647 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>Fix include guards so they exactly match file names.</title>
<updated>2013-01-10T00:45:19Z</updated>
<author>
<name>Jakub Staszak</name>
<email>kubastaszak@gmail.com</email>
</author>
<published>2013-01-10T00:45:19Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=674be02d525d4e24bc6943ed9274958c580bcfbc'/>
<id>urn:sha1:674be02d525d4e24bc6943ed9274958c580bcfbc</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@172025 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>Remove edis - the enhanced disassembler. Fixes PR14654.</title>
<updated>2012-12-19T19:55:47Z</updated>
<author>
<name>Roman Divacky</name>
<email>rdivacky@freebsd.org</email>
</author>
<published>2012-12-19T19:55:47Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=759e3fa641d0ad01012d16d913015c9f69c8d2ab'/>
<id>urn:sha1:759e3fa641d0ad01012d16d913015c9f69c8d2ab</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@170578 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Add to the disassembler C API an option to print the disassembled</title>
<updated>2012-12-18T23:47:28Z</updated>
<author>
<name>Kevin Enderby</name>
<email>enderby@apple.com</email>
</author>
<published>2012-12-18T23:47:28Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=5469f605fe86edcfb6d3f0e36f3e3ce0254334cc'/>
<id>urn:sha1:5469f605fe86edcfb6d3f0e36f3e3ce0254334cc</id>
<content type='text'>
instructions in the assembly code variant if one exists.

The intended use for this is so tools like lldb and darwin's otool(1)
can be switched to print Intel-flavored disassembly.

I discussed extensively this API with Jim Grosbach and we feel
while it may not be fully general, in reality there is only one syntax
for each assembly with the exception of X86 which has exactly
two for historical reasons.

rdar://10989182


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