blob: dcf80fafb905bc1d8b8f991b827996967f57cb8e [file] [log] [blame]
Diana Picus22274932016-11-11 08:27:37 +00001//===- ARMLegalizerInfo.cpp --------------------------------------*- C++ -*-==//
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/// \file
10/// This file implements the targeting of the Machinelegalizer class for ARM.
11/// \todo This should be generated by TableGen.
12//===----------------------------------------------------------------------===//
13
14#include "ARMLegalizerInfo.h"
Diana Picus02e11012017-06-15 10:53:31 +000015#include "ARMCallLowering.h"
Diana Picus7cab0782017-02-17 11:25:17 +000016#include "ARMSubtarget.h"
Diana Picusf53865d2017-04-24 09:12:19 +000017#include "llvm/CodeGen/GlobalISel/LegalizerHelper.h"
Diana Picus02e11012017-06-15 10:53:31 +000018#include "llvm/CodeGen/LowLevelType.h"
Diana Picusf53865d2017-04-24 09:12:19 +000019#include "llvm/CodeGen/MachineRegisterInfo.h"
David Blaikieb3bde2e2017-11-17 01:07:10 +000020#include "llvm/CodeGen/TargetOpcodes.h"
Diana Picus22274932016-11-11 08:27:37 +000021#include "llvm/CodeGen/ValueTypes.h"
22#include "llvm/IR/DerivedTypes.h"
23#include "llvm/IR/Type.h"
Diana Picus22274932016-11-11 08:27:37 +000024
25using namespace llvm;
Daniel Sanders9ade5592018-01-29 17:37:29 +000026using namespace LegalizeActions;
Diana Picus22274932016-11-11 08:27:37 +000027
Kristof Beylsaf9814a2017-11-07 10:34:34 +000028/// FIXME: The following static functions are SizeChangeStrategy functions
29/// that are meant to temporarily mimic the behaviour of the old legalization
30/// based on doubling/halving non-legal types as closely as possible. This is
31/// not entirly possible as only legalizing the types that are exactly a power
32/// of 2 times the size of the legal types would require specifying all those
33/// sizes explicitly.
34/// In practice, not specifying those isn't a problem, and the below functions
35/// should disappear quickly as we add support for legalizing non-power-of-2
36/// sized types further.
37static void
38addAndInterleaveWithUnsupported(LegalizerInfo::SizeAndActionsVec &result,
39 const LegalizerInfo::SizeAndActionsVec &v) {
40 for (unsigned i = 0; i < v.size(); ++i) {
41 result.push_back(v[i]);
42 if (i + 1 < v[i].first && i + 1 < v.size() &&
43 v[i + 1].first != v[i].first + 1)
Daniel Sanders9ade5592018-01-29 17:37:29 +000044 result.push_back({v[i].first + 1, Unsupported});
Kristof Beylsaf9814a2017-11-07 10:34:34 +000045 }
46}
47
48static LegalizerInfo::SizeAndActionsVec
49widen_8_16(const LegalizerInfo::SizeAndActionsVec &v) {
50 assert(v.size() >= 1);
51 assert(v[0].first > 17);
Daniel Sanders9ade5592018-01-29 17:37:29 +000052 LegalizerInfo::SizeAndActionsVec result = {{1, Unsupported},
53 {8, WidenScalar},
54 {9, Unsupported},
55 {16, WidenScalar},
56 {17, Unsupported}};
Kristof Beylsaf9814a2017-11-07 10:34:34 +000057 addAndInterleaveWithUnsupported(result, v);
58 auto Largest = result.back().first;
Daniel Sanders9ade5592018-01-29 17:37:29 +000059 result.push_back({Largest + 1, Unsupported});
Kristof Beylsaf9814a2017-11-07 10:34:34 +000060 return result;
61}
62
Diana Picus3e8851a2017-07-05 11:53:51 +000063static bool AEABI(const ARMSubtarget &ST) {
64 return ST.isTargetAEABI() || ST.isTargetGNUAEABI() || ST.isTargetMuslAEABI();
65}
66
Diana Picus7cab0782017-02-17 11:25:17 +000067ARMLegalizerInfo::ARMLegalizerInfo(const ARMSubtarget &ST) {
Diana Picus812caee2016-12-16 12:54:46 +000068 using namespace TargetOpcode;
Diana Picus5a724452016-12-19 14:07:56 +000069
Diana Picus519807f2016-12-19 11:26:31 +000070 const LLT p0 = LLT::pointer(0, 32);
Diana Picus5a724452016-12-19 14:07:56 +000071
Diana Picusd83df5d2017-01-25 08:47:40 +000072 const LLT s1 = LLT::scalar(1);
Diana Picus5a724452016-12-19 14:07:56 +000073 const LLT s8 = LLT::scalar(8);
74 const LLT s16 = LLT::scalar(16);
Diana Picus812caee2016-12-16 12:54:46 +000075 const LLT s32 = LLT::scalar(32);
Diana Picus21c3d8e2017-02-16 09:09:49 +000076 const LLT s64 = LLT::scalar(64);
Diana Picus812caee2016-12-16 12:54:46 +000077
Diana Picus1d4421f2018-01-31 14:55:07 +000078 getActionDefinitionsBuilder(G_GLOBAL_VALUE).legalFor({p0});
79 getActionDefinitionsBuilder(G_FRAME_INDEX).legalFor({p0});
Diana Picus519807f2016-12-19 11:26:31 +000080
Diana Picus1d4421f2018-01-31 14:55:07 +000081 getActionDefinitionsBuilder({G_ADD, G_SUB, G_MUL, G_AND, G_OR, G_XOR})
82 .legalFor({s32})
83 .minScalar(0, s32);
Diana Picus519807f2016-12-19 11:26:31 +000084
Diana Picus1d4421f2018-01-31 14:55:07 +000085 if (ST.hasDivideInARMMode())
86 getActionDefinitionsBuilder({G_SDIV, G_UDIV})
87 .legalFor({s32})
88 .clampScalar(0, s32, s32);
89 else
90 getActionDefinitionsBuilder({G_SDIV, G_UDIV})
91 .libcallFor({s32})
92 .clampScalar(0, s32, s32);
Diana Picusb70e88b2017-04-24 08:20:05 +000093
Diana Picusda25d5b2017-07-18 10:07:01 +000094 for (unsigned Op : {G_SREM, G_UREM}) {
Kristof Beylsaf9814a2017-11-07 10:34:34 +000095 setLegalizeScalarToDifferentSizeStrategy(Op, 0, widen_8_16);
Diana Picus02e11012017-06-15 10:53:31 +000096 if (ST.hasDivideInARMMode())
97 setAction({Op, s32}, Lower);
Diana Picus3e8851a2017-07-05 11:53:51 +000098 else if (AEABI(ST))
Diana Picus02e11012017-06-15 10:53:31 +000099 setAction({Op, s32}, Custom);
100 else
101 setAction({Op, s32}, Libcall);
Diana Picusda25d5b2017-07-18 10:07:01 +0000102 }
Diana Picus02e11012017-06-15 10:53:31 +0000103
Diana Picus1d4421f2018-01-31 14:55:07 +0000104 getActionDefinitionsBuilder({G_SEXT, G_ZEXT, G_ANYEXT}).legalFor({s32});
Diana Picus8b6c6be2017-01-25 08:10:40 +0000105
Diana Picus1d4421f2018-01-31 14:55:07 +0000106 getActionDefinitionsBuilder(G_INTTOPTR).legalFor({{p0, s32}});
107 getActionDefinitionsBuilder(G_PTRTOINT).legalFor({{s32, p0}});
Diana Picus28a6d0e2017-12-22 13:05:51 +0000108
Diana Picus1d4421f2018-01-31 14:55:07 +0000109 getActionDefinitionsBuilder({G_ASHR, G_LSHR, G_SHL}).legalFor({s32});
Diana Picus28a6d0e2017-12-22 13:05:51 +0000110
Diana Picus1d4421f2018-01-31 14:55:07 +0000111 getActionDefinitionsBuilder(G_GEP).legalFor({{p0, s32}});
Diana Picus2c957302017-10-06 14:30:05 +0000112
Diana Picus1d4421f2018-01-31 14:55:07 +0000113 getActionDefinitionsBuilder(G_SELECT).legalForCartesianProduct({s32, p0},
114 {s1});
Diana Picus8598b172017-02-28 09:02:42 +0000115
Diana Picus1d4421f2018-01-31 14:55:07 +0000116 getActionDefinitionsBuilder(G_BRCOND).legalFor({s1});
Diana Picus7145d222017-06-27 09:19:51 +0000117
Diana Picus1d4421f2018-01-31 14:55:07 +0000118 getActionDefinitionsBuilder(G_CONSTANT)
119 .legalFor({s32, p0})
120 .clampScalar(0, s32, s32);
Diana Picus87a70672017-07-14 09:46:06 +0000121
Diana Picus1d4421f2018-01-31 14:55:07 +0000122 getActionDefinitionsBuilder(G_ICMP)
123 .legalForCartesianProduct({s1}, {s32, p0})
124 .minScalar(1, s32);
Diana Picusc768bbe2018-01-04 13:09:14 +0000125
Diana Picus1d4421f2018-01-31 14:55:07 +0000126 // We're keeping these builders around because we'll want to add support for
127 // floating point to them.
Diana Picus12ed95e2018-01-31 15:16:17 +0000128 auto &LoadStoreBuilder =
129 getActionDefinitionsBuilder({G_LOAD, G_STORE})
130 .legalForCartesianProduct({s1, s8, s16, s32, p0}, {p0});
Diana Picuse6beac62017-02-28 11:33:46 +0000131
Diana Picus12ed95e2018-01-31 15:16:17 +0000132 auto &PhiBuilder =
133 getActionDefinitionsBuilder(G_PHI).legalFor({s32, p0}).minScalar(0, s32);
Diana Picus621894a2017-06-19 09:40:51 +0000134
Diana Picusa5bab612017-04-07 09:41:39 +0000135 if (!ST.useSoftFloat() && ST.hasVFP2()) {
Diana Picus1d4421f2018-01-31 14:55:07 +0000136 getActionDefinitionsBuilder(
137 {G_FADD, G_FSUB, G_FMUL, G_FDIV, G_FCONSTANT, G_FNEG})
138 .legalFor({s32, s64});
Diana Picus7cab0782017-02-17 11:25:17 +0000139
Diana Picus1d4421f2018-01-31 14:55:07 +0000140 LoadStoreBuilder.legalFor({{s64, p0}});
141 PhiBuilder.legalFor({s64});
Diana Picusd0104ea2017-07-06 09:09:33 +0000142
Diana Picus1d4421f2018-01-31 14:55:07 +0000143 getActionDefinitionsBuilder(G_FCMP).legalForCartesianProduct({s1},
144 {s32, s64});
Diana Picusc768bbe2018-01-04 13:09:14 +0000145
Diana Picus1d4421f2018-01-31 14:55:07 +0000146 getActionDefinitionsBuilder(G_MERGE_VALUES).legalFor({{s64, s32}});
147 getActionDefinitionsBuilder(G_UNMERGE_VALUES).legalFor({{s32, s64}});
Diana Picus8ee540c2017-12-18 13:22:28 +0000148
Diana Picus1d4421f2018-01-31 14:55:07 +0000149 getActionDefinitionsBuilder(G_FPEXT).legalFor({{s64, s32}});
150 getActionDefinitionsBuilder(G_FPTRUNC).legalFor({{s32, s64}});
Diana Picus65ed3642018-01-17 13:34:10 +0000151
Diana Picus1d4421f2018-01-31 14:55:07 +0000152 getActionDefinitionsBuilder({G_FPTOSI, G_FPTOUI})
153 .legalForCartesianProduct({s32}, {s32, s64});
154 getActionDefinitionsBuilder({G_SITOFP, G_UITOFP})
155 .legalForCartesianProduct({s32, s64}, {s32});
Diana Picus1314a282017-04-11 10:52:34 +0000156 } else {
Diana Picus1d4421f2018-01-31 14:55:07 +0000157 getActionDefinitionsBuilder({G_FADD, G_FSUB, G_FMUL, G_FDIV})
158 .libcallFor({s32, s64});
Diana Picusd0104ea2017-07-06 09:09:33 +0000159
Diana Picus1d4421f2018-01-31 14:55:07 +0000160 LoadStoreBuilder.maxScalar(0, s32);
161
162 for (auto Ty : {s32, s64})
Diana Picusf949a0a2018-01-10 10:45:34 +0000163 setAction({G_FNEG, Ty}, Lower);
Diana Picus8f148862018-01-10 10:01:49 +0000164
Diana Picus1d4421f2018-01-31 14:55:07 +0000165 getActionDefinitionsBuilder(G_FCONSTANT).customFor({s32, s64});
Diana Picusd0104ea2017-07-06 09:09:33 +0000166
Diana Picus1d4421f2018-01-31 14:55:07 +0000167 getActionDefinitionsBuilder(G_FCMP).customForCartesianProduct({s1},
168 {s32, s64});
Diana Picus517531e2018-01-30 09:15:17 +0000169
Diana Picusd0104ea2017-07-06 09:09:33 +0000170 if (AEABI(ST))
171 setFCmpLibcallsAEABI();
172 else
173 setFCmpLibcallsGNU();
Diana Picus1d4421f2018-01-31 14:55:07 +0000174
175 getActionDefinitionsBuilder(G_FPEXT).libcallFor({s64, s32});
176 getActionDefinitionsBuilder(G_FPTRUNC).libcallFor({s32, s64});
177
178 getActionDefinitionsBuilder({G_FPTOSI, G_FPTOUI})
179 .libcallForCartesianProduct({s32}, {s32, s64});
180 getActionDefinitionsBuilder({G_SITOFP, G_UITOFP})
181 .libcallForCartesianProduct({s32, s64}, {s32});
Diana Picus7cab0782017-02-17 11:25:17 +0000182 }
Diana Picus4fa83c02017-02-08 13:23:04 +0000183
Diana Picuse74243d2018-01-12 11:30:45 +0000184 if (!ST.useSoftFloat() && ST.hasVFP4())
Diana Picus1d4421f2018-01-31 14:55:07 +0000185 getActionDefinitionsBuilder(G_FMA).legalFor({s32, s64});
Diana Picuse74243d2018-01-12 11:30:45 +0000186 else
Diana Picus1d4421f2018-01-31 14:55:07 +0000187 getActionDefinitionsBuilder(G_FMA).libcallFor({s32, s64});
Diana Picuse74243d2018-01-12 11:30:45 +0000188
Diana Picus1d4421f2018-01-31 14:55:07 +0000189 getActionDefinitionsBuilder({G_FREM, G_FPOW}).libcallFor({s32, s64});
Diana Picusa5bab612017-04-07 09:41:39 +0000190
Diana Picus22274932016-11-11 08:27:37 +0000191 computeTables();
192}
Diana Picusf53865d2017-04-24 09:12:19 +0000193
Diana Picusd0104ea2017-07-06 09:09:33 +0000194void ARMLegalizerInfo::setFCmpLibcallsAEABI() {
195 // FCMP_TRUE and FCMP_FALSE don't need libcalls, they should be
196 // default-initialized.
197 FCmp32Libcalls.resize(CmpInst::LAST_FCMP_PREDICATE + 1);
198 FCmp32Libcalls[CmpInst::FCMP_OEQ] = {
199 {RTLIB::OEQ_F32, CmpInst::BAD_ICMP_PREDICATE}};
200 FCmp32Libcalls[CmpInst::FCMP_OGE] = {
201 {RTLIB::OGE_F32, CmpInst::BAD_ICMP_PREDICATE}};
202 FCmp32Libcalls[CmpInst::FCMP_OGT] = {
203 {RTLIB::OGT_F32, CmpInst::BAD_ICMP_PREDICATE}};
204 FCmp32Libcalls[CmpInst::FCMP_OLE] = {
205 {RTLIB::OLE_F32, CmpInst::BAD_ICMP_PREDICATE}};
206 FCmp32Libcalls[CmpInst::FCMP_OLT] = {
207 {RTLIB::OLT_F32, CmpInst::BAD_ICMP_PREDICATE}};
208 FCmp32Libcalls[CmpInst::FCMP_ORD] = {{RTLIB::O_F32, CmpInst::ICMP_EQ}};
209 FCmp32Libcalls[CmpInst::FCMP_UGE] = {{RTLIB::OLT_F32, CmpInst::ICMP_EQ}};
210 FCmp32Libcalls[CmpInst::FCMP_UGT] = {{RTLIB::OLE_F32, CmpInst::ICMP_EQ}};
211 FCmp32Libcalls[CmpInst::FCMP_ULE] = {{RTLIB::OGT_F32, CmpInst::ICMP_EQ}};
212 FCmp32Libcalls[CmpInst::FCMP_ULT] = {{RTLIB::OGE_F32, CmpInst::ICMP_EQ}};
213 FCmp32Libcalls[CmpInst::FCMP_UNE] = {{RTLIB::UNE_F32, CmpInst::ICMP_EQ}};
214 FCmp32Libcalls[CmpInst::FCMP_UNO] = {
215 {RTLIB::UO_F32, CmpInst::BAD_ICMP_PREDICATE}};
216 FCmp32Libcalls[CmpInst::FCMP_ONE] = {
217 {RTLIB::OGT_F32, CmpInst::BAD_ICMP_PREDICATE},
218 {RTLIB::OLT_F32, CmpInst::BAD_ICMP_PREDICATE}};
219 FCmp32Libcalls[CmpInst::FCMP_UEQ] = {
220 {RTLIB::OEQ_F32, CmpInst::BAD_ICMP_PREDICATE},
221 {RTLIB::UO_F32, CmpInst::BAD_ICMP_PREDICATE}};
Diana Picusb57bba82017-07-11 08:50:01 +0000222
223 FCmp64Libcalls.resize(CmpInst::LAST_FCMP_PREDICATE + 1);
224 FCmp64Libcalls[CmpInst::FCMP_OEQ] = {
225 {RTLIB::OEQ_F64, CmpInst::BAD_ICMP_PREDICATE}};
226 FCmp64Libcalls[CmpInst::FCMP_OGE] = {
227 {RTLIB::OGE_F64, CmpInst::BAD_ICMP_PREDICATE}};
228 FCmp64Libcalls[CmpInst::FCMP_OGT] = {
229 {RTLIB::OGT_F64, CmpInst::BAD_ICMP_PREDICATE}};
230 FCmp64Libcalls[CmpInst::FCMP_OLE] = {
231 {RTLIB::OLE_F64, CmpInst::BAD_ICMP_PREDICATE}};
232 FCmp64Libcalls[CmpInst::FCMP_OLT] = {
233 {RTLIB::OLT_F64, CmpInst::BAD_ICMP_PREDICATE}};
234 FCmp64Libcalls[CmpInst::FCMP_ORD] = {{RTLIB::O_F64, CmpInst::ICMP_EQ}};
235 FCmp64Libcalls[CmpInst::FCMP_UGE] = {{RTLIB::OLT_F64, CmpInst::ICMP_EQ}};
236 FCmp64Libcalls[CmpInst::FCMP_UGT] = {{RTLIB::OLE_F64, CmpInst::ICMP_EQ}};
237 FCmp64Libcalls[CmpInst::FCMP_ULE] = {{RTLIB::OGT_F64, CmpInst::ICMP_EQ}};
238 FCmp64Libcalls[CmpInst::FCMP_ULT] = {{RTLIB::OGE_F64, CmpInst::ICMP_EQ}};
239 FCmp64Libcalls[CmpInst::FCMP_UNE] = {{RTLIB::UNE_F64, CmpInst::ICMP_EQ}};
240 FCmp64Libcalls[CmpInst::FCMP_UNO] = {
241 {RTLIB::UO_F64, CmpInst::BAD_ICMP_PREDICATE}};
242 FCmp64Libcalls[CmpInst::FCMP_ONE] = {
243 {RTLIB::OGT_F64, CmpInst::BAD_ICMP_PREDICATE},
244 {RTLIB::OLT_F64, CmpInst::BAD_ICMP_PREDICATE}};
245 FCmp64Libcalls[CmpInst::FCMP_UEQ] = {
246 {RTLIB::OEQ_F64, CmpInst::BAD_ICMP_PREDICATE},
247 {RTLIB::UO_F64, CmpInst::BAD_ICMP_PREDICATE}};
Diana Picusd0104ea2017-07-06 09:09:33 +0000248}
249
250void ARMLegalizerInfo::setFCmpLibcallsGNU() {
251 // FCMP_TRUE and FCMP_FALSE don't need libcalls, they should be
252 // default-initialized.
253 FCmp32Libcalls.resize(CmpInst::LAST_FCMP_PREDICATE + 1);
254 FCmp32Libcalls[CmpInst::FCMP_OEQ] = {{RTLIB::OEQ_F32, CmpInst::ICMP_EQ}};
255 FCmp32Libcalls[CmpInst::FCMP_OGE] = {{RTLIB::OGE_F32, CmpInst::ICMP_SGE}};
256 FCmp32Libcalls[CmpInst::FCMP_OGT] = {{RTLIB::OGT_F32, CmpInst::ICMP_SGT}};
257 FCmp32Libcalls[CmpInst::FCMP_OLE] = {{RTLIB::OLE_F32, CmpInst::ICMP_SLE}};
258 FCmp32Libcalls[CmpInst::FCMP_OLT] = {{RTLIB::OLT_F32, CmpInst::ICMP_SLT}};
259 FCmp32Libcalls[CmpInst::FCMP_ORD] = {{RTLIB::O_F32, CmpInst::ICMP_EQ}};
260 FCmp32Libcalls[CmpInst::FCMP_UGE] = {{RTLIB::OLT_F32, CmpInst::ICMP_SGE}};
261 FCmp32Libcalls[CmpInst::FCMP_UGT] = {{RTLIB::OLE_F32, CmpInst::ICMP_SGT}};
262 FCmp32Libcalls[CmpInst::FCMP_ULE] = {{RTLIB::OGT_F32, CmpInst::ICMP_SLE}};
263 FCmp32Libcalls[CmpInst::FCMP_ULT] = {{RTLIB::OGE_F32, CmpInst::ICMP_SLT}};
264 FCmp32Libcalls[CmpInst::FCMP_UNE] = {{RTLIB::UNE_F32, CmpInst::ICMP_NE}};
265 FCmp32Libcalls[CmpInst::FCMP_UNO] = {{RTLIB::UO_F32, CmpInst::ICMP_NE}};
266 FCmp32Libcalls[CmpInst::FCMP_ONE] = {{RTLIB::OGT_F32, CmpInst::ICMP_SGT},
267 {RTLIB::OLT_F32, CmpInst::ICMP_SLT}};
268 FCmp32Libcalls[CmpInst::FCMP_UEQ] = {{RTLIB::OEQ_F32, CmpInst::ICMP_EQ},
269 {RTLIB::UO_F32, CmpInst::ICMP_NE}};
Diana Picusb57bba82017-07-11 08:50:01 +0000270
271 FCmp64Libcalls.resize(CmpInst::LAST_FCMP_PREDICATE + 1);
272 FCmp64Libcalls[CmpInst::FCMP_OEQ] = {{RTLIB::OEQ_F64, CmpInst::ICMP_EQ}};
273 FCmp64Libcalls[CmpInst::FCMP_OGE] = {{RTLIB::OGE_F64, CmpInst::ICMP_SGE}};
274 FCmp64Libcalls[CmpInst::FCMP_OGT] = {{RTLIB::OGT_F64, CmpInst::ICMP_SGT}};
275 FCmp64Libcalls[CmpInst::FCMP_OLE] = {{RTLIB::OLE_F64, CmpInst::ICMP_SLE}};
276 FCmp64Libcalls[CmpInst::FCMP_OLT] = {{RTLIB::OLT_F64, CmpInst::ICMP_SLT}};
277 FCmp64Libcalls[CmpInst::FCMP_ORD] = {{RTLIB::O_F64, CmpInst::ICMP_EQ}};
278 FCmp64Libcalls[CmpInst::FCMP_UGE] = {{RTLIB::OLT_F64, CmpInst::ICMP_SGE}};
279 FCmp64Libcalls[CmpInst::FCMP_UGT] = {{RTLIB::OLE_F64, CmpInst::ICMP_SGT}};
280 FCmp64Libcalls[CmpInst::FCMP_ULE] = {{RTLIB::OGT_F64, CmpInst::ICMP_SLE}};
281 FCmp64Libcalls[CmpInst::FCMP_ULT] = {{RTLIB::OGE_F64, CmpInst::ICMP_SLT}};
282 FCmp64Libcalls[CmpInst::FCMP_UNE] = {{RTLIB::UNE_F64, CmpInst::ICMP_NE}};
283 FCmp64Libcalls[CmpInst::FCMP_UNO] = {{RTLIB::UO_F64, CmpInst::ICMP_NE}};
284 FCmp64Libcalls[CmpInst::FCMP_ONE] = {{RTLIB::OGT_F64, CmpInst::ICMP_SGT},
285 {RTLIB::OLT_F64, CmpInst::ICMP_SLT}};
286 FCmp64Libcalls[CmpInst::FCMP_UEQ] = {{RTLIB::OEQ_F64, CmpInst::ICMP_EQ},
287 {RTLIB::UO_F64, CmpInst::ICMP_NE}};
Diana Picusd0104ea2017-07-06 09:09:33 +0000288}
289
290ARMLegalizerInfo::FCmpLibcallsList
Diana Picusb57bba82017-07-11 08:50:01 +0000291ARMLegalizerInfo::getFCmpLibcalls(CmpInst::Predicate Predicate,
292 unsigned Size) const {
Diana Picusd0104ea2017-07-06 09:09:33 +0000293 assert(CmpInst::isFPPredicate(Predicate) && "Unsupported FCmp predicate");
Diana Picusb57bba82017-07-11 08:50:01 +0000294 if (Size == 32)
295 return FCmp32Libcalls[Predicate];
296 if (Size == 64)
297 return FCmp64Libcalls[Predicate];
298 llvm_unreachable("Unsupported size for FCmp predicate");
Diana Picusd0104ea2017-07-06 09:09:33 +0000299}
300
Diana Picusf53865d2017-04-24 09:12:19 +0000301bool ARMLegalizerInfo::legalizeCustom(MachineInstr &MI,
302 MachineRegisterInfo &MRI,
303 MachineIRBuilder &MIRBuilder) const {
304 using namespace TargetOpcode;
305
Diana Picusfc1675e2017-07-05 12:57:24 +0000306 MIRBuilder.setInstr(MI);
Diana Picus8f148862018-01-10 10:01:49 +0000307 LLVMContext &Ctx = MIRBuilder.getMF().getFunction().getContext();
Diana Picusfc1675e2017-07-05 12:57:24 +0000308
Diana Picusf53865d2017-04-24 09:12:19 +0000309 switch (MI.getOpcode()) {
310 default:
311 return false;
Diana Picus02e11012017-06-15 10:53:31 +0000312 case G_SREM:
313 case G_UREM: {
314 unsigned OriginalResult = MI.getOperand(0).getReg();
315 auto Size = MRI.getType(OriginalResult).getSizeInBits();
316 if (Size != 32)
317 return false;
318
319 auto Libcall =
320 MI.getOpcode() == G_SREM ? RTLIB::SDIVREM_I32 : RTLIB::UDIVREM_I32;
321
322 // Our divmod libcalls return a struct containing the quotient and the
323 // remainder. We need to create a virtual register for it.
Diana Picus02e11012017-06-15 10:53:31 +0000324 Type *ArgTy = Type::getInt32Ty(Ctx);
325 StructType *RetTy = StructType::get(Ctx, {ArgTy, ArgTy}, /* Packed */ true);
326 auto RetVal = MRI.createGenericVirtualRegister(
327 getLLTForType(*RetTy, MIRBuilder.getMF().getDataLayout()));
328
Diana Picusfc1675e2017-07-05 12:57:24 +0000329 auto Status = createLibcall(MIRBuilder, Libcall, {RetVal, RetTy},
330 {{MI.getOperand(1).getReg(), ArgTy},
331 {MI.getOperand(2).getReg(), ArgTy}});
Diana Picus02e11012017-06-15 10:53:31 +0000332 if (Status != LegalizerHelper::Legalized)
333 return false;
334
335 // The remainder is the second result of divmod. Split the return value into
336 // a new, unused register for the quotient and the destination of the
337 // original instruction for the remainder.
338 MIRBuilder.buildUnmerge(
339 {MRI.createGenericVirtualRegister(LLT::scalar(32)), OriginalResult},
340 RetVal);
Diana Picusd0104ea2017-07-06 09:09:33 +0000341 break;
342 }
343 case G_FCMP: {
Diana Picusb57bba82017-07-11 08:50:01 +0000344 assert(MRI.getType(MI.getOperand(2).getReg()) ==
345 MRI.getType(MI.getOperand(3).getReg()) &&
346 "Mismatched operands for G_FCMP");
347 auto OpSize = MRI.getType(MI.getOperand(2).getReg()).getSizeInBits();
Diana Picus02e11012017-06-15 10:53:31 +0000348
Diana Picusd0104ea2017-07-06 09:09:33 +0000349 auto OriginalResult = MI.getOperand(0).getReg();
350 auto Predicate =
351 static_cast<CmpInst::Predicate>(MI.getOperand(1).getPredicate());
Diana Picusb57bba82017-07-11 08:50:01 +0000352 auto Libcalls = getFCmpLibcalls(Predicate, OpSize);
Diana Picusd0104ea2017-07-06 09:09:33 +0000353
354 if (Libcalls.empty()) {
355 assert((Predicate == CmpInst::FCMP_TRUE ||
356 Predicate == CmpInst::FCMP_FALSE) &&
357 "Predicate needs libcalls, but none specified");
358 MIRBuilder.buildConstant(OriginalResult,
359 Predicate == CmpInst::FCMP_TRUE ? 1 : 0);
Diana Picus443135c2017-07-11 09:43:51 +0000360 MI.eraseFromParent();
Diana Picusd0104ea2017-07-06 09:09:33 +0000361 return true;
362 }
363
Diana Picusb57bba82017-07-11 08:50:01 +0000364 assert((OpSize == 32 || OpSize == 64) && "Unsupported operand size");
365 auto *ArgTy = OpSize == 32 ? Type::getFloatTy(Ctx) : Type::getDoubleTy(Ctx);
Diana Picusd0104ea2017-07-06 09:09:33 +0000366 auto *RetTy = Type::getInt32Ty(Ctx);
367
368 SmallVector<unsigned, 2> Results;
369 for (auto Libcall : Libcalls) {
370 auto LibcallResult = MRI.createGenericVirtualRegister(LLT::scalar(32));
371 auto Status =
372 createLibcall(MIRBuilder, Libcall.LibcallID, {LibcallResult, RetTy},
373 {{MI.getOperand(2).getReg(), ArgTy},
374 {MI.getOperand(3).getReg(), ArgTy}});
375
376 if (Status != LegalizerHelper::Legalized)
377 return false;
378
379 auto ProcessedResult =
380 Libcalls.size() == 1
381 ? OriginalResult
382 : MRI.createGenericVirtualRegister(MRI.getType(OriginalResult));
383
384 // We have a result, but we need to transform it into a proper 1-bit 0 or
385 // 1, taking into account the different peculiarities of the values
386 // returned by the comparison functions.
387 CmpInst::Predicate ResultPred = Libcall.Predicate;
388 if (ResultPred == CmpInst::BAD_ICMP_PREDICATE) {
389 // We have a nice 0 or 1, and we just need to truncate it back to 1 bit
390 // to keep the types consistent.
391 MIRBuilder.buildTrunc(ProcessedResult, LibcallResult);
392 } else {
393 // We need to compare against 0.
394 assert(CmpInst::isIntPredicate(ResultPred) && "Unsupported predicate");
395 auto Zero = MRI.createGenericVirtualRegister(LLT::scalar(32));
396 MIRBuilder.buildConstant(Zero, 0);
397 MIRBuilder.buildICmp(ResultPred, ProcessedResult, LibcallResult, Zero);
398 }
399 Results.push_back(ProcessedResult);
400 }
401
402 if (Results.size() != 1) {
403 assert(Results.size() == 2 && "Unexpected number of results");
404 MIRBuilder.buildOr(OriginalResult, Results[0], Results[1]);
405 }
Diana Picusfc1675e2017-07-05 12:57:24 +0000406 break;
Diana Picus02e11012017-06-15 10:53:31 +0000407 }
Diana Picus8f148862018-01-10 10:01:49 +0000408 case G_FCONSTANT: {
409 // Convert to integer constants, while preserving the binary representation.
410 auto AsInteger =
411 MI.getOperand(1).getFPImm()->getValueAPF().bitcastToAPInt();
412 MIRBuilder.buildConstant(MI.getOperand(0).getReg(),
413 *ConstantInt::get(Ctx, AsInteger));
414 break;
415 }
Diana Picusf53865d2017-04-24 09:12:19 +0000416 }
Diana Picusfc1675e2017-07-05 12:57:24 +0000417
418 MI.eraseFromParent();
419 return true;
Diana Picusf53865d2017-04-24 09:12:19 +0000420}