| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent 63f5d69 commit 30897d9
4 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -38,7 +38,7 @@ | |||
| 38 | 38 | ||
| 39 | 39 | # Reset this number to 0 on major V8 upgrades. | |
| 40 | 40 | # Increment by one for each non-official patch applied to deps/v8. | |
| 41 | - 'v8_embedder_string': '-node.15', | ||
| 41 | + 'v8_embedder_string': '-node.16', | ||
| 42 | 42 | ||
| 43 | 43 | ##### V8 defaults for Node.js ##### | |
| 44 | 44 | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -294,9 +294,7 @@ DEFINE_BOOL(js_shipping, true, "enable all shipped JavaScript features") | |||
| 294 | 294 | ||
| 295 | 295 | // Features that are complete (but still behind the --harmony flag). | |
| 296 | 296 | #define HARMONY_STAGED_BASE(V) | |
| 297 | - #define JAVASCRIPT_STAGED_FEATURES_BASE(V) \ | ||
| 298 | - V(js_float16array, \ | ||
| 299 | - "Float16Array, Math.f16round, DataView.getFloat16, DataView.setFloat16") | ||
| 297 | + #define JAVASCRIPT_STAGED_FEATURES_BASE(V) | ||
| 300 | 298 | ||
| 301 | 299 | #ifdef V8_INTL_SUPPORT | |
| 302 | 300 | #define HARMONY_STAGED(V) \ | |
@@ -320,7 +318,9 @@ DEFINE_BOOL(js_shipping, true, "enable all shipped JavaScript features") | |||
| 320 | 318 | V(js_atomics_pause, "Atomics.pause") \ | |
| 321 | 319 | V(js_error_iserror, "Error.isError") \ | |
| 322 | 320 | V(js_regexp_escape, "RegExp.escape") \ | |
| 323 | - V(js_explicit_resource_management, "explicit resource management") | ||
| 321 | + V(js_explicit_resource_management, "explicit resource management") \ | ||
| 322 | + V(js_float16array, \ | ||
| 323 | + "Float16Array, Math.f16round, DataView.getFloat16, DataView.setFloat16") | ||
| 324 | 324 | ||
| 325 | 325 | #ifdef V8_INTL_SUPPORT | |
| 326 | 326 | #define HARMONY_SHIPPING(V) HARMONY_SHIPPING_BASE(V) | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -5211,6 +5211,11 @@ DirectHandle<JSFunction> Genesis::InstallTypedArray( | |||
| 5211 | 5211 | GetCorrespondingRabGsabElementsKind(elements_kind), 0); | |
| 5212 | 5212 | rab_gsab_initial_map->SetConstructor(*result); | |
| 5213 | 5213 | ||
| 5214 | + if (rab_gsab_initial_map_index == Context::RAB_GSAB_FLOAT16_ARRAY_MAP_INDEX && | ||
| 5215 | + v8_flags.js_float16array) { | ||
| 5216 | + LOG(isolate(), MapDetails(*rab_gsab_initial_map)); | ||
| 5217 | + } | ||
| 5218 | + | ||
| 5214 | 5219 | native_context()->set(rab_gsab_initial_map_index, *rab_gsab_initial_map, | |
| 5215 | 5220 | UPDATE_WRITE_BARRIER, kReleaseStore); | |
| 5216 | 5221 | Map::SetPrototype(isolate(), rab_gsab_initial_map, prototype); | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -2500,7 +2500,6 @@ | |||
| 2500 | 2500 | 'staging/sm/Temporal/PlainMonthDay/from-coptic': [FAIL], | |
| 2501 | 2501 | 'staging/sm/Temporal/PlainMonthDay/from-gregory': [FAIL], | |
| 2502 | 2502 | 'staging/sm/Temporal/PlainMonthDay/result-not-after-1972-dec-31': [FAIL], | |
| 2503 | - 'staging/sm/Math/f16round': [FAIL], | ||
| 2504 | 2503 | 'staging/sm/RegExp/unicode-ignoreCase': [FAIL], | |
| 2505 | 2504 | 'staging/sm/String/string-code-point-upper-lower-mapping': [FAIL], | |
| 2506 | 2505 | 'staging/sm/String/string-upper-lower-mapping': [FAIL], | |
@@ -2511,13 +2510,10 @@ | |||
| 2511 | 2510 | 'staging/sm/TypedArray/prototype-constructor-identity': [FAIL], | |
| 2512 | 2511 | 'staging/sm/TypedArray/set-detached-bigint': [FAIL], | |
| 2513 | 2512 | 'staging/sm/TypedArray/seal-and-freeze': [FAIL], | |
| 2514 | - 'staging/sm/TypedArray/sort-negative-nan': [FAIL], | ||
| 2515 | - 'staging/sm/TypedArray/sort_small': [FAIL], | ||
| 2516 | 2513 | 'staging/sm/TypedArray/test-integrity-level': [FAIL], | |
| 2517 | 2514 | 'staging/sm/TypedArray/test-integrity-level-detached': [FAIL], | |
| 2518 | 2515 | 'staging/sm/TypedArray/toReversed-detached': [FAIL], | |
| 2519 | 2516 | 'staging/sm/TypedArray/toSorted-detached': [FAIL], | |
| 2520 | - 'staging/sm/TypedArray/toString': [FAIL], | ||
| 2521 | 2517 | 'staging/sm/TypedArray/with': [FAIL], | |
| 2522 | 2518 | 'staging/sm/TypedArray/with-detached': [FAIL], | |
| 2523 | 2519 | }], | |
| Back | FazBrowse Home | New Git URL |
0 commit comments