Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Remove \brief commands from doxygen comments. | Adrian Prantl | 2018-05-01 | 1 | -3/+3 |
| | | | | | | | | | | | | | | | | We've been running doxygen with the autobrief option for a couple of years now. This makes the \brief markers into our comments redundant. Since they are a visual distraction and we don't want to encourage more \brief markers in new code either, this patch removes them all. Patch produced by for i in $(git grep -l '\\brief'); do perl -pi -e 's/\\brief //g' $i & done Differential Revision: https://reviews.llvm.org/D46290 llvm-svn: 331272 | ||||
* | Add backend name to Target to enable runtime info to be fed back into TableGen | Daniel Sanders | 2017-11-15 | 1 | -2/+2 |
| | | | | | | | | | | | | | | | | | | | | | | Summary: Make it possible to feed runtime information back to tablegen to enable profile-guided tablegen-eration, detection of untested tablegen definitions, etc. Being a cross-compiler by nature, LLVM will potentially collect data for multiple architectures (e.g. when running 'ninja check'). We therefore need a way for TableGen to figure out what data applies to the backend it is generating at the time. This patch achieves that by including the name of the 'def X : Target ...' for the backend in the TargetRegistry. Reviewers: qcolombet Reviewed By: qcolombet Subscribers: jholewinski, arsenm, jyknight, aditya_nandakumar, sdardis, nemanjai, ab, nhaehnle, t.p.northover, javed.absar, qcolombet, llvm-commits, fedor.sergeev Differential Revision: https://reviews.llvm.org/D39742 llvm-svn: 318352 | ||||
* | fix trivial typos; NFC | Hiroshi Inoue | 2017-07-02 | 1 | -1/+1 |
| | | | | | | suport -> support llvm-svn: 306968 | ||||
* | Move the global variables representing each Target behind accessor function | Mehdi Amini | 2016-10-09 | 1 | -5/+12 |
| | | | | | | | | This avoids "static initialization order fiasco" Differential Revision: https://reviews.llvm.org/D25412 llvm-svn: 283702 | ||||
* | R600 -> AMDGPU rename | Tom Stellard | 2015-06-13 | 1 | -0/+30 |
| | | | | llvm-svn: 239657 | ||||
* | Revert "AMDGPU: Add core backend files for R600/SI codegen v6" | Tom Stellard | 2012-07-16 | 1 | -26/+0 |
| | | | | | | This reverts commit 4ea70107c5e51230e9e60f0bf58a0f74aa4885ea. llvm-svn: 160303 | ||||
* | AMDGPU: Add core backend files for R600/SI codegen v6 | Tom Stellard | 2012-07-16 | 1 | -0/+26 |
llvm-svn: 160270 |