mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-13 20:32:21 +00:00
* Moved author attribution to CREDITS.TXT
* Removed trailing whitespace git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61927 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
2a835f947a
commit
ce07e99dd6
16
CREDITS.TXT
16
CREDITS.TXT
@ -1,6 +1,6 @@
|
|||||||
This file is a partial list of people who have contributed to the LLVM
|
This file is a partial list of people who have contributed to the LLVM
|
||||||
project. If you have contributed a patch or made some other contribution to
|
project. If you have contributed a patch or made some other contribution to
|
||||||
LLVM, please submit a patch to this file to add yourself, and it will be
|
LLVM, please submit a patch to this file to add yourself, and it will be
|
||||||
done!
|
done!
|
||||||
|
|
||||||
The list is sorted by name and formatted to allow easy grepping and
|
The list is sorted by name and formatted to allow easy grepping and
|
||||||
@ -33,7 +33,7 @@ D: Sparse bitmap
|
|||||||
|
|
||||||
N: Neil Booth
|
N: Neil Booth
|
||||||
E: neil@daikokuya.co.uk
|
E: neil@daikokuya.co.uk
|
||||||
D: APFloat implementation.
|
D: APFloat implementation.
|
||||||
|
|
||||||
N: Misha Brukman
|
N: Misha Brukman
|
||||||
E: brukman+llvm@uiuc.edu
|
E: brukman+llvm@uiuc.edu
|
||||||
@ -82,7 +82,7 @@ N: Brian Gaeke
|
|||||||
E: gaeke@uiuc.edu
|
E: gaeke@uiuc.edu
|
||||||
W: http://www.students.uiuc.edu/~gaeke/
|
W: http://www.students.uiuc.edu/~gaeke/
|
||||||
D: Portions of X86 static and JIT compilers; initial SparcV8 backend
|
D: Portions of X86 static and JIT compilers; initial SparcV8 backend
|
||||||
D: Dynamic trace optimizer
|
D: Dynamic trace optimizer
|
||||||
D: FreeBSD/X86 compatibility fixes, the llvm-nm tool
|
D: FreeBSD/X86 compatibility fixes, the llvm-nm tool
|
||||||
|
|
||||||
N: Nicolas Geoffray
|
N: Nicolas Geoffray
|
||||||
@ -114,6 +114,10 @@ N: Gabor Greif
|
|||||||
E: ggreif@gmail.com
|
E: ggreif@gmail.com
|
||||||
D: Improvements for space efficiency
|
D: Improvements for space efficiency
|
||||||
|
|
||||||
|
N: Lang Hames
|
||||||
|
E: lhames@gmail.com
|
||||||
|
D: PBQP-based register allocator
|
||||||
|
|
||||||
N: Gordon Henriksen
|
N: Gordon Henriksen
|
||||||
E: gordonhenriksen@mac.com
|
E: gordonhenriksen@mac.com
|
||||||
D: Pluggable GC support
|
D: Pluggable GC support
|
||||||
@ -126,7 +130,7 @@ D: JIT support for ARM
|
|||||||
|
|
||||||
N: Paolo Invernizzi
|
N: Paolo Invernizzi
|
||||||
E: arathorn@fastwebnet.it
|
E: arathorn@fastwebnet.it
|
||||||
D: Visual C++ compatibility fixes
|
D: Visual C++ compatibility fixes
|
||||||
|
|
||||||
N: Patrick Jenkins
|
N: Patrick Jenkins
|
||||||
E: patjenk@wam.umd.edu
|
E: patjenk@wam.umd.edu
|
||||||
@ -168,7 +172,7 @@ N: Jim Laskey
|
|||||||
E: jlaskey@apple.com
|
E: jlaskey@apple.com
|
||||||
D: Improvements to the PPC backend, instruction scheduling
|
D: Improvements to the PPC backend, instruction scheduling
|
||||||
D: Debug and Dwarf implementation
|
D: Debug and Dwarf implementation
|
||||||
D: Auto upgrade mangler
|
D: Auto upgrade mangler
|
||||||
D: llvm-gcc4 svn wrangler
|
D: llvm-gcc4 svn wrangler
|
||||||
|
|
||||||
N: Chris Lattner
|
N: Chris Lattner
|
||||||
@ -217,7 +221,7 @@ D: Added STI Cell SPU backend.
|
|||||||
|
|
||||||
N: Morten Ofstad
|
N: Morten Ofstad
|
||||||
E: morten@hue.no
|
E: morten@hue.no
|
||||||
D: Visual C++ compatibility fixes
|
D: Visual C++ compatibility fixes
|
||||||
|
|
||||||
N: Richard Osborne
|
N: Richard Osborne
|
||||||
E: richard@xmos.com
|
E: richard@xmos.com
|
||||||
|
@ -16,7 +16,7 @@
|
|||||||
//
|
//
|
||||||
// The PBQP solver (pbqp.c) provided for this allocator uses a heuristic tuned
|
// The PBQP solver (pbqp.c) provided for this allocator uses a heuristic tuned
|
||||||
// for register allocation. For more information on PBQP for register
|
// for register allocation. For more information on PBQP for register
|
||||||
// allocation see the following papers:
|
// allocation, see the following papers:
|
||||||
//
|
//
|
||||||
// (1) Hames, L. and Scholz, B. 2006. Nearly optimal register allocation with
|
// (1) Hames, L. and Scholz, B. 2006. Nearly optimal register allocation with
|
||||||
// PBQP. In Proceedings of the 7th Joint Modular Languages Conference
|
// PBQP. In Proceedings of the 7th Joint Modular Languages Conference
|
||||||
@ -27,9 +27,6 @@
|
|||||||
// Compilers and Tools for Embedded Systems (LCTES'02), ACM Press, New York,
|
// Compilers and Tools for Embedded Systems (LCTES'02), ACM Press, New York,
|
||||||
// NY, USA, 139-148.
|
// NY, USA, 139-148.
|
||||||
//
|
//
|
||||||
// Author: Lang Hames
|
|
||||||
// Email: lhames@gmail.com
|
|
||||||
//
|
|
||||||
//===----------------------------------------------------------------------===//
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
#define DEBUG_TYPE "regalloc"
|
#define DEBUG_TYPE "regalloc"
|
||||||
|
Loading…
Reference in New Issue
Block a user