<feed xmlns='http://www.w3.org/2005/Atom'>
<title>bcm5719-llvm/llvm/include/llvm-c/Transforms, branch meklort-10.0.1</title>
<subtitle>Project Ortega BCM5719 LLVM</subtitle>
<id>https://git.raptorcs.com/git/bcm5719-llvm/atom?h=meklort-10.0.1</id>
<link rel='self' href='https://git.raptorcs.com/git/bcm5719-llvm/atom?h=meklort-10.0.1'/>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/'/>
<updated>2020-01-02T02:41:16+00:00</updated>
<entry>
<title>[Coroutines] Rename "legacy" passes (NFC)</title>
<updated>2020-01-02T02:41:16+00:00</updated>
<author>
<name>Brian Gesiak</name>
<email>modocache@gmail.com</email>
</author>
<published>2020-01-02T01:07:34+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=2fcf7691dfb470e57a940e3a045695515fb44e13'/>
<id>urn:sha1:2fcf7691dfb470e57a940e3a045695515fb44e13</id>
<content type='text'>
A series of patches beginning with https://reviews.llvm.org/D71898
propose to add an implementation of the coroutine passes to the new pass
manager. As part of these changes, the coroutine passes that implement
the legacy pass manager interface are renamed, to `&lt;PassName&gt;Legacy`.
This mirrors similar changes that have been made to many other passes in
LLVM as they've been transitioned to support both old and new pass
managers.

This commit splits out the renaming portion of that patch and commits it
in advance as an NFC (no functional change intended) commit. It renames:

* `CoroEarly` =&gt; `CoroEarlyLegacy`
* `CoroSplit` =&gt; `CoroSplitLegacy`
* `CoroElide` =&gt; `CoroElideLegacy`
* `CoroCleanup` =&gt; `CoroCleanupLegacy`
</content>
</entry>
<entry>
<title>Wrap C APIs with pragmas enforcing -Werror=strict-prototypes</title>
<updated>2019-11-19T21:18:43+00:00</updated>
<author>
<name>Duncan P. N. Exon Smith</name>
<email>dexonsmith@apple.com</email>
</author>
<published>2019-11-14T21:57:57+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=8c48405069085a2c8b6b80816eda99e5dad31fc1'/>
<id>urn:sha1:8c48405069085a2c8b6b80816eda99e5dad31fc1</id>
<content type='text'>
Force `-Werror=strict-prototypes` so that C API tests fail to compile if
we add a non-prototype declaration.  This should help avoid regressions
like bddecba4b333f7772029b4937d2c34f9f2fda6ca was fixing.

https://reviews.llvm.org/D70285
rdar://problem/57203137
</content>
</entry>
<entry>
<title>Reapply r374743 with a fix for the ocaml binding</title>
<updated>2019-10-14T16:15:14+00:00</updated>
<author>
<name>Joerg Sonnenberger</name>
<email>joerg@bec.de</email>
</author>
<published>2019-10-14T16:15:14+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=9681ea9560a00038a29ed368dfa32104b0597b26'/>
<id>urn:sha1:9681ea9560a00038a29ed368dfa32104b0597b26</id>
<content type='text'>
Add a pass to lower is.constant and objectsize intrinsics

This pass lowers is.constant and objectsize intrinsics not simplified by
earlier constant folding, i.e. if the object given is not constant or if
not using the optimized pass chain. The result is recursively simplified
and constant conditionals are pruned, so that dead blocks are removed
even for -O0. This allows inline asm blocks with operand constraints to
work all the time.

The new pass replaces the existing lowering in the codegen-prepare pass
and fallbacks in SDAG/GlobalISEL and FastISel. The latter now assert
on the intrinsics.

Differential Revision: https://reviews.llvm.org/D65280

llvm-svn: 374784
</content>
</entry>
<entry>
<title>Revert "Add a pass to lower is.constant and objectsize intrinsics"</title>
<updated>2019-10-14T12:22:48+00:00</updated>
<author>
<name>Dmitri Gribenko</name>
<email>gribozavr@gmail.com</email>
</author>
<published>2019-10-14T12:22:48+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=1a21f98ac3c57d027908000b8bac356daec51416'/>
<id>urn:sha1:1a21f98ac3c57d027908000b8bac356daec51416</id>
<content type='text'>
This reverts commit r374743. It broke the build with Ocaml enabled:
http://lab.llvm.org:8011/builders/clang-x86_64-debian-fast/builds/19218

llvm-svn: 374768
</content>
</entry>
<entry>
<title>Add a pass to lower is.constant and objectsize intrinsics</title>
<updated>2019-10-13T23:00:15+00:00</updated>
<author>
<name>Joerg Sonnenberger</name>
<email>joerg@bec.de</email>
</author>
<published>2019-10-13T23:00:15+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=e4300c392de28b659749d77b415b4903786caa0c'/>
<id>urn:sha1:e4300c392de28b659749d77b415b4903786caa0c</id>
<content type='text'>
This pass lowers is.constant and objectsize intrinsics not simplified by
earlier constant folding, i.e. if the object given is not constant or if
not using the optimized pass chain. The result is recursively simplified
and constant conditionals are pruned, so that dead blocks are removed
even for -O0. This allows inline asm blocks with operand constraints to
work all the time.

