Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [NFC] Fix trivial typos in comments | James Henderson | 2020-01-06 | 1 | -1/+1 |
| | | | | | | | | Reviewed By: jhenderson Differential Revision: https://reviews.llvm.org/D72143 Patch by Kazuaki Ishizaki. | ||||
* | [fix][unittests][llvm] Fix running unit tests without assertions. [NFCI] | Francesco Petrogalli | 2019-12-05 | 1 | -0/+2 |
| | |||||
* | [VectorUtils] API for VFShape, update VFInfo. | Francesco Petrogalli | 2019-12-04 | 1 | -0/+216 |
| | | | | | | | | | | | | | | | | | | | | | | Summary: This patch introduces an API to build and modify vector shapes. The validity of a VFShape can be checked with the `hasValidParameterList` method, which is also run in an assertion each time a VFShape is modified. The field VFISAKind has been moved to VFInfo under the assumption that different ISAs can map to the same VFShape (as it can be in the case of vector extensions with the same registers size, for example AVX and AVX2). Reviewers: sdesmalen, jdoerfert, simoll, hsaito Subscribers: hiraditya, llvm-commits Tags: #llvm Differential Revision: https://reviews.llvm.org/D70513 | ||||
* | [Analysis] add isSplatValue() for vectors in IR | Sanjay Patel | 2019-06-11 | 1 | -0/+190 |
| | | | | | | | | | | | | | | We have the related getSplatValue() already in IR (see code just above the proposed addition). But sometimes we only need to know that the value is a splat rather than capture the splatted scalar value. Also, we have an isSplatValue() function already in SDAG. Motivation - recent bugs that would potentially benefit from improved splat analysis in IR: https://bugs.llvm.org/show_bug.cgi?id=37428 https://bugs.llvm.org/show_bug.cgi?id=42174 Differential Revision: https://reviews.llvm.org/D63138 llvm-svn: 363106 | ||||
* | [Analysis] add unit test file for VectorUtils; NFC | Sanjay Patel | 2019-06-10 | 1 | -0/+91 |
llvm-svn: 362972 |