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
|
//===--- StringRepeating.swift --------------------------------------------===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2023 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
//
//===----------------------------------------------------------------------===//
import TestsUtils
public let benchmarks = [
BenchmarkInfo(name: "String.initRepeating.1AsciiChar.Count100",
runFunction: run_singleAsciiCharacterCount100,
tags: [.validation, .api, .String]),
BenchmarkInfo(name: "String.initRepeating.26AsciiChar.Count2",
runFunction: run_26AsciiCharactersCount2,
tags: [.validation, .api, .String]),
BenchmarkInfo(name: "String.initRepeating.33CyrillicChar.Count2",
runFunction: run_33CyrillicCharactersCount2,
tags: [.validation, .api, .String]),
BenchmarkInfo(name: "String.initRepeating.longMixStr.Count100",
runFunction: run_longMixedStringCount100,
tags: [.validation, .api, .String])
]
@inline(never)
public func run_singleAsciiCharacterCount100(N: Int) {
let string = "x"
for _ in 1...200*N {
blackHole(String(repeating: getString(string), count: 100))
}
}
@inline(never)
public func run_26AsciiCharactersCount2(N: Int) {
let string = "abcdefghijklmnopqrstuvwxyz"
for _ in 1...200*N {
blackHole(String(repeating: getString(string), count: 2))
}
}
@inline(never)
public func run_33CyrillicCharactersCount2(N: Int) {
let string = "абвгґдеєжзиіїйклмнопрстуфхцчшщьюя"
for _ in 1...200*N {
blackHole(String(repeating: getString(string), count: 2))
}
}
@inline(never)
public func run_longMixedStringCount100(N: Int) {
let string = """
Swift is a multi-paradigm, compiled programming language created for
iOS, OS X, watchOS, tvOS and Linux development by Apple Inc. Swift is
designed to work with Apple's Cocoa and Cocoa Touch frameworks and the
large body of existing Objective-C code written for Apple products. Swift
is intended to be more resilient to erroneous code (\"safer\") than
Objective-C and also more concise. It is built with the LLVM compiler
framework included in Xcode 6 and later and uses the Objective-C runtime,
which allows C, Objective-C, C++ and Swift code to run within a single
program.
Існує багато варіацій уривків з Lorem Ipsum, але більшість з них зазнала
певних змін на кшталт жартівливих вставок або змішування слів, які навіть
не виглядають правдоподібно.
日本語の場合はランダムに生成された文章以外に、
著作権が切れた小説などが利用されることもある。
🦩
"""
for _ in 1...200*N {
blackHole(String(repeating: getString(string), count: 100))
}
}
|