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

Side by Side Diff: runtime/vm/native_entry.h

Issue 1037453002: Split Thread/Isolate instances, but still maintain 1:1 relationship. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 5 years, 9 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
OLDNEW
1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 4
5 #ifndef VM_NATIVE_ENTRY_H_ 5 #ifndef VM_NATIVE_ENTRY_H_
6 #define VM_NATIVE_ENTRY_H_ 6 #define VM_NATIVE_ENTRY_H_
7 7
8 #include "platform/memory_sanitizer.h" 8 #include "platform/memory_sanitizer.h"
9 9
10 #include "vm/allocation.h" 10 #include "vm/allocation.h"
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 CHECK_STACK_ALIGNMENT; \ 46 CHECK_STACK_ALIGNMENT; \
47 VERIFY_ON_TRANSITION; \ 47 VERIFY_ON_TRANSITION; \
48 NativeArguments* arguments = reinterpret_cast<NativeArguments*>(args); \ 48 NativeArguments* arguments = reinterpret_cast<NativeArguments*>(args); \
49 /* Tell MemorySanitizer 'arguments' is initialized by generated code. */ \ 49 /* Tell MemorySanitizer 'arguments' is initialized by generated code. */ \
50 MSAN_UNPOISON(arguments, sizeof(*arguments)); \ 50 MSAN_UNPOISON(arguments, sizeof(*arguments)); \
51 ASSERT(arguments->NativeArgCount() == argument_count); \ 51 ASSERT(arguments->NativeArgCount() == argument_count); \
52 TRACE_NATIVE_CALL("%s", ""#name); \ 52 TRACE_NATIVE_CALL("%s", ""#name); \
53 { \ 53 { \
54 Isolate* isolate = arguments->isolate(); \ 54 Isolate* isolate = arguments->isolate(); \
55 /* TODO(koda): Pivot from Isolate to Thread in NativeArguments. */ \ 55 /* TODO(koda): Pivot from Isolate to Thread in NativeArguments. */ \
56 Thread* thread = Thread::CurrentFromCurrentIsolate(isolate); \ 56 Thread* thread = isolate->main_thread(); \
57 ASSERT(thread == Thread::Current()); \
57 StackZone zone(isolate); \ 58 StackZone zone(isolate); \
58 SET_NATIVE_RETVAL(arguments, \ 59 SET_NATIVE_RETVAL(arguments, \
59 DN_Helper##name(isolate, \ 60 DN_Helper##name(isolate, \
60 thread, \ 61 thread, \
61 zone.GetZone(), \ 62 zone.GetZone(), \
62 arguments)); \ 63 arguments)); \
63 DEOPTIMIZE_ALOT; \ 64 DEOPTIMIZE_ALOT; \
64 } \ 65 } \
65 VERIFY_ON_TRANSITION; \ 66 VERIFY_ON_TRANSITION; \
66 } \ 67 } \
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 uword pc); 114 uword pc);
114 static const uint8_t* ResolveSymbol(uword pc); 115 static const uint8_t* ResolveSymbol(uword pc);
115 static void NativeCallWrapper(Dart_NativeArguments args, 116 static void NativeCallWrapper(Dart_NativeArguments args,
116 Dart_NativeFunction func); 117 Dart_NativeFunction func);
117 static const ExternalLabel& NativeCallWrapperLabel(); 118 static const ExternalLabel& NativeCallWrapperLabel();
118 }; 119 };
119 120
120 } // namespace dart 121 } // namespace dart
121 122
122 #endif // VM_NATIVE_ENTRY_H_ 123 #endif // VM_NATIVE_ENTRY_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698