- Jul 30, 2007
-
-
Dan Gohman authored
llvm-svn: 40589
-
- Jul 27, 2007
-
-
Chuck Rose III authored
This commit fixes two things. One is a pair of VStudio compiler errors stemming from variables which defined within the for loop statement and also within the body of the for loop. I fixed these by renaming one of the two variables. Additionally, I've made the Function*->ExFunc map in ExternalFunctions.cpp a ManagedStatic object, so that cleanup will be done on llvm_shutdown. In repeated uses of the interpreter, where the same Function* address may get used for completely differnet functions, this was causing a crash. llvm-svn: 40558
-
- Jul 26, 2007
-
-
Dan Gohman authored
llvm-svn: 40527
-
Christopher Lamb authored
llvm-svn: 40519
-
Christopher Lamb authored
llvm-svn: 40518
-
Christopher Lamb authored
llvm-svn: 40513
-
- Jul 25, 2007
-
-
Dan Gohman authored
llvm-svn: 40479
-
- Jul 20, 2007
-
-
Chandler Carruth authored
but I think it got lost in the conversion mess. llvm-svn: 40107
-
Evan Cheng authored
llvm-svn: 40075
-
- Jul 19, 2007
-
-
Evan Cheng authored
InOperandList. This gives one piece of important information: # of results produced by an instruction. An example of the change: def ADD32rr : I<0x01, MRMDestReg, (ops GR32:$dst, GR32:$src1, GR32:$src2), "add{l} {$src2, $dst|$dst, $src2}", [(set GR32:$dst, (add GR32:$src1, GR32:$src2))]>; => def ADD32rr : I<0x01, MRMDestReg, (outs GR32:$dst), (ins GR32:$src1, GR32:$src2), "add{l} {$src2, $dst|$dst, $src2}", [(set GR32:$dst, (add GR32:$src1, GR32:$src2))]>; llvm-svn: 40033
-
- Jul 18, 2007
-
-
Chris Lattner authored
llvm-svn: 39993
-
- Jul 13, 2007
-
-
Dan Gohman authored
llvm-svn: 39828
-
- Jul 10, 2007
-
-
Evan Cheng authored
llvm-svn: 38498
-
- Jul 09, 2007
-
-
Reid Spencer authored
tools such as svn info and svn status. llvm-svn: 38446
-
Reid Spencer authored
llvm-svn: 38440
-
- Jul 07, 2007
-
-
Evan Cheng authored
llvm-svn: 37963
-
- Jul 06, 2007
-
-
Rafael Espindola authored
llvm-svn: 37940
-
Evan Cheng authored
llvm-svn: 37933
-
- Jul 05, 2007
-
-
Evan Cheng authored
llvm-svn: 37900
-
Evan Cheng authored
Instructions with ImmutablePredicateOperand aren't really predicable since their predicates are fixed at isel time. llvm-svn: 37899
-
- Jul 04, 2007
-
-
Reid Spencer authored
llvm-svn: 37867
-
- Jul 03, 2007
-
-
Anton Korobeynikov authored
llvm-svn: 37859
-
- Jul 02, 2007
-
-
Reid Spencer authored
Implement -usecvs just in case we need to go back to cvs for some reason. llvm-svn: 37837
-
Reid Spencer authored
the -verbose option! Doh! llvm-svn: 37836
-
- Jun 29, 2007
-
-
John Criswell authored
llvm-svn: 37812
-
John Criswell authored
llvm-svn: 37801
-
Reid Spencer authored
llvm-svn: 37797
-
- Jun 27, 2007
-
-
Evan Cheng authored
llvm-svn: 37760
-
- Jun 26, 2007
-
-
Evan Cheng authored
llvm-svn: 37738
-
Reid Spencer authored
1. Fix comments for -usesvn and -svnurl options. 2. Fix default URL for SVN access. 3. Fix paths to accommodate "trunk" when checking out from SVN. llvm-svn: 37736
-
Dan Gohman authored
instruction flag, and use the flag along with a virtual member function hook for targets to override if there are instructions that are only trivially rematerializable with specific operands (i.e. constant pool loads). llvm-svn: 37728
-
Dan Gohman authored
llvm-svn: 37727
-
- Jun 19, 2007
-
-
Chris Lattner authored
llvm-svn: 37654
-
Dan Gohman authored
with a general target hook to identify rematerializable instructions. Some instructions are only rematerializable with specific operands, such as loads from constant pools, while others are always rematerializable. This hook allows both to be identified as being rematerializable with the same mechanism. llvm-svn: 37644
-
Evan Cheng authored
llvm-svn: 37643
-
- Jun 14, 2007
-
-
Christopher Lamb authored
llvm-svn: 37572
-
- Jun 06, 2007
-
-
Evan Cheng authored
Add clobbersPred - instruction that clobbers condition code / register which are used to predicate instructions. llvm-svn: 37465
-
- Jun 05, 2007
-
-
Bill Wendling authored
Thanks Chuck! llvm-svn: 37428
-
- Jun 04, 2007
-
-
Dan Gohman authored
being changed from an enum to an integer type, which can't have a custom operator<< overload. llvm-svn: 37412
-
- May 22, 2007
-
-
Reid Spencer authored
types of the iAny types involved in the overloaded intrinsic. Thus, we can't use the argument number as the index but have to count them separately in order to index Tys correctly. This patch rectifies this situation. llvm-svn: 37296
-