Renaming opcode_idx_t to opcode_counter_t.

This commit is contained in:
Ruben Ayrapetyan
2014-07-30 21:54:53 +04:00
parent 4ebf551525
commit b50e091b08
5 changed files with 17 additions and 17 deletions
+3 -3
View File
@@ -46,7 +46,7 @@ run_int (void)
{
JERRY_ASSERT( __program != NULL );
const op_idx_t start_pos = 0;
const opcode_counter_t start_pos = 0;
ecma_value_t this_binding_value = ecma_make_simple_value( ECMA_SIMPLE_VALUE_UNDEFINED);
ecma_object_t *lex_env_p = ecma_create_lexical_environment (NULL,
ECMA_LEXICAL_ENVIRONMENT_DECLARATIVE);
@@ -88,7 +88,7 @@ run_int (void)
}
ecma_completion_value_t
run_int_from_pos (op_idx_t start_pos,
run_int_from_pos (opcode_counter_t start_pos,
ecma_value_t this_binding_value,
ecma_object_t *lex_env_p,
bool is_strict)
@@ -111,7 +111,7 @@ run_int_from_pos (op_idx_t start_pos,
JERRY_ASSERT( ecma_is_value_empty( regs[0]) );
struct __int_data int_data;
int_data.pos = (op_idx_t) (start_pos + 1);
int_data.pos = (opcode_counter_t) (start_pos + 1);
int_data.this_binding = this_binding_value;
int_data.lex_env_p = lex_env_p;
int_data.is_strict = is_strict;
+3 -3
View File
@@ -20,11 +20,11 @@
#include "globals.h"
#include "opcodes.h"
typedef uint16_t op_idx_t;
typedef uint16_t opcode_counter_t;
struct __int_data
{
op_idx_t pos; /**< current opcode to execute */
opcode_counter_t pos; /**< current opcode to execute */
ecma_value_t this_binding; /**< this binding for current context */
ecma_object_t *lex_env_p; /**< current lexical environment */
bool is_strict; /**< is current code execution mode strict? */
@@ -35,7 +35,7 @@ struct __int_data
void init_int (const OPCODE* program_p);
bool run_int (void);
ecma_completion_value_t run_int_from_pos (op_idx_t start_pos,
ecma_completion_value_t run_int_from_pos (opcode_counter_t start_pos,
ecma_value_t this_binding_value,
ecma_object_t *lex_env_p,
bool is_strict);
+5 -5
View File
@@ -565,7 +565,7 @@ opfunc_jmp_down (OPCODE opdata, /**< operation data */
{
JERRY_ASSERT( int_data->pos <= int_data->pos + opdata.data.jmp_up.opcode_count );
int_data->pos = (op_idx_t) ( int_data->pos + opdata.data.jmp_down.opcode_count );
int_data->pos = (opcode_counter_t) ( int_data->pos + opdata.data.jmp_down.opcode_count );
return ecma_make_empty_completion_value();
} /* opfunc_jmp_down */
@@ -582,7 +582,7 @@ opfunc_jmp_up (OPCODE opdata, /**< operation data */
{
JERRY_ASSERT( int_data->pos >= opdata.data.jmp_up.opcode_count );
int_data->pos = (op_idx_t) ( int_data->pos - opdata.data.jmp_down.opcode_count );
int_data->pos = (opcode_counter_t) ( int_data->pos - opdata.data.jmp_down.opcode_count );
return ecma_make_empty_completion_value();
} /* opfunc_jmp_up */
@@ -1309,16 +1309,16 @@ opfunc_func_decl_0(OPCODE opdata, /**< operation data */
const bool is_strict = int_data->is_strict;
const op_idx_t varg_first_opcode_idx = (op_idx_t) (int_data->pos + 1);
const opcode_counter_t varg_first_opcode_idx = (opcode_counter_t) (int_data->pos + 1);
int_data->pos = varg_first_opcode_idx;
TODO( Iterate vargs );
const op_idx_t jmp_down_opcode_idx = (op_idx_t) (int_data->pos);
const opcode_counter_t jmp_down_opcode_idx = (opcode_counter_t) (int_data->pos);
TODO( ASSERT( Current opcode is jmp_down ) );
const op_idx_t function_code_opcode_idx = (op_idx_t) (jmp_down_opcode_idx + 1);
const opcode_counter_t function_code_opcode_idx = (opcode_counter_t) (jmp_down_opcode_idx + 1);
// a.
const ecma_char_t *fn = function_name.str_p;