aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-02-12Merge tag jb8u242-b1644.3HEADmastermainDana Dahlstrom
Change-Id: Ia40baedd800ead09fa46d305200843e4e32481fc
2020-01-30Merge tag jb8u232-b1638.6Dana Dahlstrom
Change-Id: Ibed2f8da1eeb903c159b28ae9a3ab8f969858b40
2020-01-20Merge pull request #6 from bell-sw/update_8u242jb8u242-b1644.3jb8u242-b1644jb8u242-b1641jb8u242-b1640jb8u232-b1644.2jetbrains-master-mirrorAlexey Ushakov
jdk8u242 update
2020-01-19Added tag jdk8u242-ga for changeset b2b31daec366andrew
2020-01-198232984: Upgrading Joni License version to 2.1.16sgehwolf
Reviewed-by: andrew
2020-01-198067429: java.lang.VerifyError: Inconsistent stackmap frames at branch targetmcimadamore
Summary: bitset for alive variables contains info about variables out of range Reviewed-by: mcimadamore Contributed-by: srikanth.adayapalam@oracle.com
2019-10-27Merge pull request #5 from bell-sw/update_8u232jb8u232-b1638.6jb8u232-b1638.3jb8u232-b1638jb8u222-b1638.2Alexey Ushakov
jdk8u232-ga
2019-10-24Added tag jdk8u232-ga for changeset 735048c9f2d6andrew
2019-10-238226765: Commentary on Javadoc commentsigerasim
Reviewed-by: jjg, rhalade, skoivu
2019-10-238226607: Inconsistent info between pcsclite.md and MUSCLE headersvaleriep
Summary: Updated the info based on MUSCLE v1.8.24 Reviewed-by: ascarpino
2019-10-238217676: Upgrade libpng to 1.6.37zgu
Reviewed-by: prr, jdv, kcr
2019-10-238222737: [TESTBUG] Allow for tier 1 like testing in OpenJDK 8usgehwolf
Reviewed-by: adinn, shade, andrew
2019-10-238075546: Add tiered testing definitions to the langtools repodarcy
Reviewed-by: jjg
2019-09-04Iterate through symbols once in checkOverrideClashes to improve performancejb8u222-b1626.3jb8u222-b1626jb8u222-b1624dmitriy.tseyler
Original JDK issue: https://bugs.openjdk.java.net/browse/JDK-8224161 Fix in JDK: http://hg.openjdk.java.net/jdk/jdk/rev/28f4594b19c2 Related IJI issue: https://youtrack.jetbrains.com/issue/IJI-167
2019-08-15Merge pull request #3 from bell-sw/update_8u222jb8u222-b1621.1jb8u222-b1618jb8u222-b1613.2jb8u212-b1613Alexey Ushakov
Update 8u222
2019-07-26Added tag jdk8u222-ga for changeset 32df4483e2e3andrew
2019-07-25Merge tag jb8u212-b1586.4Dana Dahlstrom
Change-Id: I9da87d83909a618b050e336e51b5aa4fff6eff1c
2019-07-228193830: Xalan Update: Xalan Java 2.7.2stooke
Reviewed-by: lancea, clanger, andrew
2019-07-228210886: Remove references in xwindows.md to non-existent files.stooke
Reviewed-by: serb, dmarkov, andrew
2019-07-228220495: Update GIFlib library to the 5.1.8serb
Reviewed-by: prr
2019-07-228218020: Fix version number in mesa.md 3rd party legal filerkennke
Reviewed-by: clanger
2019-07-228218152: [javac] fails and exits with no error if a bad annotation processor ↵sgroeger
provided Summary: Handle exceptions thrown while loading annotation processors. Reviewed-by: jlahoda, andrew
2019-07-228213213: Remove src/java.desktop/unix/classes/sun/awt/X11/keysym2ucs.hclanger
Reviewed-by: phh
2019-04-268194268: Incorrect parameter names for synthetic methodsIvan Gavrilovic
OpenJDK BUG: https://bugs.openjdk.java.net/browse/JDK-8177486 Cherry pick from OpenJDK: b2f2bdba0472
2019-04-24Merge pull request #2 from bell-sw/update_8u212jb8u212-b1602jb8u212-b1601jb8u212-b1600jb8u212-b1598jb8u212-b1597jb8u212-b1596.1jb8u212-b1596jb8u212-b1595jb8u212-b1591.1jb8u212-b1591jb8u212-b1587.2jb8u212-b1587jb8u212-b1586.9jb8u212-b1586.4jb8u212-b1586.16jb8u212-b1586.14jb8u212-b1586.12jb8u212-b1586.11jb8u212-b1586.10jb8u212-b1580jb8u212-b1569jb8u212-b1566.8jb8u212-b1566.7jb8u212-b1566.6jb8u212-b1566.5jb8u202-b1562jb8u202-b1556jb8u202-b1555Alexey Ushakov
jdk-8u212 update
2019-04-22Added tag jdk8u212-ga for changeset 4c4c8a86bcb2andrew
2019-04-208170681: Remove fontconfig header files from JDK source treeprr
Reviewed-by: serb, erikj
2019-04-18Clean method parameters annotation and names between methodIvan Gavrilovic
When reading methods, make sure to invalidate read parameter annotations and names between reading methods, even if saveParameterNames is not set. Because there is validation that length of runtime in/visible annotations is the same as the number of parameters, previously we could run into issues. Related to https://bugs.openjdk.java.net/browse/JDK-8177486
2019-04-16Do not always try to load parameter namesIvan Gavrilovic
In aosp/Idcca9709603a58da5f067ca32abe1b9f5dc45496 we switched to always loading all parameter names. However, this may cause issues when e.g. class <init> method is suppose to contain synthetic parameters but it does not. ClassReader will try to skip the synthetic params, but because they do not exist, NPE will occur. We work around this issue by restoring the previous behavior, which was to retrieve the param names only when saveParameterNames is true. There is one drawback though. Previously, if saveParameterNames was false, we would get invalid names (arg0, arg1...), but annotations would be correct. With this change, we will get invalid names without any annotations. However, annotation processing which is the primary user of these APIs always sets saveParameterNames to true, so there should not be any issues. Related to https://bugs.openjdk.java.net/browse/JDK-8177486
2019-04-118007720: Names are not loaded correctly for method parameters if the ↵Ivan Gavrilovic
parameters have annotations 8177486: Incorrect handling of mandated parameter names in MethodParameters attributes cherry-pick from openjdk: 89f6aa26fd6c Change-Id: Idcca9709603a58da5f067ca32abe1b9f5dc45496
2019-03-18Merge tag jb8u202-b1483.39Dana Dahlstrom
Change-Id: I3b87c8fd9cfb7332d4bb123b326076e863e5c7c1
2019-02-15Added tag jdk8u201-ga for changeset 689d7755e8c1jb8u202-b1546jb8u202-b1545jb8u202-b1544jb8u202-b1543jb8u202-b1542jb8u202-b1541jb8u202-b1539jb8u202-b1538jb8u202-b1537jb8u202-b1535jb8u202-b1533jb8u202-b1532jb8u202-b1531jb8u202-b1530jb8u202-b1527jb8u202-b1526jb8u202-b1525jb8u202-b1524jb8u202-b1523jb8u202-b1522jb8u202-b1521jb8u202-b1520jb8u202-b1519jb8u202-b1518jb8u202-b1517jb8u202-b1516jb8u202-b1514.9jb8u202-b1514.8jb8u202-b1514.7jb8u202-b1514.6jb8u202-b1514.5jb8u202-b1514.4jb8u202-b1514.23jb8u202-b1514.22jb8u202-b1514.21jb8u202-b1514.20jb8u202-b1514.2jb8u202-b1514.19jb8u202-b1514.18jb8u202-b1514.17jb8u202-b1514.16jb8u202-b1514.15jb8u202-b1514.11jb8u202-b1514.10jb8u202-b1514.1jb8u202-b1514jb8u202-b1513jb8u202-b1512jb8u202-b1500.2aefimov
2019-02-15Added tag jdk8u202-ga for changeset 95f8837bfbdcaefimov
2019-02-158213792: Update THIRTD_PARTY_README for LCMS to 2.9alitvinov
Reviewed-by: prr
2019-02-158214357: JDK 8u201 l10n resource file update md20ljiang
Reviewed-by: coffeys
2018-10-17Added tag jdk8u202-b01 for changeset 29d5186cdb7cjb8u202-b1505jb8u202-b1504jb8u202-b1502jb8u202-b1500.1jb8u202-b1500jb8u202-b1495jb8u202-b1494jb8u202-b1493jb8u202-b1491jb8u202-b1490jb8u202-b1486jb8u202-b1483.59jb8u202-b1483.58jb8u202-b1483.57jb8u202-b1483.56jb8u202-b1483.55jb8u202-b1483.53jb8u202-b1483.52jb8u202-b1483.51jb8u202-b1483.49jb8u202-b1483.47jb8u202-b1483.45jb8u202-b1483.44jb8u202-b1483.43jb8u202-b1483.40jb8u202-b1483.4jb8u202-b1483.39jb8u202-b1483.38jb8u202-b1483.37jb8u202-b1483.36jb8u202-b1483.35jb8u202-b1483.34jb8u202-b1483.33jb8u202-b1483.32jb8u202-b1483.31jb8u202-b1483.30jb8u202-b1483.3jb8u202-b1483.29jb8u202-b1483.28jb8u202-b1483.27jb8u202-b1483.26jb8u202-b1483.24jb8u202-b1483.21jb8u202-b1483.2jb8u202-b1483.19jb8u202-b1483.18jb8u202-b1483.17jb8u202-b1483.1jb8u202-b1483jb8u202-b1480jb8u202-b1474jb8u202-b1472jb8u202-b1471jb8u202-b1470jb8u202-b1468jb8u202-b1467.3jb8u202-b1467.2jb8u202-b1467jb8u202-b1466jb8u202-b1465jb8u202-b1461jb8u202-b1460jb8u202-b1456jb8u202-b1455jb8u202-b1453jb8u202-b1452.4jb8u202-b1452jb8u202-b1427jb8u152-b1426jb8u152-b1425jb8u152-b1424jb8u152-b1423jb8u152-b1422jb8u152-b1421jb8u152-b1420jb8u152-b1419aefimov
2018-10-15Mergeaefimov
2018-10-08Mergeaefimov
2018-10-08Added tag jdk8u192-b26 for changeset 4bbe353fcc36diazhou
2018-10-08Added tag jdk8u191-b26 for changeset 17bb956bc44ediazhou
2018-10-06Added tag jdk8u192-b12 for changeset 3eb4c8be649bdiazhou
2018-10-06Added tag jdk8u191-b12 for changeset d035a731ab59diazhou
2018-10-06Mergeaefimov
2018-10-048210891: Remove unused extutil.h from JDK8u sourcesdmarkov
Reviewed-by: prr
2018-10-03Added tag jdk8u192-b11 for changeset 3bf2d872627ddiazhou
2018-10-03Added tag jdk8u191-b11 for changeset f3f92df0a294diazhou
2018-10-01Added tag jdk8u202-b00 for changeset df7eda60d98drobm
2018-09-30Mergeaefimov
2018-09-27Added tag jdk8u192-b25 for changeset baf29dda8fdcdiazhou
2018-09-27Added tag jdk8u191-b25 for changeset 394de93b280cdiazhou