| 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 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 168 // not to call into arbitrary JavaScript, not to throw, and not to deoptimize | 168 // not to call into arbitrary JavaScript, not to throw, and not to deoptimize |
| 169 // are blacklisted here and can be called without a FrameState. | 169 // are blacklisted here and can be called without a FrameState. |
| 170 switch (function) { | 170 switch (function) { |
| 171 case Runtime::kAllocateInTargetSpace: | 171 case Runtime::kAllocateInTargetSpace: |
| 172 case Runtime::kDateField: | 172 case Runtime::kDateField: |
| 173 case Runtime::kDefineClassMethod: // TODO(jarin): Is it safe? | 173 case Runtime::kDefineClassMethod: // TODO(jarin): Is it safe? |
| 174 case Runtime::kDefineGetterPropertyUnchecked: // TODO(jarin): Is it safe? | 174 case Runtime::kDefineGetterPropertyUnchecked: // TODO(jarin): Is it safe? |
| 175 case Runtime::kDefineSetterPropertyUnchecked: // TODO(jarin): Is it safe? | 175 case Runtime::kDefineSetterPropertyUnchecked: // TODO(jarin): Is it safe? |
| 176 case Runtime::kForInDone: | 176 case Runtime::kForInDone: |
| 177 case Runtime::kForInStep: | 177 case Runtime::kForInStep: |
| 178 case Runtime::kGetOriginalConstructor: |
| 178 case Runtime::kNewArguments: | 179 case Runtime::kNewArguments: |
| 179 case Runtime::kNewClosure: | 180 case Runtime::kNewClosure: |
| 180 case Runtime::kNewFunctionContext: | 181 case Runtime::kNewFunctionContext: |
| 181 case Runtime::kNewRestParamSlow: | 182 case Runtime::kNewRestParamSlow: |
| 182 case Runtime::kPushBlockContext: | 183 case Runtime::kPushBlockContext: |
| 183 case Runtime::kPushCatchContext: | 184 case Runtime::kPushCatchContext: |
| 184 case Runtime::kReThrow: | 185 case Runtime::kReThrow: |
| 185 case Runtime::kStringCompareRT: | 186 case Runtime::kStringCompareRT: |
| 186 case Runtime::kStringEquals: | 187 case Runtime::kStringEquals: |
| 187 case Runtime::kToFastProperties: // TODO(jarin): Is it safe? | 188 case Runtime::kToFastProperties: // TODO(jarin): Is it safe? |
| (...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 258 | 259 |
| 259 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, | 260 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, |
| 260 const MachineSignature* sig) { | 261 const MachineSignature* sig) { |
| 261 UNIMPLEMENTED(); | 262 UNIMPLEMENTED(); |
| 262 return NULL; | 263 return NULL; |
| 263 } | 264 } |
| 264 #endif // !V8_TURBOFAN_BACKEND | 265 #endif // !V8_TURBOFAN_BACKEND |
| 265 } // namespace compiler | 266 } // namespace compiler |
| 266 } // namespace internal | 267 } // namespace internal |
| 267 } // namespace v8 | 268 } // namespace v8 |
| OLD | NEW |