[performance] rename konan -> kotlin.native

This commit is contained in:
Vasily Levchenko
2018-08-15 12:22:55 +03:00
parent 29c03b258a
commit 4a46102658
3 changed files with 49 additions and 5 deletions
@@ -16,12 +16,9 @@
package org.jetbrains.ring
import kotlin.system.measureNanoTime
//-----------------------------------------------------------------------------//
class Blackhole {
@konan.ThreadLocal
companion object {
var consumer = 0
fun consume(value: Any) {
@@ -33,7 +30,6 @@ class Blackhole {
//-----------------------------------------------------------------------------//
class Random() {
@konan.ThreadLocal
companion object {
var seedInt = 0
fun nextInt(boundary: Int = 100): Int {
@@ -1,5 +1,5 @@
package org.jetbrains.ring
import konan.internal.GC
import kotlin.native.internal.GC
fun cleanup() { GC.collect() }
@@ -0,0 +1,48 @@
/*
* Copyright 2010-2017 JetBrains s.r.o.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.jetbrains.ring
//-----------------------------------------------------------------------------//
class Blackhole {
@kotlin.native.ThreadLocal
companion object {
var consumer = 0
fun consume(value: Any) {
consumer += value.hashCode()
}
}
}
//-----------------------------------------------------------------------------//
class Random() {
@kotlin.native.ThreadLocal
companion object {
var seedInt = 0
fun nextInt(boundary: Int = 100): Int {
seedInt = (3 * seedInt + 11) % boundary
return seedInt
}
var seedDouble: Double = 0.1
fun nextDouble(boundary: Double = 100.0): Double {
seedDouble = (7.0 * seedDouble + 7.0) % boundary
return seedDouble
}
}
}