OLD | NEW |
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 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/v8.h" | 5 #include "src/v8.h" |
6 | 6 |
7 #include "src/accessors.h" | 7 #include "src/accessors.h" |
8 #include "src/arguments.h" | 8 #include "src/arguments.h" |
9 #include "src/compiler.h" | 9 #include "src/compiler.h" |
| 10 #include "src/cpu-profiler.h" |
10 #include "src/deoptimizer.h" | 11 #include "src/deoptimizer.h" |
11 #include "src/frames.h" | 12 #include "src/frames.h" |
12 #include "src/runtime/runtime-utils.h" | 13 #include "src/runtime/runtime-utils.h" |
13 | 14 |
14 namespace v8 { | 15 namespace v8 { |
15 namespace internal { | 16 namespace internal { |
16 | 17 |
17 RUNTIME_FUNCTION(Runtime_IsSloppyModeFunction) { | 18 RUNTIME_FUNCTION(Runtime_IsSloppyModeFunction) { |
18 SealHandleScope shs(isolate); | 19 SealHandleScope shs(isolate); |
19 DCHECK(args.length() == 1); | 20 DCHECK(args.length() == 1); |
(...skipping 625 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
645 | 646 |
646 | 647 |
647 RUNTIME_FUNCTION(RuntimeReference_IsFunction) { | 648 RUNTIME_FUNCTION(RuntimeReference_IsFunction) { |
648 SealHandleScope shs(isolate); | 649 SealHandleScope shs(isolate); |
649 DCHECK(args.length() == 1); | 650 DCHECK(args.length() == 1); |
650 CONVERT_ARG_CHECKED(Object, obj, 0); | 651 CONVERT_ARG_CHECKED(Object, obj, 0); |
651 return isolate->heap()->ToBoolean(obj->IsJSFunction()); | 652 return isolate->heap()->ToBoolean(obj->IsJSFunction()); |
652 } | 653 } |
653 } | 654 } |
654 } // namespace v8::internal | 655 } // namespace v8::internal |
OLD | NEW |