- 28 10月, 2013 1 次提交
-
-
由 brutisso 提交于
Reviewed-by: stefank, ehelin, ysr, tschatzl
-
- 25 10月, 2013 1 次提交
-
-
由 roland 提交于
Summary: force TypeProfileLevel to 0 on non x86 Reviewed-by: twisti
-
- 24 10月, 2013 2 次提交
- 23 10月, 2013 3 次提交
-
-
由 tschatzl 提交于
Summary: The field G1AllocRegion::_alloc_region needs to be declared volatile as it is used with that intention. Otherwise the compiler may generate the code that reloads the value which might have changed in the meantime, leading to spurious crashes. Reviewed-by: iveresov, simonis, tschatzl Contributed-by: NAxel Siebenborn <axel.siebenborn@sap.com>
-
由 iklam 提交于
Summary: Revert changes in JDK-8008962 Reviewed-by: coleenp, sspitsyn
-
由 hseigel 提交于
Summary: If the resolved interface does not itself contain "clone" or "finalize" methods, the method/interface method resolution looks to the interface's super class, java.lang.Object. With the JDK 8 interface method accessability check requirement, since these two methods are declared within Object as protected, they must be special cased in LinkResolver::check_method_accessability() in order to avoid an IAE. Reviewed-by: acorn, dholmes Contributed-by: lois.foltan@oracle.com
-
- 22 10月, 2013 1 次提交
-
-
由 sjohanss 提交于
Summary: Changed the use of %d to SIZE_FORMAT macro in format string when printing size_t values. Reviewed-by: stefank, ehelin
-
- 21 10月, 2013 1 次提交
-
-
由 ehelin 提交于
Reviewed-by: coleenp, mgerdin, sspitsyn
-
- 20 10月, 2013 1 次提交
-
-
由 dsamersoff 提交于
8026930: In ManagementAgent.start it should be possible to set the jdp.name parameter (hotspot part) Summary: Pass one more property from Agent to JdpController Reviewed-by: jbachorik, sla
-
- 18 10月, 2013 2 次提交
- 17 10月, 2013 6 次提交
-
-
由 jmasa 提交于
Reviewed-by: jcoomes, tamao, tschatzl, stefank
-
由 dsamersoff 提交于
8005810: Update Hotspot Serviceability Agent for Method Parameter Reflection and Generic Type Signature Data Summary: Hotspot was updated to store method parameter reflection and generic type signature data at runtime. Serviceability agent support was updated for this data Reviewed-by: coleenp, minqi, sla Contributed-by: eric.mccorkle@oracle.com
-
由 stefank 提交于
Reviewed-by: coleenp, mgerdin
-
由 stefank 提交于
Reviewed-by: mgerdin, coleenp
-
由 hseigel 提交于
Summary: Added check for NULL prior to continuation of method look up to avoid runtime crash during look up of Object's superclass' methods. Reviewed-by: coleenp, hseigel Contributed-by: lois.foltan@oracle.com
-
由 iveresov 提交于
8009303: Tiered: incorrect results in VM tests stringconcat with -Xcomp -XX:+DeoptimizeALot on solaris-amd64 Summary: Do memory flow analysis in string concat optimizier to exclude cases when computation of arguments to StringBuffer::append has side effects Reviewed-by: kvn, twisti
-
- 16 10月, 2013 1 次提交
-
-
由 simonis 提交于
Reviewed-by: sla, kamg
-
- 15 10月, 2013 5 次提交
-
-
由 stefank 提交于
Reviewed-by: coleenp, jmasa
-
由 stefank 提交于
Reviewed-by: coleenp, jmasa
-
由 mgerdin 提交于
Summary: Chunk up the last piece of committed memory in a VSN when getting a new one. Reviewed-by: stefank, jmasa
-
由 pliden 提交于
Reviewed-by: brutisso, tschatzl, kmo, tamao
-
由 anoll 提交于
Summary: Remove duplicate print Reviewed-by: kvn, twisti
-
- 18 10月, 2013 1 次提交
-
-
由 rbackman 提交于
Reviewed-by: kvn, twisti
-
- 24 10月, 2013 2 次提交
- 23 10月, 2013 3 次提交
-
-
由 roland 提交于
Summary: record unused type profile information with type system, propagate and use it. Reviewed-by: kvn, twisti
-
由 adlertz 提交于
Summary: We can reach this state from phi input rematerialization, so pass in the Reaches of the predecessor Reviewed-by: roland, twisti
-
由 anoll 提交于
8026407: VM crashes on linux-ppc and linux-i586 when there is not enough ReservedCodeCacheSize specified Summary: Ensure currently required generation of AdapterHandlerLibrary::create_native_wrapper() Reviewed-by: roland, iveresov
-
- 22 10月, 2013 1 次提交
-
-
由 roland 提交于
Summary: x86 interpreter and c1 type profiling for parameters on method entries Reviewed-by: kvn, twisti
-
- 21 10月, 2013 1 次提交
-
-
由 rbackman 提交于
8026959: assert(!n->pinned() || n->is_MachConstantBase()) failed: only pinned MachConstantBase node is expected here Reviewed-by: iveresov, roland
-
- 19 10月, 2013 2 次提交
- 18 10月, 2013 1 次提交
-
-
由 adlertz 提交于
Summary: Enables private copies of inputs for recent spill copies as well Reviewed-by: kvn, twisti
-
- 15 10月, 2013 1 次提交
-
-
由 acorn 提交于
Reviewed-by: ccheung, coleenp
-
- 14 10月, 2013 1 次提交
-
-
由 sjohanss 提交于
Summary: Using strtod() instead of atof() when parsing -Xminf and -Xmaxf. Reviewed-by: brutisso, pliden
-
- 13 10月, 2013 1 次提交
-
-
由 hseigel 提交于
Summary: Check if data is in shared spaces before deallocating it. Reviewed-by: coleenp, dcubed
-
- 12 10月, 2013 2 次提交
-
-
由 jwilhelm 提交于
Summary: Exit with an error if incompatible NewSize and MaxNeSize are set Reviewed-by: brutisso, tschatzl
-
由 hseigel 提交于
8026041: JVM crashes with assert "assert(is_updated()) failed: must not be clear" with -XX:+PrintGCApplicationConcurrentTime in -Xcomp mode Summary: Prior to printing the time interval in RuntimeService::record_safepoint_begin(), check first that VM initialization is complete. Reviewed-by: coleenp, dholmes, sla, ctornqvi Contributed-by: lois.foltan@oracle.com
-