OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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 12 matching lines...) Expand all Loading... |
23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY | 23 // DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY |
24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT | 24 // THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE | 25 // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE |
26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. | 26 // OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
27 | 27 |
28 // TODO(mythria): Remove this after this flag is turned on globally | 28 // TODO(mythria): Remove this after this flag is turned on globally |
29 #define V8_IMMINENT_DEPRECATION_WARNINGS | 29 #define V8_IMMINENT_DEPRECATION_WARNINGS |
30 | 30 |
31 #include "test/cctest/trace-extension.h" | 31 #include "test/cctest/trace-extension.h" |
32 | 32 |
33 #include "src/sampler.h" | 33 #include "src/profiler/sampler.h" |
34 #include "src/vm-state-inl.h" | 34 #include "src/vm-state-inl.h" |
35 #include "test/cctest/cctest.h" | 35 #include "test/cctest/cctest.h" |
36 | 36 |
37 namespace v8 { | 37 namespace v8 { |
38 namespace internal { | 38 namespace internal { |
39 | 39 |
40 const char* TraceExtension::kSource = | 40 const char* TraceExtension::kSource = |
41 "native function trace();" | 41 "native function trace();" |
42 "native function js_trace();" | 42 "native function js_trace();" |
43 "native function js_entry_sp();" | 43 "native function js_entry_sp();" |
(...skipping 120 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 v8::HandleScope scope(args.GetIsolate()); | 164 v8::HandleScope scope(args.GetIsolate()); |
165 const Address js_entry_sp = GetJsEntrySp(); | 165 const Address js_entry_sp = GetJsEntrySp(); |
166 CHECK(js_entry_sp); | 166 CHECK(js_entry_sp); |
167 CompileRun("js_entry_sp();"); | 167 CompileRun("js_entry_sp();"); |
168 CHECK_EQ(js_entry_sp, GetJsEntrySp()); | 168 CHECK_EQ(js_entry_sp, GetJsEntrySp()); |
169 } | 169 } |
170 | 170 |
171 | 171 |
172 } // namespace internal | 172 } // namespace internal |
173 } // namespace v8 | 173 } // namespace v8 |
OLD | NEW |