Files
swift-mirror/lib/SIL/Utils/ValueUtils.cpp
Michael Gottesman c026e95cce [ownership] Extract out SILOwnershipKind from ValueOwnershipKind into its own type and rename Invalid -> Any.
This makes it easier to understand conceptually why a ValueOwnershipKind with
Any ownership is invalid and also allowed me to explicitly document the lattice
that relates ownership constraints/value ownership kinds.
2020-11-10 14:29:11 -08:00

27 lines
1.0 KiB
C++

//===--- ValueUtils.cpp ---------------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2018 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
//
//===----------------------------------------------------------------------===//
#include "swift/SIL/ValueUtils.h"
#include "swift/Basic/STLExtras.h"
#include "swift/SIL/SILFunction.h"
using namespace swift;
ValueOwnershipKind swift::mergeSILValueOwnership(ArrayRef<SILValue> values) {
auto range = makeTransformRange(values,
[](SILValue v) {
assert(v->getType().isObject());
return v.getOwnershipKind();
});
return ValueOwnershipKind::merge(range);
}