|
| 1 | +/* Copyright 2015 Samsung Electronics Co., Ltd. |
| 2 | + * Copyright 2015 University of Szeged. |
| 3 | + * |
| 4 | + * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + * you may not use this file except in compliance with the License. |
| 6 | + * You may obtain a copy of the License at |
| 7 | + * |
| 8 | + * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | + * |
| 10 | + * Unless required by applicable law or agreed to in writing, software |
| 11 | + * distributed under the License is distributed on an "AS IS" BASIS |
| 12 | + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + * See the License for the specific language governing permissions and |
| 14 | + * limitations under the License. |
| 15 | + */ |
| 16 | + |
| 17 | +#include "jerry.cpp" |
| 18 | + |
| 19 | +/* ecma/base */ |
| 20 | +#include "ecma-alloc.cpp" |
| 21 | +#include "ecma-gc.cpp" |
| 22 | +#include "ecma-helpers-conversion.cpp" |
| 23 | +#include "ecma-helpers.cpp" |
| 24 | +#include "ecma-helpers-external-pointers.cpp" |
| 25 | +#include "ecma-helpers-number.cpp" |
| 26 | +#include "ecma-helpers-string.cpp" |
| 27 | +#include "ecma-helpers-value.cpp" |
| 28 | +#include "ecma-helpers-values-collection.cpp" |
| 29 | +#include "ecma-init-finalize.cpp" |
| 30 | +#include "ecma-lcache.cpp" |
| 31 | + |
| 32 | +/* ecma/builtin-objects */ |
| 33 | +#include "ecma-builtin-array.cpp" |
| 34 | +#include "ecma-builtin-array-prototype.cpp" |
| 35 | +#include "ecma-builtin-boolean.cpp" |
| 36 | +#include "ecma-builtin-boolean-prototype.cpp" |
| 37 | +#include "ecma-builtin-compact-profile-error.cpp" |
| 38 | +#include "ecma-builtin-date.cpp" |
| 39 | +#include "ecma-builtin-date-prototype.cpp" |
| 40 | +#include "ecma-builtin-error.cpp" |
| 41 | +#include "ecma-builtin-error-prototype.cpp" |
| 42 | +#include "ecma-builtin-evalerror.cpp" |
| 43 | +#include "ecma-builtin-evalerror-prototype.cpp" |
| 44 | +#include "ecma-builtin-function.cpp" |
| 45 | +#include "ecma-builtin-function-prototype.cpp" |
| 46 | +#include "ecma-builtin-global.cpp" |
| 47 | +#include "ecma-builtin-helpers.cpp" |
| 48 | +#include "ecma-builtin-helpers-date.cpp" |
| 49 | +#include "ecma-builtin-helpers-json.cpp" |
| 50 | +#include "ecma-builtin-json.cpp" |
| 51 | +#include "ecma-builtin-math.cpp" |
| 52 | +#include "ecma-builtin-number.cpp" |
| 53 | +#include "ecma-builtin-number-prototype.cpp" |
| 54 | +#include "ecma-builtin-object.cpp" |
| 55 | +#include "ecma-builtin-object-prototype.cpp" |
| 56 | +#include "ecma-builtin-rangeerror.cpp" |
| 57 | +#include "ecma-builtin-rangeerror-prototype.cpp" |
| 58 | +#include "ecma-builtin-referenceerror.cpp" |
| 59 | +#include "ecma-builtin-referenceerror-prototype.cpp" |
| 60 | +#include "ecma-builtin-regexp.cpp" |
| 61 | +#include "ecma-builtin-regexp-prototype.cpp" |
| 62 | +#include "ecma-builtins.cpp" |
| 63 | +#include "ecma-builtin-string.cpp" |
| 64 | +#include "ecma-builtin-string-prototype.cpp" |
| 65 | +#include "ecma-builtin-syntaxerror.cpp" |
| 66 | +#include "ecma-builtin-syntaxerror-prototype.cpp" |
| 67 | +#include "ecma-builtin-typeerror.cpp" |
| 68 | +#include "ecma-builtin-typeerror-prototype.cpp" |
| 69 | +#include "ecma-builtin-type-error-thrower.cpp" |
| 70 | +#include "ecma-builtin-urierror.cpp" |
| 71 | +#include "ecma-builtin-urierror-prototype.cpp" |
| 72 | + |
| 73 | +/* ecma/operations */ |
| 74 | +#include "ecma-array-object.cpp" |
| 75 | +#include "ecma-boolean-object.cpp" |
| 76 | +#include "ecma-comparison.cpp" |
| 77 | +#include "ecma-conversion.cpp" |
| 78 | +#include "ecma-eval.cpp" |
| 79 | +#include "ecma-exceptions.cpp" |
| 80 | +#include "ecma-function-object.cpp" |
| 81 | +#include "ecma-get-put-value.cpp" |
| 82 | +#include "ecma-lex-env.cpp" |
| 83 | +#include "ecma-number-arithmetic.cpp" |
| 84 | +#include "ecma-number-object.cpp" |
| 85 | +#include "ecma-objects-arguments.cpp" |
| 86 | +#include "ecma-objects.cpp" |
| 87 | +#include "ecma-objects-general.cpp" |
| 88 | +#include "ecma-reference.cpp" |
| 89 | +#include "ecma-regexp-object.cpp" |
| 90 | +#include "ecma-string-object.cpp" |
| 91 | + |
| 92 | +/* jrt */ |
| 93 | +#include "jrt-bit-fields.cpp" |
| 94 | +#include "jrt-fatals.cpp" |
| 95 | + |
| 96 | +/* lit */ |
| 97 | +#include "lit/lit-char-helpers.cpp" |
| 98 | +#include "lit/lit-literal.cpp" |
| 99 | +#include "lit/lit-literal-storage.cpp" |
| 100 | +#include "lit/lit-magic-strings.cpp" |
| 101 | +#include "lit/lit-strings.cpp" |
| 102 | + |
| 103 | +/* mem */ |
| 104 | +#include "mem-allocator.cpp" |
| 105 | +#include "mem-heap.cpp" |
| 106 | +#include "mem-poolman.cpp" |
| 107 | + |
| 108 | +/* parser/js */ |
| 109 | +#include "jsp-early-error.cpp" |
| 110 | +#include "jsp-label.cpp" |
| 111 | +#include "jsp-mm.cpp" |
| 112 | +#include "lexer.cpp" |
| 113 | +#include "opcodes-dumper.cpp" |
| 114 | +#include "parser.cpp" |
| 115 | +#include "scopes-tree.cpp" |
| 116 | +#include "serializer.cpp" |
| 117 | + |
| 118 | +/* parser/js/collections */ |
| 119 | +#include "array-list.cpp" |
| 120 | +#include "hash-table.cpp" |
| 121 | +#include "linked-list.cpp" |
| 122 | +#include "lit-id-hash-table.cpp" |
| 123 | + |
| 124 | +/* parser/regexp */ |
| 125 | +#include "re-compiler.cpp" |
| 126 | +#include "re-parser.cpp" |
| 127 | + |
| 128 | +/* rcs */ |
| 129 | +#include "rcs-chunked-list.cpp" |
| 130 | +#include "rcs-recordset.cpp" |
| 131 | + |
| 132 | +/* vm */ |
| 133 | +#include "opcodes-agnostic.cpp" |
| 134 | +#include "opcodes.cpp" |
| 135 | +#include "opcodes-ecma-arithmetics.cpp" |
| 136 | +#include "opcodes-ecma-bitwise.cpp" |
| 137 | +#include "opcodes-ecma-equality.cpp" |
| 138 | +#include "opcodes-ecma-relational.cpp" |
| 139 | +#include "opcodes-ecma-try-catch-finally.cpp" |
| 140 | +#include "opcodes-for-in.cpp" |
| 141 | +#include "opcodes-helpers-variables.cpp" |
| 142 | +#include "opcodes-varg.cpp" |
| 143 | +#include "pretty-printer.cpp" |
| 144 | +#include "vm.cpp" |
| 145 | +#include "vm-stack.cpp" |
0 commit comments