aboutsummaryrefslogtreecommitdiff
path: root/tools/llvmc2/CompilationGraph.cpp
AgeCommit message (Expand)Author
2008-10-03Fix build breakage (again) when srcdir != objdir, other small fixes.Mikhail Glushenkov
2008-10-02Avoid name shadowing with E variable defined in for(). This was giving VC++Bill Wendling
2008-09-22Move llvmc2 header files under include/llvm/CompilerDriverMikhail Glushenkov
2008-09-22Get rid of GlobalLanguageMap. Global state is evil.Mikhail Glushenkov
2008-05-30Fix the -opt switch and add a test case for it.Mikhail Glushenkov
2008-05-30Add a --save-temps option.Mikhail Glushenkov
2008-05-30A small optimization: use static char* array instead of StrVector.Mikhail Glushenkov
2008-05-30New tests for the 'case' expression: not_empty, in_language.Mikhail Glushenkov
2008-05-30Make it possible to have multiple input languages for a single tool.Mikhail Glushenkov
2008-05-30Minor error message fixes.Mikhail Glushenkov
2008-05-30Make it possible to use the generalised 'case' construct in the cmd_line prop...Mikhail Glushenkov
2008-05-12Fix some error messages; Make LLVMC pass through the exit code of a failed tool.Mikhail Glushenkov
2008-05-07Use Doxygen-style comments.Mikhail Glushenkov
2008-05-06Change from llvm::SmallSet<std::string> to llvm::StringMap<char>.Mikhail Glushenkov
2008-05-06Some cosmetic changes (change some comments, move code around a bit).Mikhail Glushenkov
2008-05-06Refactoring: split the function CompilationGraph::Build() into two parts.Mikhail Glushenkov
2008-05-06Use edge weights to choose the right linker based on input language names.Mikhail Glushenkov
2008-05-06Add weights to graph edges. Choose between edges based on their weight.Mikhail Glushenkov
2008-05-06Add -x option (like in gcc).Mikhail Glushenkov
2008-05-06Take object file as input and handle files with the same name correctly.Mikhail Glushenkov
2008-05-06Add output redirection, rename namespace llvmcc to namespace llvmc.Mikhail Glushenkov
2008-05-06Utilize topological sort in CompilationGraph::Build().Mikhail Glushenkov
2008-05-06Add TopologicalSort method to CompilationGraph.Mikhail Glushenkov
2008-05-06Make ChooseEdge more generic and use it to choose between different toolchains.Mikhail Glushenkov
2008-05-06Remove unnecessary argument from PassThroughGraphMikhail Glushenkov
2008-05-06Add inward edge counters to Nodes; Associate JoinLists with JoinTools.Mikhail Glushenkov
2008-05-06Enhancements for --view-graphMikhail Glushenkov
2008-05-06Split the Build function into two parts.Mikhail Glushenkov
2008-05-06Add an ability to choose between different edges based on edge properties.Mikhail Glushenkov
2008-05-06Cosmetic change: if( -> if (Mikhail Glushenkov
2008-05-06More work on edge properties. Use Edge classes instead of strings in Compilat...Mikhail Glushenkov
2008-05-06Ongoing work: add an edge typechecker, rudimentary support for edge properties.Mikhail Glushenkov
2008-05-06Convert internal representation to use DAG. This gives us more flexibility an...Mikhail Glushenkov
2008-05-06Code reorgMikhail Glushenkov