| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 24 matching lines...) Expand all Loading... |
| 35 #include "bootstrapper.h" | 35 #include "bootstrapper.h" |
| 36 #include "code-stubs.h" | 36 #include "code-stubs.h" |
| 37 #include "compiler.h" | 37 #include "compiler.h" |
| 38 #include "conversions-inl.h" | 38 #include "conversions-inl.h" |
| 39 #include "counters.h" | 39 #include "counters.h" |
| 40 #include "debug.h" | 40 #include "debug.h" |
| 41 #include "deoptimizer.h" | 41 #include "deoptimizer.h" |
| 42 #include "execution.h" | 42 #include "execution.h" |
| 43 #include "global-handles.h" | 43 #include "global-handles.h" |
| 44 #include "heap-profiler.h" | 44 #include "heap-profiler.h" |
| 45 #include "heap-snapshot-generator-inl.h" |
| 45 #include "messages.h" | 46 #include "messages.h" |
| 46 #ifdef COMPRESS_STARTUP_DATA_BZ2 | 47 #ifdef COMPRESS_STARTUP_DATA_BZ2 |
| 47 #include "natives.h" | 48 #include "natives.h" |
| 48 #endif | 49 #endif |
| 49 #include "parser.h" | 50 #include "parser.h" |
| 50 #include "platform.h" | 51 #include "platform.h" |
| 51 #include "profile-generator-inl.h" | 52 #include "profile-generator-inl.h" |
| 52 #include "property-details.h" | 53 #include "property-details.h" |
| 53 #include "property.h" | 54 #include "property.h" |
| 54 #include "runtime-profiler.h" | 55 #include "runtime-profiler.h" |
| (...skipping 6649 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 6704 | 6705 |
| 6705 v->VisitPointers(blocks_.first(), first_block_limit_); | 6706 v->VisitPointers(blocks_.first(), first_block_limit_); |
| 6706 | 6707 |
| 6707 for (int i = 1; i < blocks_.length(); i++) { | 6708 for (int i = 1; i < blocks_.length(); i++) { |
| 6708 v->VisitPointers(blocks_[i], &blocks_[i][kHandleBlockSize]); | 6709 v->VisitPointers(blocks_[i], &blocks_[i][kHandleBlockSize]); |
| 6709 } | 6710 } |
| 6710 } | 6711 } |
| 6711 | 6712 |
| 6712 | 6713 |
| 6713 } } // namespace v8::internal | 6714 } } // namespace v8::internal |
| OLD | NEW |