llvm-6502/lib
Chris Lattner ea38c0e85c * Switch to operation on pointers with PointerTy more consistently
* 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


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@1177 91177308-0d34-0410-b5e6-96231b3b80d8
2001-11-07 19:46:27 +00:00
..
Analysis Added function IsLeafMethod to identify leaf methods. 2001-10-22 13:55:46 +00:00
AsmParser Improve some debugging code 2001-11-02 07:46:26 +00:00
Bytecode Fix obscure nasty bug with bytecode writing that could cause the last byte to be dropped. 2001-11-04 21:32:41 +00:00
CodeGen Fixed bug - added code in pushUnconstrainedIGNodes() to check whether a node 2001-11-06 15:25:38 +00:00
ExecutionEngine * Switch to operation on pointers with PointerTy more consistently 2001-11-07 19:46:27 +00:00
Linker Add #includes to enable buiding in Release mode 2001-11-07 13:49:45 +00:00
Support Provide option to enable eating of all arguments following a specific one 2001-10-27 05:54:17 +00:00
Target Killing warnings 2001-11-07 14:01:59 +00:00
Transforms Add #includes to enable buiding in Release mode 2001-11-07 13:49:45 +00:00
VMCore Add #includes to enable buiding in Release mode 2001-11-07 13:49:45 +00:00
Makefile Compile the transforms directory 2001-10-13 07:04:00 +00:00