mirror of
https://github.com/denoland/rusty_v8.git
synced 2024-12-26 09:13:46 -05:00
chore: revert V8 upgrade from 12.3 to 12.2. (#1414)
* Revert "V8 12.3.219.1 (#1402)" This reverts commitf30c18c770
. * Revert "Track V8 12.3 (#1401)" This reverts commit07436bdb4c
.
This commit is contained in:
parent
083f43346c
commit
40b2269509
8 changed files with 12 additions and 30 deletions
12
.gn
12
.gn
|
@ -73,18 +73,6 @@ default_args = {
|
||||||
# Enable V8 object print for debugging.
|
# Enable V8 object print for debugging.
|
||||||
# v8_enable_object_print = true
|
# v8_enable_object_print = true
|
||||||
|
|
||||||
# V8 12.3 added google/fuzztest as a third party dependency.
|
|
||||||
# https://chromium.googlesource.com/v8/v8.git/+/d5acece0c9b89b18716c177d1fcc8f734191e1e2%5E%21/#F4
|
|
||||||
#
|
|
||||||
# This flag disables it.
|
|
||||||
v8_enable_fuzztest = false
|
|
||||||
|
|
||||||
# Disable v8::HandleScope LIFO checks.
|
|
||||||
# https://chromium-review.googlesource.com/c/v8/v8/+/5110566
|
|
||||||
#
|
|
||||||
# rusty_v8 scopes are not on the stack.
|
|
||||||
v8_enable_v8_checks = false
|
|
||||||
|
|
||||||
# Enable Deno-specific extra bindings
|
# Enable Deno-specific extra bindings
|
||||||
deno_enable_extras = true
|
deno_enable_extras = true
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Rusty V8 Binding
|
# Rusty V8 Binding
|
||||||
|
|
||||||
V8 Version: 12.3.219.1
|
V8 Version: 12.1.285.27
|
||||||
|
|
||||||
[![ci](https://github.com/denoland/rusty_v8/workflows/ci/badge.svg?branch=main)](https://github.com/denoland/rusty_v8/actions)
|
[![ci](https://github.com/denoland/rusty_v8/workflows/ci/badge.svg?branch=main)](https://github.com/denoland/rusty_v8/actions)
|
||||||
[![crates](https://img.shields.io/crates/v/v8.svg)](https://crates.io/crates/v8)
|
[![crates](https://img.shields.io/crates/v/v8.svg)](https://crates.io/crates/v8)
|
||||||
|
|
|
@ -3073,9 +3073,9 @@ int v8__ModuleRequest__GetSourceOffset(const v8::ModuleRequest& self) {
|
||||||
return self.GetSourceOffset();
|
return self.GetSourceOffset();
|
||||||
}
|
}
|
||||||
|
|
||||||
const v8::FixedArray* v8__ModuleRequest__GetImportAttributes(
|
const v8::FixedArray* v8__ModuleRequest__GetImportAssertions(
|
||||||
const v8::ModuleRequest& self) {
|
const v8::ModuleRequest& self) {
|
||||||
return local_to_ptr(self.GetImportAttributes());
|
return local_to_ptr(self.GetImportAssertions());
|
||||||
}
|
}
|
||||||
|
|
||||||
struct WasmStreamingSharedPtr {
|
struct WasmStreamingSharedPtr {
|
||||||
|
|
|
@ -548,7 +548,7 @@ impl Isolate {
|
||||||
// Byte offset inside `Isolate` where the isolate data slots are stored. This
|
// Byte offset inside `Isolate` where the isolate data slots are stored. This
|
||||||
// should be the same as the value of `kIsolateEmbedderDataOffset` which is
|
// should be the same as the value of `kIsolateEmbedderDataOffset` which is
|
||||||
// defined in `v8-internal.h`.
|
// defined in `v8-internal.h`.
|
||||||
const EMBEDDER_DATA_OFFSET: usize = size_of::<[*const (); 67]>();
|
const EMBEDDER_DATA_OFFSET: usize = size_of::<[*const (); 65]>();
|
||||||
|
|
||||||
// Isolate data slots used internally by rusty_v8.
|
// Isolate data slots used internally by rusty_v8.
|
||||||
const ANNEX_SLOT: u32 = 0;
|
const ANNEX_SLOT: u32 = 0;
|
||||||
|
|
|
@ -193,7 +193,7 @@ extern "C" {
|
||||||
this: *const ModuleRequest,
|
this: *const ModuleRequest,
|
||||||
) -> *const String;
|
) -> *const String;
|
||||||
fn v8__ModuleRequest__GetSourceOffset(this: *const ModuleRequest) -> int;
|
fn v8__ModuleRequest__GetSourceOffset(this: *const ModuleRequest) -> int;
|
||||||
fn v8__ModuleRequest__GetImportAttributes(
|
fn v8__ModuleRequest__GetImportAssertions(
|
||||||
this: *const ModuleRequest,
|
this: *const ModuleRequest,
|
||||||
) -> *const FixedArray;
|
) -> *const FixedArray;
|
||||||
fn v8__Module__GetStalledTopLevelAwaitMessage(
|
fn v8__Module__GetStalledTopLevelAwaitMessage(
|
||||||
|
@ -480,7 +480,7 @@ impl ModuleRequest {
|
||||||
unsafe { v8__ModuleRequest__GetSourceOffset(self) }
|
unsafe { v8__ModuleRequest__GetSourceOffset(self) }
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Contains the import attributes for this request in the form:
|
/// Contains the import assertions for this request in the form:
|
||||||
/// [key1, value1, source_offset1, key2, value2, source_offset2, ...].
|
/// [key1, value1, source_offset1, key2, value2, source_offset2, ...].
|
||||||
/// The keys and values are of type v8::String, and the source offsets are of
|
/// The keys and values are of type v8::String, and the source offsets are of
|
||||||
/// type Int32. Use Module::source_offset_to_location to convert the source
|
/// type Int32. Use Module::source_offset_to_location to convert the source
|
||||||
|
@ -493,14 +493,8 @@ impl ModuleRequest {
|
||||||
/// opposed to, for example, triggering an error if an unsupported assertion is
|
/// opposed to, for example, triggering an error if an unsupported assertion is
|
||||||
/// present).
|
/// present).
|
||||||
#[inline(always)]
|
#[inline(always)]
|
||||||
pub fn get_import_attributes(&self) -> Local<FixedArray> {
|
pub fn get_import_assertions(&self) -> Local<FixedArray> {
|
||||||
unsafe { Local::from_raw(v8__ModuleRequest__GetImportAttributes(self)) }
|
unsafe { Local::from_raw(v8__ModuleRequest__GetImportAssertions(self)) }
|
||||||
.unwrap()
|
.unwrap()
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline(always)]
|
|
||||||
#[deprecated(note = "Use get_import_attributes instead")]
|
|
||||||
pub fn get_import_assertions(&self) -> Local<FixedArray> {
|
|
||||||
self.get_import_attributes()
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -4693,7 +4693,7 @@ fn module_instantiation_failures1() {
|
||||||
let loc = module.source_offset_to_location(mr1.get_source_offset());
|
let loc = module.source_offset_to_location(mr1.get_source_offset());
|
||||||
assert_eq!(0, loc.get_line_number());
|
assert_eq!(0, loc.get_line_number());
|
||||||
assert_eq!(7, loc.get_column_number());
|
assert_eq!(7, loc.get_column_number());
|
||||||
assert_eq!(0, mr1.get_import_attributes().length());
|
assert_eq!(0, mr1.get_import_assertions().length());
|
||||||
|
|
||||||
let mr2 = v8::Local::<v8::ModuleRequest>::try_from(
|
let mr2 = v8::Local::<v8::ModuleRequest>::try_from(
|
||||||
module_requests.get(scope, 1).unwrap(),
|
module_requests.get(scope, 1).unwrap(),
|
||||||
|
@ -4703,7 +4703,7 @@ fn module_instantiation_failures1() {
|
||||||
let loc = module.source_offset_to_location(mr2.get_source_offset());
|
let loc = module.source_offset_to_location(mr2.get_source_offset());
|
||||||
assert_eq!(1, loc.get_line_number());
|
assert_eq!(1, loc.get_line_number());
|
||||||
assert_eq!(15, loc.get_column_number());
|
assert_eq!(15, loc.get_column_number());
|
||||||
assert_eq!(0, mr2.get_import_attributes().length());
|
assert_eq!(0, mr2.get_import_assertions().length());
|
||||||
|
|
||||||
// Instantiation should fail.
|
// Instantiation should fail.
|
||||||
{
|
{
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
const V8_TRACKING_BRANCH = "12.3-lkgr-denoland";
|
const V8_TRACKING_BRANCH = "12.2-lkgr-denoland";
|
||||||
const AUTOROLL_BRANCH = "autoroll";
|
const AUTOROLL_BRANCH = "autoroll";
|
||||||
|
|
||||||
function extractVersion() {
|
function extractVersion() {
|
||||||
|
|
2
v8
2
v8
|
@ -1 +1 @@
|
||||||
Subproject commit 70d6b9e6769372e3606cbc202e934869a7dd4126
|
Subproject commit ef1375169ab459a6e0219f849769bd949d10fe42
|
Loading…
Reference in a new issue