| OLD | NEW |
| 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 V(arguments_shadow_symbol, ".arguments") \ | 138 V(arguments_shadow_symbol, ".arguments") \ |
| 139 V(call_symbol, "call") \ | 139 V(call_symbol, "call") \ |
| 140 V(apply_symbol, "apply") \ | 140 V(apply_symbol, "apply") \ |
| 141 V(caller_symbol, "caller") \ | 141 V(caller_symbol, "caller") \ |
| 142 V(boolean_symbol, "boolean") \ | 142 V(boolean_symbol, "boolean") \ |
| 143 V(callee_symbol, "callee") \ | 143 V(callee_symbol, "callee") \ |
| 144 V(constructor_symbol, "constructor") \ | 144 V(constructor_symbol, "constructor") \ |
| 145 V(code_symbol, ".code") \ | 145 V(code_symbol, ".code") \ |
| 146 V(result_symbol, ".result") \ | 146 V(result_symbol, ".result") \ |
| 147 V(catch_var_symbol, ".catch-var") \ | 147 V(catch_var_symbol, ".catch-var") \ |
| 148 V(finally_state_symbol, ".finally-state") \ | |
| 149 V(empty_symbol, "") \ | 148 V(empty_symbol, "") \ |
| 150 V(eval_symbol, "eval") \ | 149 V(eval_symbol, "eval") \ |
| 151 V(function_symbol, "function") \ | 150 V(function_symbol, "function") \ |
| 152 V(length_symbol, "length") \ | 151 V(length_symbol, "length") \ |
| 153 V(name_symbol, "name") \ | 152 V(name_symbol, "name") \ |
| 154 V(number_symbol, "number") \ | 153 V(number_symbol, "number") \ |
| 155 V(object_symbol, "object") \ | 154 V(object_symbol, "object") \ |
| 156 V(prototype_symbol, "prototype") \ | 155 V(prototype_symbol, "prototype") \ |
| 157 V(string_symbol, "string") \ | 156 V(string_symbol, "string") \ |
| 158 V(this_symbol, "this") \ | 157 V(this_symbol, "this") \ |
| (...skipping 1004 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1163 int marked_count_; | 1162 int marked_count_; |
| 1164 | 1163 |
| 1165 // The count from the end of the previous full GC. Will be zero if there | 1164 // The count from the end of the previous full GC. Will be zero if there |
| 1166 // was no previous full GC. | 1165 // was no previous full GC. |
| 1167 int previous_marked_count_; | 1166 int previous_marked_count_; |
| 1168 }; | 1167 }; |
| 1169 | 1168 |
| 1170 } } // namespace v8::internal | 1169 } } // namespace v8::internal |
| 1171 | 1170 |
| 1172 #endif // V8_HEAP_H_ | 1171 #endif // V8_HEAP_H_ |
| OLD | NEW |