<feed xmlns='http://www.w3.org/2005/Atom'>
<title>llvm/lib/Transforms/Instrumentation, branch release_29</title>
<subtitle>http://llvm.org</subtitle>
<id>https://git.amat.us/llvm/atom/lib/Transforms/Instrumentation?h=release_29</id>
<link rel='self' href='https://git.amat.us/llvm/atom/lib/Transforms/Instrumentation?h=release_29'/>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/'/>
<updated>2011-01-29T01:09:53Z</updated>
<entry>
<title>Implementation of path profiling.</title>
<updated>2011-01-29T01:09:53Z</updated>
<author>
<name>Andrew Trick</name>
<email>atrick@apple.com</email>
</author>
<published>2011-01-29T01:09:53Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=04317cc618aeae28910916469e074d8ce0fcaa03'/>
<id>urn:sha1:04317cc618aeae28910916469e074d8ce0fcaa03</id>
<content type='text'>
Modified patch by Adam Preuss.

This builds on the existing framework for block tracing, edge profiling and optimal edge profiling.
See -help-hidden for new flags.
For documentation, see the technical report "Implementation of Path Profiling..." in llvm.org/pubs.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@124515 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Get rid of static constructors for pass registration.  Instead, every pass exposes an initializeMyPassFunction(), which</title>
<updated>2010-10-19T17:21:58Z</updated>
<author>
<name>Owen Anderson</name>
<email>resistor@mac.com</email>
</author>
<published>2010-10-19T17:21:58Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=081c34b725980f995be9080eaec24cd3dfaaf065'/>
<id>urn:sha1:081c34b725980f995be9080eaec24cd3dfaaf065</id>
<content type='text'>
must be called in the pass's constructor.  This function uses static dependency declarations to recursively initialize
the pass's dependencies.

Clients that only create passes through the createFooPass() APIs will require no changes.  Clients that want to use the
CommandLine options for passes will need to manually call the appropriate initialization functions in PassInitialization.h
before parsing commandline arguments.

I have tested this with all standard configurations of clang and llvm-gcc on Darwin.  It is possible that there are problems
with the static dependencies that will only be visible with non-standard options.  If you encounter any crash in pass
registration/creation, please send the testcase to me directly.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@116820 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Begin adding static dependence information to passes, which will allow us to</title>
<updated>2010-10-12T19:48:12Z</updated>
<author>
<name>Owen Anderson</name>
<email>resistor@mac.com</email>
</author>
<published>2010-10-12T19:48:12Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=2ab36d350293c77fc8941ce1023e4899df7e3a82'/>
<id>urn:sha1:2ab36d350293c77fc8941ce1023e4899df7e3a82</id>
<content type='text'>
perform initialization without static constructors AND without explicit initialization
by the client.  For the moment, passes are required to initialize both their
(potential) dependencies and any passes they preserve.  I hope to be able to relax
the latter requirement in the future.


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@116334 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Now with fewer extraneous semicolons!</title>
<updated>2010-10-07T22:25:06Z</updated>
<author>
<name>Owen Anderson</name>
<email>resistor@mac.com</email>
</author>
<published>2010-10-07T22:25:06Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=ce665bd2e2b581ab0858d1afe359192bac96b868'/>
<id>urn:sha1:ce665bd2e2b581ab0858d1afe359192bac96b868</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115996 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Add initialization routines for Instrumentation.</title>
<updated>2010-10-07T20:17:24Z</updated>
<author>
<name>Owen Anderson</name>
<email>resistor@mac.com</email>
</author>
<published>2010-10-07T20:17:24Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=aa4897fa1323ef78d5e72a80c74e96eb21f72057'/>
<id>urn:sha1:aa4897fa1323ef78d5e72a80c74e96eb21f72057</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@115971 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Revert "CMake: Get rid of LLVMLibDeps.cmake and export the libraries normally."</title>
<updated>2010-09-13T23:59:48Z</updated>
<author>
<name>Michael J. Spencer</name>
<email>bigcheesegs@gmail.com</email>
</author>
<published>2010-09-13T23:59:48Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=3a210e2d302758101ac06946e86027b327c7d0f3'/>
<id>urn:sha1:3a210e2d302758101ac06946e86027b327c7d0f3</id>
<content type='text'>
This reverts commit r113632

Conflicts:

	cmake/modules/AddLLVM.cmake

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@113819 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>CMake: Get rid of LLVMLibDeps.cmake and export the libraries normally.</title>
<updated>2010-09-10T21:14:25Z</updated>
<author>
<name>Michael J. Spencer</name>
<email>bigcheesegs@gmail.com</email>
</author>
<published>2010-09-10T21:14:25Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=4e9c939312ff73bd0c6a6485fd5f97012f5910fa'/>
<id>urn:sha1:4e9c939312ff73bd0c6a6485fd5f97012f5910fa</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@113632 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Reapply r110396, with fixes to appease the Linux buildbot gods.</title>
<updated>2010-08-06T18:33:48Z</updated>
<author>
<name>Owen Anderson</name>
<email>resistor@mac.com</email>
</author>
<published>2010-08-06T18:33:48Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=90c579de5a383cee278acc3f7e7b9d0a656e6a35'/>
<id>urn:sha1:90c579de5a383cee278acc3f7e7b9d0a656e6a35</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110460 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Revert r110396 to fix buildbots.</title>
<updated>2010-08-06T00:23:35Z</updated>
<author>
<name>Owen Anderson</name>
<email>resistor@mac.com</email>
</author>
<published>2010-08-06T00:23:35Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=1f74590e9d1b9cf0f1f81a156efea73f76546e05'/>
<id>urn:sha1:1f74590e9d1b9cf0f1f81a156efea73f76546e05</id>
<content type='text'>
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@110410 91177308-0d34-0410-b5e6-96231b3b80d8
</content>
</entry>
<entry>
<title>Don't use PassInfo* as a type identifier for passes.  Instead, use the address of the static</title>
<updated>2010-08-05T23:42:04Z</updated>
<author>
<name>Owen Anderson</name>
<email>resistor@mac.com</email>
</author>
<published>2010-08-05T23:42:04Z</published>
<link rel='alternate' type='text/html' href='https://git.amat.us/llvm/commit/?id=9ccaf53ada99c63737547c0235baeb8454b04e80'/>
<id>urn:sha1:9ccaf53ada99c63737547c0235baeb8454b04e80</id>
<content type='text'>
ID member as the sole unique type identifier.  Clean up APIs related to this change.


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