| 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/code-stubs.h" | 5 #include "src/code-stubs.h" |
| 6 #include "src/compiler.h" | 6 #include "src/compiler.h" |
| 7 #include "src/compiler/common-operator.h" | 7 #include "src/compiler/common-operator.h" |
| 8 #include "src/compiler/linkage.h" | 8 #include "src/compiler/linkage.h" |
| 9 #include "src/compiler/node.h" | 9 #include "src/compiler/node.h" |
| 10 #include "src/compiler/pipeline.h" | 10 #include "src/compiler/pipeline.h" |
| (...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 175 case Runtime::kDateField: | 175 case Runtime::kDateField: |
| 176 case Runtime::kDefineClassMethod: // TODO(jarin): Is it safe? | 176 case Runtime::kDefineClassMethod: // TODO(jarin): Is it safe? |
| 177 case Runtime::kDefineGetterPropertyUnchecked: // TODO(jarin): Is it safe? | 177 case Runtime::kDefineGetterPropertyUnchecked: // TODO(jarin): Is it safe? |
| 178 case Runtime::kDefineSetterPropertyUnchecked: // TODO(jarin): Is it safe? | 178 case Runtime::kDefineSetterPropertyUnchecked: // TODO(jarin): Is it safe? |
| 179 case Runtime::kForInDone: | 179 case Runtime::kForInDone: |
| 180 case Runtime::kForInStep: | 180 case Runtime::kForInStep: |
| 181 case Runtime::kGetOriginalConstructor: | 181 case Runtime::kGetOriginalConstructor: |
| 182 case Runtime::kNewArguments: | 182 case Runtime::kNewArguments: |
| 183 case Runtime::kNewClosure: | 183 case Runtime::kNewClosure: |
| 184 case Runtime::kNewFunctionContext: | 184 case Runtime::kNewFunctionContext: |
| 185 case Runtime::kNewRestParamSlow: | |
| 186 case Runtime::kPushBlockContext: | 185 case Runtime::kPushBlockContext: |
| 187 case Runtime::kPushCatchContext: | 186 case Runtime::kPushCatchContext: |
| 188 case Runtime::kReThrow: | 187 case Runtime::kReThrow: |
| 189 case Runtime::kStringCompareRT: | 188 case Runtime::kStringCompareRT: |
| 190 case Runtime::kStringEquals: | 189 case Runtime::kStringEquals: |
| 191 case Runtime::kToFastProperties: // TODO(jarin): Is it safe? | 190 case Runtime::kToFastProperties: // TODO(jarin): Is it safe? |
| 192 case Runtime::kTraceEnter: | 191 case Runtime::kTraceEnter: |
| 193 case Runtime::kTraceExit: | 192 case Runtime::kTraceExit: |
| 194 return 0; | 193 return 0; |
| 195 case Runtime::kInlineArguments: | 194 case Runtime::kInlineArguments: |
| (...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 262 | 261 |
| 263 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, | 262 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, |
| 264 const MachineSignature* sig) { | 263 const MachineSignature* sig) { |
| 265 UNIMPLEMENTED(); | 264 UNIMPLEMENTED(); |
| 266 return NULL; | 265 return NULL; |
| 267 } | 266 } |
| 268 #endif // !V8_TURBOFAN_BACKEND | 267 #endif // !V8_TURBOFAN_BACKEND |
| 269 } // namespace compiler | 268 } // namespace compiler |
| 270 } // namespace internal | 269 } // namespace internal |
| 271 } // namespace v8 | 270 } // namespace v8 |
| OLD | NEW |