blob: 25717e4ff63df8f917dca867634933298c7ef90c [file] [log] [blame]
//===--- WitnessIndex.h - Index into a witness table ------------*- 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 WitnessIndex type, used for drilling into a
// protocol witness table or value witness table.
//
//===----------------------------------------------------------------------===//
#ifndef SWIFT_IRGEN_WITNESSINDEX_H
#define SWIFT_IRGEN_WITNESSINDEX_H
#include "swift/ABI/MetadataValues.h"
#include "swift/IRGen/ValueWitness.h"
namespace swift {
namespace irgen {
/// A class which encapsulates an index into a witness table.
class WitnessIndex {
// Negative values are indexing into the private area of a protocol witness
// table.
int Value : 31;
unsigned IsPrefix : 1;
public:
WitnessIndex() = default;
WitnessIndex(ValueWitness index) : Value(int(index)) {}
explicit WitnessIndex(int index, bool isPrefix)
: Value(index), IsPrefix(isPrefix) {}
int getValue() const { return Value; }
bool isPrefix() const { return IsPrefix; }
/// Adjust the index to refer into a protocol witness table (rather than
/// a value witness table).
WitnessIndex forProtocolWitnessTable() const {
int NewValue = Value < 0
? Value
: Value + WitnessTableFirstRequirementOffset;
return WitnessIndex(NewValue, IsPrefix);
}
};
} // end namespace irgen
} // end namespace swift
#endif