The new pass replaces the existing lowering in the codegen-prepare pass
and fallbacks in SDAG/GlobalISEL and FastISel. The latter now assert
on the intrinsics.

Differential Revision: https://reviews.llvm.org/D65280

llvm-svn: 374743
</content>
</entry>
<entry>
<title>[LLVM-C][Ocaml] Add MergeFunctions and DCE pass</title>
<updated>2019-09-29T16:06:22+00:00</updated>
<author>
<name>Aditya Kumar</name>
<email>hiraditya@msn.com</email>
</author>
<published>2019-09-29T16:06:22+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=a6d9d31279c83a25d4e4e44047d1349d1aac8d79'/>
<id>urn:sha1:a6d9d31279c83a25d4e4e44047d1349d1aac8d79</id>
<content type='text'>
MergeFunctions and DCE pass are missing from OCaml/C-api. This patch
adds them.

Differential Revision: https://reviews.llvm.org/D65071

Reviewers: whitequark, hiraditya, deadalnix

Reviewed By: whitequark

Subscribers: llvm-commits

Tags: #llvm

Authored by: kren1

llvm-svn: 373170
</content>
</entry>
<entry>
<title>[LLVM-C] Improve Bindings to The Internalize Pass</title>
<updated>2019-07-23T04:56:44+00:00</updated>
<author>
<name>Robert Widmann</name>
<email>devteam.codafi@gmail.com</email>
</author>
<published>2019-07-23T04:56:44+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=fcf3c55a8cd2b00c54bc08652f8b8ad517abab43'/>
<id>urn:sha1:fcf3c55a8cd2b00c54bc08652f8b8ad517abab43</id>
<content type='text'>
Summary: Adds a binding to the internalize pass that allows the caller to pass a function pointer that acts as the visibility-preservation predicate.  Previously, one could only pass an unsigned value (not LLVMBool?) that directed the pass to consider "main" or not.

Reviewers: whitequark, deadalnix, harlanhaskins

Reviewed By: whitequark, harlanhaskins

Subscribers: kren1, hiraditya, llvm-commits, harlanhaskins

Tags: #llvm

Differential Revision: https://reviews.llvm.org/D62456

llvm-svn: 366777
</content>
</entry>
<entry>
<title>[LLVM-C] Expose the "Add Discriminators" Pass To LLVM-C</title>
<updated>2019-03-15T16:57:23+00:00</updated>
<author>
<name>Robert Widmann</name>
<email>devteam.codafi@gmail.com</email>
</author>
<published>2019-03-15T16:57:23+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=2f1ebe6ee81bae91840f08614559acd3e5e0bd34'/>
<id>urn:sha1:2f1ebe6ee81bae91840f08614559acd3e5e0bd34</id>
<content type='text'>
Summary: Add bindings to create a wrapped "Add Discriminators" pass.  Now that we have debug info support, this is a handy transform to have.

Reviewers: whitequark, deadalnix

Reviewed By: whitequark

Subscribers: dblaikie, aprantl, hiraditya, llvm-commits

Tags: #llvm

Differential Revision: https://reviews.llvm.org/D58624

llvm-svn: 356272
</content>
</entry>
<entry>
<title>Update the file headers across all of the LLVM projects in the monorepo</title>
<updated>2019-01-19T08:50:56+00:00</updated>
<author>
<name>Chandler Carruth</name>
<email>chandlerc@gmail.com</email>
</author>
<published>2019-01-19T08:50:56+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=2946cd701067404b99c39fb29dc9c74bd7193eb3'/>
<id>urn:sha1:2946cd701067404b99c39fb29dc9c74bd7193eb3</id>
<content type='text'>
to reflect the new license.

We understand that people may be surprised that we're moving the header
entirely to discuss the new license. We checked this carefully with the
Foundation's lawyer and we believe this is the correct approach.

Essentially, all code in the project is now made available by the LLVM
project under our new license, so you will see that the license headers
include that license only. Some of our contributors have contributed
code under our old license, and accordingly, we have retained a copy of
our old license notice in the top-level files in each project and
repository.

llvm-svn: 351636
</content>
</entry>
<entry>
<title>Revert "[LLVM-C] Add bindings for addCoroutinePassesToExtensionPoints"</title>
<updated>2018-09-28T16:45:18+00:00</updated>
<author>
<name>whitequark</name>
<email>whitequark@whitequark.org</email>
</author>
<published>2018-09-28T16:45:18+00:00</published>
<link rel='alternate' type='text/html' href='https://git.raptorcs.com/git/bcm5719-llvm/commit/?id=29b29801593322ab5276dd699a5676bbda21027c'/>
<id>urn:sha1:29b29801593322ab5276dd699a5676bbda21027c</id>
<content type='text'>
This reverts commit c4baf7c2f06ff5459c4f5998ce980346e72bff97.

Broke the bots, and should really be in Transforms/Coroutines
instead.

llvm-svn: 343337
</content>
</entry>
</feed>
