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
*
Invert the meaning of printAliasInstr's return value. It now returns
Eric Christopher
2011-04-18
1
-4
/
+4
*
Add an option to not print the alias of an instruction. It defaults to "print
Bill Wendling
2011-04-13
1
-0
/
+2
*
Only emit the AvailableFeatures variable if it's used.
Bill Wendling
2011-04-08
1
-4
/
+7
*
Replace the old algorithm that emitted the "print the alias for an instruction"
Bill Wendling
2011-04-07
1
-146
/
+59
*
Call static functions so that they aren't left unused.
Bill Wendling
2011-03-21
1
-2
/
+4
*
A WIP commit of the InstAlias printing cleanup. This code will soon replace the
Bill Wendling
2011-03-21
1
-19
/
+121
*
Add the IAPrinter class.
Bill Wendling
2011-03-21
1
-0
/
+97
*
* Add classes that support the "feature" information.
Bill Wendling
2011-03-21
1
-5
/
+119
*
A new TableGen feature! (Not turned on just yet.)
Bill Wendling
2011-02-26
1
-0
/
+249
*
eliminate the Records global variable, patch by Garrison Venn!
Chris Lattner
2010-12-13
1
-3
/
+3
*
Let a target specify whether it wants an assembly printer to be the MC version
Jim Grosbach
2010-09-30
1
-1
/
+4
*
trailing whitespace
Jim Grosbach
2010-09-29
1
-54
/
+54
*
Handle the odd case where we only have one instruction.
Eric Christopher
2010-09-18
1
-0
/
+3
*
Update comment.
Bill Wendling
2010-07-16
1
-1
/
+1
*
change a ton of code to not implicitly use the "O" raw_ostream
Chris Lattner
2010-04-04
1
-1
/
+1
*
make inst_begin/inst_end iterate over InstructionsByEnumValue.
Chris Lattner
2010-03-19
1
-3
/
+3
*
revert 98912
Chris Lattner
2010-03-19
1
-3
/
+3
*
make inst_begin/inst_end iterate over InstructionsByEnumValue.
Chris Lattner
2010-03-19
1
-3
/
+3
*
change Target.getInstructionsByEnumValue to return a reference
Chris Lattner
2010-03-19
1
-3
/
+3
*
enhance llvm-mc -show-inst to print the enum of an instruction, like so:
Chris Lattner
2010-02-11
1
-0
/
+44
*
Fixed some indentation in the AsmWriterInst
Sean Callanan
2010-02-09
1
-1
/
+5
*
Per PR 6219, factored AsmWriterInst and AsmWriterOperand
Sean Callanan
2010-02-09
1
-325
/
+1
*
sink handling of target-independent machine instrs (other
Chris Lattner
2010-02-03
1
-18
/
+0
*
Don't print a redundant tab for inline asm, and do use the new printKill.
Dan Gohman
2009-11-06
1
-2
/
+1
*
Move UnescapeString to a static function for its sole client; its inefficient...
Daniel Dunbar
2009-10-17
1
-0
/
+23
*
Introduce the TargetInstrInfo::KILL machine instruction and get rid of the
Jakob Stoklund Olesen
2009-09-28
1
-0
/
+2
*
add a comment.
Chris Lattner
2009-09-18
1
-0
/
+5
*
slightly increase prettiness.
Chris Lattner
2009-09-14
1
-2
/
+2
*
emit the register table as a massive string to avoid relocations.
Chris Lattner
2009-09-14
1
-5
/
+16
*
move StringToOffsetTable out to its own header.
Chris Lattner
2009-09-14
1
-56
/
+1
*
factor string table generation out to its own class. This changes
Chris Lattner
2009-09-14
1
-50
/
+73
*
the tblgen produced 'getRegisterName' method does not access
Chris Lattner
2009-09-13
1
-1
/
+1
*
make tblgen produce a function that returns the name for a physreg.
Chris Lattner
2009-09-13
1
-8
/
+46
*
PHI nodes can never reach the asmprinter, assert and die instead of printing
Chris Lattner
2009-09-11
1
-1
/
+2
*
remove DebugLoc from MCInst and eliminate "Comment printing" from
Chris Lattner
2009-09-09
1
-4
/
+0
*
Fix a subtle bug in "return;" generation which caused us to miss
Chris Lattner
2009-09-09
1
-22
/
+3
*
hoist the call to processDebugLoc out of the generated
Chris Lattner
2009-09-09
1
-2
/
+0
*
remove some DOUTs
Chris Lattner
2009-08-23
1
-2
/
+2
*
Record variable debug info at ISel time directly.
Devang Patel
2009-08-22
1
-3
/
+0
*
the MinPad argument to PadToColumn only really makes sense to be 1,
Chris Lattner
2009-08-17
1
-2
/
+2
*
make printInstruction return void since its result is omitted. Make the
Chris Lattner
2009-08-08
1
-11
/
+11
*
don't check the result of printInstruction anymore.
Chris Lattner
2009-08-08
1
-5
/
+6
*
Unbreak build.
Benjamin Kramer
2009-08-07
1
-8
/
+8
*
fix the column output stuff in the asmwriter from being dynamic and
Chris Lattner
2009-08-07
1
-15
/
+36
*
Suppress compiler warning.
Daniel Dunbar
2009-08-05
1
-1
/
+3
*
Fix some column padding bugs, reorganize things as suggested by Chris
David Greene
2009-08-05
1
-26
/
+4
*
Simplify operand padding by keying off tabs in the asm stream. If
David Greene
2009-07-31
1
-137
/
+20
*
Re-enable comment and operand padding.
David Greene
2009-07-29
1
-21
/
+213
*
Revert AsmWriterEmitter.cpp to 74742. The recent changes are causing serious ...
Evan Cheng
2009-07-29
1
-213
/
+21
*
Make a bunch of changes suggested by Chris and others to improve
David Greene
2009-07-21
1
-78
/
+146
[next]