All Downloads are FREE. Search and download functionalities are using the official Maven repository.

scala.reflect.runtime.Gil.scala Maven / Gradle / Ivy

There is a newer version: 2.13.14
Show newest version
package scala.reflect
package runtime

private[reflect] trait Gil {
  self: SymbolTable =>

  // fixme... please...
  // there are the following avenues of optimization we discussed with Roland:
  // 1) replace PackageScope locks with ConcurrentHashMap, because PackageScope materializers seem to be idempotent
  // 2) unlock unpickling completers by verifying that they are idempotent or moving non-idempotent parts
  // 3) remove the necessity in global state for isSubType
  private lazy val gil = new java.util.concurrent.locks.ReentrantLock

  @inline final def gilSynchronized[T](body: => T): T = {
    if (isCompilerUniverse) body
    else {
      try {
        gil.lock()
        body
      } finally {
        gil.unlock()
      }
    }
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy