katleman [Thu, 16 Oct 2014 12:02:08 -0700] rev 27117
Added tag jdk9-b35 for changeset 906669fe9f2d
duke [Wed, 05 Jul 2017 20:04:39 +0200] rev 27116
Merge
katleman [Thu, 16 Oct 2014 12:02:03 -0700] rev 27115
Added tag jdk9-b35 for changeset 766607612d81
duke [Wed, 05 Jul 2017 20:04:36 +0200] rev 27114
Merge
lana [Thu, 16 Oct 2014 14:15:58 -0700] rev 27113
Merge
joehw [Fri, 09 May 2014 11:35:21 -0700] rev 27112
8039533: Higher resolution resolvers
Reviewed-by: lancea, dfuchs, skoivu
joehw [Mon, 13 Oct 2014 14:09:03 -0700] rev 27111
8036951: Xerces Update: XMLSchemaValidator.java and XMLSchemaLoader.java
Reviewed-by: lancea
katleman [Thu, 16 Oct 2014 12:02:03 -0700] rev 27110
Added tag jdk9-b35 for changeset ec7f6f7c8797
duke [Wed, 05 Jul 2017 20:04:33 +0200] rev 27109
Merge
lana [Thu, 16 Oct 2014 14:16:03 -0700] rev 27108
Merge
attila [Thu, 16 Oct 2014 11:34:31 +0200] rev 27107
8061113: Boolean used as optimistic call return type
Reviewed-by: hannesw, sundar
sundar [Wed, 15 Oct 2014 19:50:03 +0530] rev 27106
8060688: Nashorn: Generated script class name fails --verify-code for names with special chars
Reviewed-by: jlaskey, hannesw
attila [Wed, 15 Oct 2014 16:00:21 +0200] rev 27105
8060241: Immediately invoked function expressions cause lot of deoptimization
Reviewed-by: hannesw, lagergren
attila [Wed, 15 Oct 2014 15:57:46 +0200] rev 27104
8060242: Compile-time expression evaluator was not seeing into ArrayBufferViews
Reviewed-by: hannesw, lagergren, sundar
lagergren [Tue, 14 Oct 2014 16:11:07 +0200] rev 27103
8060471: DynamicLinker.getLinkedCallSiteLocation() is called even when logger is disabled, and it creates a stacktrace. This contributes unnecessarily to compile time.
Reviewed-by: lagergren, attila
Contributed-by: andreas.gabrielsson@oracle.com
lagergren [Tue, 14 Oct 2014 15:28:24 +0200] rev 27102
8012518: Reengineer Parser.java to make it play well with the copy-on-write IR.
Summary: Remove the kludges introduced to make the parser work with the copy on write IR. Now everything is done bottom up, finshing node children completely before node parents. The repeated non-functional pattern 'node = node.setSomething(something);' is gone. Resulting code is much more readable, and extensible for future work. The parser is now also consistent with the rest of the stateless copy-on-write world in code generation.
Reviewed-by: lagergren, attila, hannesw, shade
Contributed-by: andreas.gabrielsson@oracle.com