[x86] fix assert with horizontal math + broadcast of vector (PR43402)
[llvm-core.git] / lib / CodeGen / GlobalISel / RegisterBank.cpp
blob4e41f338934db6a59a77c0dc0c331a13ccafabef
1 //===- llvm/CodeGen/GlobalISel/RegisterBank.cpp - Register Bank --*- C++ -*-==//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 /// \file
9 /// This file implements the RegisterBank class.
10 //===----------------------------------------------------------------------===//
12 #include "llvm/CodeGen/GlobalISel/RegisterBank.h"
13 #include "llvm/CodeGen/TargetRegisterInfo.h"
14 #include "llvm/Config/llvm-config.h"
16 #define DEBUG_TYPE "registerbank"
18 using namespace llvm;
20 const unsigned RegisterBank::InvalidID = UINT_MAX;
22 RegisterBank::RegisterBank(
23 unsigned ID, const char *Name, unsigned Size,
24 const uint32_t *CoveredClasses, unsigned NumRegClasses)
25 : ID(ID), Name(Name), Size(Size) {
26 ContainedRegClasses.resize(NumRegClasses);
27 ContainedRegClasses.setBitsInMask(CoveredClasses);
30 bool RegisterBank::verify(const TargetRegisterInfo &TRI) const {
31 assert(isValid() && "Invalid register bank");
32 for (unsigned RCId = 0, End = TRI.getNumRegClasses(); RCId != End; ++RCId) {
33 const TargetRegisterClass &RC = *TRI.getRegClass(RCId);
35 if (!covers(RC))
36 continue;
37 // Verify that the register bank covers all the sub classes of the
38 // classes it covers.
40 // Use a different (slow in that case) method than
41 // RegisterBankInfo to find the subclasses of RC, to make sure
42 // both agree on the covers.
43 for (unsigned SubRCId = 0; SubRCId != End; ++SubRCId) {
44 const TargetRegisterClass &SubRC = *TRI.getRegClass(RCId);
46 if (!RC.hasSubClassEq(&SubRC))
47 continue;
49 // Verify that the Size of the register bank is big enough to cover
50 // all the register classes it covers.
51 assert(getSize() >= TRI.getRegSizeInBits(SubRC) &&
52 "Size is not big enough for all the subclasses!");
53 assert(covers(SubRC) && "Not all subclasses are covered");
56 return true;
59 bool RegisterBank::covers(const TargetRegisterClass &RC) const {
60 assert(isValid() && "RB hasn't been initialized yet");
61 return ContainedRegClasses.test(RC.getID());
64 bool RegisterBank::isValid() const {
65 return ID != InvalidID && Name != nullptr && Size != 0 &&
66 // A register bank that does not cover anything is useless.
67 !ContainedRegClasses.empty();
70 bool RegisterBank::operator==(const RegisterBank &OtherRB) const {
71 // There must be only one instance of a given register bank alive
72 // for the whole compilation.
73 // The RegisterBankInfo is supposed to enforce that.
74 assert((OtherRB.getID() != getID() || &OtherRB == this) &&
75 "ID does not uniquely identify a RegisterBank");
76 return &OtherRB == this;
79 #if !defined(NDEBUG) || defined(LLVM_ENABLE_DUMP)
80 LLVM_DUMP_METHOD void RegisterBank::dump(const TargetRegisterInfo *TRI) const {
81 print(dbgs(), /* IsForDebug */ true, TRI);
83 #endif
85 void RegisterBank::print(raw_ostream &OS, bool IsForDebug,
86 const TargetRegisterInfo *TRI) const {
87 OS << getName();
88 if (!IsForDebug)
89 return;
90 OS << "(ID:" << getID() << ", Size:" << getSize() << ")\n"
91 << "isValid:" << isValid() << '\n'
92 << "Number of Covered register classes: " << ContainedRegClasses.count()
93 << '\n';
94 // Print all the subclasses if we can.
95 // This register classes may not be properly initialized yet.
96 if (!TRI || ContainedRegClasses.empty())
97 return;
98 assert(ContainedRegClasses.size() == TRI->getNumRegClasses() &&
99 "TRI does not match the initialization process?");
100 bool IsFirst = true;
101 OS << "Covered register classes:\n";
102 for (unsigned RCId = 0, End = TRI->getNumRegClasses(); RCId != End; ++RCId) {
103 const TargetRegisterClass &RC = *TRI->getRegClass(RCId);
105 if (!covers(RC))
106 continue;
108 if (!IsFirst)
109 OS << ", ";
110 OS << TRI->getRegClassName(&RC);
111 IsFirst = false;