mirror of
https://github.com/jerryscript-project/jerryscript.git
synced 2025-12-15 16:29:21 +00:00
49 lines
1.2 KiB
C
49 lines
1.2 KiB
C
/* Copyright 2014-2015 Samsung Electronics Co., Ltd.
|
|
*
|
|
* 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.
|
|
*/
|
|
|
|
#ifndef BYTECODE_DATA_H
|
|
#define BYTECODE_DATA_H
|
|
|
|
#include "opcodes.h"
|
|
#include "stack.h"
|
|
#include "jrt-libc-includes.h"
|
|
#include "literal.h"
|
|
#include "scopes-tree.h"
|
|
#include "lit-id-hash-table.h"
|
|
|
|
#define BLOCK_SIZE 64
|
|
|
|
typedef struct
|
|
{
|
|
opcode_counter_t oc;
|
|
idx_t uid;
|
|
uint8_t reserved;
|
|
}
|
|
lit_id_table_key;
|
|
|
|
typedef struct
|
|
{
|
|
const literal *literals;
|
|
const opcode_t *opcodes;
|
|
lit_id_hash_table *lit_id_hash;
|
|
literal_index_t literals_count;
|
|
opcode_counter_t opcodes_count;
|
|
} bytecode_data_t;
|
|
|
|
extern bytecode_data_t bytecode_data;
|
|
extern scopes_tree current_scope;
|
|
|
|
#endif // BYTECODE_DATA_H
|