- Mar 31, 2008
-
-
Dan Gohman authored
llvm-svn: 48994
-
Gordon Henriksen authored
Add a unified 'generated documentation' target so the web site script has a consistent target to use. llvm-svn: 48985
-
Torok Edwin authored
llvm-svn: 48984
-
Gordon Henriksen authored
llvm-svn: 48983
-
Erick Tryzelaar authored
llvm-svn: 48982
-
Erick Tryzelaar authored
instead of OCamlLangImpl8.html. llvm-svn: 48979
-
Erick Tryzelaar authored
and fix some tabs in chapter 3 and 4. llvm-svn: 48978
-
Evan Cheng authored
llvm-svn: 48977
-
Evan Cheng authored
The support for remat of instructions with a register operand is hackish, to say the least. Since the register operand guaranteed to be PIC base and that it is already live at all uses, we are making sure it will not be spilled after its uses are rematerialized for both performance and correctness reasons. llvm-svn: 48976
-
Erick Tryzelaar authored
realazthat in #llvm was having problems building llvm because configure was finding an ocaml executable in a directory with a space in it's name. This patch puts quotes around the name so that llvm can build for him. llvm-svn: 48974
-
Owen Anderson authored
llvm-svn: 48973
-
Nate Begeman authored
llvm-svn: 48971
-
- Mar 30, 2008
-
-
Erick Tryzelaar authored
llvm-svn: 48968
-
Duncan Sands authored
llvm-svn: 48967
-
Erick Tryzelaar authored
llvm-svn: 48966
-
Nick Lewycky authored
llvm-svn: 48965
-
Chris Lattner authored
llvm-svn: 48964
-
Chris Lattner authored
patch by David Chisnall. llvm-svn: 48963
-
Chris Lattner authored
llvm-svn: 48961
-
Chris Lattner authored
llvm-svn: 48954
-
Erick Tryzelaar authored
llvm-svn: 48949
-
- Mar 29, 2008
-
-
Evan Cheng authored
llvm-svn: 48947
-
Anton Korobeynikov authored
llvm-svn: 48942
-
Anton Korobeynikov authored
llvm-svn: 48941
-
Chris Lattner authored
when something changes, instead of moving forward. This allows us to simplify memset lowering, inserting the memset at the end of the range of stuff we're touching instead of at the start. This, in turn, allows us to make use of the addressing instructions already used in the function instead of inserting our own. For example, we now codegen: %tmp41 = getelementptr [8 x i8]* %ref_idx, i32 0, i32 0 ; <i8*> [#uses=2] call void @llvm.memset.i64( i8* %tmp41, i8 -1, i64 8, i32 1 ) instead of: %tmp20 = getelementptr [8 x i8]* %ref_idx, i32 0, i32 7 ; <i8*> [#uses=1] %ptroffset = getelementptr i8* %tmp20, i64 -7 ; <i8*> [#uses=1] call void @llvm.memset.i64( i8* %ptroffset, i8 -1, i64 8, i32 1 ) llvm-svn: 48940
-
Chris Lattner authored
into a memset!) faster by avoiding an allocation of an std::list node. llvm-svn: 48939
-
Chris Lattner authored
llvm-svn: 48938
-
Chris Lattner authored
llvm-svn: 48937
-
Owen Anderson authored
Remove some unneeded code for LiveInterval joining, and fix a bug in the Phi elimination algorithm where we were accidentally reasoning about the source rather than the destination. llvm-svn: 48936
-
Evan Cheng authored
llvm-svn: 48935
-
Dan Gohman authored
load value. This fixes PR2177. llvm-svn: 48932
-
- Mar 28, 2008
-
-
Evan Cheng authored
llvm-svn: 48922
-
Chris Lattner authored
llvm-svn: 48916
-
Duncan Sands authored
llvm-svn: 48914
-
Evan Cheng authored
llvm-svn: 48912
-
Evan Cheng authored
llvm-svn: 48911
-
Nick Lewycky authored
llvm-svn: 48910
-
Chris Lattner authored
memsets that initialize "structs of arrays" and other store sequences that are not sequential. This is still only enabled if you pass -form-memset-from-stores. The flag is not heavily tested and I haven't analyzed the perf regressions when -form-memset-from-stores is passed either, but this causes no make check regressions. llvm-svn: 48909
-
Evan Cheng authored
llvm-svn: 48908
-
Bill Wendling authored
llvm-svn: 48907
-