index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
llvm
/
utils
/
TableGen
/
AsmWriterEmitter.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
*
[MC] Add parameter `Address` to MCInstrPrinter::printInstruction
Fangrui Song
2020-01-06
1
-7
/
+8
*
[MC] Rewrite tablegen for printInstrAlias to comiple faster, NFC
Reid Kleckner
2019-12-06
1
-95
/
+166
*
[tblgen] Add getOperatorAsDef() to Record
Daniel Sanders
2019-10-08
1
-2
/
+1
*
[llvm-objdump] Implement -Mreg-names-raw/-std options.
Igor Kudrin
2019-02-26
1
-5
/
+14
*
Update the file headers across all of the LLVM projects in the monorepo
Chandler Carruth
2019-01-19
1
-4
/
+3
*
[TableGen:AsmWriter] Cope with consecutive tied operands.
Simon Tatham
2018-12-14
1
-9
/
+14
*
[TableGen] Prevent double flattening of InstAlias asm strings in the asm matc...
Craig Topper
2018-06-18
1
-9
/
+11
*
Rename DEBUG macro to LLVM_DEBUG.
Nicola Zaghen
2018-05-14
1
-2
/
+2
*
[AArch64][TableGen] Skip tied result operands for InstAlias
Sander de Smalen
2017-11-20
1
-2
/
+15
*
fix printing of alias instructions by removing redundant spacing
Petar Jovanovic
2017-11-13
1
-1
/
+3
*
[TableGen] Use StringRef instead of std::string for CodeGenInstruction namesp...
Craig Topper
2017-07-07
1
-2
/
+2
*
[TableGen] Adapt more places to getValueAsString now returning a StringRef in...
Craig Topper
2017-05-31
1
-20
/
+24
*
[TableGen] Make Record::getValueAsString and getValueAsListOfStrings return S...
Craig Topper
2017-05-31
1
-1
/
+1
*
Add a wrapper around copy_if in STLExtras; NFC
Sanjoy Das
2017-02-21
1
-4
/
+3
*
[TableGen][AsmWriterEmitter] Use a deterministic order to sort InstrAliases
Quentin Colombet
2017-02-10
1
-1
/
+1
*
Revert r294437 as it broke an asan buildbot.
Amara Emerson
2017-02-08
1
-7
/
+2
*
[AArch64][TableGen] Skip tied result operands for InstAlias
Amara Emerson
2017-02-08
1
-2
/
+7
*
Mark comparator call operator as const
Eric Fiselier
2016-12-27
1
-1
/
+1
*
TableGen: Use StringRef instead of const std::string& in return vals.
Matthias Braun
2016-12-04
1
-9
/
+9
*
Fix some Clang-tidy and Include What You Use warnings; other minor fixes (NFC).
Eugene Zelenko
2016-11-30
1
-18
/
+37
*
TableGen: Allow signed immediates for instruction aliases
Jacob Baungard Hansen
2016-11-24
1
-1
/
+1
*
[tablegen] Merge duplicate definitions of getMinimalTypeForRange. NFC.
Daniel Sanders
2016-11-19
1
-10
/
+2
*
Use the range variant of remove_if instead of unpacking begin/end
David Majnemer
2016-08-12
1
-4
/
+2
*
Use the range variant of find/find_if instead of unpacking begin/end
David Majnemer
2016-08-12
1
-5
/
+3
*
TableGen: promote "code" type from syntactic sugar.
Tim Northover
2016-07-05
1
-1
/
+1
*
Run clang-tidy's performance-unnecessary-copy-initialization over LLVM.
Benjamin Kramer
2016-06-12
1
-1
/
+1
*
AsmWriterEmitter.cpp assumes that all operands of a printed alias
Sjoerd Meijer
2016-06-03
1
-3
/
+4
*
Currently AsmWriterEmiter.cpp (used by tblgen -gen-asm-writer) does not
Sjoerd Meijer
2016-06-03
1
-2
/
+34
*
Apply clang-tidy's misc-move-constructor-init throughout LLVM.
Benjamin Kramer
2016-05-27
1
-1
/
+3
*
Fix comment
Xinliang David Li
2016-02-23
1
-1
/
+1
*
[TableGen] In AsmWriterEmitter unique command search, rather than storing a m...
Craig Topper
2016-01-24
1
-43
/
+32
*
[TableGen] Make a class member local to the function that populates it and co...
Craig Topper
2016-01-22
1
-1
/
+2
*
[TableGen] Keep a returned const reference instead of making a copy. NFC
Craig Topper
2016-01-17
1
-1
/
+1
*
[TableGen] Return ArrayRef instead of a std::vector reference from getInstruc...
Craig Topper
2016-01-17
1
-7
/
+7
*
[TableGen] Changes to AsmWriterEmitter to remove the CodeGenInstruction to As...
Craig Topper
2016-01-17
1
-67
/
+43
*
[TableGen] Use std::find instead of a manual loop. NFC
Craig Topper
2016-01-17
1
-10
/
+8
*
[TableGen] Pass PassSubtarget flag into getCode instead of storing a copy of ...
Craig Topper
2016-01-14
1
-15
/
+18
*
[TableGen] Cleanup output formatting and add llvm_unreachables to the output ...
Craig Topper
2016-01-13
1
-5
/
+6
*
[TableGen] Replace some hardcoded assumptions that the OpcodeInfo table is 64...
Craig Topper
2016-01-13
1
-8
/
+10
*
[TableGen] Use std::remove_if instead of an n^2 loop. NFC
Craig Topper
2016-01-13
1
-8
/
+5
*
[TableGen] Fix up some stale comments in the AsmMatcher. NFC
Craig Topper
2016-01-13
1
-4
/
+2
*
[TableGen] Move calls to getValueAsInt out of a loop since they aren't simple...
Craig Topper
2016-01-13
1
-2
/
+3
*
[TableGen] Allow asm writer to use up to 3 OpInfo tables instead of 2. This a...
Craig Topper
2016-01-11
1
-30
/
+32
*
[TableGen] Remove unnecessary 0 terminator from an array that only existed to...
Craig Topper
2016-01-11
1
-4
/
+0
*
[TableGen] Use range-based for loops. Also fix one loop to not use some index...
Craig Topper
2016-01-08
1
-25
/
+20
*
[TableGen] Combine variable declaration and initialization. Move a string int...
Craig Topper
2016-01-08
1
-3
/
+2
*
[TableGen] Correct Namespace lookup with AltNames in AsmWriterEmitter
Hal Finkel
2015-12-11
1
-2
/
+4
*
[AArch64] Add ARMv8.2-A Statistical Profiling Extension
Oliver Stannard
2015-12-01
1
-5
/
+7
*
Remove and forbid raw_svector_ostream::flush() calls.
Yaron Keren
2015-08-13
1
-1
/
+0
*
Fix memory leaks by avoiding extra manual dynamic allocation
David Blaikie
2015-08-06
1
-57
/
+41
[next]