- Jan 05, 2010
-
-
David Greene authored
Change errs() to dbgs(). llvm-svn: 92545
-
David Greene authored
Change errs() to dbgs(). llvm-svn: 92544
-
David Greene authored
Change errs() to dbgs(). llvm-svn: 92542
-
David Greene authored
Change errs() to dbgs(). llvm-svn: 92539
-
David Greene authored
Change errs() to dbgs(). llvm-svn: 92535
-
Devang Patel authored
llvm-svn: 92533
-
David Greene authored
Change errs() to dbgs(). llvm-svn: 92532
-
- Jan 04, 2010
-
-
David Greene authored
Change errs() to dbgs(). llvm-svn: 92529
-
David Greene authored
Change errs() to dbgs(). llvm-svn: 92528
-
David Greene authored
Change errs() to dbgs(). llvm-svn: 92524
-
David Greene authored
Change errs() to dbgs(). llvm-svn: 92520
-
David Greene authored
Change errs() to dbgs(). llvm-svn: 92518
-
David Greene authored
Change errs() to dbgs(). llvm-svn: 92516
-
David Greene authored
Change errs() to dbgs(). llvm-svn: 92515
-
Dan Gohman authored
in an inline asm. llvm-svn: 92512
-
Devang Patel authored
llvm-svn: 92505
-
David Greene authored
Change errs() to dbgs(). llvm-svn: 92502
-
David Greene authored
Change errs() to dbgs(). llvm-svn: 92498
-
David Greene authored
Change errs() to dbgs(). llvm-svn: 92496
-
David Greene authored
Change errs() to dbgs(). llvm-svn: 92490
-
- Jan 03, 2010
-
-
Chris Lattner authored
two labels as a truncate. llvm-svn: 92455
-
- Jan 02, 2010
-
-
Chris Lattner authored
(X != null) | (Y != null) --> (X|Y) != 0 (X == null) & (Y == null) --> (X|Y) == 0 so that instcombine can stop doing this for pointers. This is part of PR3351, which is a case where instcombine doing this for pointers (inserting ptrtoint) is pessimizing code. llvm-svn: 92406
-
Chris Lattner authored
llvm-svn: 92404
-
- Jan 01, 2010
-
-
Mikhail Glushenkov authored
SelectionDAGBuilder.cpp:4294: warning: suggest explicit braces to avoid ambiguous ‘else’ llvm-svn: 92395
-
Mikhail Glushenkov authored
llvm-svn: 92394
-
Chris Lattner authored
multiply sequence when the power is a constant integer. Before, our codegen for std::pow(.., int) always turned into a libcall, which was really inefficient. This should also make many gfortran programs happier I'd imagine. llvm-svn: 92388
-
- Dec 29, 2009
-
-
Chris Lattner authored
llvm-svn: 92263
-
Chris Lattner authored
getMDKindID/getMDKindNames methods to LLVMContext (and add convenience methods to Module), eliminating MetadataContext. Move the state that it maintains out to LLVMContext. llvm-svn: 92259
-
Chris Lattner authored
I asked Devang to do back on Sep 27. Instead of going through the MetadataContext class with methods like getMD() and getMDs(), just ask the instruction directly for its metadata with getMetadata() and getAllMetadata(). This includes a variety of other fixes and improvements: previously all Value*'s were bloated because the HasMetadata bit was thrown into value, adding a 9th bit to a byte. Now this is properly sunk down to the Instruction class (the only place where it makes sense) and it will be folded away somewhere soon. This also fixes some confusion in getMDs and its clients about whether the returned list is indexed by the MDID or densely packed. This is now returned sorted and densely packed and the comments make this clear. This introduces a number of fixme's which I'll follow up on. llvm-svn: 92235
-
- Dec 28, 2009
-
-
Chris Lattner authored
doesn't exist already, eliminate registerMDKind. Tidy up a bunch of random stuff. llvm-svn: 92225
-
Chris Lattner authored
llvm-svn: 92214
-
Chris Lattner authored
llvm-svn: 92206
-
Sanjiv Gupta authored
Allow targets to specify the return type of libcalls that are generated for floating point comparisons, rather than hard-coding them as i32. llvm-svn: 92199
-
Bill Wendling authored
llvm-svn: 92190
-
Bill Wendling authored
llvm-svn: 92189
-
Bill Wendling authored
llvm-svn: 92188
-
Bill Wendling authored
llvm-svn: 92187
-
Bill Wendling authored
llvm-svn: 92180
-
Bill Wendling authored
llvm-svn: 92179
-
Bill Wendling authored
llvm-svn: 92178
-