Reorganized the Sparc backend to be more modular -- each different
authorMisha Brukman <brukman+llvm@gmail.com>
Wed, 17 Dec 2003 22:04:00 +0000 (22:04 +0000)
committerMisha Brukman <brukman+llvm@gmail.com>
Wed, 17 Dec 2003 22:04:00 +0000 (22:04 +0000)
commitd71295a684fb351e196f4f78ea94e5d1af904eb8
treeebc260c7a6036eb8c698cd062804a8beacbc9e31
parent3e7ada642a00c6904231f2446b33c7f15bb45151
Reorganized the Sparc backend to be more modular -- each different
implementation of a Target{RegInfo, InstrInfo, Machine, etc} now has a separate
header and a separate implementation file.

This means that instead of a massive SparcInternals.h that forces a
recompilation of the whole target whenever a minor detail is changed, you should
only recompile a few files.

Note that SparcInternals.h is still around; its contents should be minimized.

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10500 91177308-0d34-0410-b5e6-96231b3b80d8
13 files changed:
lib/Target/SparcV9/SparcV9CodeEmitter.cpp
lib/Target/SparcV9/SparcV9FrameInfo.cpp [new file with mode: 0644]
lib/Target/SparcV9/SparcV9FrameInfo.h [new file with mode: 0644]
lib/Target/SparcV9/SparcV9InstrInfo.cpp
lib/Target/SparcV9/SparcV9InstrInfo.h [new file with mode: 0644]
lib/Target/SparcV9/SparcV9InstrSelection.cpp
lib/Target/SparcV9/SparcV9Internals.h
lib/Target/SparcV9/SparcV9RegClassInfo.cpp
lib/Target/SparcV9/SparcV9RegInfo.cpp
lib/Target/SparcV9/SparcV9RegInfo.h [new file with mode: 0644]
lib/Target/SparcV9/SparcV9SchedInfo.cpp
lib/Target/SparcV9/SparcV9TargetMachine.cpp
lib/Target/SparcV9/SparcV9TargetMachine.h [new file with mode: 0644]