summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* Fixed regression in lub calculation.Paul Phillips2011-12-262-9/+29
| | | | | | | | | | | | | | | | | Changing NullaryMethodType to be a SimpleTypeProxy because nearly all its operations forward to its result type was it seems not such a good idea, because it also meant that calling .underlying returned the result type rather than the method type. The way this materialized was in subtype checks of refinement types. A lub is calculated for two nullary method types in the course of calculating a refinement, and then the input types are checked against the calculated lub. However in the lub refinement, the nullary method type has become a bare typeref, and so the subtype check failed. Closes SI-5317. This does give me confidence that all the malformed lubs one sees logged under -Ydebug (and there are still many, especially with type constructors) are alerting us to real bugs elsewhere in Types.
* Merge pull request #77 from scalamacros/topic/antlocalePaul Phillips2011-12-251-1/+1
|\ | | | | Addresses a bug in SimpleDateFormatter
| * Addresses a bug in SimpleDateFormatterEugene Burmako2011-12-251-1/+1
| |
* | Optimizing at the Name/String boundary.Paul Phillips2011-12-2511-87/+114
| | | | | | | | | | | | Working on reducing the now significant amount of both garbage and retained but duplicated Strings taking place as Names become Strings and vice versa. Long way to go.
* | Optimization in ZipArchive.Paul Phillips2011-12-251-4/+8
| | | | | | | | Avoid creating empty array when len == 0.
* | Merge remote-tracking branch 'origin/develop' into developPaul Phillips2011-12-240-0/+0
|\ \
| * \ Merge pull request #1 from odersky/topic/reifyodersky2011-12-226-89/+78
| |\ \ | | | | | | | | | | | | Improvements to reification and resetAttrs
| | * | Hardening of resetAllAttrs to work in the case where TypeTrees refer to ↵Martin Odersky2011-12-222-41/+44
| | | | | | | | | | | | | | | | locally erased symbols.
| | * | Hardening of isJavaClass to survive IncompatibleClassChange errors.Martin Odersky2011-12-221-1/+1
| | | |
| | * | wipEugene Burmako2011-12-224-40/+2
| | | |
| | * | Non-essential TypeApply trees must be omitted, or they will cause a ↵Eugene Burmako2011-12-221-0/+4
| | | | | | | | | | | | | | | | typecheck error
* | | | [vpm] when there's a default case, don't throw matcherrorAdriaan Moors2011-12-241-9/+16
| | | |
* | | | [vpm] lambdalift becomes less NSDNHO-proneAdriaan Moors2011-12-241-0/+1
| | | | | | | | | | | | | | | | made lambdalift complaint more useful
* | | | [vpm] emitting switches -- BodyTreeMakerAdriaan Moors2011-12-249-166/+319
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 1) introduce BodyTreeMaker to get rid of special casing for body now each case is a list of TreeMakers rather than a pair of such a list and a tree needed to do this since emitting switches requires access to the untranslated body 2) emitting switches - alternatives are flattened: each alternative block ends with a jump to the next alternative (if there is one) - to avoid stack overflow in typedMatch: detect when translateMatch returns a Match the patch to uncurry would be nicer with an extractor, but that breaks due to a bug in old patmat made trees into dags again -- NPE in erasure tree.duplicate seems to break lambdalift because it does not give fresh symbols (or trees?) to the valdefs for the arguments of duplicated functions duplicate enclosing tree, not subtrees improved propagateSubstitution for AlternativesTreeMaker - it now propagates to all its alternatives, so we don't have to do that in chainBefore - by making propagation more regular, a bug in substitution in AlternativesTreeMaker manifested itself it introduced a new binder, unnecessarily, which then was unbound -- now reusing binder of outer pattern having removeSubstOnly in propagateSubstitution unveiled a bug: guard treemaker should substitute move fixerUpper closer to what it fixes up
* | | | [vpm] better codegen, especially for alternatives (suggested by Tiark)Adriaan Moors2011-12-243-246/+221
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | factored out some of the optimizing codegen that had snuck into treemakers (guardtreemaker) removed `caseResult`, back to just `one` no longer emitting intermediate `one`s (using guard instead -- when not optimizing) so uncurry can't accidentally blow them away (it removes the `one` that represents the case's result, but should leave intermediate computation alone) still TODO: reusing-treemakers sharing prefixes of length 1 helps inlining suffix of alternatives if small enough
* | | | [vpm] common sub-expression elimination for conditionsAdriaan Moors2011-12-245-81/+456
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | TreeMakers (esp. CondTreeMakers) are approximated by hash-cons'ed Conds sharing is detected for prefixes of Conds, and shared conditions are only tested once their results are stored, and repeated tests branch on the last shared condition, reusing the results from the first time they were checked a Test is 1-to-1 with a TreeMaker, but may share its Cond TODO: clean separation of the two translation strategies: - naive flatMap/orElse (for virtualization) - less-naive if-then-else (with CSE etc coming) sharing trees caused wrong bytecode to be emitted (verifyerror) tentative explanation: "because lambdalift uses mutable state to track which variables have been captured if you refer to the same variable with the same tree twice it'll get confused" Sent at 8:27 PM on Thursday >> grzegorz.kossakowski: so we found a bug in jvm according to http://java.sun.com/docs/books/jvms/second_edition/html/Instructions2.doc2.html checkcast should throw a classcastexception becuase it's a shorthand for if !(x instanceof T) throw ClassCastExcpt but jvm decided to throw verifyerror and yeah, the check is wrong if jvm was not throwing verifyerror it would throw classcast exception saying that ObjectRef cannot be casted to $colon$colon ... >> me: so now where does it come from? since a ref is involved, i thought LambdaLift >> grzegorz.kossakowski: yup or now I don't think lambalift introduces that kind of low-level casts but I might be wrong btw. it's interesting that it unpacks stuff from objectref twice in your code and in one place checkcast is correct and in another is wrong Sent at 9:33 PM on Thursday >> grzegorz.kossakowski: also, since it's a verifyerror I think genjvm should have an assertion >> grzegorz.kossakowski: 193: getfield #54; //Field scala/runtime/ObjectRef.elem:Ljava/lang/Object; 196: checkcast #8; //class scala/runtime/ObjectRef 199: invokevirtual #95; //Method scala/collection/immutable/$colon$colon.tl$1:()Lscala/collection/immutable/List; it's this see you have checkcast for ObjectRef and then on that value, you try to call tl() method from List Sent at 9:56 PM on Thursday >> me: fixed sharing trees is bad very bad because lambdalift uses mutable state to track which variables have been captured if you refer to the same variable with the same tree twice it'll get confused
* | | | [vpm] optimized codegen avoids option-boxingAdriaan Moors2011-12-244-65/+160
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | introducing two mutable variables per pattern match: matchRes and keepGoing keepGoing denotes whether the result was Some or None, and matchRes holds the Some's contents or the right zero for the match's type Race(() => fastMatch(list), () => virtMatch_no_option(list))(100000).converge() is a virtual tie on my machine after this see https://gist.github.com/1400910 conveniently also works around SI-5245 don't assign to Unit-typed var's, in fact, make matchRes a val when its only prospect in life is to be unit-valued propagate eventual type for matchRes thru codegen so that we can have more robust checks for unit&nothing, when assignment makes no sense also, added a hack to caseResult to avoid boxed units in if(keepGoing) { matchRes = ... } else zero after erasure, we get if(keepGoing) { matchRes = ...; BoxedUNIT } else zero genicode broke because i was sharing trees: [scalacfork] error: java.lang.AssertionError: assertion failed: type error: can't convert from UNIT to REF(class Object) in unit ScalaSig.scala at source-/Users/adriaan/git/scala-dev/src/scalap/scala/tools/scalap/scalax/rules/scalasig/ScalaSig.scala,line-26,offset=868 fixed by duplicating -- so be it (for now -- make this more fine-grained, more efficient) dodging inliner issues with one/zero (it won't inline, so also directly inline those methods)
* | | | [vpm] unapplyProd: faster matching for case classesAdriaan Moors2011-12-244-84/+206
| |_|/ |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | behold the mythical unapplyProd: it does not exist, yet it promises to speed up pattern matching on case classes instead of calling the synthetic unapply/unapplySeq, we don't call the mythical synthetic unapplyProd, since -- if it existed -- it would be the identity anyway for case classes eventually, we will allow user-defined unapplyProd's, which should give you almost the same speed as case class matching for user-defined extractors (i.e., you don't have to wrap in an option, just return something on which we can select _i for i = 1 to N, unless it is null, which indicates match failure) still need to figure out a way to derive the types for the subpatterns, without requiring you to wrap your result in a ProductN unapplyProd support for vararg case classes using caseFieldAccessors instead of synthetic _i now the compiler bootstraps again, and after this optimization, quick.lib overhead is 70%, quick.comp is 50% (compiling with a locker built using -Yvirtpatmat, and itself generating code for -Yvirtpatmat) before the optimization, I think the overhead for quick.comp was close to 100% in this scenario more robust tupleSel for case classes TODO: - pos/t602 -- clean up after type inference as in fromCaseClassUnapply - run/pf-catch -- implement new-style orElse for partial function in uncurry
* | | global.abort calls global.error.Paul Phillips2011-12-222-2/+8
| | | | | | | | | | | | | | | | | | Otherwise it is possible (as I discovered the hard way) for tests running into compiler bugs to be treated as successful compiles.
* | | Hardening of resetAllAttrs.Martin Odersky2011-12-222-41/+44
| | | | | | | | | | | | Now works in the case where TypeTrees refer to locally erased symbols.
* | | Hardening of isJavaClass.Martin Odersky2011-12-221-1/+1
| | | | | | | | | | | | To survive IncompatibleClassChange errors.
* | | Omit non-essential TypeApply trees.Eugene Burmako2011-12-225-40/+6
| |/ |/| | | | | Otherwise they cause type errors.
* | Type checking now puts tree to be typed in local contextMartin Odersky2011-12-221-11/+31
|/
*---. Merge remote-tracking branches 'jsuereth/xsbt', 'kepler/ticket/5226' and ↵Paul Phillips2011-12-2115-165/+1233
|\ \ \ | | | | | | | | | | | | 'kepler/topic/ystopafter' into develop
| | | * Made -Ystop-after:parser work correctlyEugene Burmako2011-12-211-2/+4
| | | | | | | | | | | | | | | | | | | | Without this fix running a compiler with the aforementioned option leads to a crash (because namerPhase gets resolved to a NoPhase).
| | * | Attempt to fix classloader issuesEugene Burmako2011-12-211-2/+4
| | |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | @odersky writes: When doing reflect.mirror.ClassWithName("foo") in the REPL, we get a NullPointerException. It goes away if we have this fallback in defaultClassLoader. Not sure it's the right fix, though. Fixes SI-5226, review by @odersky
| * | Merge branch 'master' into xsbtJosh Suereth2011-12-2014-55/+262
| |\|
| * | Removing local linux sbt scripts.Josh Suereth2011-12-202-84/+0
| | | | | | | | | | | | | | | | | | Local linux SBT scripts have been removed in favor of using sbt-extras or an alternative windows solution which is TBD.
| * | Merge branch 'master' into xsbtJosh Suereth2011-12-1812-267/+511
| |\ \
| * | | Brought version detection up-to-date.Josh Suereth2011-12-162-19/+21
| | | | | | | | | | | | | | | | * SBT's version creation is now on par with tools/get-latest-version
| * | | Native SHA1 calculations.Josh Suereth2011-12-142-8/+56
| | | | | | | | | | | | | | | | | | | | * SHA1 sum calculations are now done in pure Scala. * Cache jar SHAs are checked for validity.
| * | | Merge branch 'xsbt' of github.com:scala/scala into xsbtJosh Suereth2011-12-1416-42/+246
| |\ \ \
| | * | | Fixes windows issues.Josh Suereth2011-12-141-1/+1
| | | | |
| | * | | Merge branch 'master' into xsbtJosh Suereth2011-12-1415-52/+253
| | |\ \ \
| | * | | | Improved error output.Josh Suereth2011-12-141-2/+9
| | | | | | | | | | | | | | | | | | | | | | | | * One SHA resolve, now outputs lots of stack traces if parallel execution failure.
| * | | | | Merge branch 'xsbt' of github.com:scala/scala into xsbtJosh Suereth2011-12-110-0/+0
| |\| | | |
| | * | | | Merge remote-tracking branch 'origin/master' into xsbtPaul Phillips2011-12-092-4/+41
| | |\ \ \ \
| * | \ \ \ \ Merge branch 'master' into xsbtJosh Suereth2011-12-114-21/+62
| |\ \ \ \ \ \ | | |/ / / / / | |/| | | | |
| * | | | | | Fixed Emit*Page to write to file.Josh Suereth2011-12-092-153/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | The EmitHtmlPage and EmitManPage utilities now write to a file if there is more than one argument on the command line. This allows the SBT build to fork them and still generate a file without having to capture the output stream.
| * | | | | | Parallelize sha resolution.Josh Suereth2011-12-091-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Retreiving STARR from SHA repo is now parallel by default. YAY for parallel collections.
| * | | | | | Merge branch 'master' into xsbtJosh Suereth2011-12-095-0/+65
| |\ \ \ \ \ \
| * | | | | | | MSIL now part of layered compilesJosh Suereth2011-12-092-19/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * The MSIL source code is now built at every layer as part of the compiler project. * The MSIL project is completely removed from other references.
| * | | | | | | Merge branch 'master' into xsbtJosh Suereth2011-12-0915-29/+191
| |\ \ \ \ \ \ \
| * | | | | | | | Fixed SHA resolver to only pull necessary JAR files and ignore other ↵Josh Suereth2011-12-081-1/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | directories.
| * | | | | | | | Added local cache for project jars.Josh Suereth2011-12-081-10/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | .desired.sha1 files now resolve into a local repository before being copied into the main repo. If the local repository exists and has a file, then there is no download necessary.
| * | | | | | | | Merge branch 'master' into xsbtJosh Suereth2011-12-0847-202/+160
| |\ \ \ \ \ \ \ \
| * \ \ \ \ \ \ \ \ Merge branch 'master' into xsbtPaul Phillips2011-12-0652-74/+74
| |\ \ \ \ \ \ \ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: project/build/ScalaSBTBuilder.scala
| * | | | | | | | | | Fixed publish issue.Josh Suereth2011-12-062-44/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Cleaned up layered build settings definition * Removed scalaVersion specification from build (not NEEDED). * Fixed a migration from build.sbt to project/Build.scala where publish settings were only being used on the root project and not also used for sub-projects which are published.
| * | | | | | | | | | Merge branch 'master' into xsbtJosh Suereth2011-12-0630-3/+93
| |\ \ \ \ \ \ \ \ \ \
| * | | | | | | | | | | Adding SHA resolve to the SBT build so that we don't need the push/pull ↵Josh Suereth2011-12-053-2/+61
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | binary libs script anymore. Only pull is implemented.