1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
|
//===----------------------------------------------------------------------===//
//
// This source file is part of the Swift open source project
//
// Copyright (c) 2018 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See http://swift.org/LICENSE.txt for license information
// See http://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
/// Available runtime sanitizers.
public enum Sanitizer: String, Encodable, CaseIterable {
case address
case thread
case undefined
case scudo
/// Return an established short name for a sanitizer, e.g. "asan".
public var shortName: String {
switch self {
case .address: return "asan"
case .thread: return "tsan"
case .undefined: return "ubsan"
case .scudo: return "scudo"
}
}
}
/// A set of enabled runtime sanitizers.
public struct EnabledSanitizers: Encodable {
/// A set of enabled sanitizers.
public let sanitizers: Set<Sanitizer>
public init(_ sanitizers: Set<Sanitizer> = []) {
// FIXME: We need to throw from here if given sanitizers can't be
// enabled. For e.g., it is illegal to enable thread and address
// sanitizers together.
self.sanitizers = sanitizers
}
/// Sanitization flags for the C family compiler (C/C++).
public func compileCFlags() -> [String] {
return sanitizers.map({ "-fsanitize=\($0.rawValue)" })
}
/// Sanitization flags for the Swift compiler.
public func compileSwiftFlags() -> [String] {
return sanitizers.map({ "-sanitize=\($0.rawValue)" })
}
/// Sanitization flags for the Swift linker and compiler are the same so far.
public func linkSwiftFlags() -> [String] {
return compileSwiftFlags()
}
public var isEmpty: Bool {
return sanitizers.isEmpty
}
enum CodingKeys: String, CodingKey {
case sanitizers
}
public func encode(to encoder: Encoder) throws {
var container = encoder.container(keyedBy: CodingKeys.self)
try container.encode(sanitizers.sorted{ $0.rawValue < $1.rawValue }, forKey: .sanitizers)
}
}
|