| 文件 | 最后提交记录 | 最后更新时间 |
|---|---|---|
[owners] Add nikolaos to src/d8/OWNERS Change-Id: I1aad302fa269ed172e8fcd7d4324b847a74c4dd9 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6888813 Commit-Queue: Nikolaos Papaspyrou <nikolaos@chromium.org> Reviewed-by: Camillo Bruni <cbruni@chromium.org> Reviewed-by: Michael Lippautz <mlippautz@chromium.org> Cr-Commit-Position: refs/heads/main@{#102065} | 10 个月前 | |
Avoid internal use of v8::Object::GetIsolate() ... such that we can deprecate it in a follow-up. The method is guaranteed to always return the "current isolate", so we should use that directly instead. Test sometimes use CcTest::isolate() or LocalContext::isolate() where it makes sense. R=leszeks@chromium.org Bug: 396607238 Change-Id: Iac924a78ac59be4029a75b1ff6b917160d1f7e06 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6564467 Commit-Queue: Clemens Backes <clemensb@chromium.org> Reviewed-by: Leszek Swirski <leszeks@chromium.org> Cr-Commit-Position: refs/heads/main@{#100391} | 1 年前 | |
Remove superfluous mutex.h include Remove src/base/platform/mutex.h includes in headers that do not mention "Mutex". Bug: 40318405 Change-Id: I6cb94b56a22b438387457ecd9c09d4fb2653a525 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6282736 Commit-Queue: Lei Zhang <thestig@chromium.org> Reviewed-by: Igor Sheludko <ishell@chromium.org> Reviewed-by: Michael Lippautz <mlippautz@chromium.org> Cr-Commit-Position: refs/heads/main@{#98845} | 1 年前 | |
[utils] Move OutputStream classes into src/utils for reuse This CL provides a single implementation for FileOutputStream and StringOutputStream. Bug: 416245387 Change-Id: Iaedf1e01f7b43b555f5568f915f605f04816485b Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6565351 Reviewed-by: Camillo Bruni <cbruni@chromium.org> Commit-Queue: Dominik Inführ <dinfuehr@chromium.org> Cr-Commit-Position: refs/heads/main@{#100392} | 1 年前 | |
[d8] Align d8 console.time* behavior with specification and Chrome. In d8 we didn't implement console.timeLog() and console.timeStamp() was behaving somewhat like console.timeLog() (but was always using the default timer). This CL aligns the behavior in d8 with the behavior we have in browsers and Node.js to remove surprises and make testing easier. This is basically a follow-up polish to https://crrev.com/c/702459 which added the console.time* functions in d8 initially. Bug: 350443026 Change-Id: I4a658e947bed061afdcbf4f149b17a90b85cbdb9 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/5671342 Commit-Queue: Benedikt Meurer <bmeurer@chromium.org> Auto-Submit: Benedikt Meurer <bmeurer@chromium.org> Reviewed-by: Leszek Swirski <leszeks@chromium.org> Cr-Commit-Position: refs/heads/main@{#94793} | 1 年前 | |
Move d8 into a dedicated subdirectory Bug: v8:9247 Change-Id: I404e34a013b95c6a7cf03dd9ec0732d9ad796bdc Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1613238 Commit-Queue: Yang Guo <yangguo@chromium.org> Reviewed-by: Clemens Hammacher <clemensh@chromium.org> Reviewed-by: Benedikt Meurer <bmeurer@chromium.org> Reviewed-by: Toon Verwaest <verwaest@chromium.org> Cr-Commit-Position: refs/heads/master@{#61531} | 7 年前 | |
[cfi] add a force-memory-protection-keys flag This change also adds the ThreadIsolatedAllocator support for the other non-default platforms. Fixed: 418724441 Change-Id: If6a4f84ff4a9c8a1a10a3afe88efed67611bcc63 Cq-Include-Trybots: luci.v8.try:v8_linux64_pku_rel,v8_linux64_pku_dbg Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6586437 Commit-Queue: Stephen Röttger <sroettger@google.com> Reviewed-by: Camillo Bruni <cbruni@chromium.org> Cr-Commit-Position: refs/heads/main@{#100563} | 1 年前 | |
[d8] Fix typo Add missing "W" (orker -> Worker). Change-Id: Ie4d8937085c2d2c6132e5d3c499ee3565c7b8b9b Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/4004719 Auto-Submit: Frank Lemanschik <frank@dspeed.eu> Commit-Queue: Clemens Backes <clemensb@chromium.org> Reviewed-by: Clemens Backes <clemensb@chromium.org> Cr-Commit-Position: refs/heads/main@{#84063} | 3 年前 | |
[d8] Expect limit exceeded in string concatenation Method v8::String::Concat does not throw an exception in case the length of the result exceeds the allowed limit. Instead, it returns an empty local handle. This CL fixes a number of calls of this method in d8, where the result can get arbitrarily big and this case was not properly checked. Bug: 437956096 Change-Id: Ie9f7127594fd1669b2e789340305ed2675d1ad3d Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6863276 Commit-Queue: Nikolaos Papaspyrou <nikolaos@chromium.org> Reviewed-by: Camillo Bruni <cbruni@chromium.org> Cr-Commit-Position: refs/heads/main@{#101968} | 10 个月前 | |
[api] Deprecate old External::New and External::Value With this CL all tests use type tags for calls to External::New and External::Value. With that the deprecation of the original v8::External APIs can be started. Bug: 436799229 Change-Id: Ib3e8899960e3a00fb2d9c9e267d536b8df73e546 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/6999207 Reviewed-by: Michael Lippautz <mlippautz@chromium.org> Commit-Queue: Andreas Haas <ahaas@chromium.org> Cr-Commit-Position: refs/heads/main@{#102885} | 8 个月前 | |
Move d8 into a dedicated subdirectory Bug: v8:9247 Change-Id: I404e34a013b95c6a7cf03dd9ec0732d9ad796bdc Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1613238 Commit-Queue: Yang Guo <yangguo@chromium.org> Reviewed-by: Clemens Hammacher <clemensh@chromium.org> Reviewed-by: Benedikt Meurer <bmeurer@chromium.org> Reviewed-by: Toon Verwaest <verwaest@chromium.org> Cr-Commit-Position: refs/heads/master@{#61531} | 7 年前 | |
heap_dump_1 for jsvm TicketNo: AR20260205251565 Description: heap_dump_1 for jsvm Team:gitee Feature or Bugfix: Binary Source: sync from gitee PrivateCode(Yes/No):No Change-Id: I2c4bf8190cab99d9278a68c3c7f94092f0507054 Reviewed-by: y00500721 Approved-by: w00518651 Merged-on: https://open.codehub.huawei.com/OpenSourceCenter_CR/openharmony-tpc/chromium_v8/-/change_requests/558 Merged-by: public pjenkins Signed-off-by: huanghan18 <huanghan18@huawei.com> revert merge request: AR20260205251565 heap_dump_1 for jsvm 5fae5665635fc7a1b52e325454044501fafec68e This revert merge request !453 | 1 个月前 | |
heap_dump_1 for jsvm TicketNo: AR20260205251565 Description: heap_dump_1 for jsvm Team:gitee Feature or Bugfix: Binary Source: sync from gitee PrivateCode(Yes/No):No Change-Id: I2c4bf8190cab99d9278a68c3c7f94092f0507054 Reviewed-by: y00500721 Approved-by: w00518651 Merged-on: https://open.codehub.huawei.com/OpenSourceCenter_CR/openharmony-tpc/chromium_v8/-/change_requests/558 Merged-by: public pjenkins Signed-off-by: huanghan18 <huanghan18@huawei.com> revert merge request: AR20260205251565 heap_dump_1 for jsvm 5fae5665635fc7a1b52e325454044501fafec68e This revert merge request !453 | 1 个月前 |
| 文件 | 最后提交记录 | 最后更新时间 |
|---|---|---|
| 10 个月前 | ||
| 1 年前 | ||
| 1 年前 | ||
| 1 年前 | ||
| 1 年前 | ||
| 7 年前 | ||
| 1 年前 | ||
| 3 年前 | ||
| 10 个月前 | ||
| 8 个月前 | ||
| 7 年前 | ||
| 1 个月前 | ||
| 1 个月前 |