index
:
llvm
master
release_1
release_16
release_20
release_21
release_22
release_23
release_24
release_25
release_26
release_27
release_28
release_29
release_30
release_31
release_32
release_33
stable
svn-tags/RELEASE_1
svn-tags/RELEASE_20
svn-tags/RELEASE_21
svn-tags/RELEASE_22
svn-tags/RELEASE_23
svn-tags/RELEASE_24
svn-tags/RELEASE_25
svn-tags/RELEASE_26
svn-tags/RELEASE_27
svn-tags/RELEASE_28
svn-tags/RELEASE_29
svn-tags/RELEASE_30
svn-tags/RELEASE_31
svn-tags/RELEASE_32
testing
http://llvm.org
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
Target
/
Sparc
/
SparcAsmPrinter.cpp
Age
Commit message (
Expand
)
Author
2005-12-17
Add basic addressing mode support and one load.
Chris Lattner
2005-12-17
Use the AsmPrinter for global variable init printing. This eliminates a
Chris Lattner
2005-12-17
Switch constant pool printing over to use the Shared AsmPrinter version
Chris Lattner
2005-12-17
Use the shared AsmPrinter code for some basic stuff. No functionality
Chris Lattner
2005-12-17
Convert the remaining instructions over, branches and calls. Fix a couple
Chris Lattner
2005-12-16
remove some dead code
Chris Lattner
2005-12-16
asmprint pseudo instrs
Chris Lattner
2005-12-16
Autogenerate asmprinter for F3_2 instructions
Chris Lattner
2005-12-16
Switch F3_1 instructions over to use AsmStrings
Chris Lattner
2005-12-16
Plug in basic hooks for an autogenerated asm printer to fill in.
Chris Lattner
2005-08-17
Promote dependency for MathExtras.h out of Constants.h.
Jim Laskey
2005-08-17
Culling out use of unions for converting FP to bits and vice versa.
Jim Laskey
2005-04-22
Convert tabs to spaces
Misha Brukman
2005-04-21
Remove trailing whitespace
Misha Brukman
2005-03-15
This mega patch converts us from using Function::a{iterator|begin|end} to
Chris Lattner
2004-12-09
Fix asm-printing directives (how did we not see this before...apparently,
Brian Gaeke
2004-11-23
Support printing ConstantAggregateZeros.
Brian Gaeke
2004-11-19
Handle GhostLinkage case for completeness (should not be seen by the asm writer)
Misha Brukman
2004-11-14
Support UndefValue emission.
Brian Gaeke
2004-09-29
Don't use .quad to output double constants. The assembler must have a bug or
Brian Gaeke
2004-09-29
Put quotes around argument to .section directive.
Brian Gaeke
2004-09-02
Back to compiling land for v8
Brian Gaeke
2004-08-04
getValues is gone
Chris Lattner
2004-07-18
CPR fixes
Chris Lattner
2004-07-16
Add special handling for pseudo-instructions (print them as comments).
Brian Gaeke
2004-07-08
Fix bug where SwitchSection would fail to change to ".bss" successfully.
Brian Gaeke
2004-06-27
Support printing constant pool indices.
Brian Gaeke
2004-06-24
* LowercaseString moved to StringExtras.h
Misha Brukman
2004-06-24
Rename the load and store opcodes. The non-fp ones only have one
Brian Gaeke
2004-06-18
.zero doesn't work in the Solaris assembler.
Brian Gaeke
2004-06-18
Support printing base+offset pairs where the offset is a register.
Brian Gaeke
2004-06-17
Emit stores correctly; don't fail an assertion.
Brian Gaeke
2004-06-17
Use addGlobalAddress and addMBB for call & branch targets instead of addPCDisp.
Brian Gaeke
2004-06-17
Rename Type::PrimitiveID to TypeId and ::getPrimitiveID() to ::getTypeID()
Chris Lattner
2004-06-15
Allow special-casing of operand printing based on opcode. Print
Brian Gaeke
2004-06-02
Adjust to new TM interfaces
Chris Lattner
2004-04-07
Don't print [%reg + 0], just print [%reg]
Brian Gaeke
2004-04-07
Fix bug in printing loads.
Brian Gaeke
2004-04-06
First attempt at special-casing printing of [%reg + offset] for
Brian Gaeke
2004-04-02
Add support for printing pc-relative displacements of functions (as used in
Brian Gaeke
2004-03-16
The .type directive on Solaris uses the # character instead of @.
Brian Gaeke
2004-03-16
Use ! for comment char; it works in both Solaris as and GAS.
Brian Gaeke
2004-03-06
Emit register names in lowercase, as required by the assembler.
Brian Gaeke
2004-03-05
Asm output is looking a lot better; not correct for all operands yet though.
Brian Gaeke
2004-03-04
Asm printer support, based on x86 - only prints mnemonics for now
Brian Gaeke