| 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/linkage.h" | 5 #include "src/compiler/linkage.h" |
| 6 | 6 |
| 7 #include "src/code-stubs.h" | 7 #include "src/code-stubs.h" |
| 8 #include "src/compiler.h" | 8 #include "src/compiler.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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 116 // TODO(jarin) At the moment, we only add frame state for | 116 // TODO(jarin) At the moment, we only add frame state for |
| 117 // few chosen runtime functions. | 117 // few chosen runtime functions. |
| 118 switch (function) { | 118 switch (function) { |
| 119 case Runtime::kDebugBreak: | 119 case Runtime::kDebugBreak: |
| 120 case Runtime::kDebugGetLoadedScripts: | 120 case Runtime::kDebugGetLoadedScripts: |
| 121 case Runtime::kDeoptimizeFunction: | 121 case Runtime::kDeoptimizeFunction: |
| 122 case Runtime::kInlineCallFunction: | 122 case Runtime::kInlineCallFunction: |
| 123 case Runtime::kPrepareStep: | 123 case Runtime::kPrepareStep: |
| 124 case Runtime::kSetScriptBreakPoint: | 124 case Runtime::kSetScriptBreakPoint: |
| 125 case Runtime::kStackGuard: | 125 case Runtime::kStackGuard: |
| 126 case Runtime::kCheckExecutionState: |
| 127 case Runtime::kDebugEvaluate: |
| 126 return true; | 128 return true; |
| 127 default: | 129 default: |
| 128 return false; | 130 return false; |
| 129 } | 131 } |
| 130 } | 132 } |
| 131 | 133 |
| 132 | 134 |
| 133 //============================================================================== | 135 //============================================================================== |
| 134 // Provide unimplemented methods on unsupported architectures, to at least link. | 136 // Provide unimplemented methods on unsupported architectures, to at least link. |
| 135 //============================================================================== | 137 //============================================================================== |
| (...skipping 22 matching lines...) Expand all Loading... |
| 158 | 160 |
| 159 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, | 161 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, |
| 160 MachineSignature* sig) { | 162 MachineSignature* sig) { |
| 161 UNIMPLEMENTED(); | 163 UNIMPLEMENTED(); |
| 162 return NULL; | 164 return NULL; |
| 163 } | 165 } |
| 164 #endif // !V8_TURBOFAN_BACKEND | 166 #endif // !V8_TURBOFAN_BACKEND |
| 165 } | 167 } |
| 166 } | 168 } |
| 167 } // namespace v8::internal::compiler | 169 } // namespace v8::internal::compiler |
| OLD | NEW |