Updated VS build system. Patch provided by Cedric Venet:
[oota-llvm.git] / tools / llvmc2 / CompilationGraph.cpp
2008-05-30 Mikhail GlushenkovFix the -opt switch and add a test case for it.
2008-05-30 Mikhail GlushenkovAdd a --save-temps option.
2008-05-30 Mikhail GlushenkovA small optimization: use static char* array instead...
2008-05-30 Mikhail GlushenkovNew tests for the 'case' expression: not_empty, in_lang...
2008-05-30 Mikhail GlushenkovMake it possible to have multiple input languages for...
2008-05-30 Mikhail GlushenkovMinor error message fixes.
2008-05-30 Mikhail GlushenkovMake it possible to use the generalised 'case' construc...
2008-05-12 Mikhail GlushenkovFix some error messages; Make LLVMC pass through the...
2008-05-07 Mikhail GlushenkovUse Doxygen-style comments.
2008-05-06 Mikhail GlushenkovChange from llvm::SmallSet<std::string> to llvm::String...
2008-05-06 Mikhail GlushenkovSome cosmetic changes (change some comments, move code...
2008-05-06 Mikhail GlushenkovRefactoring: split the function CompilationGraph::Build...
2008-05-06 Mikhail GlushenkovUse edge weights to choose the right linker based on...
2008-05-06 Mikhail GlushenkovAdd weights to graph edges. Choose between edges based...
2008-05-06 Mikhail GlushenkovAdd -x option (like in gcc).
2008-05-06 Mikhail GlushenkovTake object file as input and handle files with the...
2008-05-06 Mikhail GlushenkovAdd output redirection, rename namespace llvmcc to...
2008-05-06 Mikhail GlushenkovUtilize topological sort in CompilationGraph::Build().
2008-05-06 Mikhail GlushenkovAdd TopologicalSort method to CompilationGraph.
2008-05-06 Mikhail GlushenkovMake ChooseEdge more generic and use it to choose betwe...
2008-05-06 Mikhail GlushenkovRemove unnecessary argument from PassThroughGraph
2008-05-06 Mikhail GlushenkovAdd inward edge counters to Nodes; Associate JoinLists...
2008-05-06 Mikhail GlushenkovEnhancements for --view-graph
2008-05-06 Mikhail GlushenkovSplit the Build function into two parts.
2008-05-06 Mikhail GlushenkovAdd an ability to choose between different edges based...
2008-05-06 Mikhail GlushenkovCosmetic change: if( -> if (
2008-05-06 Mikhail GlushenkovMore work on edge properties. Use Edge classes instead...
2008-05-06 Mikhail GlushenkovOngoing work: add an edge typechecker, rudimentary...
2008-05-06 Mikhail GlushenkovConvert internal representation to use DAG. This gives...
2008-05-06 Mikhail GlushenkovCode reorg