- Jan 12, 2009
-
-
Chris Lattner authored
llvm.memcpy/memset/memmove. This allows removal of some hackish code from basicaa. llvm-svn: 62071
-
Chris Lattner authored
change. llvm-svn: 62067
-
Chris Lattner authored
not a random piece of it. No functionality change. llvm-svn: 62066
-
Chris Lattner authored
parse them. tblgen doesn't yet do anything with this info though. llvm-svn: 62065
-
- Jan 07, 2009
-
-
Bob Wilson authored
to handle LLVMMatchType intrinsic parameters, and by adding new subclasses of LLVMMatchType to match vector types with integral elements that are either twice as wide or half as wide as the elements of the matched type. llvm-svn: 61834
-
- Jan 05, 2009
-
-
Dan Gohman authored
llvm-svn: 61732
-
Bob Wilson authored
llvm-svn: 61713
-
Bob Wilson authored
llvm-svn: 61702
-
- 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 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
-
Mikhail Glushenkov authored
llvm-svn: 60198
-
- Nov 27, 2008
-
-
Evan Cheng authored
On x86 favors folding short immediate into some arithmetic operations (e.g. add, and, xor, etc.) because materializing an immediate in a register is expensive in turns of code size. e.g. movl 4(%esp), %eax addl $4, %eax is 2 bytes shorter than movl $4, %eax addl 4(%esp), %eax llvm-svn: 60139
-
- Nov 26, 2008
-
-
Mikhail Glushenkov authored
llvm-svn: 60099
-
- Nov 17, 2008
-
-
Mikhail Glushenkov authored
llvm-svn: 59449
-
Mikhail Glushenkov authored
llvm-svn: 59448
-
Mikhail Glushenkov authored
Use strings instead of TableGen defs in the compilation graph definition. Makes it easier for the plugins to modify an existing graph. llvm-svn: 59447
-
- Nov 13, 2008
-
-
Bill Wendling authored
llvm-svn: 59242
-
Bill Wendling authored
llvm-svn: 59241
-
Bill Wendling authored
"parameter" types. An intrinsic can now return a multiple return values like this: def add_with_overflow : Intrinsic<[llvm_i32_ty, llvm_i1_ty], [LLVMMatchType<0>, LLVMMatchType<0>]>; llvm-svn: 59237
-
- Nov 12, 2008
-
-
Mikhail Glushenkov authored
When constructing std::strings from C strings, we should check the input value to be not NULL so that the std::string constructor does not segfault. Fixes #3047. llvm-svn: 59131
-
Mikhail Glushenkov authored
Only the tools that are mentioned in the compilation graph definition are now inserted by PopulateCompilationGraph(). This should cut down plugin loading time a little. llvm-svn: 59097
-
Mikhail Glushenkov authored
llvm-svn: 59096
-
- Nov 08, 2008
-
-
Mikhail Glushenkov authored
llvm-svn: 58922
-
Anton Korobeynikov authored
Patch by Patrick Walton! llvm-svn: 58901
-
- Nov 07, 2008
-
-
Dan Gohman authored
exception, like it does for a std::string exception. llvm-svn: 58865
-
- Nov 05, 2008
-
-
Dan Gohman authored
nodes that are already selected. llvm-svn: 58763
-