Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
6ca81ad
deps: update V8 to 7.9.317.20
targos Nov 8, 2019
ce3b3ad
build: reset embedder string to "-node.0"
targos Nov 8, 2019
b55557b
src: update NODE_MODULE_VERSION to 81
targos Nov 8, 2019
c587bb7
deps: V8: un-cherry-pick bd019bd
refack Mar 27, 2019
5c25db3
deps: V8: silence irrelevant warnings
targos Mar 27, 2019
54af1e7
deps: patch V8 to run on older XCode versions
ryzokuken Sep 14, 2019
b934672
deps: update V8's postmortem script
cjihrig Sep 27, 2019
4b16d83
deps: update V8's postmortem script
cjihrig Oct 15, 2019
d020a2b
deps: V8: patch register-arm64.h
refack May 22, 2019
d0f2b17
deps: V8: forward declaration of `Rtl*FunctionTable`
refack May 22, 2019
d776ceb
deps: make v8.h compatible with VS2015
joaocgreis Nov 1, 2019
f15559a
deps: V8: cherry-pick f2d92ec
targos Oct 18, 2019
d751952
deps: V8: cherry-pick 3e82c8d
targos Oct 21, 2019
d56f9a9
deps: V8: cherry-pick cfe9172
targos Oct 21, 2019
7484a38
deps: V8: cherry-pick bba5f1f
targos Oct 24, 2019
da96953
deps: V8: cherry-pick 6b0a953
targos Oct 24, 2019
53e925a
deps: V8: cherry-pick 7228ef8
targos Oct 24, 2019
d9fab1f
deps: V8: cherry-pick 777fa98
targos Oct 28, 2019
a9bed0b
deps: V8: backport 07ee86a5a28b
targos Oct 23, 2019
186f157
deps: V8: backport 5e755c6ee6d3
targos Oct 31, 2019
3429e01
deps: V8: cherry-pick e5dbc95
Oct 30, 2019
26c8ceb
deps: V8: cherry-pick 50031fae736f
targos Nov 4, 2019
10af006
deps: V8: cherry-pick a7dffcd767be
cclauss Nov 3, 2019
dda658c
build,tools: update V8 gypfiles for V8 7.9
targos Sep 11, 2019
a4102a0
test: update test-postmortem-metadata.js
cjihrig Oct 15, 2019
0aec0b2
src: update v8abbr.h for V8 update
cjihrig Oct 15, 2019
2707efd
test: increase limit again for network space overhead test
targos Oct 23, 2019
2bdeb88
src: remove custom tracking for SharedArrayBuffers
addaleax Oct 22, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
deps: V8: cherry-pick 50031fae736f
Original commit message:

    [compiler] Explicitly initialize const members

    This fixes a compilation error in Node.js with Xcode:

    initialize the const member 'blueprint_'.

    error: constructor for 'v8::internal::compiler::Callee' must explicitly
    Change-Id: Ia55398428d0de35a9ad5132eabd22d0adb694514
    Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1895561
    Commit-Queue: Jakob Gruber <jgruber@chromium.org>
    Reviewed-by: Jakob Gruber <jgruber@chromium.org>
    Cr-Commit-Position: refs/heads/master@{#64719}

Refs: v8/v8@50031fa

PR-URL: #30020
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Matteo Collina <matteo.collina@gmail.com>
  • Loading branch information
targos committed Nov 8, 2019
commit 26c8cebb0f6e608211b14e7922b78148f626e017
2 changes: 1 addition & 1 deletion common.gypi
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@

# Reset this number to 0 on major V8 upgrades.
# Increment by one for each non-official patch applied to deps/v8.
'v8_embedder_string': '-node.18',
'v8_embedder_string': '-node.19',

##### V8 defaults for Node.js #####

Expand Down
6 changes: 4 additions & 2 deletions deps/v8/src/compiler/serializer-for-background-compilation.cc
Original file line number Diff line number Diff line change
Expand Up @@ -387,8 +387,10 @@ class CompilationSubject {
// always has a FunctionBlueprint.
class Callee {
public:
explicit Callee(Handle<JSFunction> jsfunction) : jsfunction_(jsfunction) {}
explicit Callee(FunctionBlueprint const& blueprint) : blueprint_(blueprint) {}
explicit Callee(Handle<JSFunction> jsfunction)
: jsfunction_(jsfunction), blueprint_() {}
explicit Callee(FunctionBlueprint const& blueprint)
: jsfunction_(), blueprint_(blueprint) {}

Handle<SharedFunctionInfo> shared(Isolate* isolate) const {
return blueprint_.has_value()
Expand Down