| 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 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 171 // case Runtime::kSetPrototype: | 171 // case Runtime::kSetPrototype: |
| 172 case Runtime::kSetScriptBreakPoint: | 172 case Runtime::kSetScriptBreakPoint: |
| 173 case Runtime::kStackGuard: | 173 case Runtime::kStackGuard: |
| 174 case Runtime::kStoreLookupSlot: | 174 case Runtime::kStoreLookupSlot: |
| 175 case Runtime::kStringBuilderConcat: | 175 case Runtime::kStringBuilderConcat: |
| 176 case Runtime::kStringReplaceGlobalRegExpWithString: | 176 case Runtime::kStringReplaceGlobalRegExpWithString: |
| 177 case Runtime::kThrowReferenceError: | 177 case Runtime::kThrowReferenceError: |
| 178 case Runtime::kThrow: | 178 case Runtime::kThrow: |
| 179 case Runtime::kTypedArraySetFastCases: | 179 case Runtime::kTypedArraySetFastCases: |
| 180 case Runtime::kTypedArrayInitializeFromArrayLike: | 180 case Runtime::kTypedArrayInitializeFromArrayLike: |
| 181 case Runtime::kDebugEvaluateGlobal: |
| 182 case Runtime::kOwnKeys: |
| 183 case Runtime::kGetOwnPropertyNames: |
| 184 case Runtime::kIsPropertyEnumerable: |
| 185 case Runtime::kGetPrototype: |
| 186 case Runtime::kSparseJoinWithSeparator: |
| 181 return true; | 187 return true; |
| 182 default: | 188 default: |
| 183 return false; | 189 return false; |
| 184 } | 190 } |
| 185 } | 191 } |
| 186 | 192 |
| 187 | 193 |
| 188 //============================================================================== | 194 //============================================================================== |
| 189 // Provide unimplemented methods on unsupported architectures, to at least link. | 195 // Provide unimplemented methods on unsupported architectures, to at least link. |
| 190 //============================================================================== | 196 //============================================================================== |
| (...skipping 22 matching lines...) Expand all Loading... |
| 213 | 219 |
| 214 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, | 220 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, |
| 215 MachineSignature* sig) { | 221 MachineSignature* sig) { |
| 216 UNIMPLEMENTED(); | 222 UNIMPLEMENTED(); |
| 217 return NULL; | 223 return NULL; |
| 218 } | 224 } |
| 219 #endif // !V8_TURBOFAN_BACKEND | 225 #endif // !V8_TURBOFAN_BACKEND |
| 220 } | 226 } |
| 221 } | 227 } |
| 222 } // namespace v8::internal::compiler | 228 } // namespace v8::internal::compiler |
| OLD | NEW |