OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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/code-stubs.h" | 5 #include "src/code-stubs.h" |
6 | 6 |
7 #include <sstream> | 7 #include <sstream> |
8 | 8 |
9 #include "src/bootstrapper.h" | 9 #include "src/bootstrapper.h" |
10 #include "src/code-factory.h" | 10 #include "src/code-factory.h" |
11 #include "src/code-stub-assembler.h" | 11 #include "src/code-stub-assembler.h" |
12 #include "src/factory.h" | 12 #include "src/factory.h" |
13 #include "src/gdb-jit.h" | 13 #include "src/gdb-jit.h" |
14 #include "src/ic/handler-compiler.h" | 14 #include "src/ic/handler-compiler.h" |
15 #include "src/ic/ic.h" | 15 #include "src/ic/ic.h" |
16 #include "src/macro-assembler.h" | 16 #include "src/macro-assembler.h" |
17 #include "src/parsing/parser.h" | |
18 | 17 |
19 namespace v8 { | 18 namespace v8 { |
20 namespace internal { | 19 namespace internal { |
21 | 20 |
22 | 21 |
23 RUNTIME_FUNCTION(UnexpectedStubMiss) { | 22 RUNTIME_FUNCTION(UnexpectedStubMiss) { |
24 FATAL("Unexpected deopt of a stub"); | 23 FATAL("Unexpected deopt of a stub"); |
25 return Smi::FromInt(0); | 24 return Smi::FromInt(0); |
26 } | 25 } |
27 | 26 |
(...skipping 5837 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
5865 | 5864 |
5866 if (type == MachineType::Pointer()) { | 5865 if (type == MachineType::Pointer()) { |
5867 return Representation::External(); | 5866 return Representation::External(); |
5868 } | 5867 } |
5869 | 5868 |
5870 return Representation::Tagged(); | 5869 return Representation::Tagged(); |
5871 } | 5870 } |
5872 | 5871 |
5873 } // namespace internal | 5872 } // namespace internal |
5874 } // namespace v8 | 5873 } // namespace v8 |
OLD | NEW |