Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [Attributor][FIX] Don't crash on ptr2int/int2ptr instructions | Johannes Doerfert | 2020-01-03 | 1 | -0/+10 |
| | | | | | An integer isn't allowed in getAlignmentForValue so we need to stop at a ptr2int instruction during exploration. | ||||
* | [Attributor] Annotate the memory behavior of call site arguments | Johannes Doerfert | 2019-12-31 | 1 | -18/+20 |
| | | | | | | | | | Especially for callbacks, annotating the call site arguments is important. Doing so exposed a too strong dependence of AAMemoryBehavior on AANoCapture since we handle the case of potentially captured pointers explicitly. The changes to the tests are all mechanical. | ||||
* | [Attributor] Copy or port test cases related to Attributor to` Attributor` ↵ | Hideto Ueno | 2019-12-02 | 1 | -0/+400 |
test folder Summary: This patch moves the test cases related to Attributor to `Transforms/Attributor` folder. We have used `Transforms/FunctionAttrs` as the primary folder for Attributor test but we need to change testing way now. For the test cases which I think functionattrs doesn't infer anything something like (willreturn, nosync, value-simplify, h2s ..etc), I moved them with the command `git mv`. For the test cases in which functoinattrs and attributor are tested, I copied the test to the folder and remove the check only used by functoinattrs. Reviewers: jdoerfert, sstefan1 Reviewed By: jdoerfert Subscribers: jfb, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D70843 |