Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[v14.x] deps: update V8 to 8.3 #33376

Closed
wants to merge 21 commits into from
Closed

Commits on May 23, 2020

  1. deps: update V8 to 8.3.110.9

    targos committed May 23, 2020
    Configuration menu
    Copy the full SHA
    76f79b2 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    13d4fc5 View commit details
    Browse the repository at this point in the history
  3. tools: update V8 gypfiles for V8 8.3

    PR-URL: nodejs#32831
    Reviewed-By: Anna Henningsen <[email protected]>
    Reviewed-By: Michaël Zasso <[email protected]>
    Reviewed-By: Jiawen Geng <[email protected]>
    Reviewed-By: Colin Ihrig <[email protected]>
    targos committed May 23, 2020
    Configuration menu
    Copy the full SHA
    d07cd49 View commit details
    Browse the repository at this point in the history
  4. deps: update V8 dtrace & postmortem metadata

    PR-URL: nodejs#32831
    Reviewed-By: Anna Henningsen <[email protected]>
    Reviewed-By: Michaël Zasso <[email protected]>
    Reviewed-By: Jiawen Geng <[email protected]>
    Reviewed-By: Colin Ihrig <[email protected]>
    cjihrig authored and targos committed May 23, 2020
    Configuration menu
    Copy the full SHA
    c37928c View commit details
    Browse the repository at this point in the history
  5. deps: V8: un-cherry-pick bd019bd

    Original commit message:
    
        [testrunner] delete ancient junit compatible format support
    
        Testrunner has ancient support for JUnit compatible XML output.
    
        This CL removes this old feature.
    
        [email protected],[email protected],[email protected]
        CC=​[email protected]
    
        Bug: v8:8728
        Change-Id: I7e1beb011dbaec3aa1a27398a5c52abdd778eaf0
        Reviewed-on: https://chromium-review.googlesource.com/c/1430065
        Reviewed-by: Jakob Gruber <[email protected]>
        Reviewed-by: Michael Starzinger <[email protected]>
        Commit-Queue: Tamer Tas <[email protected]>
        Cr-Commit-Position: refs/heads/master@{#59045}
    
    Refs: v8/v8@bd019bd
    
    PR-URL: nodejs#32831
    Reviewed-By: Anna Henningsen <[email protected]>
    Reviewed-By: Michaël Zasso <[email protected]>
    Reviewed-By: Jiawen Geng <[email protected]>
    Reviewed-By: Colin Ihrig <[email protected]>
    refack authored and targos committed May 23, 2020
    Configuration menu
    Copy the full SHA
    9973fd3 View commit details
    Browse the repository at this point in the history
  6. deps: patch V8 to run on older XCode versions

    Patch V8 (compiler/js-heap-broker.cc) to remove the use of an optional
    property, which is a fairly new C++ feature, since that requires a newer
    XCode version than the minimum requirement in BUILDING.md and thus
    breaks CI.
    
    PR-URL: nodejs#32831
    Reviewed-By: Anna Henningsen <[email protected]>
    Reviewed-By: Michaël Zasso <[email protected]>
    Reviewed-By: Jiawen Geng <[email protected]>
    Reviewed-By: Colin Ihrig <[email protected]>
    ryzokuken authored and targos committed May 23, 2020
    Configuration menu
    Copy the full SHA
    e210a0f View commit details
    Browse the repository at this point in the history
  7. deps: V8: patch register-arm64.h

    Fixes a compilation issue on some platforms
    
    PR-URL: nodejs#32831
    Reviewed-By: Anna Henningsen <[email protected]>
    Reviewed-By: Michaël Zasso <[email protected]>
    Reviewed-By: Jiawen Geng <[email protected]>
    Reviewed-By: Colin Ihrig <[email protected]>
    refack authored and targos committed May 23, 2020
    Configuration menu
    Copy the full SHA
    4c27e95 View commit details
    Browse the repository at this point in the history
  8. deps: V8: forward declaration of Rtl*FunctionTable

    This should be semver-patch since actual invocation is version
    conditional.
    
    PR-URL: nodejs#32831
    Reviewed-By: Anna Henningsen <[email protected]>
    Reviewed-By: Michaël Zasso <[email protected]>
    Reviewed-By: Jiawen Geng <[email protected]>
    Reviewed-By: Colin Ihrig <[email protected]>
    refack authored and targos committed May 23, 2020
    Configuration menu
    Copy the full SHA
    88516e1 View commit details
    Browse the repository at this point in the history
  9. deps: make v8.h compatible with VS2015

    There is a bug in the most recent version of VS2015 that affects v8.h
    and therefore prevents compilation of addons.
    
    Refs: https://stackoverflow.com/q/38378693
    
    PR-URL: nodejs#32831
    Reviewed-By: Anna Henningsen <[email protected]>
    Reviewed-By: Michaël Zasso <[email protected]>
    Reviewed-By: Jiawen Geng <[email protected]>
    Reviewed-By: Colin Ihrig <[email protected]>
    joaocgreis authored and targos committed May 23, 2020
    Configuration menu
    Copy the full SHA
    eaf8a0f View commit details
    Browse the repository at this point in the history
  10. deps: V8: silence irrelevant warnings

    PR-URL: nodejs#32831
    Reviewed-By: Anna Henningsen <[email protected]>
    Reviewed-By: Michaël Zasso <[email protected]>
    Reviewed-By: Jiawen Geng <[email protected]>
    Reviewed-By: Colin Ihrig <[email protected]>
    targos committed May 23, 2020
    Configuration menu
    Copy the full SHA
    14bd6fe View commit details
    Browse the repository at this point in the history
  11. deps: patch V8 to run on Xcode 8

    Patch V8 (wasm/wasm-module.cc) to remove const qualifier from type
    passed to template call of `OwnedVector::Of`. Xcode 8 can't convert
    'OwnedVector<unsigned char>' to 'OwnedVector<const unsigned char>' when
    returning from a function (which is likely a bug on Xcode, considering
    this worked on the prior version of Xcode as well as newer versions).
    This workaround shouldn't affect the application, since the const
    qualifier is preserved in the AsmJsOffsetInformation::encoded_offset_.
    
    There's also a V8 test passing a const-qualified type to ::Of, but since
    we don't test V8 on Xcode 8, it should be fine to leave it as is.
    
    Signed-off-by: Matheus Marchini <[email protected]>
    
    PR-URL: nodejs#32831
    Reviewed-By: Anna Henningsen <[email protected]>
    Reviewed-By: Michaël Zasso <[email protected]>
    Reviewed-By: Jiawen Geng <[email protected]>
    Reviewed-By: Colin Ihrig <[email protected]>
    mmarchini authored and targos committed May 23, 2020
    Configuration menu
    Copy the full SHA
    8bdc24a View commit details
    Browse the repository at this point in the history
  12. deps: fix V8 8.3 on SmartOS

    PR-URL: nodejs#32831
    Reviewed-By: Anna Henningsen <[email protected]>
    Reviewed-By: Michaël Zasso <[email protected]>
    Reviewed-By: Jiawen Geng <[email protected]>
    Reviewed-By: Colin Ihrig <[email protected]>
    cjihrig authored and targos committed May 23, 2020
    Configuration menu
    Copy the full SHA
    2fcdce0 View commit details
    Browse the repository at this point in the history
  13. deps: V8: cherry-pick e1eac1b16c96

    Original commit message:
    
        Fix compilation error with devtoolset-8
    
        We are compiling V8 using devtoolset-8 and it is generating a new
        compilation error related to String Truncation:
    
        error: ‘char* strncpy(char*, const char*, size_t)’ output truncated copying between 1 and 15 bytes from a string of length 15 [-Werror=stringop-truncation]
                  strncpy(buffer, unicode_utf8, i);
    
        Which basically means the null terminating character was not added to
        the end of the buffer:
        https://developers.redhat.com/blog/2018/05/24/detecting-string-truncation-with-gcc-8/
    
        This CL will changes 2 uses of "strncpy" to "memcpy" as strings
        are being copied partially and `\n` being added at a later stage.
    
        Change-Id: I3656afb00463d70ddb8700a487a1978b793e1d09
        Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2155038
        Reviewed-by: Andreas Haas <[email protected]>
        Reviewed-by: Toon Verwaest <[email protected]>
        Commit-Queue: Milad Farazmand <[email protected]>
        Cr-Commit-Position: refs/heads/master@{#67277}
    
    Refs: v8/v8@e1eac1b
    
    PR-URL: nodejs#32831
    Reviewed-By: Anna Henningsen <[email protected]>
    Reviewed-By: Michaël Zasso <[email protected]>
    Reviewed-By: Jiawen Geng <[email protected]>
    Reviewed-By: Colin Ihrig <[email protected]>
    Milad Farazmand authored and targos committed May 23, 2020
    Configuration menu
    Copy the full SHA
    657fa71 View commit details
    Browse the repository at this point in the history
  14. deps: V8: cherry-pick 3f8dc4b2e5ba

    Original commit message:
    
        [intl] Remove soon-to-be removed getAllFieldPositions
    
        Needed to land ICU67.1 soon.
    
        Bug: v8:10393
        Change-Id: I3c7737ca600d6ccfdc46ffaddfb318ce60bc7618
        Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2136489
        Reviewed-by: Jakob Kummerow <[email protected]>
        Commit-Queue: Frank Tang <[email protected]>
        Cr-Commit-Position: refs/heads/master@{#67027}
    
    Refs: v8/v8@3f8dc4b
    
    PR-URL: nodejs#32831
    Reviewed-By: Anna Henningsen <[email protected]>
    Reviewed-By: Michaël Zasso <[email protected]>
    Reviewed-By: Jiawen Geng <[email protected]>
    Reviewed-By: Colin Ihrig <[email protected]>
    targos committed May 23, 2020
    Configuration menu
    Copy the full SHA
    8f7f483 View commit details
    Browse the repository at this point in the history
  15. deps: V8: cherry-pick e29c62b74854

    Original commit message:
    
        [arraybuffer] Clean up BackingStore even if it pointer to nullptr
    
        For a zero-length BackingStore allocation, it is valid for the
        underlying memory to be a null pointer. However, some cleanup
        is still necessary, since the BackingStore may hold a reference
        to the allocator itself, which needs to be released when destroying
        the `BackingStore` instance.
    
        Change-Id: I1f168079d39e4592d2fde31fbe5f705586690e85
        Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2169646
        Reviewed-by: Ulan Degenbaev <[email protected]>
        Commit-Queue: Ulan Degenbaev <[email protected]>
        Cr-Commit-Position: refs/heads/master@{#67420}
    
    Refs: v8/v8@e29c62b
    
    PR-URL: nodejs#32831
    Reviewed-By: Anna Henningsen <[email protected]>
    Reviewed-By: Michaël Zasso <[email protected]>
    Reviewed-By: Jiawen Geng <[email protected]>
    Reviewed-By: Colin Ihrig <[email protected]>
    targos committed May 23, 2020
    Configuration menu
    Copy the full SHA
    257ea67 View commit details
    Browse the repository at this point in the history
  16. deps: V8: cherry-pick 74d50c5063b3

    Original commit message:
    
        FreeBSD: add missing include of pthread_np.h
    
        This is necessary for the pthread_attr_get_np function.
    
        Change-Id: I01cfe075a7c86909e8cf37eb7f7c5d44fa044975
        Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2188310
        Commit-Queue: Michaël Zasso <[email protected]>
        Commit-Queue: Ulan Degenbaev <[email protected]>
        Auto-Submit: Michaël Zasso <[email protected]>
        Reviewed-by: Ulan Degenbaev <[email protected]>
        Cr-Commit-Position: refs/heads/master@{#67660}
    
    Refs: v8/v8@74d50c5
    
    PR-URL: nodejs#32831
    Reviewed-By: Anna Henningsen <[email protected]>
    Reviewed-By: Michaël Zasso <[email protected]>
    Reviewed-By: Jiawen Geng <[email protected]>
    Reviewed-By: Colin Ihrig <[email protected]>
    targos committed May 23, 2020
    Configuration menu
    Copy the full SHA
    fa45e40 View commit details
    Browse the repository at this point in the history
  17. test: fix test-zlib-unused-weak on V8 8.2

    Ref: https://chromium-review.googlesource.com/c/v8/v8/+/1997438
    Ref: https://chromium-review.googlesource.com/c/v8/v8/+/2010107
    Ref: nodejs/node-v8#144
    Signed-off-by: Matheus Marchini <[email protected]>
    
    PR-URL: nodejs#32831
    Reviewed-By: Anna Henningsen <[email protected]>
    Reviewed-By: Michaël Zasso <[email protected]>
    Reviewed-By: Jiawen Geng <[email protected]>
    Reviewed-By: Colin Ihrig <[email protected]>
    mmarchini authored and targos committed May 23, 2020
    Configuration menu
    Copy the full SHA
    a017809 View commit details
    Browse the repository at this point in the history
  18. test: stop testing --interpreted-frames-native-stack for s390x

    V8 does not support the flag on this architecture anymore.
    
    PR-URL: nodejs#32831
    Reviewed-By: Anna Henningsen <[email protected]>
    Reviewed-By: Michaël Zasso <[email protected]>
    Reviewed-By: Jiawen Geng <[email protected]>
    Reviewed-By: Colin Ihrig <[email protected]>
    targos committed May 23, 2020
    Configuration menu
    Copy the full SHA
    ed24cd7 View commit details
    Browse the repository at this point in the history
  19. deps: V8: cherry-pick 2db93c023379

    Original commit message:
    
        [api] Add embedder-vs-V8 build configuration compatibility check
    
        v8::V8::Initialize() will fail with meaningful error upon build
        configuration mismatch.
    
        Bug: v8:10041
        Change-Id: Ic69ba68ef1764b356beef0f204fe58b45bae3c49
        Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2144953
        Commit-Queue: Igor Sheludko <[email protected]>
        Reviewed-by: Ulan Degenbaev <[email protected]>
        Cr-Commit-Position: refs/heads/master@{#67116}
    
    Refs: v8/v8@2db93c0
    
    PR-URL: nodejs#32885
    Reviewed-By: Michaël Zasso <[email protected]>
    Reviewed-By: Ujjwal Sharma <[email protected]>
    Reviewed-By: Gerhard Stöbich <[email protected]>
    Reviewed-By: Beth Griggs <[email protected]>
    addaleax authored and targos committed May 23, 2020
    Configuration menu
    Copy the full SHA
    1c1c8de View commit details
    Browse the repository at this point in the history
  20. deps: V8: cherry-pick fa3e37e511ee

    Original commit message:
    
        [api] remove deprecated snapshot APIs
    
        [email protected]
    
        Fixed: v8:7463
        Change-Id: I3d0127865ad0430d38124c3ad8ed3bc63ba4e6d3
        Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2149421
        Auto-Submit: Yang Guo <[email protected]>
        Commit-Queue: Toon Verwaest <[email protected]>
        Reviewed-by: Toon Verwaest <[email protected]>
        Cr-Commit-Position: refs/heads/master@{#67169}
    
    Refs: v8/v8@fa3e37e
    
    PR-URL: nodejs#32885
    Reviewed-By: Michaël Zasso <[email protected]>
    Reviewed-By: Ujjwal Sharma <[email protected]>
    Reviewed-By: Gerhard Stöbich <[email protected]>
    Reviewed-By: Beth Griggs <[email protected]>
    addaleax authored and targos committed May 23, 2020
    Configuration menu
    Copy the full SHA
    8a40a30 View commit details
    Browse the repository at this point in the history
  21. deps: V8: cherry-pick 0d6debcc5f08

    Original commit message:
    
        [turbofan] Fixes for integrating the fast C API
    
        This commit adds a few fixes neccessary for integrating the
        fast C API into Blink:
        - added default constructor for CFunction
        - removed a bogus template specialization allowing void* params
        - extended the public Isolate class
    
        Bug: chromium:1052746
        Change-Id: I4f2ba84299920e2cc9d66ec1ed59302313db6c0b
        Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2120587
        Commit-Queue: Maya Lekova <[email protected]>
        Reviewed-by: Toon Verwaest <[email protected]>
        Reviewed-by: Georg Neis <[email protected]>
        Cr-Commit-Position: refs/heads/master@{#66986}
    
    Refs: v8/v8@0d6debc
    targos committed May 23, 2020
    Configuration menu
    Copy the full SHA
    d194c16 View commit details
    Browse the repository at this point in the history