Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
bb1e8a6
deps: cherry-pick 6989b3f6d7 from V8 upstream
TimothyGu May 18, 2018
0c43ea4
deps: Upgrade node-inspect to 1.11.5
May 31, 2018
d388282
doc: add error check to fs example
evanlucas Feb 9, 2018
0b2d35c
test: add useful info to error msg and refactor
chinhuang007 Feb 2, 2018
edd8b2f
test: add crypto check to test-benchmark-tls
danbev Feb 12, 2018
bc66d4e
test: add multiline repl input regression test
cjihrig Feb 11, 2018
b01e470
doc: update crypo Certficate class.
antoine-amara Feb 11, 2018
a66434f
test: add lib path env when node_shared=true
yhwang Feb 2, 2018
92a90d1
test: wrap countdown callback in common.mustCall
Bamieh Nov 21, 2017
6a8c182
doc: remove extra space in README.md
Feb 16, 2018
7fbc6a4
test: try to connect after server was closed
Leko Jan 19, 2018
06b6507
test: reduce benchmark test run time
juggernaut451 Feb 14, 2018
077fb0a
test: make tls test more rigorous
bnoordhuis Feb 15, 2018
0ef0dbc
test: refactor of test-tls-over-http-tunnel
juggernaut451 Feb 14, 2018
8345f3c
test: refactor parallel/test-tls-addca
juggernaut451 Feb 15, 2018
4070782
test,benchmark,doc: enable dot-notation rule
BridgeAR Feb 13, 2018
8651766
doc: note that linting is required in releases.md
gibfahn Feb 14, 2018
b4fa857
doc: activate `no-multiple-empty-lines` rule
BridgeAR Feb 13, 2018
bf1ca7e
src: allow --perf-(basic-)?prof in NODE_OPTIONS
Leko Dec 11, 2017
c1c6253
crypto: allow passing null as IV unless required
tniessen Feb 7, 2018
c3a96ba
async_hooks: rename PromiseWrap.parentId
ofrobots Feb 8, 2018
a2e4940
fs: support as and as+ flags in stringToFlags()
Feb 15, 2018
5975c06
doc: add missing metadata for fs.open
tniessen Mar 25, 2018
bcaba81
tls: expose Finished messages in TLSSocket
codedot Mar 2, 2018
ae6e4bd
fs,net: emit 'ready' for fs streams and sockets
sameer-coder Mar 17, 2018
d3cc97b
deps: backport 804a693 from upstream V8
Jul 17, 2018
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
deps: backport 804a693 from upstream V8
Original commit message:

    [postmortem] add JS_ERROR_TYPE and context embedder index

      * JS_ERROR_TYPE is required for postmortem tools to inspect
        JSError objects (see nodejs/llnode#215
        for a usage example)
      * The context embedder index is required for postmortem tools to
        access embedder data stored in the context (see
        nodejs/llnode#204 for a usage example)

    R=bmeurer@google.com, yangguo@google.com

    Change-Id: Ib7c7eb44f6ad327fc71a1d45f510c49377db7a25
    Reviewed-on: https://chromium-review.googlesource.com/1138493
    Reviewed-by: Benedikt Meurer <bmeurer@chromium.org>
    Commit-Queue: Benedikt Meurer <bmeurer@chromium.org>
    Cr-Commit-Position: refs/heads/master@{#54475}

Refs: v8/v8@804a693

PR-URL: #21855
Reviewed-By: Michaël Zasso <targos@protonmail.com>
Reviewed-By: Gus Caplan <me@gus.host>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Yang Guo <yangguo@chromium.org>
  • Loading branch information
Matheus Marchini committed Aug 7, 2018
commit d3cc97b16ff1228e13730c0b8839809e755631cf
7 changes: 6 additions & 1 deletion deps/v8/tools/gen-postmortem-metadata.py
Original file line number Diff line number Diff line change
Expand Up @@ -212,6 +212,9 @@
'value': 'Context::EXTENSION_INDEX' },
{ 'name': 'context_min_slots',
'value': 'Context::MIN_CONTEXT_SLOTS' },
{ 'name': 'context_idx_embedder_data',
'value': 'Internals::kContextEmbedderDataIndex' },


{ 'name': 'namedictionaryshape_prefix_size',
'value': 'NameDictionaryShape::kPrefixSize' },
Expand All @@ -231,7 +234,9 @@
{ 'name': 'unseedednumberdictionaryshape_prefix_size',
'value': 'UnseededNumberDictionaryShape::kPrefixSize' },
{ 'name': 'unseedednumberdictionaryshape_entry_size',
'value': 'UnseededNumberDictionaryShape::kEntrySize' }
'value': 'UnseededNumberDictionaryShape::kEntrySize' },

{ 'name': 'type_JSError__JS_ERROR_TYPE', 'value': 'JS_ERROR_TYPE' },
];

#
Expand Down