index
:
~jwrdegoede/llvm
master
Hans' llvm repository
jwrdegoede
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
TableGen
/
TGParser.cpp
Age
Commit message (
Expand
)
Author
Files
Lines
2016-02-26
[TableGen] Fix typos in comments. NFC
Craig Topper
1
-2
/
+2
2016-01-29
Annotate dump() methods with LLVM_DUMP_METHOD, addressing Richard Smith r2591...
Yaron Keren
1
-1
/
+1
2016-01-18
[TableGen] Merge the SuperClass Record and SMRange vector into a single vecto...
Craig Topper
1
-6
/
+5
2016-01-04
[TableGen] Change TGParser::SetValue to take an ArrayRef instead of std::vect...
Craig Topper
1
-13
/
+8
2016-01-04
[TableGen] Fix a bug that caused the wrong name for a record built from a mul...
Craig Topper
1
-4
/
+6
2015-10-24
[TblGen] ArrayRefize TGParser. No functional change intended.
Benjamin Kramer
1
-17
/
+13
2015-07-06
[TableGen] Change a couple methods to return an ArrayRef instead of a const s...
Craig Topper
1
-1
/
+1
2015-06-02
[TableGen] Use range-based for loops. NFC
Craig Topper
1
-12
/
+10
2015-06-02
[TableGen] Rename ListInit::getSize to just 'size' to be more consistent.
Craig Topper
1
-1
/
+1
2015-05-29
Replace push_back(Constructor(foo)) with emplace_back(foo) for non-trivial types
Benjamin Kramer
1
-2
/
+2
2015-05-28
Don't call utostr in Twine/raw_ostream contexts.
Benjamin Kramer
1
-10
/
+7
2015-05-21
[TableGen] Resolve complex def names inside multiclasses
Hal Finkel
1
-5
/
+41
2015-05-14
[TableGen] Replace some calls to ListInit::getSize() with ListInit::empty() i...
Craig Topper
1
-1
/
+1
2015-05-04
[TableGen] Formatting cleanup. Mostly removing trailing whitespace and unnece...
Craig Topper
1
-32
/
+18
2015-04-30
[TableGen] Cleanup formatting by moving operators from beginning of line to e...
Craig Topper
1
-29
/
+27
2015-04-29
[TableGen] Replace some dyn_casts followed by an assert with just a regular c...
Craig Topper
1
-2
/
+1
2015-04-29
[TableGen] Use range-based for loops. NFC
Craig Topper
1
-57
/
+28
2015-03-01
Add missing includes. make_unique proliferated everywhere.
Benjamin Kramer
1
-0
/
+1
2015-02-16
MSVC 2013 does not ICE on this code in the same fashion that MSVC 2012 did; NFC.
Aaron Ballman
1
-2
/
+1
2015-01-15
Replace size method call of containers to empty method where appropriate
Alexander Kornienko
1
-1
/
+1
2014-12-11
Make MultiClass::DefPrototypes own their Records to fix memory leaks.
Craig Topper
1
-13
/
+8
2014-12-11
Replace std::map<K, V*> with std::map<K, std::unique_ptr<V>> to handle owners...
Craig Topper
1
-5
/
+8
2014-11-30
Revert r222957 "Replace std::map<K, V*> with std::map<K, V> to handle ownersh...
Craig Topper
1
-11
/
+8
2014-11-30
Revert r222965 "Make MultiClass::DefPrototypes own their Records to fix memor...
Hans Wennborg
1
-6
/
+6
2014-11-30
Qualify one more make_unique call.
Hans Wennborg
1
-2
/
+2
2014-11-30
Speculatively qualify some llvm::make_unique calls trying to please MSVC
Hans Wennborg
1
-4
/
+4
2014-11-30
Use an unsigned type because there seems to be no reason for it to be signed.
Craig Topper
1
-1
/
+1
2014-11-30
Make MultiClass::DefPrototypes own their Records to fix memory leaks.
Craig Topper
1
-6
/
+6
2014-11-29
Replace std::map<K, V*> with std::map<K, V> to handle ownership and deletion ...
Craig Topper
1
-8
/
+11
2014-11-29
Remove 'else' after 'return'. Fix formatting of a 'switch' statement.
Craig Topper
1
-12
/
+11
2014-11-29
Make RecordKeeper::addClass/addDef take unique_ptrs instead of creating one i...
Craig Topper
1
-6
/
+8
2014-11-29
Use unique_ptr to remove some explicit deletes on some error case returns. At...
Craig Topper
1
-68
/
+46
2014-10-03
Eliminate some deep std::vector copies. NFC.
Benjamin Kramer
1
-1
/
+1
2014-09-25
Refactoring: raw pointer -> unique_ptr
Anton Yartsev
1
-5
/
+3
2014-09-16
[TableGen] Fully resolve class-instance values before defs in multiclasses
Adam Nemet
1
-0
/
+9
2014-08-29
Comment only: Annotate loop as per mailing list discussion
Jean-Luc Duprat
1
-0
/
+3
2014-08-29
Tablegen fixes for new syntax when initializing bits from variables.
Jean-Luc Duprat
1
-0
/
+9
2014-08-08
[tablegen] - Eliminate memory leaks in TGParser.cpp
Anton Yartsev
1
-4
/
+26
2014-08-07
Silencing an MSVC C4334 warning ('<<' : result of 32-bit shift implicitly con...
Aaron Ballman
1
-1
/
+1
2014-08-07
Change the { } expression in tablegen to accept sized binary literals which a...
Pete Cooper
1
-2
/
+13
2014-08-07
Change TableGen so that binary literals such as 0b001 are now sized.
Pete Cooper
1
-0
/
+9
2014-08-05
Allow binary and for tblgen math.
Joerg Sonnenberger
1
-0
/
+3
2014-07-31
Don't fail tablegen immediately after failing to set a value.
Pete Cooper
1
-1
/
+4
2014-07-31
Add a better error message when failing to assign one tablegen value to another
Pete Cooper
1
-1
/
+8
2014-06-26
Revert "Introduce a string_ostream string builder facilty"
Alp Toker
1
-1
/
+2
2014-06-26
Introduce a string_ostream string builder facilty
Alp Toker
1
-2
/
+1
2014-06-10
Fix error in tablegen when either operand of !if is an empty list.
Matt Arsenault
1
-6
/
+8
2014-06-10
Anonymous definitions in foreach blocks triggered a 'def already exists'
Artyom Skrobov
1
-2
/
+7
2014-05-31
Fix typos in tablegen error messages
Matt Arsenault
1
-3
/
+3
2014-05-07
[tablegen] Add !listconcat operator with the similar semantics as !strconcat
Daniel Sanders
1
-1
/
+21
[next]