2022-10-23 02:55:20 +00:00
|
|
|
# Copyright (C) 2006-2020 Apple Inc. All rights reserved.
|
2017-08-12 16:48:01 +00:00
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions
|
|
|
|
# are met:
|
|
|
|
#
|
|
|
|
# 1. Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in the
|
|
|
|
# documentation and/or other materials provided with the distribution.
|
|
|
|
# 3. Neither the name of Apple Inc. ("Apple") nor the names of
|
|
|
|
# its contributors may be used to endorse or promote products derived
|
|
|
|
# from this software without specific prior written permission.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY APPLE AND ITS CONTRIBUTORS "AS IS" AND ANY
|
|
|
|
# EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
|
|
|
|
# WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
|
|
|
|
# DISCLAIMED. IN NO EVENT SHALL APPLE OR ITS CONTRIBUTORS BE LIABLE FOR ANY
|
|
|
|
# DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
|
|
|
|
# (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
|
|
|
|
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
|
|
|
|
# ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
# THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
2022-10-23 02:55:20 +00:00
|
|
|
PYTHON = python
|
|
|
|
PERL = perl
|
|
|
|
RUBY = ruby
|
|
|
|
DELETE = rm -f
|
|
|
|
|
|
|
|
ifneq ($(SDKROOT),)
|
|
|
|
SDK_FLAGS = -isysroot $(SDKROOT)
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(USE_LLVM_TARGET_TRIPLES_FOR_CLANG),YES)
|
|
|
|
WK_CURRENT_ARCH = $(word 1, $(ARCHS))
|
|
|
|
TARGET_TRIPLE_FLAGS = -target $(WK_CURRENT_ARCH)-$(LLVM_TARGET_TRIPLE_VENDOR)-$(LLVM_TARGET_TRIPLE_OS_VERSION)$(LLVM_TARGET_TRIPLE_SUFFIX)
|
|
|
|
endif
|
|
|
|
|
|
|
|
FRAMEWORK_FLAGS := $(shell echo $(BUILT_PRODUCTS_DIR) $(FRAMEWORK_SEARCH_PATHS) $(SYSTEM_FRAMEWORK_SEARCH_PATHS) | $(PERL) -e 'print "-F " . join(" -F ", split(" ", <>));')
|
|
|
|
HEADER_FLAGS := $(shell echo $(BUILT_PRODUCTS_DIR) $(HEADER_SEARCH_PATHS) $(SYSTEM_HEADER_SEARCH_PATHS) | $(PERL) -e 'print "-I" . join(" -I", split(" ", <>));')
|
|
|
|
FEATURE_AND_PLATFORM_DEFINES := $(shell $(CC) -std=gnu++1z -x c++ -E -P -dM $(SDK_FLAGS) $(TARGET_TRIPLE_FLAGS) $(FRAMEWORK_FLAGS) $(HEADER_FLAGS) -include "wtf/Platform.h" /dev/null | $(PERL) -ne "print if s/\#define ((HAVE_|USE_|ENABLE_|WTF_PLATFORM_)\w+) 1/\1/")
|
|
|
|
|
|
|
|
# FIXME: This should list Platform.h and all the things it includes. Could do that by using the -MD flag in the CC line above.
|
|
|
|
FEATURE_AND_PLATFORM_DEFINE_DEPENDENCIES = DerivedSources.make
|
|
|
|
|
|
|
|
# --------
|
|
|
|
|
2017-08-12 16:48:01 +00:00
|
|
|
VPATH = \
|
|
|
|
$(JavaScriptCore) \
|
|
|
|
$(JavaScriptCore)/parser \
|
|
|
|
$(JavaScriptCore)/runtime \
|
|
|
|
$(JavaScriptCore)/interpreter \
|
|
|
|
$(JavaScriptCore)/jit \
|
|
|
|
$(JavaScriptCore)/builtins \
|
|
|
|
$(JavaScriptCore)/wasm/js \
|
|
|
|
#
|
|
|
|
|
|
|
|
JavaScriptCore_SCRIPTS_DIR = $(JavaScriptCore)/Scripts
|
|
|
|
|
|
|
|
.PHONY : all
|
|
|
|
all : \
|
|
|
|
udis86_itab.h \
|
|
|
|
InjectedScriptSource.h \
|
|
|
|
JSCBuiltins.h \
|
|
|
|
Lexer.lut.h \
|
|
|
|
KeywordLookup.h \
|
|
|
|
RegExpJitTables.h \
|
2020-08-29 13:27:11 +00:00
|
|
|
UnicodePatternTables.h \
|
|
|
|
yarr/YarrCanonicalizeUnicode.cpp \
|
2017-08-12 16:48:01 +00:00
|
|
|
WasmOps.h \
|
|
|
|
WasmB3IRGeneratorInlines.h \
|
|
|
|
#
|
|
|
|
|
|
|
|
# JavaScript builtins.
|
|
|
|
|
|
|
|
BUILTINS_GENERATOR_SCRIPTS = \
|
2020-08-29 13:27:11 +00:00
|
|
|
$(JavaScriptCore_SCRIPTS_DIR)/wkbuiltins/__init__.py \
|
|
|
|
$(JavaScriptCore_SCRIPTS_DIR)/wkbuiltins/wkbuiltins.py \
|
|
|
|
$(JavaScriptCore_SCRIPTS_DIR)/wkbuiltins/builtins_generator.py \
|
|
|
|
$(JavaScriptCore_SCRIPTS_DIR)/wkbuiltins/builtins_model.py \
|
|
|
|
$(JavaScriptCore_SCRIPTS_DIR)/wkbuiltins/builtins_templates.py \
|
|
|
|
$(JavaScriptCore_SCRIPTS_DIR)/wkbuiltins/builtins_generate_combined_header.py \
|
|
|
|
$(JavaScriptCore_SCRIPTS_DIR)/wkbuiltins/builtins_generate_combined_implementation.py \
|
|
|
|
$(JavaScriptCore_SCRIPTS_DIR)/wkbuiltins/builtins_generate_separate_header.py \
|
|
|
|
$(JavaScriptCore_SCRIPTS_DIR)/wkbuiltins/builtins_generate_separate_implementation.py \
|
|
|
|
${JavaScriptCore_SCRIPTS_DIR}/wkbuiltins/builtins_generate_wrapper_header.py \
|
|
|
|
${JavaScriptCore_SCRIPTS_DIR}/wkbuiltins/builtins_generate_wrapper_implementation.py \
|
|
|
|
${JavaScriptCore_SCRIPTS_DIR}/wkbuiltins/builtins_generate_internals_wrapper_header.py \
|
|
|
|
${JavaScriptCore_SCRIPTS_DIR}/wkbuiltins/builtins_generate_internals_wrapper_implementation.py \
|
2017-08-12 16:48:01 +00:00
|
|
|
$(JavaScriptCore_SCRIPTS_DIR)/generate-js-builtins.py \
|
|
|
|
$(JavaScriptCore_SCRIPTS_DIR)/lazywriter.py \
|
|
|
|
#
|
|
|
|
|
|
|
|
JavaScriptCore_BUILTINS_SOURCES = \
|
2020-08-29 13:27:11 +00:00
|
|
|
$(JavaScriptCore)/builtins/AsyncFromSyncIteratorPrototype.js \
|
2017-08-12 16:48:01 +00:00
|
|
|
$(JavaScriptCore)/builtins/ArrayConstructor.js \
|
|
|
|
$(JavaScriptCore)/builtins/ArrayIteratorPrototype.js \
|
|
|
|
$(JavaScriptCore)/builtins/ArrayPrototype.js \
|
2020-08-29 13:27:11 +00:00
|
|
|
$(JavaScriptCore)/builtins/AsyncIteratorPrototype.js \
|
2017-08-12 16:48:01 +00:00
|
|
|
$(JavaScriptCore)/builtins/AsyncFunctionPrototype.js \
|
2020-08-29 13:27:11 +00:00
|
|
|
$(JavaScriptCore)/builtins/AsyncGeneratorPrototype.js \
|
2017-08-12 16:48:01 +00:00
|
|
|
$(JavaScriptCore)/builtins/DatePrototype.js \
|
|
|
|
$(JavaScriptCore)/builtins/FunctionPrototype.js \
|
|
|
|
$(JavaScriptCore)/builtins/GeneratorPrototype.js \
|
|
|
|
$(JavaScriptCore)/builtins/GlobalObject.js \
|
|
|
|
$(JavaScriptCore)/builtins/GlobalOperations.js \
|
|
|
|
$(JavaScriptCore)/builtins/InspectorInstrumentationObject.js \
|
|
|
|
$(JavaScriptCore)/builtins/InternalPromiseConstructor.js \
|
|
|
|
$(JavaScriptCore)/builtins/IteratorHelpers.js \
|
|
|
|
$(JavaScriptCore)/builtins/IteratorPrototype.js \
|
2020-08-29 13:27:11 +00:00
|
|
|
$(JavaScriptCore)/builtins/MapIteratorPrototype.js \
|
2017-08-12 16:48:01 +00:00
|
|
|
$(JavaScriptCore)/builtins/MapPrototype.js \
|
2020-08-29 13:27:11 +00:00
|
|
|
$(JavaScriptCore)/builtins/ModuleLoader.js \
|
2017-08-12 16:48:01 +00:00
|
|
|
$(JavaScriptCore)/builtins/NumberConstructor.js \
|
|
|
|
$(JavaScriptCore)/builtins/ObjectConstructor.js \
|
|
|
|
$(JavaScriptCore)/builtins/PromiseConstructor.js \
|
|
|
|
$(JavaScriptCore)/builtins/PromiseOperations.js \
|
|
|
|
$(JavaScriptCore)/builtins/PromisePrototype.js \
|
|
|
|
$(JavaScriptCore)/builtins/ReflectObject.js \
|
|
|
|
$(JavaScriptCore)/builtins/RegExpPrototype.js \
|
2020-08-29 13:27:11 +00:00
|
|
|
${JavaScriptCore}/builtins/RegExpStringIteratorPrototype.js \
|
|
|
|
$(JavaScriptCore)/builtins/SetIteratorPrototype.js \
|
2017-08-12 16:48:01 +00:00
|
|
|
$(JavaScriptCore)/builtins/SetPrototype.js \
|
|
|
|
$(JavaScriptCore)/builtins/StringConstructor.js \
|
|
|
|
$(JavaScriptCore)/builtins/StringIteratorPrototype.js \
|
|
|
|
$(JavaScriptCore)/builtins/StringPrototype.js \
|
|
|
|
$(JavaScriptCore)/builtins/TypedArrayConstructor.js \
|
|
|
|
$(JavaScriptCore)/builtins/TypedArrayPrototype.js \
|
2022-10-23 02:55:20 +00:00
|
|
|
$(JavaScriptCore)/builtins/WebAssembly.js \
|
2017-08-12 16:48:01 +00:00
|
|
|
#
|
|
|
|
|
|
|
|
# The combined output file depends on the contents of builtins and generator scripts, so
|
|
|
|
# adding, modifying, or removing builtins or scripts will trigger regeneration of files.
|
|
|
|
|
|
|
|
JavaScriptCore_BUILTINS_DEPENDENCIES_LIST : $(JavaScriptCore_SCRIPTS_DIR)/UpdateContents.py DerivedSources.make
|
|
|
|
$(PYTHON) $(JavaScriptCore_SCRIPTS_DIR)/UpdateContents.py '$(JavaScriptCore_BUILTINS_SOURCES) $(BUILTINS_GENERATOR_SCRIPTS)' $@
|
|
|
|
|
|
|
|
JSCBuiltins.h: $(BUILTINS_GENERATOR_SCRIPTS) $(JavaScriptCore_BUILTINS_SOURCES) JavaScriptCore_BUILTINS_DEPENDENCIES_LIST
|
|
|
|
$(PYTHON) $(JavaScriptCore_SCRIPTS_DIR)/generate-js-builtins.py --combined --output-directory . --framework JavaScriptCore $(JavaScriptCore_BUILTINS_SOURCES)
|
|
|
|
|
|
|
|
# Perfect hash lookup tables for JavaScript classes.
|
|
|
|
|
|
|
|
OBJECT_LUT_HEADERS = \
|
2020-08-29 13:27:11 +00:00
|
|
|
AsyncFromSyncIteratorPrototype.lut.h \
|
2017-08-12 16:48:01 +00:00
|
|
|
ArrayConstructor.lut.h \
|
2020-08-29 13:27:11 +00:00
|
|
|
AsyncGeneratorPrototype.lut.h \
|
|
|
|
BigIntConstructor.lut.h \
|
|
|
|
BigIntPrototype.lut.h \
|
2017-08-12 16:48:01 +00:00
|
|
|
BooleanPrototype.lut.h \
|
|
|
|
DateConstructor.lut.h \
|
|
|
|
DatePrototype.lut.h \
|
|
|
|
ErrorPrototype.lut.h \
|
|
|
|
GeneratorPrototype.lut.h \
|
|
|
|
InspectorInstrumentationObject.lut.h \
|
|
|
|
IntlCollatorConstructor.lut.h \
|
|
|
|
IntlCollatorPrototype.lut.h \
|
|
|
|
IntlDateTimeFormatConstructor.lut.h \
|
|
|
|
IntlDateTimeFormatPrototype.lut.h \
|
2022-10-23 02:55:20 +00:00
|
|
|
IntlDisplayNamesConstructor.lut.h \
|
|
|
|
IntlDisplayNamesPrototype.lut.h \
|
|
|
|
IntlListFormatConstructor.lut.h \
|
|
|
|
IntlListFormatPrototype.lut.h \
|
|
|
|
IntlLocalePrototype.lut.h \
|
2017-08-12 16:48:01 +00:00
|
|
|
IntlNumberFormatConstructor.lut.h \
|
|
|
|
IntlNumberFormatPrototype.lut.h \
|
2020-08-29 13:27:11 +00:00
|
|
|
IntlObject.lut.h \
|
|
|
|
IntlPluralRulesConstructor.lut.h \
|
|
|
|
IntlPluralRulesPrototype.lut.h \
|
2022-10-23 02:55:20 +00:00
|
|
|
IntlRelativeTimeFormatConstructor.lut.h \
|
|
|
|
IntlRelativeTimeFormatPrototype.lut.h \
|
|
|
|
IntlSegmentIteratorPrototype.lut.h \
|
|
|
|
IntlSegmenterConstructor.lut.h \
|
|
|
|
IntlSegmenterPrototype.lut.h \
|
|
|
|
IntlSegmentsPrototype.lut.h \
|
2017-08-12 16:48:01 +00:00
|
|
|
JSDataViewPrototype.lut.h \
|
|
|
|
JSGlobalObject.lut.h \
|
|
|
|
JSInternalPromiseConstructor.lut.h \
|
2020-08-29 13:27:11 +00:00
|
|
|
JSModuleLoader.lut.h \
|
2017-08-12 16:48:01 +00:00
|
|
|
JSONObject.lut.h \
|
|
|
|
JSPromiseConstructor.lut.h \
|
2020-08-29 13:27:11 +00:00
|
|
|
JSPromisePrototype.lut.h \
|
|
|
|
JSWebAssembly.lut.h \
|
2017-08-12 16:48:01 +00:00
|
|
|
MapPrototype.lut.h \
|
|
|
|
NumberConstructor.lut.h \
|
|
|
|
NumberPrototype.lut.h \
|
|
|
|
ObjectConstructor.lut.h \
|
|
|
|
ReflectObject.lut.h \
|
|
|
|
RegExpConstructor.lut.h \
|
|
|
|
SetPrototype.lut.h \
|
|
|
|
StringConstructor.lut.h \
|
|
|
|
StringPrototype.lut.h \
|
|
|
|
SymbolConstructor.lut.h \
|
|
|
|
SymbolPrototype.lut.h \
|
|
|
|
WebAssemblyCompileErrorConstructor.lut.h \
|
|
|
|
WebAssemblyCompileErrorPrototype.lut.h \
|
2022-10-23 02:55:20 +00:00
|
|
|
WebAssemblyGlobalConstructor.lut.h \
|
|
|
|
WebAssemblyGlobalPrototype.lut.h \
|
2017-08-12 16:48:01 +00:00
|
|
|
WebAssemblyInstanceConstructor.lut.h \
|
|
|
|
WebAssemblyInstancePrototype.lut.h \
|
2018-01-03 05:16:05 +00:00
|
|
|
WebAssemblyLinkErrorConstructor.lut.h \
|
|
|
|
WebAssemblyLinkErrorPrototype.lut.h \
|
2017-08-12 16:48:01 +00:00
|
|
|
WebAssemblyMemoryConstructor.lut.h \
|
|
|
|
WebAssemblyMemoryPrototype.lut.h \
|
|
|
|
WebAssemblyModuleConstructor.lut.h \
|
|
|
|
WebAssemblyModulePrototype.lut.h \
|
|
|
|
WebAssemblyRuntimeErrorConstructor.lut.h \
|
|
|
|
WebAssemblyRuntimeErrorPrototype.lut.h \
|
|
|
|
WebAssemblyTableConstructor.lut.h \
|
|
|
|
WebAssemblyTablePrototype.lut.h \
|
|
|
|
#
|
|
|
|
|
|
|
|
$(OBJECT_LUT_HEADERS): %.lut.h : %.cpp $(JavaScriptCore)/create_hash_table
|
|
|
|
$(PERL) $(JavaScriptCore)/create_hash_table $< > $@
|
|
|
|
|
|
|
|
Lexer.lut.h: Keywords.table $(JavaScriptCore)/create_hash_table
|
|
|
|
$(PERL) $(JavaScriptCore)/create_hash_table $< > $@
|
|
|
|
|
|
|
|
# character tables for Yarr
|
|
|
|
|
2020-08-29 13:27:11 +00:00
|
|
|
RegExpJitTables.h: yarr/create_regex_tables
|
2017-08-12 16:48:01 +00:00
|
|
|
$(PYTHON) $^ > $@
|
|
|
|
|
|
|
|
KeywordLookup.h: KeywordLookupGenerator.py Keywords.table
|
|
|
|
$(PYTHON) $^ > $@
|
|
|
|
|
|
|
|
# udis86 instruction tables
|
|
|
|
|
|
|
|
udis86_itab.h: $(JavaScriptCore)/disassembler/udis86/ud_itab.py $(JavaScriptCore)/disassembler/udis86/optable.xml
|
|
|
|
$(PYTHON) $(JavaScriptCore)/disassembler/udis86/ud_itab.py $(JavaScriptCore)/disassembler/udis86/optable.xml .
|
|
|
|
|
|
|
|
# Bytecode files
|
|
|
|
|
2020-08-29 13:27:11 +00:00
|
|
|
BYTECODE_FILES = \
|
|
|
|
Bytecodes.h \
|
|
|
|
BytecodeIndices.h \
|
|
|
|
BytecodeStructs.h \
|
|
|
|
InitBytecodes.asm \
|
2022-10-23 02:55:20 +00:00
|
|
|
WasmLLIntGeneratorInlines.h \
|
|
|
|
InitWasm.asm \
|
|
|
|
BytecodeDumperGenerated.cpp \
|
2020-08-29 13:27:11 +00:00
|
|
|
#
|
|
|
|
BYTECODE_FILES_PATTERNS = $(subst .,%,$(BYTECODE_FILES))
|
|
|
|
|
|
|
|
all : $(BYTECODE_FILES)
|
2017-08-12 16:48:01 +00:00
|
|
|
|
2022-10-23 02:55:20 +00:00
|
|
|
$(BYTECODE_FILES_PATTERNS): $(wildcard $(JavaScriptCore)/generator/*.rb) $(JavaScriptCore)/bytecode/BytecodeList.rb $(JavaScriptCore)/wasm/wasm.json
|
|
|
|
$(RUBY) $(JavaScriptCore)/generator/main.rb $(JavaScriptCore)/bytecode/BytecodeList.rb \
|
|
|
|
--bytecode_structs_h BytecodeStructs.h \
|
|
|
|
--init_bytecodes_asm InitBytecodes.asm \
|
|
|
|
--bytecodes_h Bytecodes.h \
|
|
|
|
--bytecode_indices_h BytecodeIndices.h \
|
|
|
|
--wasm_json $(JavaScriptCore)/wasm/wasm.json \
|
|
|
|
--wasm_llint_generator_h WasmLLIntGeneratorInlines.h \
|
|
|
|
--init_wasm_llint InitWasm.asm \
|
|
|
|
--bytecode_dumper BytecodeDumperGenerated.cpp \
|
2017-08-12 16:48:01 +00:00
|
|
|
|
|
|
|
# Inspector interfaces
|
|
|
|
|
2020-08-29 13:27:11 +00:00
|
|
|
INSPECTOR_DOMAINS := \
|
2022-10-23 02:55:20 +00:00
|
|
|
$(JavaScriptCore)/inspector/protocol/Animation.json \
|
2017-08-12 16:48:01 +00:00
|
|
|
$(JavaScriptCore)/inspector/protocol/ApplicationCache.json \
|
2020-08-29 13:27:11 +00:00
|
|
|
$(JavaScriptCore)/inspector/protocol/Audit.json \
|
2022-10-23 02:55:20 +00:00
|
|
|
$(JavaScriptCore)/inspector/protocol/Browser.json \
|
|
|
|
$(JavaScriptCore)/inspector/protocol/CPUProfiler.json \
|
2017-08-12 16:48:01 +00:00
|
|
|
$(JavaScriptCore)/inspector/protocol/CSS.json \
|
2018-01-03 05:16:05 +00:00
|
|
|
$(JavaScriptCore)/inspector/protocol/Canvas.json \
|
2017-08-12 16:48:01 +00:00
|
|
|
$(JavaScriptCore)/inspector/protocol/Console.json \
|
|
|
|
$(JavaScriptCore)/inspector/protocol/DOM.json \
|
|
|
|
$(JavaScriptCore)/inspector/protocol/DOMDebugger.json \
|
|
|
|
$(JavaScriptCore)/inspector/protocol/DOMStorage.json \
|
|
|
|
$(JavaScriptCore)/inspector/protocol/Database.json \
|
|
|
|
$(JavaScriptCore)/inspector/protocol/Debugger.json \
|
|
|
|
$(JavaScriptCore)/inspector/protocol/GenericTypes.json \
|
|
|
|
$(JavaScriptCore)/inspector/protocol/Heap.json \
|
2022-10-23 02:55:20 +00:00
|
|
|
$(JavaScriptCore)/inspector/protocol/IndexedDB.json \
|
2017-08-12 16:48:01 +00:00
|
|
|
$(JavaScriptCore)/inspector/protocol/Inspector.json \
|
|
|
|
$(JavaScriptCore)/inspector/protocol/LayerTree.json \
|
2022-10-23 02:55:20 +00:00
|
|
|
$(JavaScriptCore)/inspector/protocol/Memory.json \
|
2017-08-12 16:48:01 +00:00
|
|
|
$(JavaScriptCore)/inspector/protocol/Network.json \
|
|
|
|
$(JavaScriptCore)/inspector/protocol/Page.json \
|
2020-08-29 13:27:11 +00:00
|
|
|
$(JavaScriptCore)/inspector/protocol/Recording.json \
|
2017-08-12 16:48:01 +00:00
|
|
|
$(JavaScriptCore)/inspector/protocol/Runtime.json \
|
|
|
|
$(JavaScriptCore)/inspector/protocol/ScriptProfiler.json \
|
2020-08-29 13:27:11 +00:00
|
|
|
$(JavaScriptCore)/inspector/protocol/Security.json \
|
2022-10-23 02:55:20 +00:00
|
|
|
$(JavaScriptCore)/inspector/protocol/ServiceWorker.json \
|
2020-08-29 13:27:11 +00:00
|
|
|
$(JavaScriptCore)/inspector/protocol/Target.json \
|
2017-08-12 16:48:01 +00:00
|
|
|
$(JavaScriptCore)/inspector/protocol/Timeline.json \
|
|
|
|
$(JavaScriptCore)/inspector/protocol/Worker.json \
|
|
|
|
#
|
|
|
|
|
|
|
|
INSPECTOR_GENERATOR_SCRIPTS = \
|
|
|
|
$(JavaScriptCore)/inspector/scripts/codegen/__init__.py \
|
|
|
|
$(JavaScriptCore)/inspector/scripts/codegen/cpp_generator_templates.py \
|
|
|
|
$(JavaScriptCore)/inspector/scripts/codegen/cpp_generator.py \
|
|
|
|
$(JavaScriptCore)/inspector/scripts/codegen/generate_cpp_backend_dispatcher_header.py \
|
|
|
|
$(JavaScriptCore)/inspector/scripts/codegen/generate_cpp_backend_dispatcher_implementation.py \
|
|
|
|
$(JavaScriptCore)/inspector/scripts/codegen/generate_cpp_frontend_dispatcher_header.py \
|
|
|
|
$(JavaScriptCore)/inspector/scripts/codegen/generate_cpp_frontend_dispatcher_implementation.py \
|
|
|
|
$(JavaScriptCore)/inspector/scripts/codegen/generate_cpp_protocol_types_header.py \
|
|
|
|
$(JavaScriptCore)/inspector/scripts/codegen/generate_cpp_protocol_types_implementation.py \
|
|
|
|
$(JavaScriptCore)/inspector/scripts/codegen/generate_js_backend_commands.py \
|
|
|
|
$(JavaScriptCore)/inspector/scripts/codegen/generator_templates.py \
|
|
|
|
$(JavaScriptCore)/inspector/scripts/codegen/generator.py \
|
|
|
|
$(JavaScriptCore)/inspector/scripts/codegen/models.py \
|
2022-10-23 02:55:20 +00:00
|
|
|
$(JavaScriptCore)/inspector/scripts/codegen/preprocess.pl \
|
2017-08-12 16:48:01 +00:00
|
|
|
$(JavaScriptCore)/inspector/scripts/generate-inspector-protocol-bindings.py \
|
|
|
|
$(JavaScriptCore_SCRIPTS_DIR)/generate-combined-inspector-json.py \
|
|
|
|
#
|
|
|
|
|
2020-08-29 13:27:11 +00:00
|
|
|
# TODO: Is there some way to not hardcode this? Can we get it from
|
|
|
|
# generate-inspector-protocol-bindings.py and ./CombinedDomains.json?
|
|
|
|
INSPECTOR_DISPATCHER_FILES = \
|
|
|
|
inspector/InspectorAlternateBackendDispatchers.h \
|
|
|
|
inspector/InspectorBackendDispatchers.cpp \
|
|
|
|
inspector/InspectorBackendDispatchers.h \
|
|
|
|
inspector/InspectorFrontendDispatchers.cpp \
|
|
|
|
inspector/InspectorFrontendDispatchers.h \
|
|
|
|
inspector/InspectorProtocolObjects.cpp \
|
|
|
|
inspector/InspectorProtocolObjects.h \
|
|
|
|
#
|
|
|
|
INSPECTOR_DISPATCHER_FILES_PATTERNS = $(subst .,%,$(INSPECTOR_DISPATCHER_FILES))
|
|
|
|
|
2022-10-23 02:55:20 +00:00
|
|
|
all : $(INSPECTOR_DISPATCHER_FILES) inspector/InspectorBackendCommands.js
|
2020-08-29 13:27:11 +00:00
|
|
|
|
2017-08-12 16:48:01 +00:00
|
|
|
# The combined JSON file depends on the actual set of domains and their file contents, so that
|
|
|
|
# adding, modifying, or removing domains will trigger regeneration of inspector files.
|
|
|
|
|
|
|
|
.PHONY: force
|
|
|
|
EnabledInspectorDomains : $(JavaScriptCore_SCRIPTS_DIR)/UpdateContents.py force
|
|
|
|
$(PYTHON) $(JavaScriptCore_SCRIPTS_DIR)/UpdateContents.py '$(INSPECTOR_DOMAINS)' $@
|
|
|
|
|
|
|
|
CombinedDomains.json : $(JavaScriptCore_SCRIPTS_DIR)/generate-combined-inspector-json.py $(INSPECTOR_DOMAINS) EnabledInspectorDomains
|
|
|
|
$(PYTHON) $(JavaScriptCore_SCRIPTS_DIR)/generate-combined-inspector-json.py $(INSPECTOR_DOMAINS) > ./CombinedDomains.json
|
|
|
|
|
|
|
|
# Inspector Backend Dispatchers, Frontend Dispatchers, Type Builders
|
2020-08-29 13:27:11 +00:00
|
|
|
$(INSPECTOR_DISPATCHER_FILES_PATTERNS) : CombinedDomains.json $(INSPECTOR_GENERATOR_SCRIPTS)
|
|
|
|
$(PYTHON) $(JavaScriptCore)/inspector/scripts/generate-inspector-protocol-bindings.py --framework JavaScriptCore --outputDir inspector ./CombinedDomains.json
|
2017-08-12 16:48:01 +00:00
|
|
|
|
2022-10-23 02:55:20 +00:00
|
|
|
inspector/InspectorBackendCommands.js : CombinedDomains.json $(INSPECTOR_GENERATOR_SCRIPTS) $(FEATURE_AND_PLATFORM_DEFINE_DEPENDENCIES)
|
|
|
|
$(PYTHON) $(JavaScriptCore)/inspector/scripts/generate-inspector-protocol-bindings.py --framework WebInspectorUI --outputDir inspector ./CombinedDomains.json
|
|
|
|
@echo Pre-processing InspectorBackendCommands...
|
|
|
|
$(PERL) $(JavaScriptCore)/inspector/scripts/codegen/preprocess.pl --input inspector/InspectorBackendCommands.js.in --defines "$(FEATURE_AND_PLATFORM_DEFINES)" --output inspector/InspectorBackendCommands.js
|
|
|
|
$(DELETE) inspector/InspectorBackendCommands.js.in
|
|
|
|
|
2017-08-12 16:48:01 +00:00
|
|
|
InjectedScriptSource.h : inspector/InjectedScriptSource.js $(JavaScriptCore_SCRIPTS_DIR)/jsmin.py $(JavaScriptCore_SCRIPTS_DIR)/xxd.pl
|
|
|
|
echo "//# sourceURL=__InjectedScript_InjectedScriptSource.js" > ./InjectedScriptSource.min.js
|
|
|
|
$(PYTHON) $(JavaScriptCore_SCRIPTS_DIR)/jsmin.py < $(JavaScriptCore)/inspector/InjectedScriptSource.js >> ./InjectedScriptSource.min.js
|
|
|
|
$(PERL) $(JavaScriptCore_SCRIPTS_DIR)/xxd.pl InjectedScriptSource_js ./InjectedScriptSource.min.js InjectedScriptSource.h
|
|
|
|
$(DELETE) InjectedScriptSource.min.js
|
|
|
|
|
2020-08-29 13:27:11 +00:00
|
|
|
AIR_OPCODE_FILES = \
|
|
|
|
AirOpcode.h \
|
|
|
|
AirOpcodeUtils.h \
|
|
|
|
AirOpcodeGenerated.h \
|
|
|
|
#
|
|
|
|
AIR_OPCODE_FILES_PATTERNS = $(subst .,%,$(AIR_OPCODE_FILES))
|
|
|
|
|
|
|
|
all : $(AIR_OPCODE_FILES)
|
|
|
|
|
|
|
|
$(AIR_OPCODE_FILES_PATTERNS) : $(JavaScriptCore)/b3/air/opcode_generator.rb $(JavaScriptCore)/b3/air/AirOpcode.opcodes
|
2017-08-12 16:48:01 +00:00
|
|
|
$(RUBY) $^
|
|
|
|
|
2020-08-29 13:27:11 +00:00
|
|
|
UnicodePatternTables.h: $(JavaScriptCore)/yarr/generateYarrUnicodePropertyTables.py $(JavaScriptCore)/yarr/hasher.py $(JavaScriptCore)/ucd/DerivedBinaryProperties.txt $(JavaScriptCore)/ucd/DerivedCoreProperties.txt $(JavaScriptCore)/ucd/DerivedNormalizationProps.txt $(JavaScriptCore)/ucd/PropList.txt $(JavaScriptCore)/ucd/PropertyAliases.txt $(JavaScriptCore)/ucd/PropertyValueAliases.txt $(JavaScriptCore)/ucd/ScriptExtensions.txt $(JavaScriptCore)/ucd/Scripts.txt $(JavaScriptCore)/ucd/UnicodeData.txt $(JavaScriptCore)/ucd/emoji-data.txt
|
|
|
|
$(PYTHON) $(JavaScriptCore)/yarr/generateYarrUnicodePropertyTables.py $(JavaScriptCore)/ucd ./UnicodePatternTables.h
|
|
|
|
|
|
|
|
yarr/YarrCanonicalizeUnicode.cpp: $(JavaScriptCore)/yarr/generateYarrCanonicalizeUnicode $(JavaScriptCore)/ucd/CaseFolding.txt
|
|
|
|
$(PYTHON) $(JavaScriptCore)/yarr/generateYarrCanonicalizeUnicode $(JavaScriptCore)/ucd/CaseFolding.txt ./yarr/YarrCanonicalizeUnicode.cpp
|
|
|
|
|
2017-08-12 16:48:01 +00:00
|
|
|
WasmOps.h: $(JavaScriptCore)/wasm/generateWasmOpsHeader.py $(JavaScriptCore)/wasm/generateWasm.py $(JavaScriptCore)/wasm/wasm.json
|
|
|
|
$(PYTHON) $(JavaScriptCore)/wasm/generateWasmOpsHeader.py $(JavaScriptCore)/wasm/wasm.json ./WasmOps.h
|
|
|
|
|
|
|
|
WasmB3IRGeneratorInlines.h: $(JavaScriptCore)/wasm/generateWasmB3IRGeneratorInlinesHeader.py $(JavaScriptCore)/wasm/generateWasm.py $(JavaScriptCore)/wasm/wasm.json
|
|
|
|
$(PYTHON) $(JavaScriptCore)/wasm/generateWasmB3IRGeneratorInlinesHeader.py $(JavaScriptCore)/wasm/wasm.json ./WasmB3IRGeneratorInlines.h
|
|
|
|
|
|
|
|
# Dynamically-defined targets are listed below. Static targets belong up top.
|
|
|
|
|
|
|
|
all : \
|
|
|
|
$(OBJECT_LUT_HEADERS) \
|
|
|
|
#
|