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 15 matching lines...) Expand all Loading... | |
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
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 "gdbjit.h" | |
Erik Corry
2011/01/05 09:00:15
This shouldn't be necessary. The .cc file doesn't
Vyacheslav Egorov (Chromium)
2011/01/18 16:10:42
Done.
| |
36 #include "global-handles.h" | 37 #include "global-handles.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 { |
(...skipping 1836 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
1882 } | 1883 } |
1883 | 1884 |
1884 | 1885 |
1885 // Restore statics that are thread local. | 1886 // Restore statics that are thread local. |
1886 char* BootstrapperActive::RestoreState(char* from) { | 1887 char* BootstrapperActive::RestoreState(char* from) { |
1887 nesting_ = *reinterpret_cast<int*>(from); | 1888 nesting_ = *reinterpret_cast<int*>(from); |
1888 return from + sizeof(nesting_); | 1889 return from + sizeof(nesting_); |
1889 } | 1890 } |
1890 | 1891 |
1891 } } // namespace v8::internal | 1892 } } // namespace v8::internal |
OLD | NEW |