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 14 matching lines...) Expand all Loading... |
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 // Tests of profiler-related functions from log.h | 28 // Tests of profiler-related functions from log.h |
29 | 29 |
30 #include <stdlib.h> | 30 #include <stdlib.h> |
31 | 31 |
32 #include "v8.h" | 32 #include "v8.h" |
33 | 33 |
34 #include "api.h" | 34 #include "api.h" |
| 35 #include "cctest.h" |
35 #include "codegen.h" | 36 #include "codegen.h" |
| 37 #include "disassembler.h" |
| 38 #include "isolate.h" |
36 #include "log.h" | 39 #include "log.h" |
37 #include "isolate.h" | 40 #include "sampler.h" |
38 #include "cctest.h" | |
39 #include "disassembler.h" | |
40 #include "vm-state-inl.h" | 41 #include "vm-state-inl.h" |
41 | 42 |
42 using v8::Function; | 43 using v8::Function; |
43 using v8::Local; | 44 using v8::Local; |
44 using v8::Object; | 45 using v8::Object; |
45 using v8::Script; | 46 using v8::Script; |
46 using v8::String; | 47 using v8::String; |
47 using v8::Value; | 48 using v8::Value; |
48 | 49 |
49 using v8::internal::byte; | 50 using v8::internal::byte; |
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
385 CcTest::InitializeVM(TRACE_EXTENSION); | 386 CcTest::InitializeVM(TRACE_EXTENSION); |
386 v8::HandleScope scope(CcTest::isolate()); | 387 v8::HandleScope scope(CcTest::isolate()); |
387 CHECK_EQ(0, GetJsEntrySp()); | 388 CHECK_EQ(0, GetJsEntrySp()); |
388 CompileRun("a = 1; b = a + 1;"); | 389 CompileRun("a = 1; b = a + 1;"); |
389 CHECK_EQ(0, GetJsEntrySp()); | 390 CHECK_EQ(0, GetJsEntrySp()); |
390 CompileRun("js_entry_sp();"); | 391 CompileRun("js_entry_sp();"); |
391 CHECK_EQ(0, GetJsEntrySp()); | 392 CHECK_EQ(0, GetJsEntrySp()); |
392 CompileRun("js_entry_sp_level2();"); | 393 CompileRun("js_entry_sp_level2();"); |
393 CHECK_EQ(0, GetJsEntrySp()); | 394 CHECK_EQ(0, GetJsEntrySp()); |
394 } | 395 } |
OLD | NEW |