llvm-6502/lib
Alkis Evlogimenos 0b8cb2bc47 Change live interval representation. Machine instructions now have two
slots each. As a concequence they get numbered as 0, 2, 4 and so
on. The first slot is used for operand uses and the second for
defs. Here's an example:

0: A = ...
2: B = ...
4: C = A + B ;; last use of A

The live intervals should look like:

A = [1, 5)
B = [3, x)
C = [5, y)


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@11141 91177308-0d34-0410-b5e6-96231b3b80d8
2004-02-05 22:55:25 +00:00
..
Analysis In a "seeing the forest through the trees" kinda situation, I realized that a 2004-02-05 17:20:00 +00:00
Archive
AsmParser
Bytecode Remove all of the annoying statistics now that I'm finished (for the near 2004-02-01 01:50:31 +00:00
CodeGen Change live interval representation. Machine instructions now have two 2004-02-05 22:55:25 +00:00
Debugger "fix" a nasty race condition 2004-01-14 21:18:03 +00:00
ExecutionEngine Print an error message if we can't materialize the bytecode file 2004-02-01 01:07:25 +00:00
Linker Fixes for PR214. Use the SHLIBEXT variable instead of hardcoding .so into 2004-01-26 20:59:41 +00:00
Support Fixes for PR214. Use the SHLIBEXT variable instead of hardcoding .so into 2004-01-26 20:59:41 +00:00
Target Modify the two address instruction pass to remove the duplicate 2004-02-04 22:17:40 +00:00
Transforms Fix bug updating dominators 2004-02-05 22:33:26 +00:00
VMCore Adjust to the new BB ctor 2004-02-04 03:57:50 +00:00
Makefile