| Commit message (Expand) | Author | Age | Files | Lines |
| * | Reduce scope of variable to silence cppcheck warning. NFC | Simon Pilgrim | 2019-11-09 | 1 | -2/+1 |
| * | [TableGen] Support encoding per-HwMode | James Molloy | 2019-09-19 | 1 | -9/+56 |
| * | [TableGen] Correct comments for end of namespace. NFC | Bjorn Pettersson | 2019-08-25 | 1 | -1/+1 |
| * | [llvm] Migrate llvm::make_unique to std::make_unique | Jonas Devlieghere | 2019-08-15 | 1 | -2/+2 |
| * | [TableGen] Correct the shift to the proper bit width. | Michael Liao | 2019-08-10 | 1 | -1/+1 |
| * | [TableGen] Add "InitValue": Handle operands with set bit values in decoder me... | Daniel Sanders | 2019-08-09 | 1 | -4/+18 |
| * | Re-commit r363744: [tblgen][disasm] Allow multiple encodings to disassemble t... | Daniel Sanders | 2019-06-18 | 1 | -45/+95 |
| * | Revert [tblgen][disasm] Allow multiple encodings to disassemble to the same i... | Jordan Rupprecht | 2019-06-18 | 1 | -98/+48 |
| * | [tblgen][disasm] Allow multiple encodings to disassemble to the same instruction | Daniel Sanders | 2019-06-18 | 1 | -48/+98 |
| * | Update the file headers across all of the LLVM projects in the monorepo | Chandler Carruth | 2019-01-19 | 1 | -4/+3 |
| * | [tblgen][disasm] Emit record names again when decoder conflicts occur. | Daniel Sanders | 2019-01-03 | 1 | -1/+1 |
| * | Recommit r349041: [tblgen][disasm] Separate encodings from instructions | Daniel Sanders | 2018-12-13 | 1 | -37/+51 |
| * | Revert r349041: [tblgen][disasm] Separate encodings from instructions | Daniel Sanders | 2018-12-13 | 1 | -51/+37 |
| * | [tblgen][disasm] Separate encodings from instructions | Daniel Sanders | 2018-12-13 | 1 | -37/+51 |
| * | Fix MSVC build by correcting placement of declspec after r345056 | Daniel Sanders | 2018-10-23 | 1 | -1/+1 |
| * | [tblgen] Allow FixedLenDecoderEmitter to use APInt-like objects as InsnType | Daniel Sanders | 2018-10-23 | 1 | -11/+49 |
| * | [windows] Don't inline fieldFromInstruction on Windows | Stella Stamenova | 2018-07-25 | 1 | -1/+7 |
| * | [TableGen] Increase the number of supported decoder fix-ups. | Sander de Smalen | 2018-07-05 | 1 | -18/+40 |
| * | Rename DEBUG macro to LLVM_DEBUG. | Nicola Zaghen | 2018-05-14 | 1 | -26/+46 |
| * | TableGen: Use DefInit::getDef() instead of the type's getRecord() | Nicolai Haehnle | 2018-03-05 | 1 | -14/+11 |
| * | [tablegen] Avoid creating temporary strings | Alexander Shaposhnikov | 2017-07-05 | 1 | -3/+1 |
| * | [TableGen] Adapt more places to getValueAsString now returning a StringRef in... | Craig Topper | 2017-05-31 | 1 | -8/+7 |
| * | TableGen: Use StringInit instead of std::string for DagInit arg names | Matthias Braun | 2016-12-05 | 1 | -3/+5 |
| * | TableGen: Use StringRef instead of const std::string& in return vals. | Matthias Braun | 2016-12-04 | 1 | -3/+3 |
| * | Fix some Clang-tidy and Include What You Use warnings; other minor fixes (NFC). | Eugene Zelenko | 2016-11-30 | 1 | -47/+58 |
| * | Switch SmallSetVector to use DenseSet when it overflows its inline space. | Justin Lebar | 2016-10-21 | 1 | -5/+6 |
| * | Use StringRef in TableGen (NFC) | Mehdi Amini | 2016-10-04 | 1 | -1/+1 |
| * | Use the range variant of find/find_if instead of unpacking begin/end | David Majnemer | 2016-08-12 | 1 | -6/+2 |
| * | TableGen: Allow custom register operand decoder method | Matt Arsenault | 2016-07-18 | 1 | -25/+33 |
| * | [TableGen] Remove dead code. NFCI. | Davide Italiano | 2016-07-04 | 1 | -28/+0 |
| * | Apply most suggestions of clang-tidy's performance-unnecessary-value-param | Benjamin Kramer | 2016-06-08 | 1 | -6/+4 |
| * | Apply clang-tidy's misc-move-constructor-init throughout LLVM. | Benjamin Kramer | 2016-05-27 | 1 | -11/+11 |
| * | No need to use utostr/utohexstr when writing into a raw_ostream. NFC | Craig Topper | 2016-01-31 | 1 | -24/+30 |
| * | [TableGen] Return ArrayRef instead of a std::vector reference from getInstruc... | Craig Topper | 2016-01-17 | 1 | -10/+10 |
| * | Default SetVector to use a DenseSet. | Rafael Espindola | 2015-11-18 | 1 | -2/+2 |
| * | Fix three typos in comments; "easilly" -> "easily". | Nick Lewycky | 2015-08-18 | 1 | -2/+2 |
| * | Remove and forbid raw_svector_ostream::flush() calls. | Yaron Keren | 2015-08-13 | 1 | -4/+0 |
| * | Remove raw_svector_ostream::resync and users. It's no-op after r244870. | Yaron Keren | 2015-08-13 | 1 | -2/+0 |
| * | Explicitly clear the MI operand list when getInstruction() is called. Call M... | Cameron Esfahani | 2015-08-11 | 1 | -0/+1 |
| * | [TableGen] Improve decoding options for non-orthogonal instructions | Petr Pavlu | 2015-07-15 | 1 | -31/+143 |
| * | Fix comment typo | Petr Pavlu | 2015-07-14 | 1 | -1/+1 |
| * | [TableGen] Rename ListInit::getSize to just 'size' to be more consistent. | Craig Topper | 2015-06-02 | 1 | -3/+3 |
| * | Replace push_back(Constructor(foo)) with emplace_back(foo) for non-trivial types | Benjamin Kramer | 2015-05-29 | 1 | -6/+6 |
| * | Use std::bitset for SubtargetFeatures. | Michael Kuperstein | 2015-05-26 | 1 | -5/+5 |
| * | MC: Modernize MCOperand API naming. NFC. | Jim Grosbach | 2015-05-13 | 1 | -1/+1 |
| * | Reverting r237234, "Use std::bitset for SubtargetFeatures" | Michael Kuperstein | 2015-05-13 | 1 | -5/+5 |
| * | Use std::bitset for SubtargetFeatures | Michael Kuperstein | 2015-05-13 | 1 | -5/+5 |
| * | [TableGen] Prevent invalid code generation when emitting AssemblerPredicate c... | Toma Tabacu | 2015-04-07 | 1 | -1/+3 |
| * | Revert "Use std::bitset for SubtargetFeatures" | Michael Kuperstein | 2015-03-24 | 1 | -5/+5 |
| * | Use std::bitset for SubtargetFeatures | Michael Kuperstein | 2015-03-24 | 1 | -5/+5 |