//===--- InsertCharacter.swift --------------------------------------------===// // // This source file is part of the Swift.org open source project // // Copyright (c) 2014 - 2018 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 let t: [BenchmarkCategory] = [.validation, .api, .String] public let benchmarks = [ BenchmarkInfo(name: "InsertCharacterEndIndex", runFunction: run_InsertCharacterEndIndex, tags: t, setUpFunction: buildWorkload), BenchmarkInfo(name: "InsertCharacterTowardsEndIndex", runFunction: run_InsertCharacterTowardsEndIndex, tags: t, setUpFunction: buildWorkload), BenchmarkInfo(name: "InsertCharacterStartIndex", runFunction: run_InsertCharacterStartIndex, tags: t, setUpFunction: buildWorkload, legacyFactor: 5), BenchmarkInfo(name: "InsertCharacterEndIndexNonASCII", runFunction: run_InsertCharacterEndIndexNonASCII, tags: t, setUpFunction: buildWorkload), BenchmarkInfo(name: "InsertCharacterTowardsEndIndexNonASCII", runFunction: run_InsertCharacterTowardsEndIndexNonASCII, tags: t, setUpFunction: buildWorkload), BenchmarkInfo(name: "InsertCharacterStartIndexNonASCII", runFunction: run_InsertCharacterStartIndexNonASCII, tags: t, setUpFunction: buildWorkload) ] let str = String(repeating: "A very long ASCII string.", count: 200) func buildWorkload() { blackHole(str) } // Insert towards end index @inline(__always) func insertTowardsEndIndex(_ c: Character, in string: String, count: Int) { var workload = string var index = workload.endIndex for i in 0..