aboutsummaryrefslogtreecommitdiffstats
path: root/tools
Commit message (Expand)AuthorAgeFilesLines
* Do not run instruction combiner in middle of loop optimization passes.Devang Patel2008-05-141-1/+0
* Filter option names to escape symbols not allowed as C++ identifiers.Mikhail Glushenkov2008-05-121-3/+3
* Make it possible to choose between different compilation graph definitions at...Mikhail Glushenkov2008-05-121-1/+2
* Fix some error messages; Make LLVMC pass through the exit code of a failed tool.Mikhail Glushenkov2008-05-123-9/+47
* Re-enable loop deletion by default.Owen Anderson2008-05-101-0/+1
* Rename Example.td to Graph.td.Mikhail Glushenkov2008-05-092-1/+1
* use doxygen comments for makeBuffer()Nick Kledzik2008-05-091-4/+4
* Reapply 50867: A small refactoring (extract method) + some comment fixes.Mikhail Glushenkov2008-05-091-1/+2
* <rdar://problem/5917641> use getMemBufferCopy if supplied buffer is not alrea...Nick Kledzik2008-05-092-4/+20
* Revertin 50867 since it was breaking the build.Tanya Lattner2008-05-081-2/+1
* Add -E and -S optionsMikhail Glushenkov2008-05-081-0/+5
* A small refactoring (extract method) + some comment fixes.Mikhail Glushenkov2008-05-081-1/+2
* Use Doxygen-style comments.Mikhail Glushenkov2008-05-076-47/+61
* Disable loop deletion until the release branch.Owen Anderson2008-05-061-1/+0
* Change from llvm::SmallSet<std::string> to llvm::StringMap<char>.Mikhail Glushenkov2008-05-062-4/+17
* Add new edge property combinator: weight.Mikhail Glushenkov2008-05-062-5/+15
* Add a help string for the -c optionMikhail Glushenkov2008-05-061-1/+2
* Update documentation to reflect the current state of affairs.Mikhail Glushenkov2008-05-061-61/+157
* Some cosmetic changes (change some comments, move code around a bit).Mikhail Glushenkov2008-05-062-43/+44
* Refactoring: split the function CompilationGraph::Build() into two parts.Mikhail Glushenkov2008-05-062-10/+22
* Use edge weights to choose the right linker based on input language names.Mikhail Glushenkov2008-05-064-15/+43
* Add weights to graph edges. Choose between edges based on their weight.Mikhail Glushenkov2008-05-062-23/+23
* Remove the UnpackValues() function.Mikhail Glushenkov2008-05-063-27/+1
* Add a --linker command-line option, make all tests pass.Mikhail Glushenkov2008-05-062-14/+20
* Naming fix: LLVMCCConfigurationEmitter -> LLVMCConfigurationEmitter.Mikhail Glushenkov2008-05-061-1/+1
* Add -x option (like in gcc).Mikhail Glushenkov2008-05-065-22/+93
* Take object file as input and handle files with the same name correctly.Mikhail Glushenkov2008-05-065-47/+59
* Add output redirection, rename namespace llvmcc to namespace llvmc.Mikhail Glushenkov2008-05-069-27/+47
* Make AutoGenerated.inc depend also on Tools.td and Common.tdMikhail Glushenkov2008-05-061-2/+2
* Utilize topological sort in CompilationGraph::Build().Mikhail Glushenkov2008-05-063-9/+44
* Add TopologicalSort method to CompilationGraph.Mikhail Glushenkov2008-05-064-38/+78
* Do not require positional arguments when we're only printing out the graph.Mikhail Glushenkov2008-05-061-3/+13
* Make ChooseEdge more generic and use it to choose between different toolchains.Mikhail Glushenkov2008-05-062-38/+56
* Remove unnecessary argument from PassThroughGraphMikhail Glushenkov2008-05-062-5/+8
* Add inward edge counters to Nodes; Associate JoinLists with JoinTools.Mikhail Glushenkov2008-05-063-38/+58
* Enhancements for --view-graphMikhail Glushenkov2008-05-061-7/+21
* Split the Build function into two parts.Mikhail Glushenkov2008-05-062-43/+65
* Make llvmc return 1 when the compilation fails.Mikhail Glushenkov2008-05-061-0/+1
* Return const char* instead of std::string in Tool classesMikhail Glushenkov2008-05-061-4/+4
* Add an ability to choose between different edges based on edge properties.Mikhail Glushenkov2008-05-064-14/+42
* Add new edge properties: parameter_equals, element_in_list, and.Mikhail Glushenkov2008-05-063-6/+9
* Implemented switch_on edge property.Mikhail Glushenkov2008-05-061-0/+1
* Cosmetic change: if( -> if (Mikhail Glushenkov2008-05-061-5/+5
* Remove ExampleWithOpt.td: this file was merged with Example.td.Mikhail Glushenkov2008-05-061-30/+0
* More work on edge properties. Use Edge classes instead of strings in Compilat...Mikhail Glushenkov2008-05-065-40/+37
* Ongoing work: add an edge typechecker, rudimentary support for edge properties.Mikhail Glushenkov2008-05-064-77/+133
* Convert internal representation to use DAG. This gives us more flexibility an...Mikhail Glushenkov2008-05-066-53/+366
* Small const-correctness fixMikhail Glushenkov2008-05-062-2/+2
* Code reorgMikhail Glushenkov2008-05-0612-155/+188
* Enable dead loop elimination.Owen Anderson2008-05-051-0/+1