blob: 9b238ce188d4e10c0c5c98adf69d10ce1cb857b0 [file] [log] [blame]
//===--- SILValue.h - Value base class for SIL ------------------*- C++ -*-===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2017 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
//
// This file defines the SILValue class.
//
//===----------------------------------------------------------------------===//
#ifndef SWIFT_SIL_SILVALUE_H
#define SWIFT_SIL_SILVALUE_H
#include "swift/Basic/Range.h"
#include "swift/Basic/ArrayRefView.h"
#include "swift/Basic/STLExtras.h"
#include "swift/SIL/SILAllocated.h"
#include "swift/SIL/SILArgumentConvention.h"
#include "swift/SIL/SILNode.h"
#include "swift/SIL/SILType.h"
#include "llvm/ADT/ArrayRef.h"
#include "llvm/ADT/Hashing.h"
#include "llvm/ADT/Optional.h"
#include "llvm/ADT/PointerUnion.h"
#include "llvm/Support/raw_ostream.h"
namespace swift {
class DominanceInfo;
class PostOrderFunctionInfo;
class ReversePostOrderInfo;
class Operand;
class SILInstruction;
class SILLocation;
class DeadEndBlocks;
class ValueBaseUseIterator;
class ConsumingUseIterator;
class NonConsumingUseIterator;
class SILValue;
/// An enumeration which contains values for all the concrete ValueBase
/// subclasses.
enum class ValueKind : std::underlying_type<SILNodeKind>::type {
#define VALUE(ID, PARENT) \
ID = unsigned(SILNodeKind::ID),
#define VALUE_RANGE(ID, FIRST, LAST) \
First_##ID = unsigned(SILNodeKind::First_##ID), \
Last_##ID = unsigned(SILNodeKind::Last_##ID),
#include "swift/SIL/SILNodes.def"
};
/// ValueKind hashes to its underlying integer representation.
static inline llvm::hash_code hash_value(ValueKind K) {
return llvm::hash_value(size_t(K));
}
/// What constraint does the given use of an SSA value put on the lifetime of
/// the given SSA value.
///
/// There are two possible constraints: NonLifetimeEnding and
/// LifetimeEnding. NonLifetimeEnding means that the SSA value must be
/// able to be used in a valid way at the given use
/// point. LifetimeEnding means that the value has been invalidated at
/// the given use point and any uses reachable from that point are
/// invalid in SIL causing a SIL verifier error.
enum class UseLifetimeConstraint {
/// This use requires the SSA value to be live after the given instruction's
/// execution.
NonLifetimeEnding,
/// This use invalidates the given SSA value.
///
/// This means that the given SSA value can not have any uses that are
/// reachable from this instruction. When a value has owned semantics this
/// means the SSA value is destroyed at this point. When a value has
/// guaranteed (i.e. shared borrow) semantics this means that the program
/// has left the scope of the borrowed SSA value and said value can not be
/// used.
LifetimeEnding,
};
llvm::raw_ostream &operator<<(llvm::raw_ostream &os,
UseLifetimeConstraint constraint);
/// A lattice that we use to classify ownership at the SIL level. None is top
/// and Any is bottom and all of the other ownership kinds are mid level nodes
/// in the lattice. Graphically the lattice looks as follows:
/// +----+
/// +-------|None|---------+
/// | +----+ |
/// | | |
/// v v v
/// +-------+ +-----+ +----------+
/// |Unowned| |Owned| |Guaranteed|
/// +-------+ +-----+ +----------+
/// | | |
/// | v |
/// | +---+ |
/// +------->|Any|<--------+
/// +---+
///
/// One moves up the lattice by performing a join operation and one moves down
/// the lattice by performing a meet operation.
///
/// This type is used in two different composition types:
///
/// * ValueOwnershipKind: This represents the ownership kind that a value can
/// take. Since our ownership system is strict, we require that all values
/// have a non-Any ownership since Any represents a type of ownership unknown
/// statically. Thus we treat Any as representing an invalid
/// value. ValueOwnershipKinds can only perform a meet operation to determine
/// if two ownership kinds are compatible with a merge of Any showing the
/// merge is impossible since values can not have any ownership.
///
/// * OperandConstraint: This represents a constraint on the values that can be
/// used by a specific operand. Here Any is valid.
struct OwnershipKind {
enum innerty : uint8_t {
/// An ownership kind that models an ownership that is unknown statically at
/// compile time. It is invalid when applied to values because we have
/// strict ownership rules for values. But it is an expected/normal state
/// when constraining ownership kinds.
Any = 0,
/// A SILValue with `Unowned` ownership kind is an independent value that
/// has a lifetime that is only guaranteed to last until the next program
/// visible side-effect. To maintain the lifetime of an unowned value, it
/// must be converted to an owned representation via a copy_value.
///
/// Unowned ownership kind occurs mainly along method/function boundaries in
/// between Swift and Objective-C code.
Unowned,
/// A SILValue with `Owned` ownership kind is an independent value that has
/// an ownership independent of any other ownership imbued within it. The
/// SILValue must be paired with a consuming operation that ends the SSA
/// value's lifetime exactly once along all paths through the program.
Owned,
/// A SILValue with `Guaranteed` ownership kind is an independent value that
/// is guaranteed to be live over a specific region of the program. This
/// region can come in several forms:
///
/// 1. @guaranteed function argument. This guarantees that a value will
/// outlive a function.
///
/// 2. A shared borrow region. This is a region denoted by a
/// begin_borrow/load_borrow instruction and an end_borrow instruction. The
/// SSA value must not be destroyed or taken inside the borrowed region.
///
/// Any value with guaranteed ownership must be paired with an end_borrow
/// instruction exactly once along any path through the program.
Guaranteed,
/// A SILValue with None ownership kind is an independent value outside of
/// the ownership system. It is used to model trivially typed values as well
/// as trivial cases of non-trivial enums. Naturally None can be merged with
/// any ValueOwnershipKind allowing us to naturally model merge and branch
/// points in the SSA graph.
None,
LastValueOwnershipKind = None,
} value;
using UnderlyingType = std::underlying_type<innerty>::type;
static constexpr unsigned NumBits = SILNode::NumVOKindBits;
static constexpr UnderlyingType MaxValue = (UnderlyingType(1) << NumBits);
static constexpr uint64_t Mask = MaxValue - 1;
static_assert(unsigned(OwnershipKind::LastValueOwnershipKind) < MaxValue,
"LastValueOwnershipKind is larger than max representable "
"ownership value?!");
OwnershipKind(OwnershipKind::innerty other) : value(other) {}
OwnershipKind(const OwnershipKind &other) : value(other.value) {}
OwnershipKind &operator=(const OwnershipKind &other) {
value = other.value;
return *this;
}
OwnershipKind &operator=(OwnershipKind::innerty other) {
value = other;
return *this;
}
operator OwnershipKind::innerty() const { return value; }
/// Move down the lattice.
OwnershipKind meet(OwnershipKind other) const {
// None merges with anything.
if (*this == OwnershipKind::None)
return other;
if (other == OwnershipKind::None)
return *this;
// At this point, if the two ownership kinds don't line up, the merge
// fails. Return any to show that we have lost information and now have a
// value kind that is invalid on values.
if (*this != other)
return OwnershipKind::Any;
// Otherwise, we are good, return *this.
return *this;
}
/// Move up the lattice.
OwnershipKind join(OwnershipKind other) const {
if (*this == OwnershipKind::Any)
return other;
if (other == OwnershipKind::Any)
return *this;
if (*this != other)
return OwnershipKind::None;
return *this;
}
/// Convert this ownership kind to a StringRef.
StringRef asString() const;
};
llvm::raw_ostream &operator<<(llvm::raw_ostream &os, const OwnershipKind &kind);
/// A value representing the specific ownership semantics that a SILValue may
/// have.
struct ValueOwnershipKind {
using innerty = OwnershipKind::innerty;
OwnershipKind value;
ValueOwnershipKind(innerty newValue) : value(newValue) {}
ValueOwnershipKind(OwnershipKind newValue) : value(newValue) {}
explicit ValueOwnershipKind(unsigned newValue) : value(innerty(newValue)) {}
ValueOwnershipKind(const SILFunction &f, SILType type,
SILArgumentConvention convention);
/// Parse Value into a ValueOwnershipKind.
///
/// *NOTE* Emits an unreachable if an invalid value is passed in.
explicit ValueOwnershipKind(StringRef value);
operator OwnershipKind() const { return value; }
explicit operator unsigned() const { return value; }
operator innerty() const { return value; }
explicit operator bool() const { return value != OwnershipKind::Any; }
bool operator==(ValueOwnershipKind other) const {
return value == other.value;
}
bool operator==(innerty other) const { return value == other; }
/// We merge by moving down the lattice.
ValueOwnershipKind merge(ValueOwnershipKind rhs) const {
return value.meet(rhs.value);
}
/// Given that there is an aggregate value (like a struct or enum) with this
/// ownership kind, and a subobject of type Proj is being projected from the
/// aggregate, return Trivial if Proj has trivial type and the aggregate's
/// ownership kind otherwise.
ValueOwnershipKind getProjectedOwnershipKind(const SILFunction &func,
SILType projType) const;
/// Return the lifetime constraint semantics for this
/// ValueOwnershipKind when forwarding ownership.
///
/// This is MustBeInvalidated for Owned and MustBeLive for all other ownership
/// kinds.
UseLifetimeConstraint getForwardingLifetimeConstraint() const {
switch (value) {
case OwnershipKind::Any:
case OwnershipKind::None:
case OwnershipKind::Guaranteed:
case OwnershipKind::Unowned:
return UseLifetimeConstraint::NonLifetimeEnding;
case OwnershipKind::Owned:
return UseLifetimeConstraint::LifetimeEnding;
}
llvm_unreachable("covered switch");
}
/// Returns true if \p Other can be merged successfully with this, implying
/// that the two ownership kinds are "compatibile".
///
/// The reason why we do not compare directy is to allow for
/// OwnershipKind::None to merge into other forms of ValueOwnershipKind.
bool isCompatibleWith(ValueOwnershipKind other) const {
return bool(merge(other));
}
/// Returns isCompatibleWith(other.getOwnershipKind()).
///
/// Definition is inline after SILValue is defined to work around circular
/// dependencies.
bool isCompatibleWith(SILValue other) const;
template <typename RangeTy> static ValueOwnershipKind merge(RangeTy &&r) {
auto initial = OwnershipKind::None;
return accumulate(std::forward<RangeTy>(r), initial,
[](ValueOwnershipKind acc, ValueOwnershipKind x) {
if (!acc)
return acc;
return acc.merge(x);
});
}
StringRef asString() const;
};
llvm::raw_ostream &operator<<(llvm::raw_ostream &os, ValueOwnershipKind Kind);
/// This is the base class of the SIL value hierarchy, which represents a
/// runtime computed value. Some examples of ValueBase are SILArgument and
/// SingleValueInstruction.
class ValueBase : public SILNode, public SILAllocated<ValueBase> {
friend class Operand;
SILType Type;
Operand *FirstUse = nullptr;
ValueBase(const ValueBase &) = delete;
ValueBase &operator=(const ValueBase &) = delete;
protected:
ValueBase(ValueKind kind, SILType type, IsRepresentative isRepresentative)
: SILNode(SILNodeKind(kind), SILNodeStorageLocation::Value,
isRepresentative),
Type(type) {}
public:
~ValueBase() {
assert(use_empty() && "Cannot destroy a value that still has uses!");
}
LLVM_ATTRIBUTE_ALWAYS_INLINE
ValueKind getKind() const { return ValueKind(SILNode::getKind()); }
SILType getType() const {
return Type;
}
/// Replace every use of a result of this instruction with the corresponding
/// result from RHS.
///
/// The method assumes that both instructions have the same number of
/// results. To replace just one result use SILValue::replaceAllUsesWith.
void replaceAllUsesWith(ValueBase *RHS);
/// Replace all uses of this instruction with an undef value of the
/// same type as the result of this instruction.
void replaceAllUsesWithUndef();
/// Is this value a direct result of the given instruction?
bool isResultOf(SILInstruction *I) const;
/// Returns true if this value has no uses.
/// To ignore debug-info instructions use swift::onlyHaveDebugUses instead
/// (see comment in DebugUtils.h).
bool use_empty() const { return FirstUse == nullptr; }
using use_iterator = ValueBaseUseIterator;
using use_range = iterator_range<use_iterator>;
using consuming_use_iterator = ConsumingUseIterator;
using consuming_use_range = iterator_range<consuming_use_iterator>;
using non_consuming_use_iterator = NonConsumingUseIterator;
using non_consuming_use_range = iterator_range<non_consuming_use_iterator>;
inline use_iterator use_begin() const;
inline use_iterator use_end() const;
inline consuming_use_iterator consuming_use_begin() const;
inline consuming_use_iterator consuming_use_end() const;
inline non_consuming_use_iterator non_consuming_use_begin() const;
inline non_consuming_use_iterator non_consuming_use_end() const;
/// Returns a range of all uses, which is useful for iterating over all uses.
/// To ignore debug-info instructions use swift::getNonDebugUses instead
/// (see comment in DebugUtils.h).
inline use_range getUses() const;
/// Returns true if this value has exactly one use.
/// To ignore debug-info instructions use swift::hasOneNonDebugUse instead
/// (see comment in DebugUtils.h).
inline bool hasOneUse() const;
/// Returns .some(single user) if this value has a single user. Returns .none
/// otherwise.
inline Operand *getSingleUse() const;
/// Returns .some(single user) if this value is non-trivial, we are in ossa,
/// and it has a single consuming user. Returns .none otherwise.
inline Operand *getSingleConsumingUse() const;
/// Returns a range of all consuming uses
inline consuming_use_range getConsumingUses() const;
/// Returns a range of all non consuming uses
inline non_consuming_use_range getNonConsumingUses() const;
template <class T>
inline T *getSingleUserOfType() const;
template <class T> inline T *getSingleConsumingUserOfType() const;
/// Returns true if this operand has exactly two.
///
/// This is useful if one has found a predefined set of 2 unique users and
/// wants to check if there are any other users without iterating over the
/// entire use list.
inline bool hasTwoUses() const;
/// Helper struct for DowncastUserFilterRange
struct UseToUser;
template <typename Subclass>
using DowncastUserFilterRange =
DowncastFilterRange<Subclass,
iterator_range<llvm::mapped_iterator<
use_iterator, UseToUser, SILInstruction *>>>;
/// Iterate over the use list of this ValueBase visiting all users that are of
/// class T.
///
/// Example:
///
/// ValueBase *v = ...;
/// for (CopyValueInst *cvi : v->getUsersOfType<CopyValueInst>()) { ... }
///
/// NOTE: Uses llvm::dyn_cast internally.
template <typename T>
inline DowncastUserFilterRange<T> getUsersOfType() const;
/// Return the instruction that defines this value, or null if it is
/// not defined by an instruction.
const SILInstruction *getDefiningInstruction() const {
return const_cast<ValueBase*>(this)->getDefiningInstruction();
}
SILInstruction *getDefiningInstruction();
/// Return the SIL instruction that can be used to describe the first time
/// this value is available.
///
/// For instruction results, this returns getDefiningInstruction(). For
/// arguments, this returns SILBasicBlock::begin() for the argument's parent
/// block. Returns nullptr for SILUndef.
const SILInstruction *getDefiningInsertionPoint() const {
return const_cast<ValueBase *>(this)->getDefiningInsertionPoint();
}
SILInstruction *getDefiningInsertionPoint();
struct DefiningInstructionResult {
SILInstruction *Instruction;
size_t ResultIndex;
};
/// Return the instruction that defines this value and the appropriate
/// result index, or None if it is not defined by an instruction.
Optional<DefiningInstructionResult> getDefiningInstructionResult();
static bool classof(const SILNode *N) {
return N->getKind() >= SILNodeKind::First_ValueBase &&
N->getKind() <= SILNodeKind::Last_ValueBase;
}
static bool classof(const ValueBase *V) { return true; }
/// This is supportable but usually suggests a logic mistake.
static bool classof(const SILInstruction *) = delete;
};
} // end namespace swift
namespace llvm {
/// ValueBase * is always at least eight-byte aligned; make the three tag bits
/// available through PointerLikeTypeTraits.
template<>
struct PointerLikeTypeTraits<swift::ValueBase *> {
public:
static inline void *getAsVoidPointer(swift::ValueBase *I) {
return (void*)I;
}
static inline swift::ValueBase *getFromVoidPointer(void *P) {
return (swift::ValueBase *)P;
}
enum { NumLowBitsAvailable = 3 };
};
} // end namespace llvm
namespace swift {
/// SILValue - A SILValue is a wrapper around a ValueBase pointer.
class SILValue {
ValueBase *Value;
public:
SILValue(const ValueBase *V = nullptr)
: Value(const_cast<ValueBase *>(V)) { }
ValueBase *operator->() const { return Value; }
ValueBase &operator*() const { return *Value; }
operator ValueBase *() const { return Value; }
// Comparison.
bool operator==(SILValue RHS) const { return Value == RHS.Value; }
bool operator==(ValueBase *RHS) const { return Value == RHS; }
bool operator!=(SILValue RHS) const { return !(*this == RHS); }
bool operator!=(ValueBase *RHS) const { return Value != RHS; }
/// Return true if underlying ValueBase of this SILValue is non-null. Return
/// false otherwise.
explicit operator bool() const { return Value != nullptr; }
/// Get a location for this value.
SILLocation getLoc() const;
/// Convert this SILValue into an opaque pointer like type. For use with
/// PointerLikeTypeTraits.
void *getOpaqueValue() const {
return (void *)Value;
}
/// Convert the given opaque pointer into a SILValue. For use with
/// PointerLikeTypeTraits.
static SILValue getFromOpaqueValue(void *p) {
return SILValue((ValueBase *)p);
}
enum {
NumLowBitsAvailable =
llvm::PointerLikeTypeTraits<ValueBase *>::
NumLowBitsAvailable
};
/// If this SILValue is a result of an instruction, return its
/// defining instruction. Returns nullptr otherwise.
SILInstruction *getDefiningInstruction() {
return Value->getDefiningInstruction();
}
/// If this SILValue is a result of an instruction, return its
/// defining instruction. Returns nullptr otherwise.
const SILInstruction *getDefiningInstruction() const {
return Value->getDefiningInstruction();
}
/// Returns the ValueOwnershipKind that describes this SILValue's ownership
/// semantics if the SILValue has ownership semantics. Returns is a value
/// without any Ownership Semantics.
///
/// An example of a SILValue without ownership semantics is a
/// struct_element_addr.
///
/// NOTE: This is implemented in ValueOwnership.cpp not SILValue.cpp.
ValueOwnershipKind getOwnershipKind() const;
/// Verify that this SILValue and its uses respects ownership invariants.
void verifyOwnership(DeadEndBlocks *DEBlocks = nullptr) const;
};
inline bool ValueOwnershipKind::isCompatibleWith(SILValue other) const {
return isCompatibleWith(other.getOwnershipKind());
}
class OwnershipConstraint {
OwnershipKind ownershipKind;
UseLifetimeConstraint lifetimeConstraint;
public:
OwnershipConstraint(OwnershipKind inputOwnershipKind,
UseLifetimeConstraint inputLifetimeConstraint)
: ownershipKind(inputOwnershipKind),
lifetimeConstraint(inputLifetimeConstraint) {
assert((ownershipKind != OwnershipKind::None ||
lifetimeConstraint == UseLifetimeConstraint::NonLifetimeEnding) &&
"ValueOwnershipKind::None can never have their lifetime ended");
}
OwnershipKind getPreferredKind() const {
return ownershipKind;
}
bool isLifetimeEnding() const {
return lifetimeConstraint == UseLifetimeConstraint::LifetimeEnding;
}
UseLifetimeConstraint getLifetimeConstraint() const {
return lifetimeConstraint;
}
/// Return a constraint that is appropriate for an operand that can accept a
/// value with any ownership kind without ending said value's lifetime.
static OwnershipConstraint any() {
return {OwnershipKind::Any, UseLifetimeConstraint::NonLifetimeEnding};
}
bool satisfiedBy(const Operand *use) const;
bool satisfiesConstraint(ValueOwnershipKind testKind) const {
return ownershipKind.join(testKind) == testKind;
}
bool operator==(const OwnershipConstraint &other) const {
return ownershipKind == other.ownershipKind &&
isLifetimeEnding() == other.isLifetimeEnding();
}
};
llvm::raw_ostream &operator<<(llvm::raw_ostream &os,
OwnershipConstraint constraint);
/// A formal SIL reference to a value, suitable for use as a stored
/// operand.
class Operand {
/// The value used as this operand.
SILValue TheValue;
/// The next operand in the use-chain. Note that the chain holds
/// every use of the current ValueBase, not just those of the
/// designated result.
Operand *NextUse = nullptr;
/// A back-pointer in the use-chain, required for fast patching
/// of use-chains.
Operand **Back = nullptr;
/// The owner of this operand.
/// FIXME: this could be space-compressed.
SILInstruction *Owner;
public:
Operand(SILInstruction *owner) : Owner(owner) {}
Operand(SILInstruction *owner, SILValue theValue)
: TheValue(theValue), Owner(owner) {
insertIntoCurrent();
}
/// Operands are not copyable.
Operand(const Operand &use) = delete;
Operand &operator=(const Operand &use) = delete;
Operand(Operand &&) = default;
Operand &operator=(Operand &&) = default;
/// Return the current value being used by this operand.
SILValue get() const { return TheValue; }
/// Set the current value being used by this operand.
void set(SILValue newValue) {
// It's probably not worth optimizing for the case of switching
// operands on a single value.
removeFromCurrent();
TheValue = newValue;
insertIntoCurrent();
}
/// Swap the given operand with the current one.
void swap(Operand &Op) {
SILValue OtherV = Op.get();
Op.set(get());
set(OtherV);
}
/// Remove this use of the operand.
void drop() {
removeFromCurrent();
TheValue = SILValue();
NextUse = nullptr;
Back = nullptr;
Owner = nullptr;
}
~Operand() {
removeFromCurrent();
}
/// Return the user that owns this use.
SILInstruction *getUser() { return Owner; }
const SILInstruction *getUser() const { return Owner; }
/// Return true if this operand is a type dependent operand.
///
/// Implemented in SILInstruction.h
bool isTypeDependent() const;
/// Return which operand this is in the operand list of the using instruction.
unsigned getOperandNumber() const;
/// Return the ownership constraint that restricts what types of values this
/// Operand can contain. Returns none if the operand is a type dependent
/// operand.
///
/// NOTE: This is implemented in OperandOwnership.cpp.
Optional<OwnershipConstraint> getOwnershipConstraint() const;
/// Returns true if changing the operand to use a value with the given
/// ownership kind would not cause the operand to violate the operand's
/// ownership constraints. Returns false otherwise.
bool canAcceptKind(ValueOwnershipKind kind) const;
/// Returns true if this operand and its value satisfy the operand's
/// operand constraint.
bool satisfiesConstraints() const;
/// Returns true if this operand acts as a use that consumes its associated
/// value.
bool isLifetimeEnding() const;
SILBasicBlock *getParentBlock() const;
SILFunction *getParentFunction() const;
private:
void removeFromCurrent() {
if (!Back) return;
*Back = NextUse;
if (NextUse) NextUse->Back = Back;
}
void insertIntoCurrent() {
Back = &TheValue->FirstUse;
NextUse = TheValue->FirstUse;
if (NextUse) NextUse->Back = &NextUse;
TheValue->FirstUse = this;
}
friend class ValueBase;
friend class ValueBaseUseIterator;
friend class ConsumingUseIterator;
friend class NonConsumingUseIterator;
template <unsigned N> friend class FixedOperandList;
friend class TrailingOperandsList;
};
/// A class which adapts an array of Operands into an array of Values.
///
/// The intent is that this should basically act exactly like
/// ArrayRef except projecting away the Operand-ness.
inline SILValue getSILValueType(const Operand &op) {
return op.get();
}
using OperandValueArrayRef = ArrayRefView<Operand, SILValue, getSILValueType>;
/// An iterator over all uses of a ValueBase.
class ValueBaseUseIterator : public std::iterator<std::forward_iterator_tag,
Operand*, ptrdiff_t> {
protected:
Operand *Cur;
public:
ValueBaseUseIterator() = default;
explicit ValueBaseUseIterator(Operand *cur) : Cur(cur) {}
Operand *operator->() const { return Cur; }
Operand *operator*() const { return Cur; }
SILInstruction *getUser() const {
return Cur->getUser();
}
ValueBaseUseIterator &operator++() {
assert(Cur && "incrementing past end()!");
Cur = Cur->NextUse;
return *this;
}
ValueBaseUseIterator operator++(int unused) {
ValueBaseUseIterator copy = *this;
++*this;
return copy;
}
friend bool operator==(ValueBaseUseIterator lhs,
ValueBaseUseIterator rhs) {
return lhs.Cur == rhs.Cur;
}
friend bool operator!=(ValueBaseUseIterator lhs,
ValueBaseUseIterator rhs) {
return !(lhs == rhs);
}
};
inline ValueBase::use_iterator ValueBase::use_begin() const {
return ValueBase::use_iterator(FirstUse);
}
inline ValueBase::use_iterator ValueBase::use_end() const {
return ValueBase::use_iterator(nullptr);
}
inline iterator_range<ValueBase::use_iterator> ValueBase::getUses() const {
return { use_begin(), use_end() };
}
class ConsumingUseIterator : public ValueBaseUseIterator {
public:
explicit ConsumingUseIterator(Operand *cur) : ValueBaseUseIterator(cur) {}
ConsumingUseIterator &operator++() {
assert(Cur && "incrementing past end()!");
assert(Cur->isLifetimeEnding());
while ((Cur = Cur->NextUse)) {
if (Cur->isLifetimeEnding())
break;
}
return *this;
}
ConsumingUseIterator operator++(int unused) {
ConsumingUseIterator copy = *this;
++*this;
return copy;
}
};
inline ValueBase::consuming_use_iterator
ValueBase::consuming_use_begin() const {
auto cur = FirstUse;
while (cur && !cur->isLifetimeEnding()) {
cur = cur->NextUse;
}
return ValueBase::consuming_use_iterator(cur);
}
inline ValueBase::consuming_use_iterator ValueBase::consuming_use_end() const {
return ValueBase::consuming_use_iterator(nullptr);
}
class NonConsumingUseIterator : public ValueBaseUseIterator {
public:
explicit NonConsumingUseIterator(Operand *cur) : ValueBaseUseIterator(cur) {}
NonConsumingUseIterator &operator++() {
assert(Cur && "incrementing past end()!");
assert(!Cur->isLifetimeEnding());
while ((Cur = Cur->NextUse)) {
if (!Cur->isLifetimeEnding())
break;
}
return *this;
}
NonConsumingUseIterator operator++(int unused) {
NonConsumingUseIterator copy = *this;
++*this;
return copy;
}
};
inline ValueBase::non_consuming_use_iterator
ValueBase::non_consuming_use_begin() const {
auto cur = FirstUse;
while (cur && cur->isLifetimeEnding()) {
cur = cur->NextUse;
}
return ValueBase::non_consuming_use_iterator(cur);
}
inline ValueBase::non_consuming_use_iterator
ValueBase::non_consuming_use_end() const {
return ValueBase::non_consuming_use_iterator(nullptr);
}
inline bool ValueBase::hasOneUse() const {
auto I = use_begin(), E = use_end();
if (I == E) return false;
return ++I == E;
}
inline Operand *ValueBase::getSingleUse() const {
auto I = use_begin(), E = use_end();
// If we have no elements, return nullptr.
if (I == E) return nullptr;
// Otherwise, grab the first element and then increment.
Operand *Op = *I;
++I;
// If the next element is not the end list, then return nullptr. We do not
// have one user.
if (I != E) return nullptr;
// Otherwise, the element that we accessed.
return Op;
}
inline Operand *ValueBase::getSingleConsumingUse() const {
Operand *result = nullptr;
for (auto *op : getUses()) {
if (op->isLifetimeEnding()) {
if (result) {
return nullptr;
}
result = op;
}
}
return result;
}
inline ValueBase::consuming_use_range ValueBase::getConsumingUses() const {
return {consuming_use_begin(), consuming_use_end()};
}
inline ValueBase::non_consuming_use_range
ValueBase::getNonConsumingUses() const {
return {non_consuming_use_begin(), non_consuming_use_end()};
}
inline bool ValueBase::hasTwoUses() const {
auto iter = use_begin(), end = use_end();
for (unsigned i = 0; i < 2; ++i) {
if (iter == end)
return false;
++iter;
}
return iter == end;
}
template <class T>
inline T *ValueBase::getSingleUserOfType() const {
T *result = nullptr;
for (auto *op : getUses()) {
if (auto *tmp = dyn_cast<T>(op->getUser())) {
if (result)
return nullptr;
result = tmp;
}
}
return result;
}
template <class T> inline T *ValueBase::getSingleConsumingUserOfType() const {
auto *op = getSingleConsumingUse();
if (!op)
return nullptr;
return dyn_cast<T>(op->getUser());
}
struct ValueBase::UseToUser {
SILInstruction *operator()(const Operand *use) const {
return const_cast<SILInstruction *>(use->getUser());
}
SILInstruction *operator()(const Operand &use) const {
return const_cast<SILInstruction *>(use.getUser());
}
SILInstruction *operator()(Operand *use) { return use->getUser(); }
SILInstruction *operator()(Operand &use) { return use.getUser(); }
};
template <typename T>
inline ValueBase::DowncastUserFilterRange<T> ValueBase::getUsersOfType() const {
auto begin = llvm::map_iterator(use_begin(), UseToUser());
auto end = llvm::map_iterator(use_end(), UseToUser());
auto transformRange = llvm::make_range(begin, end);
return makeDowncastFilterRange<T>(transformRange);
}
/// A constant-size list of the operands of an instruction.
template <unsigned N> class FixedOperandList {
Operand Buffer[N];
FixedOperandList(const FixedOperandList &) = delete;
FixedOperandList &operator=(const FixedOperandList &) = delete;
public:
template <class... T> FixedOperandList(SILInstruction *user, T&&...args)
: Buffer{ { user, std::forward<T>(args) }... } {
static_assert(sizeof...(args) == N, "wrong number of initializers");
}
/// Returns the full list of operands.
MutableArrayRef<Operand> asArray() {
return MutableArrayRef<Operand>(Buffer, N);
}
ArrayRef<Operand> asArray() const {
return ArrayRef<Operand>(Buffer, N);
}
/// Returns the full list of operand values.
OperandValueArrayRef asValueArray() const {
return OperandValueArrayRef(asArray());
}
/// Indexes into the full list of operands.
Operand &operator[](unsigned i) { return asArray()[i]; }
const Operand &operator[](unsigned i) const { return asArray()[i]; }
};
/// A helper class for initializing the list of trailing operands.
class TrailingOperandsList {
public:
static void InitOperandsList(Operand *p, SILInstruction *user,
SILValue operand, ArrayRef<SILValue> operands) {
assert(p && "Trying to initialize operands using a nullptr");
new (p++) Operand(user, operand);
for (auto op : operands) {
new (p++) Operand(user, op);
}
}
static void InitOperandsList(Operand *p, SILInstruction *user,
SILValue operand0, SILValue operand1,
ArrayRef<SILValue> operands) {
assert(p && "Trying to initialize operands using a nullptr");
new (p++) Operand(user, operand0);
new (p++) Operand(user, operand1);
for (auto op : operands) {
new (p++) Operand(user, op);
}
}
static void InitOperandsList(Operand *p, SILInstruction *user,
ArrayRef<SILValue> operands) {
assert(p && "Trying to initialize operands using a nullptr");
for (auto op : operands) {
new (p++) Operand(user, op);
}
}
};
/// SILValue hashes just like a pointer.
static inline llvm::hash_code hash_value(SILValue V) {
return llvm::hash_value((ValueBase *)V);
}
inline llvm::raw_ostream &operator<<(llvm::raw_ostream &OS, SILValue V) {
V->print(OS);
return OS;
}
} // end namespace swift
namespace llvm {
/// A SILValue casts like a ValueBase *.
template<> struct simplify_type<const ::swift::SILValue> {
using SimpleType = ::swift::ValueBase *;
static SimpleType getSimplifiedValue(::swift::SILValue Val) {
return Val;
}
};
template<> struct simplify_type< ::swift::SILValue>
: public simplify_type<const ::swift::SILValue> {};
// Values hash just like pointers.
template<> struct DenseMapInfo<swift::SILValue> {
static swift::SILValue getEmptyKey() {
return swift::SILValue::getFromOpaqueValue(
llvm::DenseMapInfo<void*>::getEmptyKey());
}
static swift::SILValue getTombstoneKey() {
return swift::SILValue::getFromOpaqueValue(
llvm::DenseMapInfo<void*>::getTombstoneKey());
}
static unsigned getHashValue(swift::SILValue V) {
return DenseMapInfo<swift::ValueBase *>::getHashValue(V);
}
static bool isEqual(swift::SILValue LHS, swift::SILValue RHS) {
return LHS == RHS;
}
};
/// SILValue is a PointerLikeType.
template<> struct PointerLikeTypeTraits<::swift::SILValue> {
using SILValue = ::swift::SILValue;
public:
static void *getAsVoidPointer(SILValue v) {
return v.getOpaqueValue();
}
static SILValue getFromVoidPointer(void *p) {
return SILValue::getFromOpaqueValue(p);
}
enum { NumLowBitsAvailable = swift::SILValue::NumLowBitsAvailable };
};
} // end namespace llvm
#endif