- May 15, 2008
-
-
Gabor Greif authored
Fix a bunch of 80col violations that arose from the Create API change. Tweak makefile targets to find these better. llvm-svn: 51143
-
- May 14, 2008
-
-
Gabor Greif authored
Do not rely on std::swap<Use>, provide a (faster) member function instead. This change is primarily necessitated by MSVC++'s incompatibility with declaring std::swap<Use> to be a friend of Use. Also contains some minor tweaks to Use inline functions, to undo pointless changes that sneaked in with the last merge. llvm-svn: 51078
-
- May 13, 2008
-
-
Gabor Greif authored
llvm-svn: 51023
-
- May 12, 2008
-
-
Nate Begeman authored
llvm-svn: 50994
-
Nate Begeman authored
Hard code CmpInst back to i1 for now while I go track down what in the bitcode reader/writer is assuming i1 This was breaking a bunch of tests llvm-svn: 50992
-
Nate Begeman authored
for details. CodeGen support coming in a follow up patch llvm-svn: 50985
-
Dan Gohman authored
llvm-svn: 50974
-
- May 10, 2008
-
-
Gabor Greif authored
llvm-svn: 50943
-
- Apr 23, 2008
-
-
Chris Lattner authored
llvm-svn: 50137
-
- Apr 06, 2008
-
-
Gabor Greif authored
Specifically, introduction of XXX::Create methods for Users that have a potentially variable number of Uses. llvm-svn: 49277
-
- Mar 24, 2008
-
-
Dan Gohman authored
field to store the alignment value instead of haing a separate field. llvm-svn: 48727
-
- Mar 13, 2008
-
-
Chris Lattner authored
llvm-svn: 48326
-
- Mar 12, 2008
-
-
Chris Lattner authored
1. There is now a "PAListPtr" class, which is a smart pointer around the underlying uniqued parameter attribute list object, and manages its refcount. It is now impossible to mess up the refcount. 2. PAListPtr is now the main interface to the underlying object, and the underlying object is now completely opaque. 3. Implementation details like SmallVector and FoldingSet are now no longer part of the interface. 4. You can create a PAListPtr with an arbitrary sequence of ParamAttrsWithIndex's, no need to make a SmallVector of a specific size (you can just use an array or scalar or vector if you wish). 5. All the client code that had to check for a null pointer before dereferencing the pointer is simplified to just access the PAListPtr directly. 6. The interfaces for adding attrs to a list and removing them is a bit simpler. Phase #2 will rename some stuff (e.g. PAListPtr) and do other less invasive changes. llvm-svn: 48289
-
- Mar 03, 2008
-
-
Devang Patel authored
llvm-svn: 47857
-
- Mar 02, 2008
-
-
Chris Lattner authored
llvm-svn: 47813
-
- Feb 27, 2008
-
-
Devang Patel authored
llvm-svn: 47653
-
- Feb 26, 2008
-
-
Devang Patel authored
llvm-svn: 47633
-
Devang Patel authored
llvm-svn: 47619
-
Devang Patel authored
llvm-svn: 47616
-
Devang Patel authored
Remove unnecessary getOperand/setOperand overriders. Simplify getReturnValue() llvm-svn: 47614
-
Devang Patel authored
Unify to ReturnInst::init() member functions. llvm-svn: 47611
-
Devang Patel authored
llvm-svn: 47607
-
Devang Patel authored
llvm-svn: 47577
-
- Feb 23, 2008
-
-
Devang Patel authored
To support multiple return values, now ret instruction supports multiple operands instead of one aggregate operand. llvm-svn: 47508
-
- Feb 22, 2008
-
-
Dale Johannesen authored
stuff into ParamAttrsList.h. Per feedback from ParamAttrs changes. llvm-svn: 47504
-
Dale Johannesen authored
the way through. It is now used for codegen. llvm-svn: 47484
-
- Feb 20, 2008
-
-
Devang Patel authored
llvm-svn: 47396
-
Devang Patel authored
llvm-svn: 47392
-
Devang Patel authored
llvm-svn: 47390
-
Anton Korobeynikov authored
llvm-svn: 47367
-
- Feb 19, 2008
-
-
Devang Patel authored
llvm-svn: 47348
-
Dale Johannesen authored
for adding alignment info, not there yet). Clean up interfaces to reference ParameterAttributes consistently. llvm-svn: 47342
-
- Feb 18, 2008
-
-
Duncan Sands authored
requested by Chris. While there, do the same for an existing function committed by someone called "lattner" :) llvm-svn: 47273
-
- Jan 28, 2008
-
-
Nick Lewycky authored
llvm-svn: 46431
-
- Jan 21, 2008
-
-
Duncan Sands authored
check the callee also if it is known. llvm-svn: 46206
-
- Jan 14, 2008
-
-
Duncan Sands authored
llvm-svn: 45974
-
Evan Cheng authored
llvm-svn: 45950
-
- Jan 12, 2008
-
-
Evan Cheng authored
llvm-svn: 45913
-
- Jan 06, 2008
-
-
Duncan Sands authored
a direct call with cast parameters and cast return value (if any), instcombine was prepared to cast any non-void return value into any other, whether castable or not. Add a new predicate for testing whether casting is valid, and check it both for the return value and (as a cleanup) for the parameters. llvm-svn: 45657
-
- Jan 03, 2008
-
-
Chris Lattner authored
own file. Don't #include ParameterAttributes.h into any major public header files: just move methods out of line as appropriate. llvm-svn: 45517
-