mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
* IRGen: EmptyBoxType's representation cannot be nil because of a conflict with extra inhabitant assumption in indirect enums We map nil to the .None case of Optional. Instead use a singleton object. SR-5148 rdar://32618580
153 lines
4.9 KiB
C++
153 lines
4.9 KiB
C++
//===--- GlobalObjects.cpp - Statically-initialized objects ---------------===//
|
|
//
|
|
// 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Objects that are allocated at global scope instead of on the heap,
|
|
// and statically initialized to avoid synchronization costs, are
|
|
// defined here.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#include "../SwiftShims/GlobalObjects.h"
|
|
#include "swift/Runtime/Metadata.h"
|
|
#include "swift/Runtime/Debug.h"
|
|
#include <stdlib.h>
|
|
#include <random>
|
|
|
|
namespace swift {
|
|
// FIXME(ABI)#76 : does this declaration need SWIFT_RUNTIME_STDLIB_INTERFACE?
|
|
// _direct type metadata for Swift._EmptyArrayStorage
|
|
SWIFT_RUNTIME_STDLIB_INTERFACE
|
|
ClassMetadata CLASS_METADATA_SYM(s18_EmptyArrayStorage);
|
|
|
|
// _direct type metadata for Swift._RawNativeDictionaryStorage
|
|
SWIFT_RUNTIME_STDLIB_INTERFACE
|
|
ClassMetadata CLASS_METADATA_SYM(s27_RawNativeDictionaryStorage);
|
|
|
|
// _direct type metadata for Swift._RawNativeSetStorage
|
|
SWIFT_RUNTIME_STDLIB_INTERFACE
|
|
ClassMetadata CLASS_METADATA_SYM(s20_RawNativeSetStorage);
|
|
|
|
// _direct type metadata for Swift._EmptyBoxStorage
|
|
SWIFT_RUNTIME_STDLIB_INTERFACE
|
|
ClassMetadata CLASS_METADATA_SYM(s16_EmptyBoxStorage);
|
|
} // namespace swift
|
|
|
|
swift::_SwiftEmptyArrayStorage swift::_swiftEmptyArrayStorage = {
|
|
// HeapObject header;
|
|
{
|
|
&swift::CLASS_METADATA_SYM(s18_EmptyArrayStorage), // isa pointer
|
|
},
|
|
|
|
// _SwiftArrayBodyStorage body;
|
|
{
|
|
0, // int count;
|
|
1 // unsigned int _capacityAndFlags; 1 means elementTypeIsBridgedVerbatim
|
|
}
|
|
};
|
|
|
|
|
|
|
|
swift::_SwiftEmptyDictionaryStorage swift::_swiftEmptyDictionaryStorage = {
|
|
// HeapObject header;
|
|
{
|
|
&swift::CLASS_METADATA_SYM(s27_RawNativeDictionaryStorage), // isa pointer
|
|
},
|
|
|
|
// _SwiftDictionaryBodyStorage body;
|
|
{
|
|
// We set the capacity to 1 so that there's an empty hole to search.
|
|
// Any insertion will lead to a real storage being allocated, because
|
|
// Dictionary guarantees there's always another empty hole after insertion.
|
|
1, // int capacity;
|
|
0, // int count;
|
|
|
|
// _SwiftUnsafeBitMap initializedEntries
|
|
{
|
|
&swift::_swiftEmptyDictionaryStorage.entries, // unsigned int* values;
|
|
1 // int bitCount; (1 so there's something for iterators to read)
|
|
},
|
|
|
|
(void*)1, // void* keys; (non-null garbage)
|
|
(void*)1 // void* values; (non-null garbage)
|
|
},
|
|
|
|
0 // int entries; (zero'd bits)
|
|
};
|
|
|
|
|
|
swift::_SwiftEmptySetStorage swift::_swiftEmptySetStorage = {
|
|
// HeapObject header;
|
|
{
|
|
&swift::CLASS_METADATA_SYM(s20_RawNativeSetStorage), // isa pointer
|
|
},
|
|
|
|
// _SwiftDictionaryBodyStorage body;
|
|
{
|
|
// We set the capacity to 1 so that there's an empty hole to search.
|
|
// Any insertion will lead to a real storage being allocated, because
|
|
// Dictionary guarantees there's always another empty hole after insertion.
|
|
1, // int capacity;
|
|
0, // int count;
|
|
|
|
// _SwiftUnsafeBitMap initializedEntries
|
|
{
|
|
&swift::_swiftEmptySetStorage.entries, // unsigned int* values;
|
|
1 // int bitCount; (1 so there's something for iterators to read)
|
|
},
|
|
|
|
(void*)1 // void* keys; (non-null garbage)
|
|
},
|
|
|
|
0 // int entries; (zero'd bits)
|
|
};
|
|
|
|
static __swift_uint64_t randomUInt64() {
|
|
std::random_device randomDevice;
|
|
std::mt19937_64 twisterEngine(randomDevice());
|
|
std::uniform_int_distribution<__swift_uint64_t> distribution;
|
|
return distribution(twisterEngine);
|
|
}
|
|
|
|
SWIFT_ALLOWED_RUNTIME_GLOBAL_CTOR_BEGIN
|
|
swift::_SwiftHashingSecretKey swift::_swift_stdlib_Hashing_secretKey = {
|
|
randomUInt64(), randomUInt64()
|
|
};
|
|
SWIFT_ALLOWED_RUNTIME_GLOBAL_CTOR_END
|
|
|
|
__swift_uint64_t swift::_swift_stdlib_HashingDetail_fixedSeedOverride = 0;
|
|
|
|
SWIFT_RUNTIME_STDLIB_INTERFACE
|
|
void swift::_swift_instantiateInertHeapObject(void *address,
|
|
const HeapMetadata *metadata) {
|
|
::new (address) HeapObject{metadata};
|
|
}
|
|
|
|
swift::HeapLocalVariableMetadata _emptyBoxStorageMetadata;
|
|
|
|
/// The signleton empty box storage object.
|
|
swift::_SwiftEmptyBoxStorage swift::_EmptyBoxStorage = {
|
|
// HeapObject header;
|
|
{
|
|
&_emptyBoxStorageMetadata,
|
|
//&swift::CLASS_METADATA_SYM(s16_EmptyBoxStorage), // isa pointer
|
|
}
|
|
};
|
|
|
|
|
|
namespace llvm { namespace hashing { namespace detail {
|
|
// An extern variable expected by LLVM's hashing templates. We don't link any
|
|
// LLVM libs into the runtime, so define this here.
|
|
size_t fixed_seed_override = 0;
|
|
} // namespace detail
|
|
} // namespace hashing
|
|
} // namespace llvm
|