- Jul 30, 2007
-
-
Dan Gohman authored
llvm-svn: 40589
-
- Mar 06, 2007
-
-
Reid Spencer authored
members of GenericValue. Consequently the code to clean them up isn't needed. llvm-svn: 34948
-
- Mar 03, 2007
-
-
Reid Spencer authored
llvm-svn: 34887
-
Reid Spencer authored
ensure they are cleaned up when the stack frame exits. 2. Move a function to the Execution.cpp file where it belongs. llvm-svn: 34876
-
- Feb 08, 2007
-
-
Reid Spencer authored
Compute BitMask correctly. Patch by Leo (wenwenti@hotmail.com). llvm-svn: 34026
-
- Feb 02, 2007
-
-
Reid Spencer authored
This feature is needed in order to support shifts of more than 255 bits on large integer types. This changes the syntax for llvm assembly to make shl, ashr and lshr instructions look like a binary operator: shl i32 %X, 1 instead of shl i32 %X, i8 1 Additionally, this should help a few passes perform additional optimizations. llvm-svn: 33776
-
- Jan 18, 2007
-
-
Reid Spencer authored
bit width. llvm-svn: 33325
-
- Jan 12, 2007
-
-
Reid Spencer authored
Implement the arbitrary bit-width integer feature. The feature allows integers of any bitwidth (up to 64) to be defined instead of just 1, 8, 16, 32, and 64 bit integers. This change does several things: 1. Introduces a new Derived Type, IntegerType, to represent the number of bits in an integer. The Type classes SubclassData field is used to store the number of bits. This allows 2^23 bits in an integer type. 2. Removes the five integer Type::TypeID values for the 1, 8, 16, 32 and 64-bit integers. These are replaced with just IntegerType which is not a primitive any more. 3. Adjust the rest of LLVM to account for this change. Note that while this incremental change lays the foundation for arbitrary bit-width integers, LLVM has not yet been converted to actually deal with them in any significant way. Most optimization passes, for example, will still only deal with the byte-width integer types. Future increments will rectify this situation. llvm-svn: 33113
-
- Dec 23, 2006
-
-
Reid Spencer authored
This patch removes the SetCC instructions and replaces them with the ICmp and FCmp instructions. The SetCondInst instruction has been removed and been replaced with ICmpInst and FCmpInst. llvm-svn: 32751
-
- Dec 07, 2006
-
-
Bill Wendling authored
llvm-svn: 32320
-
- Nov 27, 2006
-
-
Reid Spencer authored
The long awaited CAST patch. This introduces 12 new instructions into LLVM to replace the cast instruction. Corresponding changes throughout LLVM are provided. This passes llvm-test, llvm/test, and SPEC CPUINT2000 with the exception of 175.vpr which fails only on a slight floating point output difference. llvm-svn: 31931
-
- Nov 08, 2006
-
-
Reid Spencer authored
This patch converts the old SHR instruction into two instructions, AShr (Arithmetic) and LShr (Logical). The Shr instructions now are not dependent on the sign of their operands. llvm-svn: 31542
-
- Jun 16, 2006
-
-
Chris Lattner authored
llvm-svn: 28826
-
- Mar 23, 2006
-
-
Chris Lattner authored
llvm-svn: 26970
-
- Mar 22, 2006
-
-
Chris Lattner authored
Now you can build a tool with just the JIT or just the interpreter. llvm-svn: 26946
-
- Feb 07, 2006
-
-
Jeff Cohen authored
therefore the function being called must be a main() returning an int. The consequences when these assumptions are false are not good, so don't assume them. llvm-svn: 26031
-
- Jun 18, 2005
-
-
Andrew Lenharth authored
llvm-svn: 22254
-
- Apr 22, 2005
-
-
Misha Brukman authored
llvm-svn: 21440
-
Misha Brukman authored
* Convert tabs to spaces llvm-svn: 21421
-
- Nov 08, 2004
-
-
Misha Brukman authored
llvm-svn: 17601
-
- Oct 16, 2004
-
-
Chris Lattner authored
llvm-svn: 17056
-
- Sep 02, 2004
-
-
Reid Spencer authored
Move include/Config and include/Support into include/llvm/Config, include/llvm/ADT and include/llvm/Support. From here on out, all LLVM public header files must be under include/llvm/. llvm-svn: 16137
-
- Jul 04, 2004
-
-
Reid Spencer authored
llvm-svn: 14622
-
- Apr 20, 2004
-
-
Chris Lattner authored
llvm-svn: 13076
-
- Apr 04, 2004
-
-
Chris Lattner authored
llvm-svn: 12646
-
Chris Lattner authored
llvm-svn: 12644
-
- Feb 26, 2004
-
-
Chris Lattner authored
llvm-svn: 11872
-
- Feb 13, 2004
-
-
Brian Gaeke authored
any attempts by LLI to use varargs (possibly left over from the introduction of IntrinsicLowering??) llvm-svn: 11370
-
- Dec 28, 2003
-
-
Chris Lattner authored
Reimplement the Interpreters implementation of va_* to be more direct. llvm-svn: 10627
-
- Dec 26, 2003
-
-
Chris Lattner authored
rename run to runFunction llvm-svn: 10609
-
- Dec 11, 2003
-
-
Brian Gaeke authored
llvm-svn: 10390
-
- Dec 08, 2003
-
-
Chris Lattner authored
llvm-svn: 10321
-
- Nov 25, 2003
-
-
Chris Lattner authored
llvm-svn: 10224
-
- Nov 13, 2003
-
-
Brian Gaeke authored
argument to be returned by va_arg. This allows va_lists to be passed between different LLVM procedures (though it is unlikely that an LLI va_list would make sense to an external function, except by chance.) llvm-svn: 9965
-
- Nov 11, 2003
-
-
Brian Gaeke authored
llvm-svn: 9903
-
- Nov 07, 2003
-
-
Brian Gaeke authored
still causes a crash. But it's better than before. llvm-svn: 9794
-
Brian Gaeke authored
llvm-svn: 9789
-
Brian Gaeke authored
Use visitCallSite to implement both CallInsts and InvokeInsts. llvm-svn: 9788
-
Brian Gaeke authored
llvm-svn: 9784
-
Brian Gaeke authored
Make external function calls slightly less special; now they get a stack frame. llvm-svn: 9765
-