| 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 #endif // defined(GOOGLE3) | 43 #endif // defined(GOOGLE3) |
| 44 | 44 |
| 45 // V8 only uses DEBUG, but included external files | 45 // V8 only uses DEBUG, but included external files |
| 46 // may use NDEBUG - make sure they are consistent. | 46 // may use NDEBUG - make sure they are consistent. |
| 47 #if defined(DEBUG) && defined(NDEBUG) | 47 #if defined(DEBUG) && defined(NDEBUG) |
| 48 #error both DEBUG and NDEBUG are set | 48 #error both DEBUG and NDEBUG are set |
| 49 #endif | 49 #endif |
| 50 | 50 |
| 51 // Basic includes | 51 // Basic includes |
| 52 #include "../include/v8.h" | 52 #include "../include/v8.h" |
| 53 #include "../include/v8-platform.h" |
| 53 #include "v8globals.h" | 54 #include "v8globals.h" |
| 54 #include "v8checks.h" | 55 #include "v8checks.h" |
| 55 #include "allocation.h" | 56 #include "allocation.h" |
| 56 #include "assert-scope.h" | 57 #include "assert-scope.h" |
| 57 #include "v8utils.h" | 58 #include "v8utils.h" |
| 58 #include "flags.h" | 59 #include "flags.h" |
| 59 | 60 |
| 60 // Objects & heap | 61 // Objects & heap |
| 61 #include "objects-inl.h" | 62 #include "objects-inl.h" |
| 62 #include "spaces-inl.h" | 63 #include "spaces-inl.h" |
| (...skipping 25 matching lines...) Expand all Loading... |
| 88 bool take_snapshot = false); | 89 bool take_snapshot = false); |
| 89 | 90 |
| 90 // Allows an entropy source to be provided for use in random number | 91 // Allows an entropy source to be provided for use in random number |
| 91 // generation. | 92 // generation. |
| 92 static void SetEntropySource(EntropySource source); | 93 static void SetEntropySource(EntropySource source); |
| 93 // Support for return-address rewriting profilers. | 94 // Support for return-address rewriting profilers. |
| 94 static void SetReturnAddressLocationResolver( | 95 static void SetReturnAddressLocationResolver( |
| 95 ReturnAddressLocationResolver resolver); | 96 ReturnAddressLocationResolver resolver); |
| 96 // Support for entry hooking JITed code. | 97 // Support for entry hooking JITed code. |
| 97 static void SetFunctionEntryHook(FunctionEntryHook entry_hook); | 98 static void SetFunctionEntryHook(FunctionEntryHook entry_hook); |
| 98 // Random number generation support. Not cryptographically safe. | |
| 99 static uint32_t Random(Context* context); | |
| 100 | 99 |
| 101 static void AddCallCompletedCallback(CallCompletedCallback callback); | 100 static void AddCallCompletedCallback(CallCompletedCallback callback); |
| 102 static void RemoveCallCompletedCallback(CallCompletedCallback callback); | 101 static void RemoveCallCompletedCallback(CallCompletedCallback callback); |
| 103 static void FireCallCompletedCallback(Isolate* isolate); | 102 static void FireCallCompletedCallback(Isolate* isolate); |
| 104 | 103 |
| 105 static v8::ArrayBuffer::Allocator* ArrayBufferAllocator() { | 104 static v8::ArrayBuffer::Allocator* ArrayBufferAllocator() { |
| 106 return array_buffer_allocator_; | 105 return array_buffer_allocator_; |
| 107 } | 106 } |
| 108 | 107 |
| 109 static void SetArrayBufferAllocator(v8::ArrayBuffer::Allocator *allocator) { | 108 static void SetArrayBufferAllocator(v8::ArrayBuffer::Allocator *allocator) { |
| 110 CHECK_EQ(NULL, array_buffer_allocator_); | 109 CHECK_EQ(NULL, array_buffer_allocator_); |
| 111 array_buffer_allocator_ = allocator; | 110 array_buffer_allocator_ = allocator; |
| 112 } | 111 } |
| 113 | 112 |
| 113 static void InitializePlatform(v8::Platform* platform); |
| 114 static void ShutdownPlatform(); |
| 115 static v8::Platform* GetCurrentPlatform(); |
| 116 |
| 114 private: | 117 private: |
| 115 static void InitializeOncePerProcessImpl(); | 118 static void InitializeOncePerProcessImpl(); |
| 116 static void InitializeOncePerProcess(); | 119 static void InitializeOncePerProcess(); |
| 117 | 120 |
| 118 // List of callbacks when a Call completes. | 121 // List of callbacks when a Call completes. |
| 119 static List<CallCompletedCallback>* call_completed_callbacks_; | 122 static List<CallCompletedCallback>* call_completed_callbacks_; |
| 120 // Allocator for external array buffers. | 123 // Allocator for external array buffers. |
| 121 static v8::ArrayBuffer::Allocator* array_buffer_allocator_; | 124 static v8::ArrayBuffer::Allocator* array_buffer_allocator_; |
| 125 // v8::Platform to use. |
| 126 static v8::Platform* platform_; |
| 122 }; | 127 }; |
| 123 | 128 |
| 124 | 129 |
| 125 // JavaScript defines two kinds of 'nil'. | 130 // JavaScript defines two kinds of 'nil'. |
| 126 enum NilValue { kNullValue, kUndefinedValue }; | 131 enum NilValue { kNullValue, kUndefinedValue }; |
| 127 | 132 |
| 128 | 133 |
| 129 } } // namespace v8::internal | 134 } } // namespace v8::internal |
| 130 | 135 |
| 131 namespace i = v8::internal; | 136 namespace i = v8::internal; |
| 132 | 137 |
| 133 #endif // V8_V8_H_ | 138 #endif // V8_V8_H_ |
| OLD | NEW |