- Mar 06, 2007
-
-
Anton Korobeynikov authored
llvm-svn: 34959
-
Reid Spencer authored
to make a copy of the GenericValue. 2. Fix a copy & paste bug in StoreValueToMemory where 64-bit values were truncated to 32 llvm-svn: 34958
-
Reid Spencer authored
might need to zext not just trunc the value. llvm-svn: 34955
-
Reid Spencer authored
is larger. Adjust so that it truncates to pointer width, only if necessary. llvm-svn: 34954
-
Reid Spencer authored
integer field of type APInt instead of different sized integer fields. llvm-svn: 34952
-
Reid Spencer authored
handling for integer of various sizes. GenericValue now has just a single integer field of type APInt. We use its facilities directly in the execution of all instructions. llvm-svn: 34951
-
Reid Spencer authored
a single integer field of type APInt. llvm-svn: 34950
-
Reid Spencer authored
members of GenericValue. Consequently the code to clean them up isn't needed. llvm-svn: 34948
-
Reid Spencer authored
Target DataLayout incorrectly. For now, we'll trust that the module has got the correct DataLayout. In the future, this needs to be changed to tell the TargetData to be "current host". llvm-svn: 34947
-
Reid Spencer authored
field, of type APInt, instead of multiple integer fields. Also, get rid of the special endianness code in StoreValueToMemory and LoadValueToMemory. ExecutionEngine is always used to execute on the host platform so this is now unnecessary. llvm-svn: 34946
-
- Mar 03, 2007
-
-
Reid Spencer authored
llvm-svn: 34889
-
Reid Spencer authored
llvm-svn: 34887
-
Reid Spencer authored
have been removed and dealt with. The interpreter should now be able to execute any LLVM program using any bit width. llvm-svn: 34884
-
Reid Spencer authored
destination value of LoadValueFromMemory. llvm-svn: 34883
-
Reid Spencer authored
Move the getConstantExpr function towards the end of the file so we don't need a dozen forward declarations. llvm-svn: 34877
-
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
-
Reid Spencer authored
llvm-svn: 34874
-
- Feb 24, 2007
-
-
Chris Lattner authored
llvm-svn: 34552
-
- Feb 15, 2007
-
-
Reid Spencer authored
Rename PackedType -> VectorType, ConstantPacked -> ConstantVector, and PackedTyID -> VectorTyID. No functional changes. llvm-svn: 34293
-
- Feb 14, 2007
-
-
Chris Lattner authored
While preparing http://llvm.org/PR1198 I noticed several asserts protecting unprepared code from i128 types that weren't actually failing when they should because they were written as assert("foo") instead of something like assert(0 && "foo"). This patch fixes all the cases that a quick grep found. llvm-svn: 34267
-
Chris Lattner authored
Patch by Scott Michel. llvm-svn: 34266
-
- Feb 13, 2007
-
-
Chris Lattner authored
llvm-svn: 34223
-
- Feb 10, 2007
-
-
Chris Lattner authored
llvm-svn: 34163
-
Chris Lattner authored
llvm-svn: 34156
-
- Feb 08, 2007
-
-
Reid Spencer authored
Compute BitMask correctly. Patch by Leo (wenwenti@hotmail.com). llvm-svn: 34026
-
- Feb 05, 2007
-
-
Reid Spencer authored
Adjust to changes in Module interface: getMainFunction() -> getFunction("main") getNamedFunction(X) -> getFunction(X) llvm-svn: 33922
-
- 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 30, 2007
-
-
Reid Spencer authored
confusion with external linkage types. llvm-svn: 33663
-
- Jan 29, 2007
-
-
Reid Spencer authored
llvm-svn: 33620
-
Reid Spencer authored
llvm-svn: 33619
-
- Jan 26, 2007
-
-
Reid Spencer authored
The Module::setEndianness and Module::setPointerSize methods have been removed. Instead you can get/set the DataLayout. Adjust thise accordingly. llvm-svn: 33530
-
- Jan 23, 2007
-
-
Anton Korobeynikov authored
llvm-svn: 33461
-
- Jan 21, 2007
-
-
Reid Spencer authored
Clean up handling of isFloatingPoint() and dealing with PackedType. Patch by Gordon Henriksen! llvm-svn: 33415
-
- Jan 20, 2007
-
-
Chris Lattner authored
these alignment amounts to align scalars when we can. Patch by Scott Michel! llvm-svn: 33409
-
Chris Lattner authored
that disassembleBuffer will be called even if NDEBUG, but the result will be ignored. llvm-svn: 33408
-
Reid Spencer authored
a small inline function to sign extend a uint64_t value based on its type's bitwidth. This function is then used in both executeSExtInst and the various executeICMP_S** functions. llvm-svn: 33403
-
Reid Spencer authored
This patch fixes test/Integer/2007-01-17-TruncSext.ll llvm-svn: 33394
-
- Jan 19, 2007
-
-
Reid Spencer authored
This is the final patch for this PR. It implements some minor cleanup in the use of IntegerType, to wit: 1. Type::getIntegerTypeMask -> IntegerType::getBitMask 2. Type::Int*Ty changed to IntegerType* from Type* 3. ConstantInt::getType() returns IntegerType* now, not Type* This also fixes PR1120. Patch by Sheng Zhou. llvm-svn: 33370
-
Andrew Lenharth authored
llvm-svn: 33367
-
Anton Korobeynikov authored
llvm-svn: 33358
-