[v8-users] Intent to Ship: Intl.Segmenter

2020-08-17 Thread Frank Tang
For m87 Contact emailsft...@chromium.org, s...@chromium.org Explainer https://github.com/tc39/proposal-intl-segmenter Specificationhttps://tc39.github.io/proposal-intl-segmenter/ Design docs

Re: [v8-users] A list of optcodes for each bytecode

2020-08-17 Thread Jakob Kummerow
bytecodes.h is the right place; the list of bytecodes is generated by the following macro: // Enumeration of interpreter bytecodes. enum class Bytecode : uint8_t { #define DECLARE_BYTECODE(Name, ...) k##Name, BYTECODE_LIST(DECLARE_BYTECODE) #undef DECLARE_BYTECODE On Mon, Aug 17, 2020 at 5:03

[v8-users] A list of optcodes for each bytecode

2020-08-17 Thread TL
Hi everyone, I hope all our group members are safe and healthy. I'm doing a research on JS engines and I would like to into v8 as it is the engine for the largest web browser in the market. As a beginning, I would like to understand the bytecode of it, and I want is the opcodes for every

Re: [v8-users] When compiling v8 on the aarch64 platform, there are some questions about the page size(4KB/64KB).

2020-08-17 Thread Pierre Langlois
Hi there, 苏工 writes: > Hi, > > I'm trying to compile the branch master under linux using gn. > centos7.6 > gcc 7.3 > The aarch64-related toolchain is available. > > The gn build command is as follows: > gn gen out/arm64 --args='is_debug=true current_os="linux" target_os="linux" >