mirror of
https://github.com/apple/swift.git
synced 2025-12-14 20:36:38 +01:00
This cleans up 90 instances of this warning and reduces the build spew when building on Linux. This helps identify actual issues when building which can get lost in the stream of warning messages. It also helps restore the ability to build the compiler with gcc.
66 lines
2.5 KiB
C++
66 lines
2.5 KiB
C++
//===--- InstrumentsSupport.h - Support for Instruments.app -----*- 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
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Swift runtime support for instruments.app
|
|
// In the long run, they plan to use dyld to make this indirection go away.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
#ifndef SWIFT_RUNTIME_INSTRUMENTS_SUPPORT_H
|
|
#define SWIFT_RUNTIME_INSTRUMENTS_SUPPORT_H
|
|
|
|
#define SWIFT_RT_DECLARE_ENTRY \
|
|
__ptrauth_swift_runtime_function_entry
|
|
|
|
namespace swift {
|
|
|
|
// liboainject patches the function pointers and calls the functions below.
|
|
SWIFT_RUNTIME_EXPORT
|
|
HeapObject *(*SWIFT_RT_DECLARE_ENTRY _swift_allocObject)(
|
|
HeapMetadata const *metadata,
|
|
size_t requiredSize,
|
|
size_t requiredAlignmentMask);
|
|
SWIFT_RUNTIME_EXPORT
|
|
HeapObject *(*SWIFT_RT_DECLARE_ENTRY _swift_retain)(HeapObject *object);
|
|
SWIFT_RUNTIME_EXPORT
|
|
HeapObject *(*SWIFT_RT_DECLARE_ENTRY _swift_retain_n)(HeapObject *object, uint32_t n);
|
|
SWIFT_RUNTIME_EXPORT
|
|
HeapObject *(*SWIFT_RT_DECLARE_ENTRY _swift_tryRetain)(HeapObject *object);
|
|
SWIFT_RUNTIME_EXPORT
|
|
void (*SWIFT_RT_DECLARE_ENTRY _swift_release)(HeapObject *object);
|
|
SWIFT_RUNTIME_EXPORT
|
|
void (*SWIFT_RT_DECLARE_ENTRY _swift_release_n)(HeapObject *object, uint32_t n);
|
|
SWIFT_RUNTIME_EXPORT
|
|
size_t swift_retainCount(HeapObject *object);
|
|
|
|
// liboainject tries to patch the function pointers and call the functions below
|
|
// Swift used to implement these but no longer does.
|
|
// Do not reuse these names unless you do what oainject expects you to do.
|
|
SWIFT_RUNTIME_EXPORT
|
|
void *(*_swift_alloc)(size_t idx);
|
|
SWIFT_RUNTIME_EXPORT
|
|
void *(*_swift_tryAlloc)(size_t idx);
|
|
SWIFT_RUNTIME_EXPORT
|
|
void *(*_swift_slowAlloc)(size_t bytes, size_t alignMask, uintptr_t flags);
|
|
SWIFT_RUNTIME_EXPORT
|
|
void (*_swift_dealloc)(void *ptr, size_t idx);
|
|
SWIFT_RUNTIME_EXPORT
|
|
void (*_swift_slowDealloc)(void *ptr, size_t bytes, size_t alignMask);
|
|
SWIFT_RUNTIME_EXPORT
|
|
size_t _swift_indexToSize(size_t idx);
|
|
SWIFT_RUNTIME_EXPORT
|
|
void _swift_zone_init(void);
|
|
|
|
}
|
|
|
|
#endif
|