blob: 8e6c9e69b223dea5a81d5a86a251d15f209eff18 [file] [log] [blame]
Daniel Sanders23e98772014-11-02 16:09:29 +00001//===---- MipsABIInfo.cpp - Information about MIPS ABI's ------------------===//
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#include "MipsABIInfo.h"
11#include "MipsRegisterInfo.h"
Eric Christophera5762812015-01-26 17:33:46 +000012#include "llvm/ADT/StringRef.h"
13#include "llvm/ADT/StringSwitch.h"
14#include "llvm/MC/MCTargetOptions.h"
Daniel Sanders23e98772014-11-02 16:09:29 +000015
16using namespace llvm;
17
18namespace {
19static const MCPhysReg O32IntRegs[4] = {Mips::A0, Mips::A1, Mips::A2, Mips::A3};
20
21static const MCPhysReg Mips64IntRegs[8] = {
22 Mips::A0_64, Mips::A1_64, Mips::A2_64, Mips::A3_64,
23 Mips::T0_64, Mips::T1_64, Mips::T2_64, Mips::T3_64};
24}
25
26const ArrayRef<MCPhysReg> MipsABIInfo::GetByValArgRegs() const {
27 if (IsO32())
28 return makeArrayRef(O32IntRegs);
29 if (IsN32() || IsN64())
30 return makeArrayRef(Mips64IntRegs);
31 llvm_unreachable("Unhandled ABI");
32}
Daniel Sandersd7eba312014-11-07 12:21:37 +000033
34const ArrayRef<MCPhysReg> MipsABIInfo::GetVarArgRegs() const {
35 if (IsO32())
36 return makeArrayRef(O32IntRegs);
37 if (IsN32() || IsN64())
38 return makeArrayRef(Mips64IntRegs);
39 llvm_unreachable("Unhandled ABI");
40}
Daniel Sanders2c6f4b42014-11-07 15:03:53 +000041
42unsigned MipsABIInfo::GetCalleeAllocdArgSizeInBytes(CallingConv::ID CC) const {
43 if (IsO32())
44 return CC != CallingConv::Fast ? 16 : 0;
45 if (IsN32() || IsN64() || IsEABI())
46 return 0;
47 llvm_unreachable("Unhandled ABI");
48}
Eric Christophera5762812015-01-26 17:33:46 +000049
Daniel Sandersc81f4502015-06-16 15:44:21 +000050MipsABIInfo MipsABIInfo::computeTargetABI(const Triple &TT, StringRef CPU,
Eric Christophera5762812015-01-26 17:33:46 +000051 const MCTargetOptions &Options) {
52 if (Options.getABIName().startswith("o32"))
53 return MipsABIInfo::O32();
54 else if (Options.getABIName().startswith("n32"))
55 return MipsABIInfo::N32();
56 else if (Options.getABIName().startswith("n64"))
57 return MipsABIInfo::N64();
58 else if (Options.getABIName().startswith("eabi"))
59 return MipsABIInfo::EABI();
60 else if (!Options.getABIName().empty())
61 llvm_unreachable("Unknown ABI option for MIPS");
62
63 // FIXME: This shares code with the selectMipsCPU routine that's
64 // used and not shared in a couple of other places. This needs unifying
65 // at some level.
66 if (CPU.empty() || CPU == "generic") {
67 if (TT.getArch() == Triple::mips || TT.getArch() == Triple::mipsel)
68 CPU = "mips32";
69 else
70 CPU = "mips64";
71 }
72
73 return StringSwitch<MipsABIInfo>(CPU)
74 .Case("mips1", MipsABIInfo::O32())
75 .Case("mips2", MipsABIInfo::O32())
76 .Case("mips32", MipsABIInfo::O32())
77 .Case("mips32r2", MipsABIInfo::O32())
Daniel Sanders17793142015-02-18 16:24:50 +000078 .Case("mips32r3", MipsABIInfo::O32())
79 .Case("mips32r5", MipsABIInfo::O32())
Eric Christophera5762812015-01-26 17:33:46 +000080 .Case("mips32r6", MipsABIInfo::O32())
81 .Case("mips16", MipsABIInfo::O32())
82 .Case("mips3", MipsABIInfo::N64())
83 .Case("mips4", MipsABIInfo::N64())
84 .Case("mips5", MipsABIInfo::N64())
85 .Case("mips64", MipsABIInfo::N64())
86 .Case("mips64r2", MipsABIInfo::N64())
Daniel Sanders17793142015-02-18 16:24:50 +000087 .Case("mips64r3", MipsABIInfo::N64())
88 .Case("mips64r5", MipsABIInfo::N64())
Eric Christophera5762812015-01-26 17:33:46 +000089 .Case("mips64r6", MipsABIInfo::N64())
90 .Case("octeon", MipsABIInfo::N64())
91 .Default(MipsABIInfo::Unknown());
92}
Daniel Sanders81eb66c2015-04-17 09:50:21 +000093
94unsigned MipsABIInfo::GetStackPtr() const {
95 return ArePtrs64bit() ? Mips::SP_64 : Mips::SP;
96}
97
98unsigned MipsABIInfo::GetFramePtr() const {
99 return ArePtrs64bit() ? Mips::FP_64 : Mips::FP;
100}
101
Vasileios Kalintirisbb698c72015-06-02 13:14:46 +0000102unsigned MipsABIInfo::GetBasePtr() const {
103 return ArePtrs64bit() ? Mips::S7_64 : Mips::S7;
104}
105
Daniel Sanders81eb66c2015-04-17 09:50:21 +0000106unsigned MipsABIInfo::GetNullPtr() const {
107 return ArePtrs64bit() ? Mips::ZERO_64 : Mips::ZERO;
108}
109
110unsigned MipsABIInfo::GetPtrAdduOp() const {
111 return ArePtrs64bit() ? Mips::DADDu : Mips::ADDu;
112}
113
114unsigned MipsABIInfo::GetPtrAddiuOp() const {
115 return ArePtrs64bit() ? Mips::DADDiu : Mips::ADDiu;
116}
117
118unsigned MipsABIInfo::GetEhDataReg(unsigned I) const {
119 static const unsigned EhDataReg[] = {
120 Mips::A0, Mips::A1, Mips::A2, Mips::A3
121 };
122 static const unsigned EhDataReg64[] = {
123 Mips::A0_64, Mips::A1_64, Mips::A2_64, Mips::A3_64
124 };
125
126 return IsN64() ? EhDataReg64[I] : EhDataReg[I];
127}
128