]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/lib/MC/MCRegisterInfo.cpp
Merge llvm, clang, lld, lldb, compiler-rt and libc++ r304222, and update
[FreeBSD/FreeBSD.git] / contrib / llvm / lib / MC / MCRegisterInfo.cpp
1 //===- MC/MCRegisterInfo.cpp - Target Register Description ----------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file implements MCRegisterInfo functions.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "llvm/ADT/DenseMap.h"
15 #include "llvm/MC/MCRegisterInfo.h"
16 #include "llvm/Support/ErrorHandling.h"
17 #include <algorithm>
18 #include <cassert>
19 #include <cstdint>
20
21 using namespace llvm;
22
23 unsigned MCRegisterInfo::getMatchingSuperReg(unsigned Reg, unsigned SubIdx,
24                                              const MCRegisterClass *RC) const {
25   for (MCSuperRegIterator Supers(Reg, this); Supers.isValid(); ++Supers)
26     if (RC->contains(*Supers) && Reg == getSubReg(*Supers, SubIdx))
27       return *Supers;
28   return 0;
29 }
30
31 unsigned MCRegisterInfo::getSubReg(unsigned Reg, unsigned Idx) const {
32   assert(Idx && Idx < getNumSubRegIndices() &&
33          "This is not a subregister index");
34   // Get a pointer to the corresponding SubRegIndices list. This list has the
35   // name of each sub-register in the same order as MCSubRegIterator.
36   const uint16_t *SRI = SubRegIndices + get(Reg).SubRegIndices;
37   for (MCSubRegIterator Subs(Reg, this); Subs.isValid(); ++Subs, ++SRI)
38     if (*SRI == Idx)
39       return *Subs;
40   return 0;
41 }
42
43 unsigned MCRegisterInfo::getSubRegIndex(unsigned Reg, unsigned SubReg) const {
44   assert(SubReg && SubReg < getNumRegs() && "This is not a register");
45   // Get a pointer to the corresponding SubRegIndices list. This list has the
46   // name of each sub-register in the same order as MCSubRegIterator.
47   const uint16_t *SRI = SubRegIndices + get(Reg).SubRegIndices;
48   for (MCSubRegIterator Subs(Reg, this); Subs.isValid(); ++Subs, ++SRI)
49     if (*Subs == SubReg)
50       return *SRI;
51   return 0;
52 }
53
54 unsigned MCRegisterInfo::getSubRegIdxSize(unsigned Idx) const {
55   assert(Idx && Idx < getNumSubRegIndices() &&
56          "This is not a subregister index");
57   return SubRegIdxRanges[Idx].Size;
58 }
59
60 unsigned MCRegisterInfo::getSubRegIdxOffset(unsigned Idx) const {
61   assert(Idx && Idx < getNumSubRegIndices() &&
62          "This is not a subregister index");
63   return SubRegIdxRanges[Idx].Offset;
64 }
65
66 int MCRegisterInfo::getDwarfRegNum(unsigned RegNum, bool isEH) const {
67   const DwarfLLVMRegPair *M = isEH ? EHL2DwarfRegs : L2DwarfRegs;
68   unsigned Size = isEH ? EHL2DwarfRegsSize : L2DwarfRegsSize;
69
70   if (!M)
71     return -1;
72   DwarfLLVMRegPair Key = { RegNum, 0 };
73   const DwarfLLVMRegPair *I = std::lower_bound(M, M+Size, Key);
74   if (I == M+Size || I->FromReg != RegNum)
75     return -1;
76   return I->ToReg;
77 }
78
79 int MCRegisterInfo::getLLVMRegNum(unsigned RegNum, bool isEH) const {
80   const DwarfLLVMRegPair *M = isEH ? EHDwarf2LRegs : Dwarf2LRegs;
81   unsigned Size = isEH ? EHDwarf2LRegsSize : Dwarf2LRegsSize;
82
83   if (!M)
84     return -1;
85   DwarfLLVMRegPair Key = { RegNum, 0 };
86   const DwarfLLVMRegPair *I = std::lower_bound(M, M+Size, Key);
87   assert(I != M+Size && I->FromReg == RegNum && "Invalid RegNum");
88   return I->ToReg;
89 }
90
91 int MCRegisterInfo::getSEHRegNum(unsigned RegNum) const {
92   const DenseMap<unsigned, int>::const_iterator I = L2SEHRegs.find(RegNum);
93   if (I == L2SEHRegs.end()) return (int)RegNum;
94   return I->second;
95 }
96
97 int MCRegisterInfo::getCodeViewRegNum(unsigned RegNum) const {
98   if (L2CVRegs.empty())
99     report_fatal_error("target does not implement codeview register mapping");
100   const DenseMap<unsigned, int>::const_iterator I = L2CVRegs.find(RegNum);
101   if (I == L2CVRegs.end())
102     report_fatal_error("unknown codeview register");
103   return I->second;
104 }