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 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557
|
// RUN: %target-swift-frontend -parse-as-library -disable-availability-checking -enable-experimental-feature RawLayout -import-objc-header %S/Inputs/perf-annotations.h -emit-sil %s -o /dev/null -verify
// REQUIRES: swift_in_compiler
// REQUIRES: optimized_stdlib
protocol P {
func protoMethod(_ a: Int) -> Int
}
open class Cl {
open func classMethod() {}
final func finalMethod() {}
}
func initFunc() -> Int { return Int.random(in: 0..<10) }
struct Str : P {
let x: Int
func protoMethod(_ a: Int) -> Int {
return a + x
}
static let s = 27
static var s2 = 10 + s
static var s3 = initFunc() // expected-error {{global/static variable initialization can cause locking}}
}
struct AllocatingStr : P {
func protoMethod(_ a: Int) -> Int {
_ = Cl() // expected-error {{Using type 'Cl' can cause metadata allocation or locks}}
return 0
}
}
func noRTCallsForArrayGet(_ a: [Str], _ i: Int) -> Int {
return a[i].x
}
@_noLocks
func callArrayGet(_ a: [Str]) -> Int {
return noRTCallsForArrayGet(a, 0)
}
@_noLocks
func arcOperations(_ x: Cl) -> Cl {
return x // expected-error {{this code performs reference counting operations which can cause locking}}
}
func genFunc<T: P>(_ t: T, _ a: Int) -> Int {
let s = t
return t.protoMethod(a) + s.protoMethod(a) // expected-note {{called from here}}
}
@_noAllocation
func callMethodGood(_ a: Int) -> Int {
return genFunc(Str(x: 1), a)
}
@_noAllocation
func callMethodBad(_ a: Int) -> Int {
return genFunc(AllocatingStr(), a) // expected-note {{called from here}}
}
@_noAllocation
func callClassMethod(_ c: Cl) {
return c.classMethod() // expected-error {{called function is not known at compile time and can have unpredictable performance}}
}
@_noAllocation
func callFinalMethod(_ c: Cl) {
return c.finalMethod()
}
@_noAllocation
func callProtocolMethod(_ p: P) -> Int {
return p.protoMethod(0) // expected-error {{this code pattern can cause metadata allocation or locks}}
}
@_noAllocation
func dynamicCast(_ a: AnyObject) -> Cl? {
return a as? Cl // expected-error {{dynamic casting can lock or allocate}}
}
@_noAllocation
func testUnsafePerformance(_ idx: Int) -> [Int] {
return _unsafePerformance { [10, 20, 30, 40] }
}
@_noAllocation
func testMemoryLayout() -> Int {
return MemoryLayout<Int>.size + MemoryLayout<Int>.stride + MemoryLayout<Int>.alignment
}
class MyError : Error {}
class MyError2 : Error {}
@_noLocks
func errorExistential(_ b: Bool) throws -> Int {
if b {
return 28
}
throw MyError()
}
@_noLocks
func multipleThrows(_ b1: Bool, _ b2: Bool) throws -> Int {
if b1 {
throw MyError()
}
if b2 {
throw MyError2()
}
return 28
}
@_noLocks
func testCatch(_ b: Bool) throws -> Int? {
do {
return try errorExistential(true)
} catch let e as MyError {
print(e)
return nil
}
}
@_noLocks
func testRecursion(_ i: Int) -> Int {
if i > 0 {
return testRecursion(i - 1)
}
return 0
}
@_noLocks
func testGlobal() -> Int {
return Str.s + Str.s2
}
@_noLocks
func testGlobalWithComplexInit() -> Int {
return Str.s3 // expected-note {{called from here}}
}
func metatypeArg<T>(_ t: T.Type, _ b: Bool) {
}
@_noAllocation
func callFuncWithMetatypeArg() {
metatypeArg(Int.self, false)
}
@_noAllocation
func intConversion() {
let x = 42
_ = UInt(x)
}
@_noAllocation
func integerRange() {
for _ in 0 ..< 10 {
}
}
struct GenStruct<A> {
var a: A
}
@_noAllocation
func memoryLayout() -> Int? {
return MemoryLayout<GenStruct<Int>>.size
}
class H {
var hash: Int { 27 }
}
struct MyStruct {
static var v: Int = { // expected-error {{Using type 'H' can cause metadata allocation or locks}}
return H().hash
}()
}
@_noAllocation
func globalWithInitializer(x: MyStruct) {
_ = MyStruct.v // expected-note {{called from here}}
}
@_noAllocation
func callBadClosure(closure: ()->Int) -> Int {
return closure()
}
@_noAllocation
func badClosure() {
_ = callBadClosure(closure: { // expected-note {{called from here}}
_ = Cl() // expected-error {{Using type 'Cl' can cause metadata allocation or locks}}
return 42
})
}
func badClosure2() {
_ = callBadClosure(closure: { // expected-note {{called from here}}
_ = Cl() // expected-error {{Using type 'Cl' can cause metadata allocation or locks}}
return 42
})
}
@_noAllocation
func callGoodClosure(closure: ()->Int) -> Int {
return closure()
}
@_noAllocation
func goodClosure() {
_ = callBadClosure(closure: {
return 42
})
}
func goodClosure2() {
_ = callBadClosure(closure: {
return 42
})
}
@_noAllocation
func closueWhichModifiesLocalVar() -> Int {
var x = 42
let localNonEscapingClosure = {
x += 1
}
localNonEscapingClosure()
return x
}
struct Buffer {
var p: UnsafeMutableRawBufferPointer
func bind<T>(of type: T.Type) -> UnsafeMutableBufferPointer<T> {
self.p.bindMemory(to: T.self)
}
@_noAllocation
func callBind() -> UnsafeMutableBufferPointer<Int> {
return bind(of: Int.self)
}
}
@_noLocks
func testBitShift(_ x: Int) -> Int {
return x << 1
}
@_noLocks
func testUintIntConversion() -> Int {
let u: UInt32 = 5
return Int(u)
}
struct OptSet: OptionSet {
let rawValue: Int
public static var a: OptSet { return OptSet(rawValue: 1) }
public static var b: OptSet { return OptSet(rawValue: 2) }
public static var c: OptSet { return OptSet(rawValue: 4) }
public static var d: OptSet { return OptSet(rawValue: 8) }
}
@_noLocks
func testOptionSet(_ options: OptSet) -> Bool {
return options.contains(.b)
}
let globalA = 0xff
let globalB = UInt32(globalA)
@_noLocks
func testGlobalsWithConversion() -> UInt32 {
return globalB
}
public struct X: Collection {
public func index(after i: Int) -> Int {
return i + 1
}
public subscript(position: Int) -> Int {
get {
return 0
}
}
public var startIndex: Int = 0
public var endIndex: Int = 1
public typealias Index = Int
}
extension Collection where Element: Comparable {
public func testSorted() -> Int {
return testSorted(by: <)
}
public func testSorted(by areInIncreasingOrder: (Element, Element) -> Bool) -> Int {
let x = 0
_ = areInIncreasingOrder(self.first!, self.first!)
return x
}
}
@_noLocks
public func testCollectionSort(a: X) -> Int {
_ = a.testSorted()
return 0
}
public struct Y {
var a, b, c: Int
}
extension Y {
func with2(_ body: () -> ()) {
body()
}
func with1(_ body: (Int) -> (Int)) -> Int {
with2 {
_ = body(48)
}
return 777
}
func Xsort() -> Int {
with1 { i in
i
}
}
}
@_noLocks
public func testClosurePassing(a: inout Y) -> Int {
return a.Xsort()
}
struct LargeGenericStruct<T> {
var a: T
var b: T
var c: T
var d: T
var e: T
var f: T
var g: T
var h: T
}
var largeGeneric = LargeGenericStruct<Int>(a: 1, b: 2, c: 3, d: 4, e: 5, f: 6, g: 7, h: 8)
@_noLocks
func testLargeGenericStruct() -> LargeGenericStruct<Int> {
return largeGeneric
}
struct ContainsLargeGenericStruct {
var s: LargeGenericStruct<Int>
}
var clgs = ContainsLargeGenericStruct(s: LargeGenericStruct<Int>(a: 1, b: 2, c: 3, d: 4, e: 5, f: 6, g: 7, h: 8))
@_noLocks
func testClgs() -> ContainsLargeGenericStruct {
return clgs
}
struct NestedGenericStruct<T> {
var a: T
var b: T
var c: LargeGenericStruct<T>
var d: T
var e: T
var f: T
var g: T
var h: T
}
var nestedGeneric = NestedGenericStruct(a: 1, b: 2, c: LargeGenericStruct<Int>(a: 1, b: 2, c: 3, d: 4, e: 5, f: 6, g: 7, h: 8), d: 4, e: 5, f: 6, g: 7, h: 8)
@_noLocks
func testNestedGenericStruct() -> NestedGenericStruct<Int> {
return nestedGeneric
}
var x = 24
let pointerToX = UnsafePointer(&x)
@_noLocks
func testPointerToX() -> UnsafePointer<Int> {
return pointerToX
}
func foo<T>(_ body: () -> (T)) -> T {
return body()
}
func bar<T>(_ body: () -> (T)) -> T {
return body()
}
func baz<T>(t: T) -> T {
foo {
bar {
return t
}
}
}
@_noLocks
func nestedClosures() -> Int {
return baz(t: 42)
}
@_noAllocation
func testInfiniteLoop(_ c: Cl) {
c.classMethod() // expected-error {{called function is not known at compile time and can have unpredictable performance}}
while true {}
}
@_noAllocation
func testPrecondition(_ count: Int) {
precondition(count == 2, "abc")
}
@_noRuntime
func dynamicCastNoRuntime(_ a: AnyObject) -> Cl? {
return a as? Cl // expected-error {{dynamic casting can lock or allocate}}
}
func useExistential<T: P>(_: T) {}
@_noRuntime
func openExistentialNoRuntime(_ existential: P) {
_openExistential(existential, do: useExistential) // expected-error {{generic function calls can cause metadata allocation or locks}}
}
@_noExistentials
func dynamicCastNoExistential(_ a: AnyObject) -> Cl? {
return a as? Cl
}
@_noExistentials
func useOfExistential() -> P {
Str(x: 1) // expected-error {{cannot use a value of protocol type 'any P' in @_noExistential function}}
}
@_noExistentials
func genericNoExistential() -> some P {
Str(x: 1)
}
@_noRuntime
func genericNoRuntime() -> some P {
Str(x: 1)
}
@_noObjCBridging
func useOfExistentialNoObjc() -> P {
Str(x: 1)
}
@_noRuntime
func useOfExistentialNoRuntime() -> P {
Str(x: 1) // expected-error {{Using type 'any P' can cause metadata allocation or locks}}
}
public struct NonCopyable: ~Copyable {
var value: Int
}
@_noAllocation
public func testNonCopyable(_ foo: consuming NonCopyable) {
let _ = foo.value
}
@_noAllocation
func matchCEnum(_ variant: c_closed_enum_t) -> Int {
switch variant {
case .A:
return 1
case .B:
return 2
case .C:
return 5
}
}
public struct GenericStruct<T> {
private var x = 0
private var y: T?
@inline(never)
init() {}
}
@_noLocks
func testLargeTuple() {
typealias SixInt8s = (Int8, Int8, Int8, Int8, Int8, Int8)
_ = GenericStruct<SixInt8s>()
}
struct NonCopyableStruct: ~Copyable {
func foo() {}
}
@_noLocks
func testNonCopyable() {
let t = NonCopyableStruct()
t.foo()
}
func takesClosure(_: () -> ()) {}
@_noLocks
func testClosureExpression<T>(_ t: T) {
takesClosure {
// expected-error@-1 {{generic closures or local functions can cause metadata allocation or locks}}
_ = T.self
}
}
@_noLocks
func testLocalFunction<T>(_ t: T) {
func localFunc() {
_ = T.self
}
takesClosure(localFunc)
// expected-error@-1 {{generic closures or local functions can cause metadata allocation or locks}}
}
func takesGInt(_ x: G<Int>) {}
struct G<T> {}
extension G where T == Int {
@_noAllocation func method() {
takesClosure {
takesGInt(self)
}
}
}
public struct RawLayoutWrapper: ~Copyable {
private let x = RawLayout<Int>()
@_noLocks func testit() {
x.test()
}
}
@_rawLayout(like: T)
public struct RawLayout<T>: ~Copyable {
public func test() {}
}
|