]> granicus.if.org Git - llvm/commit
[globalisel] Move as much RegisterBank initialization to the constructor as possible
authorDaniel Sanders <daniel_l_sanders@apple.com>
Thu, 12 Jan 2017 16:11:23 +0000 (16:11 +0000)
committerDaniel Sanders <daniel_l_sanders@apple.com>
Thu, 12 Jan 2017 16:11:23 +0000 (16:11 +0000)
commit819f312880d48f824ad245039b95f7a29a2374b9
treede67dd6173a168b215851e4a51320343840ce996
parent8c4ff1089699c5e2428bdcc1a0f4eef6f3396e4e
[globalisel] Move as much RegisterBank initialization to the constructor as possible

Summary:
The register bank is now entirely initialized in the constructor. However,
we still have the hardcoded number of register classes which will be
dealt with in the TableGen patch (D27338) since we do not have access
to this information to resolve this at this stage. The number of register
classes is known to the TRI and to TableGen but the RegisterBank
constructor is too early for the former and too late for the latter.
This will be fixed when the data is tablegen-erated.

Reviewers: t.p.northover, ab, rovka, qcolombet

Subscribers: aditya_nandakumar, kristof.beyls, vkalintiris, llvm-commits, dberris

Differential Revision: https://reviews.llvm.org/D27809

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@291770 91177308-0d34-0410-b5e6-96231b3b80d8
include/llvm/CodeGen/GlobalISel/RegisterBank.h
include/llvm/CodeGen/GlobalISel/RegisterBankInfo.h
lib/CodeGen/GlobalISel/RegisterBank.cpp
lib/CodeGen/GlobalISel/RegisterBankInfo.cpp
lib/Target/AArch64/AArch64GenRegisterBankInfo.def
lib/Target/AArch64/AArch64RegisterBankInfo.cpp
lib/Target/ARM/ARMRegisterBankInfo.cpp