2019-08-06 19:18:29 +02:00
|
|
|
//===- lib/CodeGen/GlobalISel/GISelKnownBits.cpp --------------*- C++ *-===//
|
|
|
|
//
|
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
/// Provides analysis for querying information about KnownBits during GISel
|
|
|
|
/// passes.
|
|
|
|
//
|
|
|
|
//===------------------
|
|
|
|
#include "llvm/CodeGen/GlobalISel/GISelKnownBits.h"
|
|
|
|
#include "llvm/Analysis/ValueTracking.h"
|
|
|
|
#include "llvm/CodeGen/GlobalISel/Utils.h"
|
|
|
|
#include "llvm/CodeGen/MachineFrameInfo.h"
|
|
|
|
#include "llvm/CodeGen/MachineRegisterInfo.h"
|
|
|
|
#include "llvm/CodeGen/TargetLowering.h"
|
|
|
|
#include "llvm/CodeGen/TargetOpcodes.h"
|
|
|
|
|
|
|
|
#define DEBUG_TYPE "gisel-known-bits"
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
char llvm::GISelKnownBitsAnalysis::ID = 0;
|
|
|
|
|
2020-01-21 20:07:15 +01:00
|
|
|
INITIALIZE_PASS(GISelKnownBitsAnalysis, DEBUG_TYPE,
|
|
|
|
"Analysis for ComputingKnownBits", false, true)
|
2019-08-06 19:18:29 +02:00
|
|
|
|
2020-01-21 20:07:15 +01:00
|
|
|
GISelKnownBits::GISelKnownBits(MachineFunction &MF, unsigned MaxDepth)
|
2019-08-06 19:18:29 +02:00
|
|
|
: MF(MF), MRI(MF.getRegInfo()), TL(*MF.getSubtarget().getTargetLowering()),
|
2020-01-21 20:07:15 +01:00
|
|
|
DL(MF.getFunction().getParent()->getDataLayout()), MaxDepth(MaxDepth) {}
|
2019-08-06 19:18:29 +02:00
|
|
|
|
2020-06-04 04:06:49 +02:00
|
|
|
Align GISelKnownBits::computeKnownAlignment(Register R, unsigned Depth) {
|
|
|
|
const MachineInstr *MI = MRI.getVRegDef(R);
|
|
|
|
switch (MI->getOpcode()) {
|
2020-06-05 21:29:18 +02:00
|
|
|
case TargetOpcode::COPY:
|
|
|
|
return computeKnownAlignment(MI->getOperand(1).getReg(), Depth);
|
2020-06-04 04:06:49 +02:00
|
|
|
case TargetOpcode::G_FRAME_INDEX: {
|
|
|
|
int FrameIdx = MI->getOperand(1).getIndex();
|
|
|
|
return MF.getFrameInfo().getObjectAlign(FrameIdx);
|
|
|
|
}
|
|
|
|
case TargetOpcode::G_INTRINSIC:
|
|
|
|
case TargetOpcode::G_INTRINSIC_W_SIDE_EFFECTS:
|
|
|
|
default:
|
|
|
|
return TL.computeKnownAlignForTargetInstr(*this, R, MRI, Depth + 1);
|
2019-08-06 19:18:29 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
KnownBits GISelKnownBits::getKnownBits(MachineInstr &MI) {
|
2020-06-04 04:06:49 +02:00
|
|
|
assert(MI.getNumExplicitDefs() == 1 &&
|
|
|
|
"expected single return generic instruction");
|
2019-08-06 19:18:29 +02:00
|
|
|
return getKnownBits(MI.getOperand(0).getReg());
|
|
|
|
}
|
|
|
|
|
|
|
|
KnownBits GISelKnownBits::getKnownBits(Register R) {
|
2020-01-22 16:31:03 +01:00
|
|
|
const LLT Ty = MRI.getType(R);
|
2019-08-06 19:18:29 +02:00
|
|
|
APInt DemandedElts =
|
|
|
|
Ty.isVector() ? APInt::getAllOnesValue(Ty.getNumElements()) : APInt(1, 1);
|
2020-01-22 16:31:03 +01:00
|
|
|
return getKnownBits(R, DemandedElts);
|
|
|
|
}
|
|
|
|
|
|
|
|
KnownBits GISelKnownBits::getKnownBits(Register R, const APInt &DemandedElts,
|
|
|
|
unsigned Depth) {
|
2020-02-21 02:51:26 +01:00
|
|
|
// For now, we only maintain the cache during one request.
|
|
|
|
assert(ComputeKnownBitsCache.empty() && "Cache should have been cleared");
|
2020-01-22 16:31:03 +01:00
|
|
|
|
|
|
|
KnownBits Known;
|
2019-08-06 19:18:29 +02:00
|
|
|
computeKnownBitsImpl(R, Known, DemandedElts);
|
2020-02-21 02:51:26 +01:00
|
|
|
ComputeKnownBitsCache.clear();
|
2019-08-06 19:18:29 +02:00
|
|
|
return Known;
|
|
|
|
}
|
|
|
|
|
2019-08-29 19:24:36 +02:00
|
|
|
bool GISelKnownBits::signBitIsZero(Register R) {
|
|
|
|
LLT Ty = MRI.getType(R);
|
|
|
|
unsigned BitWidth = Ty.getScalarSizeInBits();
|
|
|
|
return maskedValueIsZero(R, APInt::getSignMask(BitWidth));
|
|
|
|
}
|
|
|
|
|
2019-08-06 19:18:29 +02:00
|
|
|
APInt GISelKnownBits::getKnownZeroes(Register R) {
|
|
|
|
return getKnownBits(R).Zero;
|
|
|
|
}
|
|
|
|
|
|
|
|
APInt GISelKnownBits::getKnownOnes(Register R) { return getKnownBits(R).One; }
|
|
|
|
|
2020-02-22 06:07:04 +01:00
|
|
|
LLVM_ATTRIBUTE_UNUSED static void
|
|
|
|
dumpResult(const MachineInstr &MI, const KnownBits &Known, unsigned Depth) {
|
2020-02-21 02:51:26 +01:00
|
|
|
dbgs() << "[" << Depth << "] Compute known bits: " << MI << "[" << Depth
|
|
|
|
<< "] Computed for: " << MI << "[" << Depth << "] Known: 0x"
|
|
|
|
<< (Known.Zero | Known.One).toString(16, false) << "\n"
|
|
|
|
<< "[" << Depth << "] Zero: 0x" << Known.Zero.toString(16, false)
|
|
|
|
<< "\n"
|
|
|
|
<< "[" << Depth << "] One: 0x" << Known.One.toString(16, false)
|
|
|
|
<< "\n";
|
|
|
|
}
|
|
|
|
|
2020-08-27 18:40:03 +02:00
|
|
|
/// Compute known bits for the intersection of \p Src0 and \p Src1
|
|
|
|
void GISelKnownBits::computeKnownBitsMin(Register Src0, Register Src1,
|
|
|
|
KnownBits &Known,
|
|
|
|
const APInt &DemandedElts,
|
|
|
|
unsigned Depth) {
|
|
|
|
// Test src1 first, since we canonicalize simpler expressions to the RHS.
|
|
|
|
computeKnownBitsImpl(Src1, Known, DemandedElts, Depth);
|
|
|
|
|
|
|
|
// If we don't know any bits, early out.
|
|
|
|
if (Known.isUnknown())
|
|
|
|
return;
|
|
|
|
|
|
|
|
KnownBits Known2;
|
|
|
|
computeKnownBitsImpl(Src0, Known2, DemandedElts, Depth);
|
|
|
|
|
|
|
|
// Only known if known in both the LHS and RHS.
|
2020-11-11 13:07:38 +01:00
|
|
|
Known = KnownBits::commonBits(Known, Known2);
|
2020-08-27 18:40:03 +02:00
|
|
|
}
|
|
|
|
|
2019-08-06 19:18:29 +02:00
|
|
|
void GISelKnownBits::computeKnownBitsImpl(Register R, KnownBits &Known,
|
|
|
|
const APInt &DemandedElts,
|
|
|
|
unsigned Depth) {
|
|
|
|
MachineInstr &MI = *MRI.getVRegDef(R);
|
|
|
|
unsigned Opcode = MI.getOpcode();
|
|
|
|
LLT DstTy = MRI.getType(R);
|
|
|
|
|
2019-09-05 22:26:02 +02:00
|
|
|
// Handle the case where this is called on a register that does not have a
|
|
|
|
// type constraint (i.e. it has a register class constraint instead). This is
|
|
|
|
// unlikely to occur except by looking through copies but it is possible for
|
|
|
|
// the initial register being queried to be in this state.
|
|
|
|
if (!DstTy.isValid()) {
|
|
|
|
Known = KnownBits();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2019-08-06 19:18:29 +02:00
|
|
|
unsigned BitWidth = DstTy.getSizeInBits();
|
2020-02-21 02:51:26 +01:00
|
|
|
auto CacheEntry = ComputeKnownBitsCache.find(R);
|
|
|
|
if (CacheEntry != ComputeKnownBitsCache.end()) {
|
|
|
|
Known = CacheEntry->second;
|
|
|
|
LLVM_DEBUG(dbgs() << "Cache hit at ");
|
|
|
|
LLVM_DEBUG(dumpResult(MI, Known, Depth));
|
|
|
|
assert(Known.getBitWidth() == BitWidth && "Cache entry size doesn't match");
|
|
|
|
return;
|
|
|
|
}
|
2019-08-06 19:18:29 +02:00
|
|
|
Known = KnownBits(BitWidth); // Don't know anything
|
|
|
|
|
|
|
|
if (DstTy.isVector())
|
|
|
|
return; // TODO: Handle vectors.
|
|
|
|
|
2020-01-31 04:30:39 +01:00
|
|
|
// Depth may get bigger than max depth if it gets passed to a different
|
|
|
|
// GISelKnownBits object.
|
|
|
|
// This may happen when say a generic part uses a GISelKnownBits object
|
|
|
|
// with some max depth, but then we hit TL.computeKnownBitsForTargetInstr
|
|
|
|
// which creates a new GISelKnownBits object with a different and smaller
|
|
|
|
// depth. If we just check for equality, we would never exit if the depth
|
|
|
|
// that is passed down to the target specific GISelKnownBits object is
|
|
|
|
// already bigger than its max depth.
|
|
|
|
if (Depth >= getMaxDepth())
|
2019-08-06 19:18:29 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
if (!DemandedElts)
|
|
|
|
return; // No demanded elts, better to assume we don't know anything.
|
|
|
|
|
|
|
|
KnownBits Known2;
|
|
|
|
|
|
|
|
switch (Opcode) {
|
|
|
|
default:
|
2019-09-30 22:55:53 +02:00
|
|
|
TL.computeKnownBitsForTargetInstr(*this, R, Known, DemandedElts, MRI,
|
|
|
|
Depth);
|
2019-08-06 19:18:29 +02:00
|
|
|
break;
|
2020-01-25 01:15:43 +01:00
|
|
|
case TargetOpcode::COPY:
|
|
|
|
case TargetOpcode::G_PHI:
|
|
|
|
case TargetOpcode::PHI: {
|
|
|
|
Known.One = APInt::getAllOnesValue(BitWidth);
|
|
|
|
Known.Zero = APInt::getAllOnesValue(BitWidth);
|
|
|
|
// Destination registers should not have subregisters at this
|
|
|
|
// point of the pipeline, otherwise the main live-range will be
|
|
|
|
// defined more than once, which is against SSA.
|
|
|
|
assert(MI.getOperand(0).getSubReg() == 0 && "Is this code in SSA?");
|
2020-02-21 02:51:26 +01:00
|
|
|
// Record in the cache that we know nothing for MI.
|
|
|
|
// This will get updated later and in the meantime, if we reach that
|
|
|
|
// phi again, because of a loop, we will cut the search thanks to this
|
2020-02-25 23:03:21 +01:00
|
|
|
// cache entry.
|
|
|
|
// We could actually build up more information on the phi by not cutting
|
|
|
|
// the search, but that additional information is more a side effect
|
|
|
|
// than an intended choice.
|
|
|
|
// Therefore, for now, save on compile time until we derive a proper way
|
|
|
|
// to derive known bits for PHIs within loops.
|
2020-02-21 02:51:26 +01:00
|
|
|
ComputeKnownBitsCache[R] = KnownBits(BitWidth);
|
2020-01-25 01:15:43 +01:00
|
|
|
// PHI's operand are a mix of registers and basic blocks interleaved.
|
|
|
|
// We only care about the register ones.
|
|
|
|
for (unsigned Idx = 1; Idx < MI.getNumOperands(); Idx += 2) {
|
|
|
|
const MachineOperand &Src = MI.getOperand(Idx);
|
|
|
|
Register SrcReg = Src.getReg();
|
|
|
|
// Look through trivial copies and phis but don't look through trivial
|
|
|
|
// copies or phis of the form `%1:(s32) = OP %0:gpr32`, known-bits
|
|
|
|
// analysis is currently unable to determine the bit width of a
|
|
|
|
// register class.
|
|
|
|
//
|
|
|
|
// We can't use NoSubRegister by name as it's defined by each target but
|
|
|
|
// it's always defined to be 0 by tablegen.
|
|
|
|
if (SrcReg.isVirtual() && Src.getSubReg() == 0 /*NoSubRegister*/ &&
|
|
|
|
MRI.getType(SrcReg).isValid()) {
|
|
|
|
// For COPYs we don't do anything, don't increase the depth.
|
|
|
|
computeKnownBitsImpl(SrcReg, Known2, DemandedElts,
|
|
|
|
Depth + (Opcode != TargetOpcode::COPY));
|
2020-11-11 13:07:38 +01:00
|
|
|
Known = KnownBits::commonBits(Known, Known2);
|
[GISel][KnownBits] Give up on PHI analysis as soon as we don't know anything
When analyzing PHIs, we gather the known bits for every operand and
merge them together to get the known bits of the result of the PHI.
It is not unusual that merging the information leads to know nothing
on the result (e.g., phi a: i8 3, b: i8 unknown, ..., after looking at the
second argument we know we will know nothing on the result), thus, as
soon as we reach that state, stop analyzing the following operand (i.e.,
on the previous example, we won't process anything after looking at `b`).
This improves compile time in particular with PHIs with a large number
of operands.
NFC.
2020-02-20 20:27:36 +01:00
|
|
|
// If we reach a point where we don't know anything
|
|
|
|
// just stop looking through the operands.
|
|
|
|
if (Known.One == 0 && Known.Zero == 0)
|
|
|
|
break;
|
2020-01-25 01:15:43 +01:00
|
|
|
} else {
|
|
|
|
// We know nothing.
|
|
|
|
Known = KnownBits(BitWidth);
|
|
|
|
break;
|
|
|
|
}
|
2019-09-04 20:59:43 +02:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2019-08-06 19:18:29 +02:00
|
|
|
case TargetOpcode::G_CONSTANT: {
|
|
|
|
auto CstVal = getConstantVRegVal(R, MRI);
|
2019-09-10 00:51:41 +02:00
|
|
|
if (!CstVal)
|
|
|
|
break;
|
2021-01-13 12:25:35 +01:00
|
|
|
Known = KnownBits::makeConstant(*CstVal);
|
2019-08-06 19:18:29 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TargetOpcode::G_FRAME_INDEX: {
|
2020-06-04 04:06:49 +02:00
|
|
|
int FrameIdx = MI.getOperand(1).getIndex();
|
|
|
|
TL.computeKnownBitsForFrameIndex(FrameIdx, Known, MF);
|
2019-08-06 19:18:29 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TargetOpcode::G_SUB: {
|
2020-01-26 15:34:28 +01:00
|
|
|
computeKnownBitsImpl(MI.getOperand(1).getReg(), Known, DemandedElts,
|
2019-08-06 19:18:29 +02:00
|
|
|
Depth + 1);
|
|
|
|
computeKnownBitsImpl(MI.getOperand(2).getReg(), Known2, DemandedElts,
|
|
|
|
Depth + 1);
|
2020-01-26 15:34:28 +01:00
|
|
|
Known = KnownBits::computeForAddSub(/*Add*/ false, /*NSW*/ false, Known,
|
|
|
|
Known2);
|
2019-08-06 19:18:29 +02:00
|
|
|
break;
|
|
|
|
}
|
2019-08-13 06:32:33 +02:00
|
|
|
case TargetOpcode::G_XOR: {
|
|
|
|
computeKnownBitsImpl(MI.getOperand(2).getReg(), Known, DemandedElts,
|
|
|
|
Depth + 1);
|
|
|
|
computeKnownBitsImpl(MI.getOperand(1).getReg(), Known2, DemandedElts,
|
|
|
|
Depth + 1);
|
|
|
|
|
2020-02-05 17:15:53 +01:00
|
|
|
Known ^= Known2;
|
2019-08-13 06:32:33 +02:00
|
|
|
break;
|
|
|
|
}
|
[globalisel] Rename G_GEP to G_PTR_ADD
Summary:
G_GEP is rather poorly named. It's a simple pointer+scalar addition and
doesn't support any of the complexities of getelementptr. I therefore
propose that we rename it. There's a G_PTR_MASK so let's follow that
convention and go with G_PTR_ADD
Reviewers: volkan, aditya_nandakumar, bogner, rovka, arsenm
Subscribers: sdardis, jvesely, wdng, nhaehnle, hiraditya, jrtc27, atanasyan, arphaman, Petar.Avramovic, llvm-commits
Tags: #llvm
Differential Revision: https://reviews.llvm.org/D69734
2019-11-01 21:18:00 +01:00
|
|
|
case TargetOpcode::G_PTR_ADD: {
|
|
|
|
// G_PTR_ADD is like G_ADD. FIXME: Is this true for all targets?
|
2019-08-29 19:55:05 +02:00
|
|
|
LLT Ty = MRI.getType(MI.getOperand(1).getReg());
|
|
|
|
if (DL.isNonIntegralAddressSpace(Ty.getAddressSpace()))
|
|
|
|
break;
|
|
|
|
LLVM_FALLTHROUGH;
|
|
|
|
}
|
2019-08-06 19:18:29 +02:00
|
|
|
case TargetOpcode::G_ADD: {
|
2020-01-26 15:34:28 +01:00
|
|
|
computeKnownBitsImpl(MI.getOperand(1).getReg(), Known, DemandedElts,
|
2019-08-06 19:18:29 +02:00
|
|
|
Depth + 1);
|
|
|
|
computeKnownBitsImpl(MI.getOperand(2).getReg(), Known2, DemandedElts,
|
|
|
|
Depth + 1);
|
2020-01-26 15:34:28 +01:00
|
|
|
Known =
|
|
|
|
KnownBits::computeForAddSub(/*Add*/ true, /*NSW*/ false, Known, Known2);
|
2019-08-06 19:18:29 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TargetOpcode::G_AND: {
|
|
|
|
// If either the LHS or the RHS are Zero, the result is zero.
|
|
|
|
computeKnownBitsImpl(MI.getOperand(2).getReg(), Known, DemandedElts,
|
|
|
|
Depth + 1);
|
|
|
|
computeKnownBitsImpl(MI.getOperand(1).getReg(), Known2, DemandedElts,
|
|
|
|
Depth + 1);
|
|
|
|
|
2020-02-05 17:15:53 +01:00
|
|
|
Known &= Known2;
|
2019-08-06 19:18:29 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TargetOpcode::G_OR: {
|
|
|
|
// If either the LHS or the RHS are Zero, the result is zero.
|
|
|
|
computeKnownBitsImpl(MI.getOperand(2).getReg(), Known, DemandedElts,
|
|
|
|
Depth + 1);
|
|
|
|
computeKnownBitsImpl(MI.getOperand(1).getReg(), Known2, DemandedElts,
|
|
|
|
Depth + 1);
|
|
|
|
|
2020-02-05 17:15:53 +01:00
|
|
|
Known |= Known2;
|
2019-08-06 19:18:29 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TargetOpcode::G_MUL: {
|
|
|
|
computeKnownBitsImpl(MI.getOperand(2).getReg(), Known, DemandedElts,
|
|
|
|
Depth + 1);
|
|
|
|
computeKnownBitsImpl(MI.getOperand(1).getReg(), Known2, DemandedElts,
|
|
|
|
Depth + 1);
|
2020-11-05 11:39:53 +01:00
|
|
|
Known = KnownBits::computeForMul(Known, Known2);
|
2019-08-06 19:18:29 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TargetOpcode::G_SELECT: {
|
2020-08-27 18:40:03 +02:00
|
|
|
computeKnownBitsMin(MI.getOperand(2).getReg(), MI.getOperand(3).getReg(),
|
|
|
|
Known, DemandedElts, Depth + 1);
|
|
|
|
break;
|
|
|
|
}
|
2020-09-02 17:01:48 +02:00
|
|
|
case TargetOpcode::G_SMIN: {
|
|
|
|
// TODO: Handle clamp pattern with number of sign bits
|
|
|
|
KnownBits KnownRHS;
|
|
|
|
computeKnownBitsImpl(MI.getOperand(1).getReg(), Known, DemandedElts,
|
|
|
|
Depth + 1);
|
|
|
|
computeKnownBitsImpl(MI.getOperand(2).getReg(), KnownRHS, DemandedElts,
|
|
|
|
Depth + 1);
|
|
|
|
Known = KnownBits::smin(Known, KnownRHS);
|
|
|
|
break;
|
|
|
|
}
|
2020-08-28 00:05:34 +02:00
|
|
|
case TargetOpcode::G_SMAX: {
|
|
|
|
// TODO: Handle clamp pattern with number of sign bits
|
2020-09-02 17:01:48 +02:00
|
|
|
KnownBits KnownRHS;
|
|
|
|
computeKnownBitsImpl(MI.getOperand(1).getReg(), Known, DemandedElts,
|
|
|
|
Depth + 1);
|
|
|
|
computeKnownBitsImpl(MI.getOperand(2).getReg(), KnownRHS, DemandedElts,
|
|
|
|
Depth + 1);
|
|
|
|
Known = KnownBits::smax(Known, KnownRHS);
|
2019-08-06 19:18:29 +02:00
|
|
|
break;
|
|
|
|
}
|
2020-08-28 00:05:34 +02:00
|
|
|
case TargetOpcode::G_UMIN: {
|
|
|
|
KnownBits KnownRHS;
|
|
|
|
computeKnownBitsImpl(MI.getOperand(1).getReg(), Known,
|
|
|
|
DemandedElts, Depth + 1);
|
|
|
|
computeKnownBitsImpl(MI.getOperand(2).getReg(), KnownRHS,
|
|
|
|
DemandedElts, Depth + 1);
|
2020-09-02 17:01:48 +02:00
|
|
|
Known = KnownBits::umin(Known, KnownRHS);
|
2020-08-28 00:05:34 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TargetOpcode::G_UMAX: {
|
|
|
|
KnownBits KnownRHS;
|
|
|
|
computeKnownBitsImpl(MI.getOperand(1).getReg(), Known,
|
|
|
|
DemandedElts, Depth + 1);
|
|
|
|
computeKnownBitsImpl(MI.getOperand(2).getReg(), KnownRHS,
|
|
|
|
DemandedElts, Depth + 1);
|
2020-09-02 17:01:48 +02:00
|
|
|
Known = KnownBits::umax(Known, KnownRHS);
|
2020-08-28 00:05:34 +02:00
|
|
|
break;
|
|
|
|
}
|
2019-08-06 19:18:29 +02:00
|
|
|
case TargetOpcode::G_FCMP:
|
|
|
|
case TargetOpcode::G_ICMP: {
|
|
|
|
if (TL.getBooleanContents(DstTy.isVector(),
|
|
|
|
Opcode == TargetOpcode::G_FCMP) ==
|
|
|
|
TargetLowering::ZeroOrOneBooleanContent &&
|
|
|
|
BitWidth > 1)
|
|
|
|
Known.Zero.setBitsFrom(1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TargetOpcode::G_SEXT: {
|
|
|
|
computeKnownBitsImpl(MI.getOperand(1).getReg(), Known, DemandedElts,
|
|
|
|
Depth + 1);
|
|
|
|
// If the sign bit is known to be zero or one, then sext will extend
|
|
|
|
// it to the top bits, else it will just zext.
|
|
|
|
Known = Known.sext(BitWidth);
|
|
|
|
break;
|
|
|
|
}
|
2021-01-26 23:39:39 +01:00
|
|
|
case TargetOpcode::G_SEXT_INREG: {
|
|
|
|
computeKnownBitsImpl(MI.getOperand(1).getReg(), Known, DemandedElts,
|
|
|
|
Depth + 1);
|
|
|
|
Known = Known.sextInReg(MI.getOperand(2).getImm());
|
|
|
|
break;
|
|
|
|
}
|
2019-08-06 19:18:29 +02:00
|
|
|
case TargetOpcode::G_ANYEXT: {
|
|
|
|
computeKnownBitsImpl(MI.getOperand(1).getReg(), Known, DemandedElts,
|
|
|
|
Depth + 1);
|
2020-08-21 02:03:18 +02:00
|
|
|
Known = Known.anyext(BitWidth);
|
2019-08-06 19:18:29 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TargetOpcode::G_LOAD: {
|
2020-08-19 20:06:17 +02:00
|
|
|
const MachineMemOperand *MMO = *MI.memoperands_begin();
|
|
|
|
if (const MDNode *Ranges = MMO->getRanges()) {
|
|
|
|
computeKnownBitsFromRangeMetadata(*Ranges, Known);
|
2019-08-06 19:18:29 +02:00
|
|
|
}
|
2020-08-19 20:06:17 +02:00
|
|
|
|
2019-08-06 19:18:29 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TargetOpcode::G_ZEXTLOAD: {
|
|
|
|
// Everything above the retrieved bits is zero
|
2020-08-19 20:06:17 +02:00
|
|
|
Known.Zero.setBitsFrom((*MI.memoperands_begin())->getSizeInBits());
|
2019-08-06 19:18:29 +02:00
|
|
|
break;
|
|
|
|
}
|
2020-11-05 12:52:07 +01:00
|
|
|
case TargetOpcode::G_ASHR: {
|
|
|
|
KnownBits LHSKnown, RHSKnown;
|
|
|
|
computeKnownBitsImpl(MI.getOperand(1).getReg(), LHSKnown, DemandedElts,
|
|
|
|
Depth + 1);
|
2019-08-06 19:18:29 +02:00
|
|
|
computeKnownBitsImpl(MI.getOperand(2).getReg(), RHSKnown, DemandedElts,
|
|
|
|
Depth + 1);
|
2020-11-05 12:52:07 +01:00
|
|
|
Known = KnownBits::ashr(LHSKnown, RHSKnown);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TargetOpcode::G_LSHR: {
|
|
|
|
KnownBits LHSKnown, RHSKnown;
|
|
|
|
computeKnownBitsImpl(MI.getOperand(1).getReg(), LHSKnown, DemandedElts,
|
2019-08-06 19:18:29 +02:00
|
|
|
Depth + 1);
|
2020-11-05 12:52:07 +01:00
|
|
|
computeKnownBitsImpl(MI.getOperand(2).getReg(), RHSKnown, DemandedElts,
|
|
|
|
Depth + 1);
|
|
|
|
Known = KnownBits::lshr(LHSKnown, RHSKnown);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TargetOpcode::G_SHL: {
|
|
|
|
KnownBits LHSKnown, RHSKnown;
|
|
|
|
computeKnownBitsImpl(MI.getOperand(1).getReg(), LHSKnown, DemandedElts,
|
|
|
|
Depth + 1);
|
|
|
|
computeKnownBitsImpl(MI.getOperand(2).getReg(), RHSKnown, DemandedElts,
|
|
|
|
Depth + 1);
|
|
|
|
Known = KnownBits::shl(LHSKnown, RHSKnown);
|
2019-08-06 19:18:29 +02:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TargetOpcode::G_INTTOPTR:
|
|
|
|
case TargetOpcode::G_PTRTOINT:
|
|
|
|
// Fall through and handle them the same as zext/trunc.
|
|
|
|
LLVM_FALLTHROUGH;
|
2021-01-27 23:01:38 +01:00
|
|
|
case TargetOpcode::G_ASSERT_ZEXT:
|
2019-08-06 19:18:29 +02:00
|
|
|
case TargetOpcode::G_ZEXT:
|
|
|
|
case TargetOpcode::G_TRUNC: {
|
|
|
|
Register SrcReg = MI.getOperand(1).getReg();
|
|
|
|
LLT SrcTy = MRI.getType(SrcReg);
|
2021-01-27 23:01:38 +01:00
|
|
|
unsigned SrcBitWidth;
|
|
|
|
|
|
|
|
// G_ASSERT_ZEXT stores the original bitwidth in the immediate operand.
|
|
|
|
if (Opcode == TargetOpcode::G_ASSERT_ZEXT)
|
|
|
|
SrcBitWidth = MI.getOperand(2).getImm();
|
|
|
|
else {
|
|
|
|
SrcBitWidth = SrcTy.isPointer()
|
|
|
|
? DL.getIndexSizeInBits(SrcTy.getAddressSpace())
|
|
|
|
: SrcTy.getSizeInBits();
|
|
|
|
}
|
2019-08-06 19:18:29 +02:00
|
|
|
assert(SrcBitWidth && "SrcBitWidth can't be zero");
|
2020-02-12 14:27:28 +01:00
|
|
|
Known = Known.zextOrTrunc(SrcBitWidth);
|
2019-08-06 19:18:29 +02:00
|
|
|
computeKnownBitsImpl(SrcReg, Known, DemandedElts, Depth + 1);
|
2020-02-12 14:27:28 +01:00
|
|
|
Known = Known.zextOrTrunc(BitWidth);
|
2019-08-06 19:18:29 +02:00
|
|
|
if (BitWidth > SrcBitWidth)
|
|
|
|
Known.Zero.setBitsFrom(SrcBitWidth);
|
|
|
|
break;
|
|
|
|
}
|
2020-08-27 18:15:16 +02:00
|
|
|
case TargetOpcode::G_MERGE_VALUES: {
|
2020-11-05 16:34:55 +01:00
|
|
|
unsigned NumOps = MI.getNumOperands();
|
2020-08-27 18:15:16 +02:00
|
|
|
unsigned OpSize = MRI.getType(MI.getOperand(1).getReg()).getSizeInBits();
|
|
|
|
|
|
|
|
for (unsigned I = 0; I != NumOps - 1; ++I) {
|
|
|
|
KnownBits SrcOpKnown;
|
|
|
|
computeKnownBitsImpl(MI.getOperand(I + 1).getReg(), SrcOpKnown,
|
|
|
|
DemandedElts, Depth + 1);
|
|
|
|
Known.insertBits(SrcOpKnown, I * OpSize);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2020-08-27 22:17:41 +02:00
|
|
|
case TargetOpcode::G_UNMERGE_VALUES: {
|
2020-11-05 16:34:55 +01:00
|
|
|
unsigned NumOps = MI.getNumOperands();
|
2020-08-27 22:17:41 +02:00
|
|
|
Register SrcReg = MI.getOperand(NumOps - 1).getReg();
|
|
|
|
if (MRI.getType(SrcReg).isVector())
|
|
|
|
return; // TODO: Handle vectors.
|
|
|
|
|
|
|
|
KnownBits SrcOpKnown;
|
|
|
|
computeKnownBitsImpl(SrcReg, SrcOpKnown, DemandedElts, Depth + 1);
|
|
|
|
|
|
|
|
// Figure out the result operand index
|
|
|
|
unsigned DstIdx = 0;
|
|
|
|
for (; DstIdx != NumOps - 1 && MI.getOperand(DstIdx).getReg() != R;
|
|
|
|
++DstIdx)
|
|
|
|
;
|
|
|
|
|
|
|
|
Known = SrcOpKnown.extractBits(BitWidth, BitWidth * DstIdx);
|
|
|
|
break;
|
|
|
|
}
|
2020-08-27 23:55:35 +02:00
|
|
|
case TargetOpcode::G_BSWAP: {
|
|
|
|
Register SrcReg = MI.getOperand(1).getReg();
|
|
|
|
computeKnownBitsImpl(SrcReg, Known, DemandedElts, Depth + 1);
|
|
|
|
Known.byteSwap();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
case TargetOpcode::G_BITREVERSE: {
|
|
|
|
Register SrcReg = MI.getOperand(1).getReg();
|
|
|
|
computeKnownBitsImpl(SrcReg, Known, DemandedElts, Depth + 1);
|
|
|
|
Known.reverseBits();
|
|
|
|
break;
|
|
|
|
}
|
2019-08-06 19:18:29 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
assert(!Known.hasConflict() && "Bits known to be one AND zero?");
|
2020-02-21 02:51:26 +01:00
|
|
|
LLVM_DEBUG(dumpResult(MI, Known, Depth));
|
|
|
|
|
|
|
|
// Update the cache.
|
|
|
|
ComputeKnownBitsCache[R] = Known;
|
2019-08-06 19:18:29 +02:00
|
|
|
}
|
|
|
|
|
2020-08-27 21:28:24 +02:00
|
|
|
/// Compute number of sign bits for the intersection of \p Src0 and \p Src1
|
|
|
|
unsigned GISelKnownBits::computeNumSignBitsMin(Register Src0, Register Src1,
|
|
|
|
const APInt &DemandedElts,
|
|
|
|
unsigned Depth) {
|
|
|
|
// Test src1 first, since we canonicalize simpler expressions to the RHS.
|
|
|
|
unsigned Src1SignBits = computeNumSignBits(Src1, DemandedElts, Depth);
|
|
|
|
if (Src1SignBits == 1)
|
|
|
|
return 1;
|
|
|
|
return std::min(computeNumSignBits(Src0, DemandedElts, Depth), Src1SignBits);
|
|
|
|
}
|
|
|
|
|
2020-01-04 20:13:06 +01:00
|
|
|
unsigned GISelKnownBits::computeNumSignBits(Register R,
|
|
|
|
const APInt &DemandedElts,
|
|
|
|
unsigned Depth) {
|
|
|
|
MachineInstr &MI = *MRI.getVRegDef(R);
|
|
|
|
unsigned Opcode = MI.getOpcode();
|
|
|
|
|
|
|
|
if (Opcode == TargetOpcode::G_CONSTANT)
|
|
|
|
return MI.getOperand(1).getCImm()->getValue().getNumSignBits();
|
|
|
|
|
|
|
|
if (Depth == getMaxDepth())
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
if (!DemandedElts)
|
|
|
|
return 1; // No demanded elts, better to assume we don't know anything.
|
|
|
|
|
|
|
|
LLT DstTy = MRI.getType(R);
|
2020-01-22 16:31:03 +01:00
|
|
|
const unsigned TyBits = DstTy.getScalarSizeInBits();
|
2020-01-04 20:13:06 +01:00
|
|
|
|
|
|
|
// Handle the case where this is called on a register that does not have a
|
|
|
|
// type constraint. This is unlikely to occur except by looking through copies
|
|
|
|
// but it is possible for the initial register being queried to be in this
|
|
|
|
// state.
|
|
|
|
if (!DstTy.isValid())
|
|
|
|
return 1;
|
|
|
|
|
2020-01-22 16:31:03 +01:00
|
|
|
unsigned FirstAnswer = 1;
|
2020-01-04 20:13:06 +01:00
|
|
|
switch (Opcode) {
|
|
|
|
case TargetOpcode::COPY: {
|
|
|
|
MachineOperand &Src = MI.getOperand(1);
|
|
|
|
if (Src.getReg().isVirtual() && Src.getSubReg() == 0 &&
|
|
|
|
MRI.getType(Src.getReg()).isValid()) {
|
|
|
|
// Don't increment Depth for this one since we didn't do any work.
|
|
|
|
return computeNumSignBits(Src.getReg(), DemandedElts, Depth);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
case TargetOpcode::G_SEXT: {
|
|
|
|
Register Src = MI.getOperand(1).getReg();
|
|
|
|
LLT SrcTy = MRI.getType(Src);
|
|
|
|
unsigned Tmp = DstTy.getScalarSizeInBits() - SrcTy.getScalarSizeInBits();
|
|
|
|
return computeNumSignBits(Src, DemandedElts, Depth + 1) + Tmp;
|
|
|
|
}
|
2020-08-27 20:58:39 +02:00
|
|
|
case TargetOpcode::G_SEXT_INREG: {
|
|
|
|
// Max of the input and what this extends.
|
|
|
|
Register Src = MI.getOperand(1).getReg();
|
|
|
|
unsigned SrcBits = MI.getOperand(2).getImm();
|
|
|
|
unsigned InRegBits = TyBits - SrcBits + 1;
|
|
|
|
return std::max(computeNumSignBits(Src, DemandedElts, Depth + 1), InRegBits);
|
|
|
|
}
|
2020-08-28 16:52:32 +02:00
|
|
|
case TargetOpcode::G_SEXTLOAD: {
|
|
|
|
// FIXME: We need an in-memory type representation.
|
|
|
|
if (DstTy.isVector())
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
// e.g. i16->i32 = '17' bits known.
|
|
|
|
const MachineMemOperand *MMO = *MI.memoperands_begin();
|
|
|
|
return TyBits - MMO->getSizeInBits() + 1;
|
|
|
|
}
|
|
|
|
case TargetOpcode::G_ZEXTLOAD: {
|
|
|
|
// FIXME: We need an in-memory type representation.
|
|
|
|
if (DstTy.isVector())
|
|
|
|
return 1;
|
|
|
|
|
|
|
|
// e.g. i16->i32 = '16' bits known.
|
|
|
|
const MachineMemOperand *MMO = *MI.memoperands_begin();
|
|
|
|
return TyBits - MMO->getSizeInBits();
|
|
|
|
}
|
2020-01-04 20:13:06 +01:00
|
|
|
case TargetOpcode::G_TRUNC: {
|
|
|
|
Register Src = MI.getOperand(1).getReg();
|
|
|
|
LLT SrcTy = MRI.getType(Src);
|
|
|
|
|
|
|
|
// Check if the sign bits of source go down as far as the truncated value.
|
|
|
|
unsigned DstTyBits = DstTy.getScalarSizeInBits();
|
|
|
|
unsigned NumSrcBits = SrcTy.getScalarSizeInBits();
|
|
|
|
unsigned NumSrcSignBits = computeNumSignBits(Src, DemandedElts, Depth + 1);
|
|
|
|
if (NumSrcSignBits > (NumSrcBits - DstTyBits))
|
|
|
|
return NumSrcSignBits - (NumSrcBits - DstTyBits);
|
|
|
|
break;
|
|
|
|
}
|
2020-08-27 21:28:24 +02:00
|
|
|
case TargetOpcode::G_SELECT: {
|
|
|
|
return computeNumSignBitsMin(MI.getOperand(2).getReg(),
|
|
|
|
MI.getOperand(3).getReg(), DemandedElts,
|
|
|
|
Depth + 1);
|
|
|
|
}
|
2020-01-22 16:31:03 +01:00
|
|
|
case TargetOpcode::G_INTRINSIC:
|
|
|
|
case TargetOpcode::G_INTRINSIC_W_SIDE_EFFECTS:
|
|
|
|
default: {
|
|
|
|
unsigned NumBits =
|
|
|
|
TL.computeNumSignBitsForTargetInstr(*this, R, DemandedElts, MRI, Depth);
|
|
|
|
if (NumBits > 1)
|
|
|
|
FirstAnswer = std::max(FirstAnswer, NumBits);
|
2020-01-04 20:13:06 +01:00
|
|
|
break;
|
|
|
|
}
|
2020-01-22 16:31:03 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// Finally, if we can prove that the top bits of the result are 0's or 1's,
|
|
|
|
// use this information.
|
|
|
|
KnownBits Known = getKnownBits(R, DemandedElts, Depth);
|
|
|
|
APInt Mask;
|
|
|
|
if (Known.isNonNegative()) { // sign bit is 0
|
|
|
|
Mask = Known.Zero;
|
|
|
|
} else if (Known.isNegative()) { // sign bit is 1;
|
|
|
|
Mask = Known.One;
|
|
|
|
} else {
|
|
|
|
// Nothing known.
|
|
|
|
return FirstAnswer;
|
|
|
|
}
|
2020-01-04 20:13:06 +01:00
|
|
|
|
2020-01-22 16:31:03 +01:00
|
|
|
// Okay, we know that the sign bit in Mask is set. Use CLO to determine
|
|
|
|
// the number of identical bits in the top of the input value.
|
|
|
|
Mask <<= Mask.getBitWidth() - TyBits;
|
|
|
|
return std::max(FirstAnswer, Mask.countLeadingOnes());
|
2020-01-04 20:13:06 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
unsigned GISelKnownBits::computeNumSignBits(Register R, unsigned Depth) {
|
|
|
|
LLT Ty = MRI.getType(R);
|
|
|
|
APInt DemandedElts = Ty.isVector()
|
|
|
|
? APInt::getAllOnesValue(Ty.getNumElements())
|
|
|
|
: APInt(1, 1);
|
|
|
|
return computeNumSignBits(R, DemandedElts, Depth);
|
|
|
|
}
|
|
|
|
|
2019-08-06 19:18:29 +02:00
|
|
|
void GISelKnownBitsAnalysis::getAnalysisUsage(AnalysisUsage &AU) const {
|
|
|
|
AU.setPreservesAll();
|
|
|
|
MachineFunctionPass::getAnalysisUsage(AU);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GISelKnownBitsAnalysis::runOnMachineFunction(MachineFunction &MF) {
|
|
|
|
return false;
|
|
|
|
}
|