arkcompiler_runtime_core/static_core/isa
Denis Silakov 47b6a88d37 Enable check for using double quotes in shell scripts and fix detected issues
Issue: #I91NDW

Signed-off-by: Denis Silakov <silakov.denis@huawei.com>
2024-03-11 16:42:31 +03:00
..
templates Add arkplatform and static_core 2023-09-29 17:50:24 +03:00
asserts.rb Add arkplatform and static_core 2023-09-29 17:50:24 +03:00
BUILD.gn Add arkplatform and static_core 2023-09-29 17:50:24 +03:00
ChangeLog.md Rebase + detach es2panda 2023-10-03 20:44:06 +03:00
CMakeLists.txt Fuse JSValue->primitive casts in interop 2024-02-26 14:34:24 +03:00
combine.rb Add arkplatform and static_core 2023-09-29 17:50:24 +03:00
gen_wrapper.sh Enable check for using double quotes in shell scripts and fix detected issues 2024-03-11 16:42:31 +03:00
gen.rb Fuse JSValue->primitive casts in interop 2024-02-26 14:34:24 +03:00
isa.yaml Rebase + detach es2panda 2023-10-03 20:44:06 +03:00
isapi.rb Add arkplatform and static_core 2023-09-29 17:50:24 +03:00
IsaPostPlugins.cmake Add arkplatform and static_core 2023-09-29 17:50:24 +03:00
README Add arkplatform and static_core 2023-09-29 17:50:24 +03:00

Panda Bytecode Description (aka ISA)

Files:

- isa.yaml
	The main file that contains the whole data about Panda Bytecode.
	It is in a machine-readable format and intended to be the single source of
	Bytecode information. It also aims hardcode avoidance in interpreter, compiler
	and tools, faster changes (which is important on early stages of development),
	consistency between components.
- schema.json
	Schema for isa.yaml validation
- templates/
	Directory with example template files which show how could one generate needed
	files from isa.yaml using standard Ruby ERB templates.
	From <name>.<extenstion>.erb template <name>.<extension> file would be generated.
	(You also need to register your template in CMakeLists.txt)
- isapi.rb
	API for quering parsed yaml data which could be used for template generation.
	In a template you have access to all Ruby core libraries and to 'Panda' module.
	Please refer to the file itself for more details.
- gen.rb
	Driver for template generation. Run './gen.rb --help' for more details.
- CMakeLists.txt
	Build system for ISA