forked from scala/scala
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Variation scala#10 to optimze findMember
Undoing the memberType caching. This seems to make it slower rather than faster. Also, comparing new vs old statistics shows that only very few asSeenFrom operations are saved by the caching.
- Loading branch information
Showing
3 changed files
with
55 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
/* NSC -- new Scala compiler | ||
* Copyright 2005-2011 LAMP/EPFL | ||
* @author Martin Odersky | ||
*/ | ||
|
||
package scala.tools.nsc | ||
|
||
import java.io.File | ||
import File.pathSeparator | ||
|
||
import scala.tools.nsc.interactive.{ RefinedBuildManager, SimpleBuildManager } | ||
import scala.tools.nsc.io.AbstractFile | ||
import scala.tools.nsc.reporters.{Reporter, ConsoleReporter} | ||
import scala.reflect.internal.util.{ BatchSourceFile, FakePos } //{Position} | ||
import Properties.{ versionString, copyrightString, residentPromptString, msilLibPath } | ||
import scala.reflect.internal.util.Statistics | ||
|
||
/** The main class for NSC, a compiler for the programming | ||
* language Scala. | ||
*/ | ||
object MainBench extends Driver with EvalLoop { | ||
|
||
lazy val theCompiler = Global(settings, reporter) | ||
|
||
override def newCompiler() = theCompiler | ||
|
||
val NIter = 50 | ||
val NBest = 10 | ||
|
||
override def main(args: Array[String]) = { | ||
val times = new Array[Long](NIter) | ||
var start = System.nanoTime() | ||
for (i <- 0 until NIter) { | ||
if (i == NIter-1) { | ||
theCompiler.settings.Ystatistics.value = true | ||
Statistics.enabled = true | ||
} | ||
process(args) | ||
val end = System.nanoTime() | ||
val duration = (end-start)/1000000 | ||
println(s"${duration}ms") | ||
times(i) = duration | ||
start = end | ||
} | ||
val avg = times.sorted.take(NBest).sum / NBest | ||
println(s"avg shortest $NBest times ${avg}ms") | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters