Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(324)

Side by Side Diff: src/api.cc

Issue 597943003: Move i18n-related runtime functions into a separate file. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: adapt check-name-clashes.py Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « BUILD.gn ('k') | src/arm/builtins-arm.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "src/api.h" 5 #include "src/api.h"
6 6
7 #include <string.h> // For memcpy, strlen. 7 #include <string.h> // For memcpy, strlen.
8 #ifdef V8_USE_ADDRESS_SANITIZER 8 #ifdef V8_USE_ADDRESS_SANITIZER
9 #include <sanitizer/asan_interface.h> 9 #include <sanitizer/asan_interface.h>
10 #endif // V8_USE_ADDRESS_SANITIZER 10 #endif // V8_USE_ADDRESS_SANITIZER
(...skipping 20 matching lines...) Expand all
31 #include "src/heap-snapshot-generator-inl.h" 31 #include "src/heap-snapshot-generator-inl.h"
32 #include "src/icu_util.h" 32 #include "src/icu_util.h"
33 #include "src/json-parser.h" 33 #include "src/json-parser.h"
34 #include "src/messages.h" 34 #include "src/messages.h"
35 #include "src/natives.h" 35 #include "src/natives.h"
36 #include "src/parser.h" 36 #include "src/parser.h"
37 #include "src/profile-generator-inl.h" 37 #include "src/profile-generator-inl.h"
38 #include "src/property.h" 38 #include "src/property.h"
39 #include "src/property-details.h" 39 #include "src/property-details.h"
40 #include "src/prototype.h" 40 #include "src/prototype.h"
41 #include "src/runtime.h" 41 #include "src/runtime/runtime.h"
42 #include "src/runtime-profiler.h" 42 #include "src/runtime-profiler.h"
43 #include "src/scanner-character-streams.h" 43 #include "src/scanner-character-streams.h"
44 #include "src/simulator.h" 44 #include "src/simulator.h"
45 #include "src/snapshot.h" 45 #include "src/snapshot.h"
46 #include "src/unicode-inl.h" 46 #include "src/unicode-inl.h"
47 #include "src/v8threads.h" 47 #include "src/v8threads.h"
48 #include "src/version.h" 48 #include "src/version.h"
49 #include "src/vm-state-inl.h" 49 #include "src/vm-state-inl.h"
50 50
51 51
(...skipping 7603 matching lines...) Expand 10 before | Expand all | Expand 10 after
7655 Isolate* isolate = reinterpret_cast<Isolate*>(info.GetIsolate()); 7655 Isolate* isolate = reinterpret_cast<Isolate*>(info.GetIsolate());
7656 Address callback_address = 7656 Address callback_address =
7657 reinterpret_cast<Address>(reinterpret_cast<intptr_t>(callback)); 7657 reinterpret_cast<Address>(reinterpret_cast<intptr_t>(callback));
7658 VMState<EXTERNAL> state(isolate); 7658 VMState<EXTERNAL> state(isolate);
7659 ExternalCallbackScope call_scope(isolate, callback_address); 7659 ExternalCallbackScope call_scope(isolate, callback_address);
7660 callback(info); 7660 callback(info);
7661 } 7661 }
7662 7662
7663 7663
7664 } } // namespace v8::internal 7664 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | src/arm/builtins-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698