| 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/cpu-profiler.h" | |
| 11 #include "src/factory.h" | 10 #include "src/factory.h" |
| 12 #include "src/gdb-jit.h" | 11 #include "src/gdb-jit.h" |
| 13 #include "src/ic/handler-compiler.h" | 12 #include "src/ic/handler-compiler.h" |
| 14 #include "src/ic/ic.h" | 13 #include "src/ic/ic.h" |
| 15 #include "src/macro-assembler.h" | 14 #include "src/macro-assembler.h" |
| 16 #include "src/parser.h" | 15 #include "src/parser.h" |
| 16 #include "src/profiler/cpu-profiler.h" |
| 17 | 17 |
| 18 namespace v8 { | 18 namespace v8 { |
| 19 namespace internal { | 19 namespace internal { |
| 20 | 20 |
| 21 | 21 |
| 22 RUNTIME_FUNCTION(UnexpectedStubMiss) { | 22 RUNTIME_FUNCTION(UnexpectedStubMiss) { |
| 23 FATAL("Unexpected deopt of a stub"); | 23 FATAL("Unexpected deopt of a stub"); |
| 24 return Smi::FromInt(0); | 24 return Smi::FromInt(0); |
| 25 } | 25 } |
| 26 | 26 |
| (...skipping 1032 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1059 | 1059 |
| 1060 if (type->Is(Type::UntaggedPointer())) { | 1060 if (type->Is(Type::UntaggedPointer())) { |
| 1061 return Representation::External(); | 1061 return Representation::External(); |
| 1062 } | 1062 } |
| 1063 | 1063 |
| 1064 DCHECK(!type->Is(Type::Untagged())); | 1064 DCHECK(!type->Is(Type::Untagged())); |
| 1065 return Representation::Tagged(); | 1065 return Representation::Tagged(); |
| 1066 } | 1066 } |
| 1067 } // namespace internal | 1067 } // namespace internal |
| 1068 } // namespace v8 | 1068 } // namespace v8 |
| OLD | NEW |