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: | |
128 return true; | 126 return true; |
129 default: | 127 default: |
130 return false; | 128 return false; |
131 } | 129 } |
132 } | 130 } |
133 | 131 |
134 | 132 |
135 //============================================================================== | 133 //============================================================================== |
136 // Provide unimplemented methods on unsupported architectures, to at least link. | 134 // Provide unimplemented methods on unsupported architectures, to at least link. |
137 //============================================================================== | 135 //============================================================================== |
(...skipping 22 matching lines...) Expand all Loading... |
160 | 158 |
161 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, | 159 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, |
162 MachineSignature* sig) { | 160 MachineSignature* sig) { |
163 UNIMPLEMENTED(); | 161 UNIMPLEMENTED(); |
164 return NULL; | 162 return NULL; |
165 } | 163 } |
166 #endif // !V8_TURBOFAN_BACKEND | 164 #endif // !V8_TURBOFAN_BACKEND |
167 } | 165 } |
168 } | 166 } |
169 } // namespace v8::internal::compiler | 167 } // namespace v8::internal::compiler |
OLD | NEW |