| 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 25 matching lines...) Expand all Loading... |
| 36 #include "debug.h" | 36 #include "debug.h" |
| 37 #include "deoptimizer.h" | 37 #include "deoptimizer.h" |
| 38 #include "heap-profiler.h" | 38 #include "heap-profiler.h" |
| 39 #include "hydrogen.h" | 39 #include "hydrogen.h" |
| 40 #include "isolate.h" | 40 #include "isolate.h" |
| 41 #include "lithium-allocator.h" | 41 #include "lithium-allocator.h" |
| 42 #include "log.h" | 42 #include "log.h" |
| 43 #include "messages.h" | 43 #include "messages.h" |
| 44 #include "regexp-stack.h" | 44 #include "regexp-stack.h" |
| 45 #include "runtime-profiler.h" | 45 #include "runtime-profiler.h" |
| 46 #include "scanner.h" | |
| 47 #include "scopeinfo.h" | 46 #include "scopeinfo.h" |
| 48 #include "serialize.h" | 47 #include "serialize.h" |
| 49 #include "simulator.h" | 48 #include "simulator.h" |
| 50 #include "spaces.h" | 49 #include "spaces.h" |
| 51 #include "stub-cache.h" | 50 #include "stub-cache.h" |
| 52 #include "version.h" | 51 #include "version.h" |
| 53 #include "vm-state-inl.h" | 52 #include "vm-state-inl.h" |
| 54 | 53 |
| 55 | 54 |
| 56 namespace v8 { | 55 namespace v8 { |
| (...skipping 1815 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1872 | 1871 |
| 1873 #ifdef DEBUG | 1872 #ifdef DEBUG |
| 1874 #define ISOLATE_FIELD_OFFSET(type, name, ignored) \ | 1873 #define ISOLATE_FIELD_OFFSET(type, name, ignored) \ |
| 1875 const intptr_t Isolate::name##_debug_offset_ = OFFSET_OF(Isolate, name##_); | 1874 const intptr_t Isolate::name##_debug_offset_ = OFFSET_OF(Isolate, name##_); |
| 1876 ISOLATE_INIT_LIST(ISOLATE_FIELD_OFFSET) | 1875 ISOLATE_INIT_LIST(ISOLATE_FIELD_OFFSET) |
| 1877 ISOLATE_INIT_ARRAY_LIST(ISOLATE_FIELD_OFFSET) | 1876 ISOLATE_INIT_ARRAY_LIST(ISOLATE_FIELD_OFFSET) |
| 1878 #undef ISOLATE_FIELD_OFFSET | 1877 #undef ISOLATE_FIELD_OFFSET |
| 1879 #endif | 1878 #endif |
| 1880 | 1879 |
| 1881 } } // namespace v8::internal | 1880 } } // namespace v8::internal |
| OLD | NEW |