Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | [AMDGPU] Fix some Clang-tidy modernize-use-using and Include What You Use ↵ | Eugene Zelenko | 2017-08-08 | 1 | -6/+19 |
| | | | | | | warnings; other minor fixes (NFC). llvm-svn: 310429 | ||||
* | AMDGPU/R600: Fix amdgpu alias analysis pass. | Jan Vesely | 2017-03-31 | 1 | -2/+3 |
| | | | | | | | | | R600 uses higher AS number to access kernel parameters Fixes: r298846 Differential Revision: https://reviews.llvm.org/D31520 llvm-svn: 299245 | ||||
* | [AMDGPU] Get address space mapping by target triple environment | Yaxun Liu | 2017-03-27 | 1 | -4/+19 |
| | | | | | | | | | | | | | | | | | | As we introduced target triple environment amdgiz and amdgizcl, the address space values are no longer enums. We have to decide the value by target triple. The basic idea is to use struct AMDGPUAS to represent address space values. For address space values which are not depend on target triple, use static const members, so that they don't occupy extra memory space and is equivalent to a compile time constant. Since the struct is lightweight and cheap, it can be created on the fly at the point of usage. Or it can be added as member to a pass and created at the beginning of the run* function. Differential Revision: https://reviews.llvm.org/D31284 llvm-svn: 298846 | ||||
* | [AMDGPU] Add address space based alias analysis pass | Stanislav Mekhanoshin | 2017-03-17 | 1 | -0/+86 |
This is direct port of HSAILAliasAnalysis pass, just cleaned for style and renamed. Differential Revision: https://reviews.llvm.org/D31103 llvm-svn: 298172 |