OLD | NEW |
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 #include "vm/longjump.h" | 5 #include "vm/longjump.h" |
6 | 6 |
7 #include "include/dart_api.h" | 7 #include "include/dart_api.h" |
8 | 8 |
9 #include "vm/dart_api_impl.h" | 9 #include "vm/dart_api_impl.h" |
10 #include "vm/isolate.h" | 10 #include "vm/isolate.h" |
11 #include "vm/object.h" | 11 #include "vm/object.h" |
12 #include "vm/object_store.h" | 12 #include "vm/object_store.h" |
13 #include "vm/os.h" | 13 #include "vm/os.h" |
14 | 14 |
15 namespace dart { | 15 namespace dart { |
16 | 16 |
17 jmp_buf* LongJump::Set() { | 17 jmp_buf* LongJump::Set() { |
18 top_ = Isolate::Current()->top_resource(); | 18 top_ = Isolate::Current()->top_resource(); |
19 return &environment_; | 19 return &environment_; |
20 } | 20 } |
21 | 21 |
22 | 22 |
23 bool LongJump::IsSafeToJump() { | |
24 // We do not want to jump past Dart frames. Note that this code | |
25 // assumes the stack grows from high to low. | |
26 Isolate* isolate = Isolate::Current(); | |
27 uword jumpbuf_addr = reinterpret_cast<uword>(this); | |
28 return (isolate->top_exit_frame_info() == 0 || | |
29 jumpbuf_addr < isolate->top_exit_frame_info()); | |
30 } | |
31 | |
32 | |
33 void LongJump::Jump(int value, const Error& error) { | 23 void LongJump::Jump(int value, const Error& error) { |
34 // A zero is the default return value from setting up a LongJump using Set. | 24 // A zero is the default return value from setting up a LongJump using Set. |
35 ASSERT(value != 0); | 25 ASSERT(value != 0); |
36 ASSERT(IsSafeToJump()); | |
37 | 26 |
38 Isolate* isolate = Isolate::Current(); | 27 Isolate* isolate = Isolate::Current(); |
39 | 28 |
40 // Remember the error in the sticky error of this isolate. | 29 // Remember the error in the sticky error of this isolate. |
41 isolate->object_store()->set_sticky_error(error); | 30 isolate->object_store()->set_sticky_error(error); |
42 | 31 |
43 // Destruct all the active StackResource objects. | 32 // Destruct all the active StackResource objects. |
44 StackResource* current_resource = isolate->top_resource(); | 33 StackResource* current_resource = isolate->top_resource(); |
45 while (current_resource != top_) { | 34 while (current_resource != top_) { |
46 current_resource->~StackResource(); | 35 current_resource->~StackResource(); |
47 current_resource = isolate->top_resource(); | 36 current_resource = isolate->top_resource(); |
48 } | 37 } |
49 longjmp(environment_, value); | 38 longjmp(environment_, value); |
50 UNREACHABLE(); | 39 UNREACHABLE(); |
51 } | 40 } |
52 | 41 |
53 } // namespace dart | 42 } // namespace dart |
OLD | NEW |