| 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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 159 V(object_symbol, "object") \ | 159 V(object_symbol, "object") \ |
| 160 V(prototype_symbol, "prototype") \ | 160 V(prototype_symbol, "prototype") \ |
| 161 V(string_symbol, "string") \ | 161 V(string_symbol, "string") \ |
| 162 V(String_symbol, "String") \ | 162 V(String_symbol, "String") \ |
| 163 V(Date_symbol, "Date") \ | 163 V(Date_symbol, "Date") \ |
| 164 V(this_symbol, "this") \ | 164 V(this_symbol, "this") \ |
| 165 V(to_string_symbol, "toString") \ | 165 V(to_string_symbol, "toString") \ |
| 166 V(char_at_symbol, "CharAt") \ | 166 V(char_at_symbol, "CharAt") \ |
| 167 V(undefined_symbol, "undefined") \ | 167 V(undefined_symbol, "undefined") \ |
| 168 V(value_of_symbol, "valueOf") \ | 168 V(value_of_symbol, "valueOf") \ |
| 169 V(CreateObjectLiteralBoilerplate_symbol, "CreateObjectLiteralBoilerplate") \ | |
| 170 V(CreateArrayLiteral_symbol, "CreateArrayLiteral") \ | |
| 171 V(InitializeVarGlobal_symbol, "InitializeVarGlobal") \ | 169 V(InitializeVarGlobal_symbol, "InitializeVarGlobal") \ |
| 172 V(InitializeConstGlobal_symbol, "InitializeConstGlobal") \ | 170 V(InitializeConstGlobal_symbol, "InitializeConstGlobal") \ |
| 173 V(stack_overflow_symbol, "kStackOverflowBoilerplate") \ | 171 V(stack_overflow_symbol, "kStackOverflowBoilerplate") \ |
| 174 V(illegal_access_symbol, "illegal access") \ | 172 V(illegal_access_symbol, "illegal access") \ |
| 175 V(out_of_memory_symbol, "out-of-memory") \ | 173 V(out_of_memory_symbol, "out-of-memory") \ |
| 176 V(illegal_execution_state_symbol, "illegal execution state") \ | 174 V(illegal_execution_state_symbol, "illegal execution state") \ |
| 177 V(get_symbol, "get") \ | 175 V(get_symbol, "get") \ |
| 178 V(set_symbol, "set") \ | 176 V(set_symbol, "set") \ |
| 179 V(function_class_symbol, "Function") \ | 177 V(function_class_symbol, "Function") \ |
| 180 V(illegal_argument_symbol, "illegal argument") \ | 178 V(illegal_argument_symbol, "illegal argument") \ |
| (...skipping 1107 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1288 int marked_count_; | 1286 int marked_count_; |
| 1289 | 1287 |
| 1290 // The count from the end of the previous full GC. Will be zero if there | 1288 // The count from the end of the previous full GC. Will be zero if there |
| 1291 // was no previous full GC. | 1289 // was no previous full GC. |
| 1292 int previous_marked_count_; | 1290 int previous_marked_count_; |
| 1293 }; | 1291 }; |
| 1294 | 1292 |
| 1295 } } // namespace v8::internal | 1293 } } // namespace v8::internal |
| 1296 | 1294 |
| 1297 #endif // V8_HEAP_H_ | 1295 #endif // V8_HEAP_H_ |
| OLD | NEW |