Remove optimizer. Move literal to JS folder.

This commit is contained in:
e.gavrin
2015-02-11 12:49:09 +03:00
parent f3ff78b81b
commit 145fba4109
7 changed files with 63 additions and 60 deletions
-3
View File
@@ -30,7 +30,6 @@ static const char generated_source [] = JERRY_MCU_SCRIPT;
#include "parser.h"
#include "serializer.h"
#include "deserializer.h"
#include "optimizer-passes.h"
#define MAX_STRINGS 100
#define MAX_NUMS 25
@@ -49,8 +48,6 @@ jerry_run (const char *script_source, size_t script_source_size,
opcodes = (const opcode_t*) deserialize_bytecode ();
optimizer_run_passes ((opcode_t *) opcodes);
#ifdef __TARGET_HOST
serializer_print_opcodes ();
#endif /* __TARGET_HOST */
+1 -4
View File
@@ -1,4 +1,4 @@
/* Copyright 2014-2015 Samsung Electronics Co., Ltd.
/* Copyright 2014 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.
@@ -16,10 +16,7 @@
#ifndef LEXER_H
#define LEXER_H
#include "jrt.h"
#include "ecma-globals.h"
#include "literal.h"
#include "opcodes.h"
#define INVALID_VALUE 255
#define INVALID_LITERAL UINT32_MAX
+62
View File
@@ -0,0 +1,62 @@
/* Copyright 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 LITERAL_H
#define LITERAL_H
#include "ecma-globals.h"
#include "lp-string.h"
typedef enum
{
LIT_UNKNOWN,
LIT_STR,
LIT_MAGIC_STR,
LIT_NUMBER
}
literal_type;
typedef struct
{
union
{
ecma_magic_string_id_t magic_str_id;
ecma_number_t num;
lp_string lp;
void *none;
}
data;
literal_type type;
}
literal;
#define LITERAL_TO_REWRITE (INVALID_VALUE - 1)
literal create_empty_literal (void);
literal create_literal_from_num (ecma_number_t);
literal create_literal_from_str (const char *, ecma_length_t);
literal create_literal_from_str_compute_len (const char *);
literal create_literal_from_zt (const ecma_char_t *, ecma_length_t);
bool literal_equal (literal, literal);
bool literal_equal_s (literal, const char *);
bool literal_equal_zt (literal, const ecma_char_t *);
bool literal_equal_num (literal, ecma_number_t);
bool literal_equal_type (literal, literal);
bool literal_equal_type_s (literal, const char *);
bool literal_equal_type_zt (literal, const ecma_char_t *);
bool literal_equal_type_num (literal, ecma_number_t);
const ecma_char_t *literal_to_zt (literal);
#endif /* LITERAL_H */
-28
View File
@@ -1,28 +0,0 @@
/* Copyright 2014 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.
*/
#include "optimizer-passes.h"
#include "opcodes.h"
#include "deserializer.h"
#include "serializer.h"
#include "jerry-libc.h"
#define NAME_TO_ID(op) (__op__idx_##op)
void
optimizer_run_passes (opcode_t *opcodes __unused)
{
FIXME (/*Write optimizer when postparser will be ready. */)
}
-24
View File
@@ -1,24 +0,0 @@
/* 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 OPTIMIZER_PASSES_H
#define OPTIMIZER_PASSES_H
#include "jrt.h"
#include "opcodes.h"
void optimizer_run_passes (opcode_t *);
#endif // OPTIMIZER_PASSES_H
-1
View File
@@ -13,7 +13,6 @@
* limitations under the License.
*/
#include "optimizer-passes.h"
#include "jerry-libc.h"
#include "parser.h"
#include "opcodes.h"