Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Add support to count the number of dynamic instructions executed by LLI | Chris Lattner | 2002-12-08 | 1 | -0/+8 |
| | | | | llvm-svn: 4955 | ||||
* | Make command line arguments setup be endian correct!! | Chris Lattner | 2002-11-07 | 1 | -0/+22 |
| | | | | llvm-svn: 4605 | ||||
* | Fix two problems: | Chris Lattner | 2002-10-30 | 1 | -31/+31 |
| | | | | | | | | | * Load Implementation can cause unaligned memory accesses, which caused problems for sparc. * cast from pointer to pointer would zero the upper 32 bits of the pointer which obviously causes problems on 64 bit hosts. llvm-svn: 4454 | ||||
* | Fix a major bug in lli | Chris Lattner | 2002-10-26 | 1 | -3/+4 |
| | | | | llvm-svn: 4289 | ||||
* | - Fix LLI so that it simulates the endianness of the target machine | Chris Lattner | 2002-10-15 | 1 | -92/+173 |
| | | | | | | correctly, despite the fact that the host machine might not be the same. llvm-svn: 4180 | ||||
* | Expose TD to ExternalFunctions.cpp | Chris Lattner | 2002-10-02 | 1 | -1/+1 |
| | | | | llvm-svn: 4020 | ||||
* | * Fix a bug that was causing lli to misrun: | Chris Lattner | 2002-09-13 | 1 | -1/+1 |
| | | | | | | | test/Regression/Transforms/DecomposeMultiDimRefs/mixedindices.c * Eliminate unneccesary #include llvm-svn: 3712 | ||||
* | Another portability patch graciously provided by Casey Carter | Chris Lattner | 2002-09-13 | 1 | -1/+1 |
| | | | | llvm-svn: 3698 | ||||
* | - Change getelementptr instruction to use long indexes instead of uint | Chris Lattner | 2002-09-11 | 1 | -1/+1 |
| | | | | | | indexes for sequential types. llvm-svn: 3683 | ||||
* | - Renamed Type::isIntegral() to Type::isInteger() | Chris Lattner | 2002-09-03 | 1 | -1/+1 |
| | | | | | | | - Added new method Type::isIntegral() that is the same as isInteger, but also accepts bool. llvm-svn: 3574 | ||||
* | Implement ConstantPointerRef support, & ConstantExpr support for Cast, GEP & ↵ | Chris Lattner | 2002-08-27 | 1 | -31/+54 |
| | | | | | | Add. llvm-svn: 3516 | ||||
* | Eliminated the MemAccessInst class, folding contents into GEP class. | Chris Lattner | 2002-08-22 | 1 | -4/+3 |
| | | | | llvm-svn: 3487 | ||||
* | Load & StoreInst no longer derive from MemAccessInst, so we don't have | Chris Lattner | 2002-08-22 | 1 | -12/+5 |
| | | | | | | to handle indexing anymore llvm-svn: 3485 | ||||
* | Remove support for NOT instruction | Chris Lattner | 2002-08-14 | 1 | -29/+0 |
| | | | | llvm-svn: 3313 | ||||
* | Minor change to make lli print out characters numerically as well as ↵ | Chris Lattner | 2002-08-13 | 1 | -2/+4 |
| | | | | | | symbolically llvm-svn: 3303 | ||||
* | Fix one real nasty bug | Chris Lattner | 2002-08-02 | 1 | -1/+1 |
| | | | | llvm-svn: 3227 | ||||
* | Fix gcc 3.1 complaint | Chris Lattner | 2002-07-25 | 1 | -1/+1 |
| | | | | llvm-svn: 3091 | ||||
* | *** empty log message *** | Chris Lattner | 2002-07-22 | 1 | -6/+15 |
| | | | | llvm-svn: 2985 | ||||
* | Implementing shift left & shift right on pointers | Chris Lattner | 2002-07-09 | 1 | -0/+2 |
| | | | | llvm-svn: 2844 | ||||
* | MEGAPATCH checkin. | Chris Lattner | 2002-06-25 | 1 | -114/+113 |
| | | | | | | For details, See: docs/2002-06-25-MegaPatchInfo.txt llvm-svn: 2778 | ||||
* | Change usage of isPointerType to use isa | Chris Lattner | 2002-05-06 | 1 | -1/+1 |
| | | | | llvm-svn: 2487 | ||||
* | Implement the NOT operator. | Chris Lattner | 2002-05-03 | 1 | -0/+28 |
| | | | | llvm-svn: 2455 | ||||
* | Implement cast operations on booleans to allow casting bools to ints, f.e. | Chris Lattner | 2002-05-02 | 1 | -1/+2 |
| | | | | llvm-svn: 2437 | ||||
* | Fix #include broken by iMemory.h not including DerivedTypes.h | Chris Lattner | 2002-04-29 | 1 | -1/+1 |
| | | | | llvm-svn: 2407 | ||||
* | FIXME removed: malloc/alloca ALWAYS have a size argument | Chris Lattner | 2002-04-28 | 1 | -7/+2 |
| | | | | llvm-svn: 2389 | ||||
* | Split ConstantVals.h into Constant.h and Constants.h | Chris Lattner | 2002-04-28 | 1 | -1/+1 |
| | | | | llvm-svn: 2378 | ||||
* | Move FunctionArgument out of iOther.h into Argument.h and rename class to | Chris Lattner | 2002-04-09 | 1 | -5/+6 |
| | | | | | | be 'Argument' instead of FunctionArgument. llvm-svn: 2217 | ||||
* | Change references to the Method class to be references to the Function | Chris Lattner | 2002-04-07 | 1 | -28/+29 |
| | | | | | | | class. The Method class is obsolete (renamed) and all references to it are being converted over to Function. llvm-svn: 2144 | ||||
* | Change from Method to Function | Chris Lattner | 2002-03-26 | 1 | -4/+2 |
| | | | | llvm-svn: 1992 | ||||
* | Keep track of memory allocated by alloca so that it is freed appropriately | Chris Lattner | 2002-02-19 | 1 | -5/+6 |
| | | | | llvm-svn: 1776 | ||||
* | Method.h no longer includes BasicBlock.h | Chris Lattner | 2002-02-12 | 1 | -4/+6 |
| | | | | | | | Method::inst_* is now in llvm/Support/InstIterator.h GraphTraits specializations for BasicBlock and Methods are now in llvm/Support/CFG.h llvm-svn: 1746 | ||||
* | Add new abort-on-exceptions flag | Chris Lattner | 2002-02-12 | 1 | -2/+7 |
| | | | | llvm-svn: 1737 | ||||
* | Make array bound checks optional and disabled by default. | Chris Lattner | 2002-02-11 | 1 | -2/+2 |
| | | | | llvm-svn: 1725 | ||||
* | Changes to build successfully with GCC 3.02 | Chris Lattner | 2002-01-20 | 1 | -41/+44 |
| | | | | llvm-svn: 1503 | ||||
* | * Support the new -q flag for automated tests | Chris Lattner | 2001-12-14 | 1 | -39/+32 |
| | | | | | | | * Remove unsized array support * Add pointer indexing support llvm-svn: 1477 | ||||
* | Renamed inst_const_iterator -> const_inst_iterator | Chris Lattner | 2001-12-04 | 1 | -3/+3 |
| | | | | | | | Renamed op_const_iterator -> const_op_iterator Renamed PointerType::getValueType() -> PointerType::getElementType() llvm-svn: 1408 | ||||
* | Rename ConstPoolVal -> Constant | Chris Lattner | 2001-12-03 | 1 | -37/+38 |
| | | | | | | | Rename ConstPool* -> Constant* Rename ConstPoolVals.h -> ConstantVals.h llvm-svn: 1407 | ||||
* | Split the PHINode class out from the iOther.h file into the iPHINode.h file | Chris Lattner | 2001-12-03 | 1 | -0/+1 |
| | | | | llvm-svn: 1405 | ||||
* | Create a new #include "Support/..." directory structure to move things | Chris Lattner | 2001-11-27 | 1 | -1/+1 |
| | | | | | | | | from "llvm/Support/..." that are not llvm dependant. Move files and fix #includes llvm-svn: 1400 | ||||
* | Move DataTypes.h from llvm/Support to just Support | Chris Lattner | 2001-11-26 | 1 | -1/+0 |
| | | | | llvm-svn: 1399 | ||||
* | * Implement array indexing in lli | Chris Lattner | 2001-11-26 | 1 | -24/+44 |
| | | | | | | * Add external atoi method as well as floor, and srand llvm-svn: 1355 | ||||
* | Rename cruft | Chris Lattner | 2001-11-14 | 1 | -3/+3 |
| | | | | llvm-svn: 1299 | ||||
* | Print percentages for profiling info better | Chris Lattner | 2001-11-12 | 1 | -1/+19 |
| | | | | llvm-svn: 1274 | ||||
* | Print profile info if exit() is called | Chris Lattner | 2001-11-12 | 1 | -26/+30 |
| | | | | llvm-svn: 1268 | ||||
* | Hack a structure profiling option together | Chris Lattner | 2001-11-12 | 1 | -0/+45 |
| | | | | llvm-svn: 1267 | ||||
* | Correct problem that allows indirect function calls | Chris Lattner | 2001-11-07 | 1 | -1/+5 |
| | | | | llvm-svn: 1179 | ||||
* | * Switch to operation on pointers with PointerTy more consistently | Chris Lattner | 2001-11-07 | 1 | -44/+110 |
| | | | | | | | | | | | | | | | | | | | | * Fix misspeling * Catch SIGFPE for traps * info XXX now prints the raw contents of the GenericValue * Switch to calloc instead of malloc (temporarily I hope) to bandaid Olden benchmarks * Implement binary And & Or * Convert expressions like this: PointerTy SrcPtr = getOperandValue(I->getPtrOperand(), SF).PointerVal; to: GenericValue SRC = getOperandValue(I->getPtrOperand(), SF); PointerTy SrcPtr = SRC.PointerVal; because the prior way confuses purify. * Taint the initial values of the value planes * Handling 'print bb4' in the interpreter without crashing * Print nicer stack frames with concise return type * printf doesn't suck nearly as badly as it used to llvm-svn: 1177 | ||||
* | *Print Stack traces better. | Chris Lattner | 2001-11-07 | 1 | -22/+34 |
| | | | | | | | | * Use the cache writer for all it's problems. * print arguments to methods in stack traces. *Print the current stack from for up/down commands. llvm-svn: 1170 | ||||
* | * Use cached writer to speed up printing and get symbolic types more ↵ | Chris Lattner | 2001-11-07 | 1 | -14/+48 |
| | | | | | | | | consistently * When a segfault or bus error occurs, stop the program, print a stack trace, and dump the user in the debugger mode llvm-svn: 1169 | ||||
* | Implement xor operator | Chris Lattner | 2001-10-30 | 1 | -0/+22 |
| | | | | llvm-svn: 1050 |