Minor technical correction in documentation.
[oota-llvm.git] / include /
2006-08-18 Chris Lattnervpkuwus didn't work, due to this typo
2006-08-18 Reid SpencerFor PR797:
2006-08-17 Chris LattnerConstify some methods. Patch provided by Anton Vayvod...
2006-08-17 Chris Lattnerswitch the SUnit pred/succ sets from being std::sets...
2006-08-16 Chris Lattneradd an accessor
2006-08-16 Chris LattnerConvert vector to smallvector: 4% speedup.
2006-08-16 Chris Lattnersilence a warning.
2006-08-16 Chris LattnerChange the use_list to be a smallvector instead of...
2006-08-16 Chris Lattneradd a way to have multiple modules in a JIT :)
2006-08-16 Chris Lattnerinitial changes to support JIT'ing from multiple module...
2006-08-16 Chris LattnerBugfixes for smallvector when the element size is small...
2006-08-15 Chris LattnerStart using SDVTList more consistently
2006-08-15 Chris Lattneradd a new SDVTList type and new SelectionDAG::getVTList...
2006-08-14 Chris LattnerMake getNodeValueTypes methods public.
2006-08-14 Chris LattnerAdd a new getNode() method that takes a pointer to...
2006-08-14 Devang PatelAvoid extra string copy.
2006-08-14 Devang PatelUse mangler, instead of addUnderscore(), to get mangled...
2006-08-14 Chris Lattnerremove SelectionDAG::InsertISelMapEntry, it is dead
2006-08-14 Chris LattnerAdd code to resize the CSEMap hash table. This doesn...
2006-08-14 Chris Lattneravoid a warning
2006-08-12 Nate BegemanEmit .set directives for jump table entries when possib...
2006-08-12 Chris LattnerTrack # nodes in a CSEMap.
2006-08-11 Chris LattnerSwitch NodeID to track 32-bit chunks instead of 8-bit...
2006-08-11 Chris Lattnerremove IncludeFile turds in MathExtras.h, which bloats...
2006-08-11 Chris Lattnermove code out of line so that GCC doesn't inline it...
2006-08-11 Chris LattnerSplit SmallVector into SmallVector and SmallVectorImpl...
2006-08-11 Chris LattnerRemove 8 more std::map's.
2006-08-11 Chris Lattnerremove old piece of the V9 backend.
2006-08-11 Chris LattnerStart moving leaf nodes over to the CSEMap.
2006-08-11 Chris Lattnernew method for adding ints
2006-08-11 Chris Lattnereliminate the NullaryOps map, use CSEMap instead.
2006-08-11 Chris LattnerChange one ReplaceAllUsesWith method to take an array...
2006-08-11 Chris LattnerRemove now-dead method.
2006-08-11 Chris Lattnerremove a (now) unused getNode method.
2006-08-10 Chris LattnerDoxygenify some methods.
2006-08-08 Chris LattnerStart eliminating temporary vectors used to create...
2006-08-08 Chris Lattnercapacity is a pointer, not a value
2006-08-08 Chris Lattneradd a new assign method
2006-08-08 Chris LattnerEliminate some malloc traffic by allocating vectors...
2006-08-08 Chris LattnerAdd ctor that initializes from a range.
2006-08-07 Chris LattnerRemove assertions from the SmallVector class. They...
2006-08-07 Chris LattnerNew CSEMap datastructure impl
2006-08-07 Reid SpencerRemove the use of "IncludeFile" from this support facil...
2006-08-07 Chris LattnerRevamp the "CSEMap" datastructure used in the Selection...
2006-08-07 Evan ChengMove DAGSize to SelectionDAGISel; it's used in tablegen...
2006-08-07 Chris LattnerAdd a clear method to SmallVector
2006-08-06 Chris LattnerSilence a warning on x86-64, reported by chandlerc.
2006-08-05 Evan ChengThis causes some random crashes.
2006-08-04 Reid SpencerUpdate the auto* tools: autoconf 2.60, libtool 1.5...
2006-08-04 Chris LattnerMake SelectionDAG::RemoveDeadNodes iterative instead...
2006-08-03 Chris Lattnerupdate comment
2006-08-03 Chris Lattnerremove some more dead sparcv9 support stuff
2006-08-03 Devang PatelFix typo.
2006-08-03 Devang PatelAdd new tool, lto, to do link time optimization. This...
2006-08-02 Evan ChengAssignTopologicalOrder now returns the vector of SDNode...
2006-08-02 Jim LaskeyFinal polish on machine pass registries.
2006-08-02 Jim LaskeyBreaking out specialized classes.
2006-08-01 Chris LattnerAdd dominates/properlyDominates queries to IDom.
2006-08-01 Jim LaskeyNow that the ISel is available, it's possible to create...
2006-08-01 Jim Laskey1. Change use of "Cache" to "Default".
2006-08-01 Chris LattnerRemove some now-dead methods. Use getFileStatus instead.
2006-08-01 Jim LaskeyForgot the added files for plugable machine passes.
2006-08-01 Jim LaskeyIntroducing plugable register allocators and instructio...
2006-08-01 Evan ChengAdded AssignTopologicalOrder() to assign each node...
2006-07-28 Chris LattnerModify setStatusInfoOnDisk to not throw an exception.
2006-07-28 Chris LattnerModify Path::eraseFromDisk to not throw an exception.
2006-07-28 Chris LattnerUpdate comments.
2006-07-28 Chris LattnerChange Path::getStatusInfo to return a boolean and...
2006-07-28 Chris LattnerThe smallvector dtor should destroy the elements.
2006-07-28 Evan ChengRename IsFoldableBy to CanBeFoldedleBy
2006-07-28 Evan ChengRemove InFlightSet hack. No longer needed.
2006-07-27 Jim LaskeyWorking toward registration of register allocators.
2006-07-27 Evan ChengResolve BB references with relocation.
2006-07-27 Evan ChengAdd basic block machine relocation.
2006-07-27 Evan ChengAssignNodeIds should return unsigned.
2006-07-27 Evan ChengRemove NodeDepth; Add NodeId which is a unique id per...
2006-07-27 Evan ChengLet each target specific isel provide routine to check...
2006-07-27 Evan ChengMove synchronizeICache from TargetJITInfo into a static...
2006-07-27 Chris LattnerUse std::copy instead of custom loops to take advantage...
2006-07-27 Nate BegemanSupport jump tables when in PIC relocation model
2006-07-26 Chris LattnerRename RelocModel::PIC to PIC_, to avoid conflicts...
2006-07-26 Reid SpencerFor PR780:
2006-07-26 Reid SpencerFor PR780:
2006-07-26 Chris LattnerAdd a new llvm::SmallVector template, which is similar...
2006-07-25 Jim LaskeyMoving this function to a permanent home to prevent...
2006-07-25 Evan Cheng- Refactor the code that resolve basic block references...
2006-07-21 Jim LaskeyUse an enumeration to eliminate data relocations.
2006-07-20 Devang PatelAdd new constructor to accept vector of exported names...
2006-07-19 Evan ChengMake sub- and super- register classes const.
2006-07-19 Chris LattnerMove MVT::getVectorType out of line, it is large and...
2006-07-19 Chris LattnerAdd an out-of-line virtual method for the sdnode class...
2006-07-18 Chris LattnerAdd an out-of-line virtual method to provide a home...
2006-07-18 Chris LattnerAdd functions to compute ceil(log2(N)) to match functio...
2006-07-14 Chris LattnerAdd an out-of-line virtual function to home class.
2006-07-14 Chris LattnerAdd two helper functions
2006-07-14 Chris LattnerAdd another helper method.
2006-07-14 Chris LattnerAdd a new method for bugpoint to use.
2006-07-12 Chris LattnerChange the callgraph representation to store the callsi...
2006-07-11 Jim Laskey1. Support for c++ mangled names.
2006-07-07 Reid SpencerFinish removal of EH usage from the Archive library...
next