| 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 177 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 188 V(invalid_lhs_in_prefix_op_symbol, "invalid_lhs_in_prefix_op") \ | 188 V(invalid_lhs_in_prefix_op_symbol, "invalid_lhs_in_prefix_op") \ |
| 189 V(illegal_return_symbol, "illegal_return") \ | 189 V(illegal_return_symbol, "illegal_return") \ |
| 190 V(illegal_break_symbol, "illegal_break") \ | 190 V(illegal_break_symbol, "illegal_break") \ |
| 191 V(illegal_continue_symbol, "illegal_continue") \ | 191 V(illegal_continue_symbol, "illegal_continue") \ |
| 192 V(unknown_label_symbol, "unknown_label") \ | 192 V(unknown_label_symbol, "unknown_label") \ |
| 193 V(redeclaration_symbol, "redeclaration") \ | 193 V(redeclaration_symbol, "redeclaration") \ |
| 194 V(failure_symbol, "<failure>") \ | 194 V(failure_symbol, "<failure>") \ |
| 195 V(space_symbol, " ") \ | 195 V(space_symbol, " ") \ |
| 196 V(exec_symbol, "exec") \ | 196 V(exec_symbol, "exec") \ |
| 197 V(zero_symbol, "0") \ | 197 V(zero_symbol, "0") \ |
| 198 V(global_eval_symbol, "GlobalEval") | 198 V(global_eval_symbol, "GlobalEval") \ |
| 199 V(hidden_symbol, "...hidden...") \ |
| 200 V(identity_hash_symbol, "v8::IdentityHash") |
| 199 | 201 |
| 200 | 202 |
| 201 // Forward declaration of the GCTracer class. | 203 // Forward declaration of the GCTracer class. |
| 202 class GCTracer; | 204 class GCTracer; |
| 203 | 205 |
| 204 | 206 |
| 205 // The all static Heap captures the interface to the global object heap. | 207 // The all static Heap captures the interface to the global object heap. |
| 206 // All JavaScript contexts by this process share the same object heap. | 208 // All JavaScript contexts by this process share the same object heap. |
| 207 | 209 |
| 208 class Heap : public AllStatic { | 210 class Heap : public AllStatic { |
| (...skipping 1095 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1304 int marked_count_; | 1306 int marked_count_; |
| 1305 | 1307 |
| 1306 // The count from the end of the previous full GC. Will be zero if there | 1308 // The count from the end of the previous full GC. Will be zero if there |
| 1307 // was no previous full GC. | 1309 // was no previous full GC. |
| 1308 int previous_marked_count_; | 1310 int previous_marked_count_; |
| 1309 }; | 1311 }; |
| 1310 | 1312 |
| 1311 } } // namespace v8::internal | 1313 } } // namespace v8::internal |
| 1312 | 1314 |
| 1313 #endif // V8_HEAP_H_ | 1315 #endif // V8_HEAP_H_ |
| OLD | NEW |