Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | llvm::sort(C.begin(), C.end(), ...) -> llvm::sort(C, ...) | Fangrui Song | 2018-09-27 | 1 | -4/+4 |
| | | | | | | | | | | | | Summary: The convenience wrapper in STLExtras is available since rL342102. Reviewers: dblaikie, javed.absar, JDevlieghere, andreadb Subscribers: MatzeB, sanjoy, arsenm, dschuff, mehdi_amini, sdardis, nemanjai, jvesely, nhaehnle, sbc100, jgravelle-google, eraman, aheejin, kbarton, JDevlieghere, javed.absar, gbedwell, jrtc27, mgrang, atanasyan, steven_wu, george.burgess.iv, dexonsmith, kristina, jsji, llvm-commits Differential Revision: https://reviews.llvm.org/D52573 llvm-svn: 343163 | ||||
* | [llvm] Change 2 instances of std::sort to llvm::sort | Mandeep Singh Grang | 2018-07-16 | 1 | -1/+1 |
| | | | | llvm-svn: 337192 | ||||
* | Move helper classes into anonymous namespaces. NFCI. | Benjamin Kramer | 2018-05-15 | 1 | -3/+3 |
| | | | | llvm-svn: 332400 | ||||
* | Rename DEBUG macro to LLVM_DEBUG. | Nicola Zaghen | 2018-05-14 | 1 | -40/+49 |
| | | | | | | | | | | | | | | | | The DEBUG() macro is very generic so it might clash with other projects. The renaming was done as follows: - git grep -l 'DEBUG' | xargs sed -i 's/\bDEBUG\s\?(/LLVM_DEBUG(/g' - git diff -U0 master | ../clang/tools/clang-format/clang-format-diff.py -i -p1 -style LLVM - Manual change to APInt - Manually chage DOCS as regex doesn't match it. In the transition period the DEBUG() macro is still present and aliased to the LLVM_DEBUG() one. Differential Revision: https://reviews.llvm.org/D43624 llvm-svn: 332240 | ||||
* | Fixing build bot error: adding const qualifiers to std::sort lambda. | Puyan Lotfi | 2018-05-13 | 1 | -1/+1 |
| | | | | | | Errors were not reproducible on clang-6.0 on ubuntu 16.04. llvm-svn: 332192 | ||||
* | [NFC] MIR-Canon: switching to a stable string sorting of instructions. | Puyan Lotfi | 2018-05-13 | 1 | -2/+8 |
| | | | | llvm-svn: 332191 | ||||
* | [MIR-Canon] Adding ISA-Agnostic COPY Folding. | Puyan Lotfi | 2018-04-16 | 1 | -0/+43 |
| | | | | | | | | | | | | | | | | | Transforms the following: %vreg1234:gpr32 = COPY %42 %vreg1235:gpr32 = COPY %vreg1234 %vreg1236:gpr32 = COPY %vreg1235 $w0 = COPY %vreg1236 into: $w0 = COPY %42 Assuming %42 is also a gpr32 llvm-svn: 330113 | ||||
* | [NFC][MIR-Canon] clang-format cleanup of Mir Canonicalizer Pass. | Puyan Lotfi | 2018-04-16 | 1 | -66/+60 |
| | | | | llvm-svn: 330111 | ||||
* | [MIR-Canon] Fixing warnings in Non-assert builds. | Puyan Lotfi | 2018-04-05 | 1 | -2/+2 |
| | | | | llvm-svn: 329258 | ||||
* | [MIR-Canon] Improving performance by switching to named vregs. | Puyan Lotfi | 2018-04-05 | 1 | -62/+61 |
| | | | | | | No more skipping thounsands of vregs. Much faster running time. llvm-svn: 329246 | ||||
* | [MIR-Canon] Adding support for multi-def -> user distance reduction. | Puyan Lotfi | 2018-04-05 | 1 | -0/+17 |
| | | | | llvm-svn: 329243 | ||||
* | [MIR-Canon] Adding support for local idempotent instruction hoisting. | Puyan Lotfi | 2018-03-31 | 1 | -5/+116 |
| | | | | llvm-svn: 328915 | ||||
* | Remove redundant includes from lib/CodeGen. | Michael Zolotukhin | 2017-12-13 | 1 | -1/+0 |
| | | | | llvm-svn: 320619 | ||||
* | Make helpers static. NFC. | Benjamin Kramer | 2017-11-24 | 1 | -4/+4 |
| | | | | llvm-svn: 318953 | ||||
* | Target/TargetInstrInfo.h -> CodeGen/TargetInstrInfo.h to match layering | David Blaikie | 2017-11-08 | 1 | -2/+2 |
| | | | | | | | | This header includes CodeGen headers, and is not, itself, included by any Target headers, so move it into CodeGen to match the layering of its implementation. llvm-svn: 317647 | ||||
* | [CodeGen] Remove unnecessary semicolons to fix a warning. NFC | Craig Topper | 2017-11-03 | 1 | -2/+2 |
| | | | | llvm-svn: 317342 | ||||
* | mir-canon: First commit. | Puyan Lotfi | 2017-11-02 | 1 | -0/+626 |
mir-canon (MIRCanonicalizerPass) is a pass designed to reorder instructions and rename operands so that two similar programs will diff more cleanly after being run through mir-canon than they would otherwise. This project is still a work in progress and there are ideas still being discussed for improving diff quality. M include/llvm/InitializePasses.h M lib/CodeGen/CMakeLists.txt M lib/CodeGen/CodeGen.cpp A lib/CodeGen/MIRCanonicalizerPass.cpp llvm-svn: 317285 |