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 16 matching lines...) Expand all Loading... |
27 | 27 |
28 #include "v8.h" | 28 #include "v8.h" |
29 | 29 |
30 #include "accessors.h" | 30 #include "accessors.h" |
31 #include "api.h" | 31 #include "api.h" |
32 #include "bootstrapper.h" | 32 #include "bootstrapper.h" |
33 #include "compiler.h" | 33 #include "compiler.h" |
34 #include "debug.h" | 34 #include "debug.h" |
35 #include "execution.h" | 35 #include "execution.h" |
36 #include "global-handles.h" | 36 #include "global-handles.h" |
| 37 #include "isolate-inl.h" |
37 #include "macro-assembler.h" | 38 #include "macro-assembler.h" |
38 #include "natives.h" | 39 #include "natives.h" |
39 #include "objects-visiting.h" | 40 #include "objects-visiting.h" |
40 #include "snapshot.h" | 41 #include "snapshot.h" |
41 #include "extensions/externalize-string-extension.h" | 42 #include "extensions/externalize-string-extension.h" |
42 #include "extensions/gc-extension.h" | 43 #include "extensions/gc-extension.h" |
43 | 44 |
44 namespace v8 { | 45 namespace v8 { |
45 namespace internal { | 46 namespace internal { |
46 | 47 |
(...skipping 2218 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2265 return from + sizeof(NestingCounterType); | 2266 return from + sizeof(NestingCounterType); |
2266 } | 2267 } |
2267 | 2268 |
2268 | 2269 |
2269 // Called when the top-level V8 mutex is destroyed. | 2270 // Called when the top-level V8 mutex is destroyed. |
2270 void Bootstrapper::FreeThreadResources() { | 2271 void Bootstrapper::FreeThreadResources() { |
2271 ASSERT(!IsActive()); | 2272 ASSERT(!IsActive()); |
2272 } | 2273 } |
2273 | 2274 |
2274 } } // namespace v8::internal | 2275 } } // namespace v8::internal |
OLD | NEW |