44fe02ced6
This reverts commit d1b27019d3
.
Reason for revert: Broke vtune build, tsan build and possibly others
Original change's description:
> [include] Split out v8.h
>
> This moves every single class/function out of include/v8.h into a
> separate header in include/, which v8.h then includes so that
> externally nothing appears to have changed.
>
> Every include of v8.h from inside v8 has been changed to a more
> fine-grained include.
>
> Previously inline functions defined at the bottom of v8.h would call
> private non-inline functions in the V8 class. Since that class is now
> in v8-initialization.h and is rarely included (as that would create
> dependency cycles), this is not possible and so those methods have been
> moved out of the V8 class into the namespace v8::api_internal.
>
> None of the previous files in include/ now #include v8.h, which means
> if embedders were relying on this transitive dependency then it will
> give compile failures.
>
> v8-inspector.h does depend on v8-scripts.h for the time being to ensure
> that Chrome continue to compile but that change will be reverted once
> those transitive #includes in chrome are changed to include it directly.
>
> Full design:
> https://docs.google.com/document/d/1rTD--I8hCAr-Rho1WTumZzFKaDpEp0IJ8ejZtk4nJdA/edit?usp=sharing
>
> Bug: v8:11965
> Change-Id: I53b84b29581632710edc80eb11f819c2097a2877
> Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3097448
> Reviewed-by: Yang Guo <yangguo@chromium.org>
> Reviewed-by: Camillo Bruni <cbruni@chromium.org>
> Reviewed-by: Jakob Kummerow <jkummerow@chromium.org>
> Reviewed-by: Leszek Swirski <leszeks@chromium.org>
> Reviewed-by: Michael Lippautz <mlippautz@chromium.org>
> Commit-Queue: Dan Elphick <delphick@chromium.org>
> Cr-Commit-Position: refs/heads/main@{#76424}
Bug: v8:11965
Change-Id: Id57313ae992e720c8b19abc975cd69729e1344aa
No-Presubmit: true
No-Tree-Checks: true
No-Try: true
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/3113627
Bot-Commit: Rubber Stamper <rubber-stamper@appspot.gserviceaccount.com>
Commit-Queue: Leszek Swirski <leszeks@chromium.org>
Owners-Override: Leszek Swirski <leszeks@chromium.org>
Cr-Commit-Position: refs/heads/main@{#76428}
100 lines
3.3 KiB
C++
100 lines
3.3 KiB
C++
// Copyright 2015 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include "include/libplatform/libplatform.h"
|
|
#include "include/v8.h"
|
|
|
|
int main(int argc, char* argv[]) {
|
|
// Initialize V8.
|
|
v8::V8::InitializeICUDefaultLocation(argv[0]);
|
|
v8::V8::InitializeExternalStartupData(argv[0]);
|
|
std::unique_ptr<v8::Platform> platform = v8::platform::NewDefaultPlatform();
|
|
v8::V8::InitializePlatform(platform.get());
|
|
v8::V8::Initialize();
|
|
|
|
// Create a new Isolate and make it the current one.
|
|
v8::Isolate::CreateParams create_params;
|
|
create_params.array_buffer_allocator =
|
|
v8::ArrayBuffer::Allocator::NewDefaultAllocator();
|
|
v8::Isolate* isolate = v8::Isolate::New(create_params);
|
|
{
|
|
v8::Isolate::Scope isolate_scope(isolate);
|
|
|
|
// Create a stack-allocated handle scope.
|
|
v8::HandleScope handle_scope(isolate);
|
|
|
|
// Create a new context.
|
|
v8::Local<v8::Context> context = v8::Context::New(isolate);
|
|
|
|
// Enter the context for compiling and running the hello world script.
|
|
v8::Context::Scope context_scope(context);
|
|
|
|
{
|
|
// Create a string containing the JavaScript source code.
|
|
v8::Local<v8::String> source =
|
|
v8::String::NewFromUtf8Literal(isolate, "'Hello' + ', World!'");
|
|
|
|
// Compile the source code.
|
|
v8::Local<v8::Script> script =
|
|
v8::Script::Compile(context, source).ToLocalChecked();
|
|
|
|
// Run the script to get the result.
|
|
v8::Local<v8::Value> result = script->Run(context).ToLocalChecked();
|
|
|
|
// Convert the result to an UTF8 string and print it.
|
|
v8::String::Utf8Value utf8(isolate, result);
|
|
printf("%s\n", *utf8);
|
|
}
|
|
|
|
{
|
|
// Use the JavaScript API to generate a WebAssembly module.
|
|
//
|
|
// |bytes| contains the binary format for the following module:
|
|
//
|
|
// (func (export "add") (param i32 i32) (result i32)
|
|
// get_local 0
|
|
// get_local 1
|
|
// i32.add)
|
|
//
|
|
const char csource[] = R"(
|
|
let bytes = new Uint8Array([
|
|
0x00, 0x61, 0x73, 0x6d, 0x01, 0x00, 0x00, 0x00, 0x01, 0x07, 0x01,
|
|
0x60, 0x02, 0x7f, 0x7f, 0x01, 0x7f, 0x03, 0x02, 0x01, 0x00, 0x07,
|
|
0x07, 0x01, 0x03, 0x61, 0x64, 0x64, 0x00, 0x00, 0x0a, 0x09, 0x01,
|
|
0x07, 0x00, 0x20, 0x00, 0x20, 0x01, 0x6a, 0x0b
|
|
]);
|
|
let module = new WebAssembly.Module(bytes);
|
|
let instance = new WebAssembly.Instance(module);
|
|
instance.exports.add(3, 4);
|
|
)";
|
|
|
|
// Create a string containing the JavaScript source code.
|
|
v8::Local<v8::String> source =
|
|
v8::String::NewFromUtf8Literal(isolate, csource);
|
|
|
|
// Compile the source code.
|
|
v8::Local<v8::Script> script =
|
|
v8::Script::Compile(context, source).ToLocalChecked();
|
|
|
|
// Run the script to get the result.
|
|
v8::Local<v8::Value> result = script->Run(context).ToLocalChecked();
|
|
|
|
// Convert the result to a uint32 and print it.
|
|
uint32_t number = result->Uint32Value(context).ToChecked();
|
|
printf("3 + 4 = %u\n", number);
|
|
}
|
|
}
|
|
|
|
// Dispose the isolate and tear down V8.
|
|
isolate->Dispose();
|
|
v8::V8::Dispose();
|
|
v8::V8::ShutdownPlatform();
|
|
delete create_params.array_buffer_allocator;
|
|
return 0;
|
|
}
|