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
/
lib
/
TableGen
/
Record.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
[TableGen] Remove unnecessary temporary. NFC
Craig Topper
2015-06-06
1
-2
/
+1
*
[TableGen] Fold variable declaration/initialization into if condition for a c...
Craig Topper
2015-06-06
1
-8
/
+6
*
[TableGen] Remove unnecessary outer 'if' and merge it's conditions into the i...
Craig Topper
2015-06-06
1
-42
/
+41
*
[TableGen] Fold variable declarations with their assignments. NFC
Craig Topper
2015-06-06
1
-4
/
+2
*
[TableGen] Use range-based for loops. NFC
Craig Topper
2015-06-04
1
-12
/
+13
*
[TableGen] Merge single prefix bit in RecordVal into PointerIntPair with Name...
Craig Topper
2015-06-04
1
-5
/
+5
*
[TableGen] Rename ListInit::getSize to just 'size' to be more consistent.
Craig Topper
2015-06-02
1
-5
/
+5
*
[TableGen] Use range-based for loops. NFC.
Craig Topper
2015-06-02
1
-11
/
+10
*
[TableGen] Move a couple virtual methods out of line so vtable anchors can be...
Craig Topper
2015-06-01
1
-3
/
+7
*
[TableGen] Merge RecTy::typeIsConvertibleTo and RecTy::baseClassOf. NFC
Craig Topper
2015-05-30
1
-16
/
+14
*
[TableGen] Remove all the variations of RecTy::convertValue and just handle t...
Craig Topper
2015-05-30
1
-173
/
+217
*
[TableGen] Remove convertValue functions for UnOpInit, BinOpInit, and TernOpI...
Craig Topper
2015-05-29
1
-48
/
+0
*
[TableGen] Use DefInit::getAsString instead of getDef()->getName(). NFC
Craig Topper
2015-05-28
1
-1
/
+1
*
[TableGen] Don't convert types to strings to query what they are. Just use 'isa'
Craig Topper
2015-05-28
1
-2
/
+2
*
[TableGen] Make some variable names consistent with their type names and just...
Craig Topper
2015-05-20
1
-23
/
+23
*
[TableGen] Fix a memory leak.
Craig Topper
2015-05-20
1
-2
/
+2
*
[TableGen] Change 'car' to 'head' and 'cdr' to 'tail' in assert comments. The...
Craig Topper
2015-05-16
1
-2
/
+2
*
[TableGen] Remove !! that I can't really explain why I wrote. Also remove som...
Craig Topper
2015-05-16
1
-6
/
+4
*
[TableGen] Restructure a loop to make it exit early instead of skipping a por...
Craig Topper
2015-05-16
1
-5
/
+6
*
TableGen: Avoid undefined behaviour by doing this shift in int64
Justin Bogner
2015-05-14
1
-1
/
+1
*
[TableGen] Remove an unnecessary outer 'if' around 3 separate inner ifs. No f...
Craig Topper
2015-05-14
1
-29
/
+25
*
[TableGen] Simplify some code. NFC
Craig Topper
2015-05-14
1
-9
/
+4
*
[TableGen] Replace some calls to ListInit::getSize() with ListInit::empty() i...
Craig Topper
2015-05-14
1
-3
/
+3
*
Use ArrayRef::slice instead of manually constructing an ArrayRef from ArrayRe...
Craig Topper
2015-05-13
1
-6
/
+1
*
Remove unnecessary variables by folding calls into for loop header. NFC.
Craig Topper
2015-05-12
1
-4
/
+2
*
[TableGen] Replace 'static_cast' with 'cast'.
Craig Topper
2015-05-04
1
-1
/
+1
*
[TableGen] Formatting cleanup. Mostly removing trailing whitespace and unnece...
Craig Topper
2015-05-04
1
-68
/
+41
*
[TableGen] Cleanup formatting by moving operators from beginning of line to e...
Craig Topper
2015-04-30
1
-14
/
+13
*
[TableGen] Used range-based for loop. NFC.
Craig Topper
2015-04-30
1
-6
/
+2
*
[TableGen] Merge a variable assignment and a return to drop curly braces. Fol...
Craig Topper
2015-04-30
1
-13
/
+7
*
[TableGen] Use range-based for loops. NFC.
Craig Topper
2015-04-29
1
-23
/
+9
*
[TableGen] Fold a couple dyn_casts into the ifs that check their results. NFC
Craig Topper
2015-04-29
1
-11
/
+8
*
[TableGen] Replace some dyn_casts followed by an assert with just a regular c...
Craig Topper
2015-04-29
1
-23
/
+10
*
[TableGen] Fix all remaining memory leaks of Init and RecTy objects.
Craig Topper
2015-04-24
1
-34
/
+33
*
[TableGen] Use range based for loops.
Craig Topper
2015-04-22
1
-14
/
+4
*
[TableGen] Remove some deletes that violate ownership semantics. These don't ...
Craig Topper
2015-04-22
1
-10
/
+2
*
[TableGen] Make BitRecTy::baseClassOf return true when RHS is an IntRecTy.
Craig Topper
2015-04-22
1
-1
/
+1
*
Don't use 'nullptr' in comment. Just use 'null'.
Craig Topper
2015-04-22
1
-1
/
+1
*
Revert "[TableGen] Use cast instead of dyn_cast where result isn't checked be...
Craig Topper
2015-04-22
1
-1
/
+1
*
Fix stale comment that mentioned 0 instead of nullptr. NFC.
Craig Topper
2015-04-22
1
-1
/
+1
*
[TableGen] Remove Pool helper class and just use unique_ptr in the maps.
Craig Topper
2015-04-22
1
-41
/
+24
*
[TableGen] Use StringRecTy::get() instead of allocating (and leaking) a Strin...
Craig Topper
2015-04-22
1
-2
/
+2
*
[TableGen] Use 'isa' to identify UnsetInits rather than comparing with the si...
Craig Topper
2015-04-22
1
-2
/
+2
*
[TableGen] Use cast instead of dyn_cast where result isn't checked before bei...
Craig Topper
2015-04-22
1
-1
/
+1
*
Reduce dyn_cast<> to isa<> or cast<> where possible.
Benjamin Kramer
2015-04-10
1
-1
/
+1
*
Replace size method call of containers to empty method where appropriate
Alexander Kornienko
2015-01-15
1
-1
/
+1
*
Clean up static analyzer warnings.
Michael Ilseman
2014-12-12
1
-1
/
+1
*
TableGen: unique_ptr-ify RecordKeeper
Dylan Noblesmith
2014-08-24
1
-1
/
+1
*
TableGen: delete no-op code
Dylan Noblesmith
2014-08-24
1
-7
/
+0
*
TableGen: use auto and for-range
Dylan Noblesmith
2014-08-24
1
-12
/
+9
[prev]
[next]