- Jan 06, 2009
-
-
Dan Gohman authored
llvm-svn: 61767
-
- Jan 05, 2009
-
-
Dan Gohman authored
llvm-svn: 61732
-
Bob Wilson authored
llvm-svn: 61713
-
Dan Gohman authored
llvm-svn: 61710
-
Misha Brukman authored
conventions, per John Criswell. llvm-svn: 61708
-
Dan Gohman authored
- After GlobalAssign, emit addrspace before global/constant, to follow the new syntax. - Eliminate "type void", which is now invalid. - Fix invalid liblists like [, "foo"]. - Tweak whitespace in a few places. llvm-svn: 61706
-
Bob Wilson authored
llvm-svn: 61702
-
Dan Gohman authored
llvm-svn: 61670
-
Dan Gohman authored
llvm-svn: 61669
-
Dan Gohman authored
llvm-svn: 61647
-
Dan Gohman authored
- Add several new keywords - Clean up some obsolete keywords - Improve the patterns for constants. - Add syntax-highlighting for dejagnu test command comments llvm-svn: 61646
-
- Jan 04, 2009
-
-
Dan Gohman authored
llvm-svn: 61628
-
Dan Gohman authored
llvm-svn: 61618
-
Dan Gohman authored
smarter about C-ish syntax, and supports the cinoptions variable. Set cinoptions to suppress the extra indentation for switch case labels. llvm-svn: 61617
-
- Jan 02, 2009
-
-
Misha Brukman authored
llvm-svn: 61593
-
Misha Brukman authored
types of files (TableGen, LLVM assembly, HTML files, etc.) llvm-svn: 61592
-
Misha Brukman authored
llvm-svn: 61583
-
Misha Brukman authored
* Fixed cursors in terminal by setting nocompatible (sorry, vi users) * Enable syntax highlighting so that this file can stand on its own * Highlight trailing whitespace * Fixed commands to delete trailing whitespaces and convert tabs to spaces llvm.vim and tablegen.vim * Removed trailing whitespace, as it's now very visible llvm-svn: 61582
-
Misha Brukman authored
llvm-svn: 61581
-
- Jan 01, 2009
-
-
Misha Brukman authored
* Added the first LLVM unittest -- DenseMap. * Updated mkpatch utility to include llvm/unittests dir * Added top-level target "unittests" to run all unittests llvm-svn: 61541
-
Misha Brukman authored
* Removed gtest_main.cc: we have our own main() elsewhere * Simplified the Makefile as we don't need SOURCES * Moved the internal header to gtest/internal/ * Simplified the Makefile to remove -I param to CPP.Flags * Updated README.LLVM with all the steps I took to massage GTest to work in LLVM so far llvm-svn: 61540
-
Misha Brukman authored
Makefile with it, without resorting to the use of VPATH. Also added Makefiles at every level of the directory tree to properly recurse to Google Test and build it as a library (original Makefiles by Talin). llvm-svn: 61539
-
- Dec 31, 2008
-
-
Misha Brukman authored
Added a README.LLVM file to indicate which files and directories were removed from the original source tarball. llvm-svn: 61526
-
- Dec 19, 2008
-
-
Dan Gohman authored
reduces the amount of code slightly when assertions are enabled. llvm-svn: 61249
-
- Dec 18, 2008
-
-
Mon P Wang authored
llvm-svn: 61209
-
Mikhail Glushenkov authored
llvm-svn: 61191
-
- Dec 17, 2008
-
-
Mikhail Glushenkov authored
Add (error) and (empty). llvm-svn: 61117
-
- Dec 16, 2008
-
-
Bill Wendling authored
llvm-svn: 61061
-
- Dec 11, 2008
-
-
Mikhail Glushenkov authored
Prevents conflicts between plugins. llvm-svn: 60871
-
- Dec 07, 2008
-
-
Mikhail Glushenkov authored
Makes (forward) work better. llvm-svn: 60667
-
Mikhail Glushenkov authored
llvm-svn: 60664
-
Mikhail Glushenkov authored
Use B instead of Beg (for consistency), but NodeA and NodeB instead of A and B. llvm-svn: 60663
-
Mikhail Glushenkov authored
This would be much easier to do if the CommandLine library didn't use global state. Global state is evil. llvm-svn: 60659
-
Mikhail Glushenkov authored
llvm-svn: 60658
-
Mikhail Glushenkov authored
Also includes a major refactoring. See documentation for more information. llvm-svn: 60656
-
- Dec 05, 2008
-
-
Cedric Venet authored
for(Type1 B = ...;;) { Type2 B ; ... } is bad: code is hard to read and VS VS don't like it (it ignore the second declaration of B). This patch fix the problem in tablegen. Please don't write code like this. llvm-svn: 60590
-
- Dec 03, 2008
-
-
Dan Gohman authored
llvm-svn: 60487
-
Dan Gohman authored
foldMemoryOperand how to "fold" them, by converting them into constant-pool loads. When they aren't folded, they use xorps/cmpeqd, but for example when register pressure is high, they may now be folded as memory operands, which reduces register pressure. Also, mark V_SET0 isAsCheapAsAMove so that two-address-elimination will remat it instead of copying zeros around (V_SETALLONES was already marked). llvm-svn: 60461
-
Dan Gohman authored
is set but mayLoad is not set. Fix all the problems this turned up. Change code to not use isSimpleLoad instead of mayLoad unless it really wants isSimpleLoad. llvm-svn: 60459
-
- Nov 28, 2008
-
-
Mikhail Glushenkov authored
Support multiple compilation graph definitions. Not terribly useful, but makes the code more generic. llvm-svn: 60199
-