OLD | NEW |
1 // Copyright 2011 the V8 project authors. All rights reserved. | 1 // Copyright 2011 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 23 matching lines...) Expand all Loading... |
34 #include "compilation-cache.h" | 34 #include "compilation-cache.h" |
35 #include "debug.h" | 35 #include "debug.h" |
36 #include "deoptimizer.h" | 36 #include "deoptimizer.h" |
37 #include "global-handles.h" | 37 #include "global-handles.h" |
38 #include "heap-profiler.h" | 38 #include "heap-profiler.h" |
39 #include "liveobjectlist-inl.h" | 39 #include "liveobjectlist-inl.h" |
40 #include "mark-compact.h" | 40 #include "mark-compact.h" |
41 #include "natives.h" | 41 #include "natives.h" |
42 #include "objects-visiting.h" | 42 #include "objects-visiting.h" |
43 #include "runtime-profiler.h" | 43 #include "runtime-profiler.h" |
44 #include "scanner-base.h" | |
45 #include "scopeinfo.h" | 44 #include "scopeinfo.h" |
46 #include "snapshot.h" | 45 #include "snapshot.h" |
47 #include "v8threads.h" | 46 #include "v8threads.h" |
48 #include "vm-state-inl.h" | 47 #include "vm-state-inl.h" |
49 #if V8_TARGET_ARCH_ARM && !V8_INTERPRETED_REGEXP | 48 #if V8_TARGET_ARCH_ARM && !V8_INTERPRETED_REGEXP |
50 #include "regexp-macro-assembler.h" | 49 #include "regexp-macro-assembler.h" |
51 #include "arm/regexp-macro-assembler-arm.h" | 50 #include "arm/regexp-macro-assembler-arm.h" |
52 #endif | 51 #endif |
53 #if V8_TARGET_ARCH_MIPS && !V8_INTERPRETED_REGEXP | 52 #if V8_TARGET_ARCH_MIPS && !V8_INTERPRETED_REGEXP |
54 #include "regexp-macro-assembler.h" | 53 #include "regexp-macro-assembler.h" |
(...skipping 6171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
6226 } | 6225 } |
6227 | 6226 |
6228 | 6227 |
6229 void ExternalStringTable::TearDown() { | 6228 void ExternalStringTable::TearDown() { |
6230 new_space_strings_.Free(); | 6229 new_space_strings_.Free(); |
6231 old_space_strings_.Free(); | 6230 old_space_strings_.Free(); |
6232 } | 6231 } |
6233 | 6232 |
6234 | 6233 |
6235 } } // namespace v8::internal | 6234 } } // namespace v8::internal |
OLD | NEW |