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 16 matching lines...) Expand all Loading... |
27 | 27 |
28 #include <stdlib.h> | 28 #include <stdlib.h> |
29 | 29 |
30 #include "v8.h" | 30 #include "v8.h" |
31 | 31 |
32 #include "allocation-inl.h" | 32 #include "allocation-inl.h" |
33 #include "ast.h" | 33 #include "ast.h" |
34 #include "bootstrapper.h" | 34 #include "bootstrapper.h" |
35 #include "codegen.h" | 35 #include "codegen.h" |
36 #include "compilation-cache.h" | 36 #include "compilation-cache.h" |
| 37 #include "cpu-profiler.h" |
37 #include "debug.h" | 38 #include "debug.h" |
38 #include "deoptimizer.h" | 39 #include "deoptimizer.h" |
39 #include "heap-profiler.h" | 40 #include "heap-profiler.h" |
40 #include "hydrogen.h" | 41 #include "hydrogen.h" |
41 #include "isolate.h" | 42 #include "isolate.h" |
42 #include "lithium-allocator.h" | 43 #include "lithium-allocator.h" |
43 #include "log.h" | 44 #include "log.h" |
44 #include "marking-thread.h" | 45 #include "marking-thread.h" |
45 #include "messages.h" | 46 #include "messages.h" |
46 #include "platform.h" | 47 #include "platform.h" |
47 #include "regexp-stack.h" | 48 #include "regexp-stack.h" |
48 #include "runtime-profiler.h" | 49 #include "runtime-profiler.h" |
| 50 #include "sampler.h" |
49 #include "scopeinfo.h" | 51 #include "scopeinfo.h" |
50 #include "serialize.h" | 52 #include "serialize.h" |
51 #include "simulator.h" | 53 #include "simulator.h" |
52 #include "spaces.h" | 54 #include "spaces.h" |
53 #include "stub-cache.h" | 55 #include "stub-cache.h" |
54 #include "sweeper-thread.h" | 56 #include "sweeper-thread.h" |
55 #include "version.h" | 57 #include "version.h" |
56 #include "vm-state-inl.h" | 58 #include "vm-state-inl.h" |
57 | 59 |
58 | 60 |
(...skipping 2438 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2497 | 2499 |
2498 #ifdef DEBUG | 2500 #ifdef DEBUG |
2499 #define ISOLATE_FIELD_OFFSET(type, name, ignored) \ | 2501 #define ISOLATE_FIELD_OFFSET(type, name, ignored) \ |
2500 const intptr_t Isolate::name##_debug_offset_ = OFFSET_OF(Isolate, name##_); | 2502 const intptr_t Isolate::name##_debug_offset_ = OFFSET_OF(Isolate, name##_); |
2501 ISOLATE_INIT_LIST(ISOLATE_FIELD_OFFSET) | 2503 ISOLATE_INIT_LIST(ISOLATE_FIELD_OFFSET) |
2502 ISOLATE_INIT_ARRAY_LIST(ISOLATE_FIELD_OFFSET) | 2504 ISOLATE_INIT_ARRAY_LIST(ISOLATE_FIELD_OFFSET) |
2503 #undef ISOLATE_FIELD_OFFSET | 2505 #undef ISOLATE_FIELD_OFFSET |
2504 #endif | 2506 #endif |
2505 | 2507 |
2506 } } // namespace v8::internal | 2508 } } // namespace v8::internal |
OLD | NEW |