| 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/compiler/common-operator.h" | 5 #include "src/compiler/common-operator.h" |
| 6 | 6 |
| 7 #include "src/assembler.h" | 7 #include "src/assembler.h" |
| 8 #include "src/base/lazy-instance.h" | 8 #include "src/base/lazy-instance.h" |
| 9 #include "src/compiler/linkage.h" | 9 #include "src/compiler/linkage.h" |
| 10 #include "src/compiler/opcodes.h" | 10 #include "src/compiler/opcodes.h" |
| (...skipping 300 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 311 V(Hole) \ | 311 V(Hole) \ |
| 312 V(MinusZero) \ | 312 V(MinusZero) \ |
| 313 V(Overflow) \ | 313 V(Overflow) \ |
| 314 V(Smi) | 314 V(Smi) |
| 315 | 315 |
| 316 #define CACHED_DEOPTIMIZE_UNLESS_LIST(V) \ | 316 #define CACHED_DEOPTIMIZE_UNLESS_LIST(V) \ |
| 317 V(LostPrecision) \ | 317 V(LostPrecision) \ |
| 318 V(LostPrecisionOrNaN) \ | 318 V(LostPrecisionOrNaN) \ |
| 319 V(NoReason) \ | 319 V(NoReason) \ |
| 320 V(NotAHeapNumber) \ | 320 V(NotAHeapNumber) \ |
| 321 V(NotAHeapNumberUndefinedBoolean) \ | 321 V(NotANumberOrOddball) \ |
| 322 V(NotASmi) \ | 322 V(NotASmi) \ |
| 323 V(OutOfBounds) \ | 323 V(OutOfBounds) \ |
| 324 V(WrongInstanceType) \ | 324 V(WrongInstanceType) \ |
| 325 V(WrongMap) | 325 V(WrongMap) |
| 326 | 326 |
| 327 #define CACHED_PARAMETER_LIST(V) \ | 327 #define CACHED_PARAMETER_LIST(V) \ |
| 328 V(0) \ | 328 V(0) \ |
| 329 V(1) \ | 329 V(1) \ |
| 330 V(2) \ | 330 V(2) \ |
| 331 V(3) \ | 331 V(3) \ |
| (...skipping 784 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1116 CommonOperatorBuilder::CreateFrameStateFunctionInfo( | 1116 CommonOperatorBuilder::CreateFrameStateFunctionInfo( |
| 1117 FrameStateType type, int parameter_count, int local_count, | 1117 FrameStateType type, int parameter_count, int local_count, |
| 1118 Handle<SharedFunctionInfo> shared_info) { | 1118 Handle<SharedFunctionInfo> shared_info) { |
| 1119 return new (zone()->New(sizeof(FrameStateFunctionInfo))) | 1119 return new (zone()->New(sizeof(FrameStateFunctionInfo))) |
| 1120 FrameStateFunctionInfo(type, parameter_count, local_count, shared_info); | 1120 FrameStateFunctionInfo(type, parameter_count, local_count, shared_info); |
| 1121 } | 1121 } |
| 1122 | 1122 |
| 1123 } // namespace compiler | 1123 } // namespace compiler |
| 1124 } // namespace internal | 1124 } // namespace internal |
| 1125 } // namespace v8 | 1125 } // namespace v8 |
| OLD | NEW |