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
/
support
/
tools
/
TableGen
/
CodeEmitterGen.cpp
Age
Commit message (
Expand
)
Author
2003-10-05
Move support/lib into lib/Support
Chris Lattner
2003-09-17
Do not put DEBUG() guard around error condition; this must *always* be printed.
Misha Brukman
2003-08-06
Added asserts to prevent negative shift amounts from being generated.
Misha Brukman
2003-08-06
convert over to using TableGen backends
Chris Lattner
2003-08-05
Stop special-casing annul and predict bits (which are Sparc-specific anyway)
Misha Brukman
2003-08-05
No functional changes, comment the fix I just put in
Chris Lattner
2003-08-05
The CodeEmitterGenerator used to consider ANY uninitialized field as being an
Chris Lattner
2003-08-01
DEBUG got moved to Debug.h
Chris Lattner
2003-08-01
Add new getValueAsBitsInit 'high-level' method
Chris Lattner
2003-08-01
Simplify code to match new interfaces
Chris Lattner
2003-08-01
Minor cleanups
Chris Lattner
2003-08-01
Factor code out into a new getAllDerivedDefinitions method, which is generall...
Chris Lattner
2003-07-31
More minor cleanups of the interface
Chris Lattner
2003-07-31
Rename createEmitter to run because eventually all tablegen backends will
Chris Lattner
2003-07-29
Don't crash if there is no Inst class in the tablegen file!
Chris Lattner
2003-07-18
Added a DEBUG() guard to a debug information printout.
Misha Brukman
2003-07-15
Fixed a bug: outputting name of variable instead of its value.
Misha Brukman
2003-07-15
This optimization greatly enhances efficiency of creating new instructions by
Misha Brukman
2003-07-07
Stop using the `Offset' variable, as we are cycling through the bits of a field
Misha Brukman
2003-06-06
Old versions of GCC doesn't have <ostream> :(
Chris Lattner
2003-06-06
All debug print statements are now output with the DEBUG() guard to make
Misha Brukman
2003-06-05
* Stop ignoring cc registers, since we actually use them in branches.
Misha Brukman
2003-06-03
Stop ignoring the `cc' field, we actually use it now (e.g. conditional move)
Misha Brukman
2003-05-30
getValueOp() now takes a MachineInstr as well as a MachineOperand.
Misha Brukman
2003-05-28
Output the opcode name of the instruction being emitted to cerr.
Misha Brukman
2003-05-27
Cannot output `static' in generated cpp code: results in error. It's already
Misha Brukman
2003-05-27
* Now outputting a static function getBinaryCodeForInstr() (JIT-accessible)
Misha Brukman
2003-05-24
First cut at the Code Generator using the TableGen methodology.
Misha Brukman