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
/
include
/
llvm
/
Analysis
/
DSSupport.h
Age
Commit message (
Expand
)
Author
2004-03-11
Doxygenified and cleand up comments.
Misha Brukman
2004-01-27
Minor tweaks
Chris Lattner
2004-01-23
Fix grammar
Chris Lattner
2004-01-22
It doesn't make sense for one side to be const, but not the other.
Chris Lattner
2004-01-22
Specialize std::swap correctly
Chris Lattner
2003-11-11
Put all LLVM code into the llvm namespace, as per bug 109.
Brian Gaeke
2003-11-02
All DSGraphs keep a reference to the targetdata they are created with. This is
Chris Lattner
2003-10-20
Added LLVM copyright header (for lack of a better term).
John Criswell
2003-09-20
Switch from using CallInst's to represent call sites to using the LLVM
Chris Lattner
2003-07-26
Remove #includes
Chris Lattner
2003-07-25
Use the C++ <cassert> header, not the C <assert.h> header
Chris Lattner
2003-07-01
Add new operator= impl
Chris Lattner
2003-07-01
Ok, I'm a moron. Fixed now
Chris Lattner
2003-07-01
Fix major problem that was causing all kinds of nasty foldings
Chris Lattner
2003-06-22
Remove a ton of extraneous #includes
Chris Lattner
2003-06-11
Included assert.h so that the code compiles under newer versions of GCC.
John Criswell
2003-02-13
Move node forwarding code from being inlined to being out-of-line.
Chris Lattner
2003-02-11
Implement a "union-findy" version of DS-Analysis, which eliminates the
Chris Lattner
2003-02-10
Move getNode() out of line
Chris Lattner
2003-02-05
Implement optimization for direct function call case. This dramatically
Chris Lattner
2003-02-03
Eliminate unused resolving caller stuff
Chris Lattner
2003-02-01
Change DSGraph stuff to use hash_(set|map) instead of std::(set|map)
Chris Lattner
2003-01-29
New API for traversing graph
Chris Lattner
2002-11-18
Inline DSTypeRec into DSNode
Chris Lattner
2002-11-10
Add code to be able to merge two call sites
Chris Lattner
2002-11-10
Implement support for swapping. Callsites now sort by callee
Chris Lattner
2002-11-07
Expose isPointerType to clients of dsanalysis
Chris Lattner
2002-11-06
Make PointerShift/Size be enums so they are constants instead of globals
Chris Lattner
2002-11-06
Dramatically simplify internal DSNode representation, get implementation
Chris Lattner
2002-11-02
Fixed comment on top of DSNode.h, added note to DSSupport.h as to why
Misha Brukman
2002-10-31
Refactored DSGraph.h:
Misha Brukman