summaryrefslogtreecommitdiff
path: root/src
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #2251 from soc/SI-7236James Iry2013-03-202-14/+14
|\ | | | | SI-7236 Deprecate ThreadPoolTaskSupport and friends
| * SI-7236 Deprecate ThreadPoolTaskSupport and friendsSimon Ochsenreither2013-03-132-14/+14
| |
* | Merge pull request #2235 from vigdorchik/si_5513James Iry2013-03-201-1/+50
|\ \ | | | | | | SI-5513: add inplace set-theoretic operations for mutable bitsets.
| * | SI-5513: add inplace set-theoretic operations for mutable bitsets.Eugene Vigdorchik2013-03-111-1/+50
| | |
* | | Merge pull request #2219 from chuvoks/rbtRebalanceJames Iry2013-03-201-24/+45
|\ \ \ | | | | | | | | Optimize RedBlackTree rebalance method by using null optimized list implementation.
| * | | Optimize rebalance method by using null optimized list implementation.Juha Heljoranta2013-03-131-24/+45
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | rebalance method relies heavily on s.c.i.List. By replacing List with null optimized version, NList, rebalance operation is significantly more faster. Test indicate +10 % performance improvement for tree sizes >= 100. Existing tests verify red-black tree invariants, including operations involving tree rebalance.
* | | | Merge pull request #2244 from paulp/pr/notNullAdriaan Moors2013-03-1718-202/+127
|\ \ \ \ | | | | | | | | | | SI-7247, deprecate NotNull.
| * | | | Eliminated containsNull.Paul Phillips2013-03-133-81/+85
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This was a little trickier than the previous. I introduced a new method 'isBottomSubClass' which is the obvious complement to the beloved 'isNonBottomSubClass'. In eliminating the two call sites of containsNull I might have overshot the mark a bit when I rewrote fourthTry and thirdTryRef, but who is going to argue with such beauty as this.
| * | | | Completely remove isNotNull/notNull.Paul Phillips2013-03-131-19/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Restarted the Zamboni and collected these as well. Author was convinced by reviewer that clinging to isNotNull like Linus's security blanket will not help us with landing a picture of the Great Pumpkin. YAGNI, Charlie Brown.
| * | | | SI-7247, deprecated NotNull.Paul Phillips2013-03-133-3/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Removed NotNull from tests and the parentage of AnyVal. Removed the tests which were actually testing anything to do with NotNull; massaged the others to forget NotNull and/or not to name local things NotNull.
| * | | | Remove -Xcheck-null setting.Paul Phillips2013-03-135-47/+28
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Maybe this was useful in some way; but no way I ever saw. I have comments which tell me this is exposed in the IDE so I left a stub. I also removed mkCheckInit. That probably sounds like it's related to -Xcheckinit. Guess again, guy-who-thinks-names-mean-things. It was only used by -Xcheck-null.
| * | | | Removed -Ynotnull setting.Paul Phillips2013-03-1312-68/+25
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | It never worked and it would periodically jump out and bite someone. Slash and burn so new plants can take root. Eliminated NotNullType and NotNullClass, internal elements. Removed notNull method on Type, which no longer has a purpose. Retained 'def isNotNull' because there are types which are known by construction not to be null (ThisType, ConstantType as long as the constant isn't null, etc.) and that's still useful to know.
* | | | | Merge pull request #2214 from JamesIry/master_constant_optimizationJames Iry2013-03-153-2/+633
|\ \ \ \ \ | |/ / / / |/| | | | Analyze constants to remove unnecessary branches
| * | | | Cleanup of constant optimizationJames Iry2013-03-141-144/+127
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit cleans up constant optimization from the review of https://github.com/scala/scala/pull/2214 . * drops are done using the instruction's consumed count rather than a numeric literal * drops are moved into one common method in the main instruction interpreter * One instance of x.length > y.length is replaced with x.lengthCompare(y.length) > 0 * NaN is dealt with by treating it as an UNKNOWN * A test is added to make sure NaN semantics aren't broken. * The constant-optmization test is improved with tests for switch statements
| * | | | Analyze constants to remove unnecessary branchesJames Iry2013-03-073-2/+650
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This commit adds analysis and optimization of constants to remove unnecessary branches. It uses abstract interpretation to determine what constant(s) a particular stack slot or variable might or might not hold at a given spot and uses that knowledge to eliminate branches that cannot be taken. Its primary goal is null check removal, but it also works for other constants. Several tests are modified to include the new optimization phase. Two new tests are added. One verifies that branching still works as expected. The other verifies that branches are removed.
* | | | | Merge pull request #2215 from paulp/issue/7228Paul Phillips2013-03-136-49/+51
|\ \ \ \ \ | |_|_|_|/ |/| | | | SI-7228, bug in subtyping.
| * | | | Fix it-never-happened performance regression.Paul Phillips2013-03-131-3/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Diligent reviewer observed that a hot spot was possibly being made hotter. Reviewer's suggested remedy was a spectacular bust, but studious observation revealed the news lash that expensive methods are expensive and we should avoid calling them if we can. Put short-circuit test back in front of unapply call. Now the time spent in unapply is within a few percent.
| * | | | Moved some numeric subtyping logic closer to center.Paul Phillips2013-03-103-17/+25
| | | | | | | | | | | | | | | | | | | | | | | | | Fixed bug in numeric widening related to continuations, which enabled simplifying isNumericSubType.
| * | | | Simplified the widening logic.Paul Phillips2013-03-101-17/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Should speak for itself. Whenever someone changed @switch from an error to a warning, it broke all the tests which depended on the error. I added -Xfatal-warnings to a couple which needed it. And one of those tests was then failing, as it must now since we couldn't get away with what was being attempted, so I moved it to pending.
| * | | | SI-7228, bug in weak subtyping.Paul Phillips2013-03-104-19/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Another in the category of bugs which involve narrowing, widening, mediuming, dealiasing, weakening, normalizing, denormalizing, supernormalizing, subnormalizing, and double-bounded supersubnormalizing. This is probably not the ideal fix, but it is an improvement.
* | | | | Merge pull request #2242 from adriaanm/merge-2.10.xPaul Phillips2013-03-135-11/+26
|\ \ \ \ \ | | | | | | | | | | | | Merge 2.10.x into master
| * \ \ \ \ Merge 2.10.x into masterAdriaan Moors2013-03-124-10/+25
| |\ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/compiler/scala/reflect/reify/Errors.scala src/compiler/scala/tools/nsc/typechecker/NamesDefaults.scala
| | * \ \ \ \ Merge pull request #2224 from retronym/ticket/7238Adriaan Moors2013-03-111-3/+3
| | |\ \ \ \ \ | | | | | | | | | | | | | | | | SI-7328 Bail out of names/defaults when args are error typed
| | | * | | | | SI-7328 Bail out of names/defaults if args are error typedJason Zaugg2013-03-091-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | To avoid a crasher later on with a null type inside a sequence argument.
| | * | | | | | Merge pull request #2225 from retronym/ticket/7234Adriaan Moors2013-03-111-7/+10
| | |\ \ \ \ \ \ | | | | | | | | | | | | | | | | | | SI-7234 Make named args play nice with dep. method types
| | | * | | | | | SI-7234 Make named args play nice with dep. method typesJason Zaugg2013-03-091-7/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Some care is needed to avoid interaction with constant types (e.g pos/z1730.scala) and with existentials (e.g. t3507-old.scala).
| | * | | | | | | Merge pull request #2223 from scalamacros/ticket/7235Adriaan Moors2013-03-112-0/+6
| | |\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | reifier is now aware of SI-7235
| | | * | | | | | | reifier is now aware of SI-7235Eugene Burmako2013-03-092-0/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | SI-7235 is caused by a long-standing todo in typedRefinement, which leads to originals of compound type trees swallowing their stats. I'm not sure how exactly to fix SI-7235, but what I am sure about is that we shouldn't silently discard stats during reification. This patch introduces a new implementation restrictions, which now reports that reify of compound type trees with non-empty stats isn't going to work.
| | * | | | | | | | SI-7226 Fix inference regression caused by TypeVar equality.Jason Zaugg2013-03-091-0/+6
| | | |_|/ / / / / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | TypeVars, being mutable creatures, mustn't have structural equality/hashing, otherwise TypeRefs that differ only by having distinct TypeVars as components get wrongly uniqued together. The reported bug showed the disaterous consequences: constraints from the `C?[Int]` in the return type applied to the `?C[?A]` in the parameter list. This commit overrides `equals` and `hashCode` in `TypeVar` to use reference equality. An alternative fix would be to drop the `case`-ness of the class, as was the case before 0cde930b when this regressed.
| * | | | | | | | Merge 2.10.x into masterAdriaan Moors2013-03-121-1/+1
| |\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: src/compiler/scala/tools/nsc/typechecker/Typers.scala
| | * | | | | | | Fix SI-7224.Iulian Dragos2013-03-071-1/+1
| | | |/ / / / / | | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Don't focus positions assigned to the TypeTree of a parent of a Template when the parent exists in the source. A focused position (instance of `OffsetPosition`) makes it invisible to the presentation compiler when it looks for the innermost enclosing tree of a given position (breaking hyperlinking, for example).
* | | | | | | | Update sbt.latest.version to sbt's latest version.Paul Phillips2013-03-131-2/+3
| |_|_|_|_|/ / |/| | | | | | | | | | | | | | | | | | | | And tweak deprecated stub so it compiles with 0.12.2.
* | | | | | | Merge pull request #2236 from retronym/ticket/6601-2Paul Phillips2013-03-123-2/+8
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | SI-6601 Close access loophole for value class constructors
| * | | | | | | SI-6601 Close access loophole for value class constructorsJason Zaugg2013-03-113-2/+8
| | |_|_|/ / / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ExtensionMethods marks private constructors of value classes as notPRIVATE before pickling. When the pickler reads the flags of this symbol, the anti-shift mechanism folds this into the regular PRIVATE flag, so the class is pickled as though it was public all along. A seprately compiled client can then call this constructor. To remedy this, we must: - pickle `rawFlags`, rather than `flags`. This is symmetric with unpickling, which sets `rawFlags` with the value it reads. - Add `notPRIVATE` to the flagset `PickledFlags`. We cannot make this change in a minor version, as the pickler and unpickler must agree on `PickledFlags`. I believe that this won't change the size of pickled flags for the majority of symbols (ie, those without the notPRIVATE flag) due to the variable length encoding in `writeLongNat`. This also improves the situation for SI-6608. Reflection and scalap (and, by extension, IntelliJ), no longer will see as public methods that have had their access widened in SuperAccessors (which is done selectively to support inlining under separate compilation.)
* | | | | | | Merge pull request #2240 from paulp/pr/warn-forward-referencePaul Phillips2013-03-121-0/+35
|\ \ \ \ \ \ \ | |_|/ / / / / |/| | | | | | Warn about locally identifiable init order issues.
| * | | | | | Warn about locally identifiable init order issues.Paul Phillips2013-03-121-0/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This warns about a subset of initialization order issues which can easily be identified by inspection, such as val x = y val y = 5 The likelihood of this formulation being intentional is miniscule.
* | | | | | | update eclipse projects (partest, repl & scaladoc)Adriaan Moors2013-03-124-0/+51
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since we've removed scala.annotations.serializable in 2.11, you'll need to following bandaid to use eclipse on master. This is the easiest fix, but certainly not recommended in general. ``` --- i/src/eclipse/scala-library/.classpath +++ w/src/eclipse/scala-library/.classpath @@ -1,7 +1,7 @@ <?xml version="1.0" encoding="UTF-8"?> <classpath> <classpathentry kind="src" path="library"/> - <classpathentry kind="con" path="org.scala-ide.sdt.launching.SCALA_CONTAINER"/> + <classpathentry exported="true" kind="con" path="org.scala-ide.sdt.launching.SCALA_CONTAINER"/> ``` This corresponds to checking the export check box for the scala library jar in the library's build path.
* | | | | | | Merge pull request #2238 from adriaanm/pr-2206-rebasedAdriaan Moors2013-03-129-44/+265
|\ \ \ \ \ \ \ | |/ / / / / / |/| | | | | | [rebase of #2206] l JSR-223 compliance for the interpreter
| * | | | | | SI-874 actual JSR-223 implementationRaphael Jolly2013-03-116-29/+175
| | | | | | |
| * | | | | | SI-874 reflect.io improvementsRaphael Jolly2013-03-113-15/+90
| | | | | | |
* | | | | | | Merge pull request #2231 from retronym/topic/ide-configAdriaan Moors2013-03-119-0/+190
|\ \ \ \ \ \ \ | | | | | | | | | | | | | | | | Topic/ide config
| * | | | | | | Add eclipse projects for interactive, scaladoc.Jason Zaugg2013-03-104-0/+89
| | | | | | | |
| * | | | | | | IntellIiJ module definitions for scaladoc, interactive and continuations-*.Jason Zaugg2013-03-105-0/+101
| | |/ / / / / | |/| | | | |
* | | | | | | Merge pull request #2237 from som-snytt/topic/slurpeeAdriaan Moors2013-03-111-1/+4
|\ \ \ \ \ \ \ | |_|/ / / / / |/| | | | | | Close after slurping (fixes SI-7244)
| * | | | | | Close after slurping (fixes SI-7244)Som Snytt2013-03-111-1/+4
| |/ / / / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Since slurp by definition is the noise made by the straw when the cup is empty and all milk shake is consumed, we can safely close after slurping. Use case was deleting a test artifact on Windows.
* | | | | | Merge pull request #2229 from srinivasreddy/masterAdriaan Moors2013-03-111-1/+1
|\ \ \ \ \ \ | | | | | | | | | | | | | | A small typo corrected
| * | | | | | a typo correctedsrinivasreddy2013-03-101-1/+1
| | |_|_|_|/ | |/| | | |
* | | | | | Modularized the repl.Paul Phillips2013-03-1159-807/+788
| |/ / / / |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Following in the footsteps of scaladoc and interactive. The interpreter sources move into src/repl, and are given a separate build target. As with the others, at present they are still packaged into scala-compiler.jar. A summary of changes: - repl requires use of ReplGlobal (this was already implied) - macro code's repl-specific classloader hack pulled into overridable method and overridden in ReplGlobal - removed -Ygen-javap option to eliminate backend's dependency on javap - removed -Yrepl-debug option (can still be enabled with -Dscala.repl.debug) - pushed javap code into src/repl so javax.tools dependency can bee weakened to the repl only - removed some "show pickled" related code which hasn't worked right in a while and isn't the right way to do it anymore anyway. Will return to fix showPickled and provide it with some tests.
* | | | | Merge pull request #2201 from retronym/topic/types-break-down-squashAdriaan Moors2013-03-107-2649/+2732
|\ \ \ \ \ | | | | | | | | | | | | Carve up Types.scala
| * | | | | Carve up Types.scalaJason Zaugg2013-03-057-2649/+2732
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Step one of a plan to bring some order and thread safety to this neck of the woods. More info: https://gist.github.com/retronym/5081754 https://groups.google.com/forum/?fromgroups=#!topic/scala-internals/MOvmcnbyb_g Note that the sub package is named 'tpe' and not 'Types' to avoid potential problems on case insensitive file systems, given the existing trait 'Types.'