index
:
emscripten-fastcomp
master
LLVM with the emscripten fastcomp javascript backend
git repository hosting
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
lib
/
CodeGen
/
MachineCopyPropagation.cpp
Age
Commit message (
Expand
)
Author
2012-12-03
Use the new script to sort the includes of every file under lib.
Chandler Carruth
2012-11-30
Convert COPY instructions into KILLs if they have implicit defs.
Jakob Stoklund Olesen
2012-11-27
Remove unneeded #include.
Jakub Staszak
2012-10-15
Switch most getReservedRegs() clients to the MRI equivalent.
Jakob Stoklund Olesen
2012-06-01
Switch all register list clients to the new MC*Iterator interface.
Jakob Stoklund Olesen
2012-06-01
Switch some getAliasSet clients to MCRegAliasIterator.
Jakob Stoklund Olesen
2012-03-27
Use a SmallVector and linear lookup instead of a DenseSet - SourceMap values
Lang Hames
2012-03-27
During MachineCopyPropagation a register may be the source operand of multiple
Lang Hames
2012-03-05
Convert more GenRegisterInfo tables from unsigned to uint16_t to reduce stati...
Craig Topper
2012-03-04
Use uint16_t to store register overlaps to reduce static data.
Craig Topper
2012-02-27
Fix for PR12090: clear def maps of aliases when visiting a copy. e.g.
Evan Cheng
2012-02-20
Fix machine-cp by having it to check sub-register indicies. e.g.
Evan Cheng
2012-02-09
Erase dead copies that are clobbered by a call.
Jakob Stoklund Olesen
2012-02-08
Handle register masks in MachineCopyPropagation.
Jakob Stoklund Olesen
2012-02-08
Codegen pass definition cleanup. No functionality.
Andrew Trick
2012-02-08
whitespace
Andrew Trick
2012-01-26
Clear kill flags before propagating a copy.
Jakob Stoklund Olesen
2012-01-08
Avoid eraseing copies from a reserved register unless the definition can be
Evan Cheng
2012-01-07
Added a late machine instruction copy propagation pass. This catches
Evan Cheng