- 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
-
-
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 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
-
- Jun 29, 2007
-
-
John Criswell authored
llvm-svn: 37801
-
- Jun 27, 2007
-
-
Evan Cheng authored
llvm-svn: 37760
-
- Jun 26, 2007
-
-
Evan Cheng authored
llvm-svn: 37738
-
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
-
- May 16, 2007
-
-
Evan Cheng authored
Rename M_PREDICATED to M_PREDICABLE; opcode can be specified isPredicable without having a PredicateOperand. llvm-svn: 37116
-
- May 15, 2007
-
-
Chris Lattner authored
patches are also needed. llvm-svn: 37070
-
Evan Cheng authored
llvm-svn: 37063
-
Evan Cheng authored
llvm-svn: 37061
-
Evan Cheng authored
llvm-svn: 37060
-
- May 08, 2007
-
-
Evan Cheng authored
llvm-svn: 36946
-
- May 04, 2007
-
-
Bill Wendling authored
feature is set, then the features in the implied list should be set also. The opposite is also enforced: if a feature in the implied list isn't set, then the feature that owns that implies list shouldn't be set either. llvm-svn: 36756
-
- May 01, 2007
-
-
Nate Begeman authored
llvm-svn: 36619
-
Nate Begeman authored
llvm-svn: 36618
-
- Apr 26, 2007
-
-
Dan Gohman authored
llvm-svn: 36486
-