blob: 76a8cda36c069ad88c4c469eb9440b210a8ad317 [file] [log] [blame]
# Copyright (C) 2024 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
"""Contains tables related to the v8 (Javasrcript Engine) Datasource.
These tables are WIP, the schema is not stable and you should not rely on them
for any serious business just yet""
"""
from python.generators.trace_processor_table.public import Alias
from python.generators.trace_processor_table.public import Column as C
from python.generators.trace_processor_table.public import ColumnDoc
from python.generators.trace_processor_table.public import ColumnFlag
from python.generators.trace_processor_table.public import CppInt32
from python.generators.trace_processor_table.public import CppInt64
from python.generators.trace_processor_table.public import CppOptional
from python.generators.trace_processor_table.public import CppString
from python.generators.trace_processor_table.public import CppTableId
from python.generators.trace_processor_table.public import CppUint32
from python.generators.trace_processor_table.public import CppUint32 as CppBool
from python.generators.trace_processor_table.public import Table
from python.generators.trace_processor_table.public import TableDoc
from .profiler_tables import STACK_PROFILE_FRAME_TABLE
V8_ISOLATE = Table(
python_module=__file__,
class_name='V8IsolateTable',
sql_name='__intrinsic_v8_isolate',
columns=[
C('upid', CppUint32()),
C('internal_isolate_id', CppInt32()),
C('embedded_blob_code_start_address', CppInt64()),
C('embedded_blob_code_size', CppInt64()),
C('code_range_base_address', CppOptional(CppInt64())),
C('code_range_size', CppOptional(CppInt64())),
C('shared_code_range', CppOptional(CppBool())),
C('embedded_blob_code_copy_start_address', CppOptional(CppInt64())),
],
tabledoc=TableDoc(
doc='Represents one Isolate instance',
group='v8',
columns={
'upid':
'Process the isolate was created in.',
'internal_isolate_id':
'Internal id used by the v8 engine. Unique in a process.',
'embedded_blob_code_start_address':
'Absolute start address of the embedded code blob.',
'embedded_blob_code_size':
'Size in bytes of the embedded code blob.',
'code_range_base_address':
'If this Isolate defines a CodeRange its base address is stored'
' here',
'code_range_size':
'If this Isolate defines a CodeRange its size is stored here',
'shared_code_range':
'Whether the code range for this Isolate is shared with others'
' in the same process. There is at max one such shared code'
' range per process.',
'embedded_blob_code_copy_start_address':
'Used when short builtin calls are enabled, where embedded'
' builtins are copied into the CodeRange so calls can be'
' nearer.',
},
),
)
V8_JS_SCRIPT = Table(
python_module=__file__,
class_name='V8JsScriptTable',
sql_name='__intrinsic_v8_js_script',
columns=[
C('v8_isolate_id', CppTableId(V8_ISOLATE)),
C('internal_script_id', CppInt32()),
C('script_type', CppString()),
C('name', CppString()),
C('source', CppOptional(CppString())),
],
tabledoc=TableDoc(
doc='Represents one Javascript script',
group='v8',
columns={
'v8_isolate_id': 'V8 Isolate',
'internal_script_id': 'Script id used by the V8 engine',
'script_type': '',
'name': '',
'source': 'Actual contents of the script.',
},
),
)
V8_WASM_SCRIPT = Table(
python_module=__file__,
class_name='V8WasmScriptTable',
sql_name='__intrinsic_v8_wasm_script',
columns=[
C('v8_isolate_id', CppTableId(V8_ISOLATE)),
C('internal_script_id', CppInt32()),
C('url', CppString()),
C('source', CppOptional(CppString())),
],
tabledoc=TableDoc(
doc='Represents one WASM script',
group='v8',
columns={
'v8_isolate_id': 'V8 Isolate',
'internal_script_id': 'Script id used by the V8 engine',
'url': 'URL of the source',
'source': 'Actual contents of the script.',
},
),
)
V8_JS_FUNCTION = Table(
python_module=__file__,
class_name='V8JsFunctionTable',
sql_name='__intrinsic_v8_js_function',
columns=[
C('name', CppString()),
C('v8_js_script_id', CppTableId(V8_JS_SCRIPT)),
C('is_toplevel', CppBool()),
C('kind', CppString()),
C('line', CppOptional(CppUint32())),
C('col', CppOptional(CppUint32())),
],
tabledoc=TableDoc(
doc='Represents a v8 Javascript function',
group='v8',
columns={
'name':
'',
'v8_js_script_id':
ColumnDoc(
doc='Script where the function is defined.',
joinable='v8_js_script.id',
),
'is_toplevel':
'Whether this function represents the top level script',
'kind':
'Function kind (e.g. regular function or constructor)',
'line':
'Line in script where function is defined. Starts at 1',
'col':
'Column in script where function is defined. Starts at 1',
},
),
)
# Keep this list sorted.
ALL_TABLES = [
V8_ISOLATE,
V8_JS_SCRIPT,
V8_WASM_SCRIPT,
V8_JS_FUNCTION,
]