| 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/linkage.h" | 7 #include "src/compiler/linkage.h" |
| 8 #include "src/compiler/node.h" | 8 #include "src/compiler/node.h" |
| 9 #include "src/compiler/pipeline.h" | 9 #include "src/compiler/pipeline.h" |
| 10 #include "src/scopes.h" | 10 #include "src/scopes.h" |
| (...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 172 case Runtime::kIsPropertyEnumerable: | 172 case Runtime::kIsPropertyEnumerable: |
| 173 case Runtime::kIsSloppyModeFunction: | 173 case Runtime::kIsSloppyModeFunction: |
| 174 case Runtime::kLiveEditGatherCompileInfo: | 174 case Runtime::kLiveEditGatherCompileInfo: |
| 175 case Runtime::kLoadLookupSlot: | 175 case Runtime::kLoadLookupSlot: |
| 176 case Runtime::kLoadLookupSlotNoReferenceError: | 176 case Runtime::kLoadLookupSlotNoReferenceError: |
| 177 case Runtime::kMaterializeRegExpLiteral: | 177 case Runtime::kMaterializeRegExpLiteral: |
| 178 case Runtime::kNewObject: | 178 case Runtime::kNewObject: |
| 179 case Runtime::kNewObjectFromBound: | 179 case Runtime::kNewObjectFromBound: |
| 180 case Runtime::kNewObjectWithAllocationSite: | 180 case Runtime::kNewObjectWithAllocationSite: |
| 181 case Runtime::kObjectFreeze: | 181 case Runtime::kObjectFreeze: |
| 182 case Runtime::kObjectSeal: |
| 182 case Runtime::kOwnKeys: | 183 case Runtime::kOwnKeys: |
| 183 case Runtime::kParseJson: | 184 case Runtime::kParseJson: |
| 184 case Runtime::kPrepareStep: | 185 case Runtime::kPrepareStep: |
| 185 case Runtime::kPreventExtensions: | 186 case Runtime::kPreventExtensions: |
| 186 case Runtime::kPromiseRejectEvent: | 187 case Runtime::kPromiseRejectEvent: |
| 187 case Runtime::kPromiseRevokeReject: | 188 case Runtime::kPromiseRevokeReject: |
| 188 case Runtime::kRegExpInitializeAndCompile: | 189 case Runtime::kRegExpInitializeAndCompile: |
| 189 case Runtime::kRegExpExecMultiple: | 190 case Runtime::kRegExpExecMultiple: |
| 190 case Runtime::kResolvePossiblyDirectEval: | 191 case Runtime::kResolvePossiblyDirectEval: |
| 191 case Runtime::kRunMicrotasks: | 192 case Runtime::kRunMicrotasks: |
| 192 case Runtime::kSetPrototype: | 193 case Runtime::kSetPrototype: |
| 193 case Runtime::kSetScriptBreakPoint: | 194 case Runtime::kSetScriptBreakPoint: |
| 194 case Runtime::kSparseJoinWithSeparator: | 195 case Runtime::kSparseJoinWithSeparator: |
| 195 case Runtime::kStackGuard: | 196 case Runtime::kStackGuard: |
| 196 case Runtime::kStoreKeyedToSuper_Sloppy: | 197 case Runtime::kStoreKeyedToSuper_Sloppy: |
| 197 case Runtime::kStoreKeyedToSuper_Strict: | 198 case Runtime::kStoreKeyedToSuper_Strict: |
| 198 case Runtime::kStoreToSuper_Sloppy: | 199 case Runtime::kStoreToSuper_Sloppy: |
| 199 case Runtime::kStoreToSuper_Strict: | 200 case Runtime::kStoreToSuper_Strict: |
| 200 case Runtime::kStoreLookupSlot: | 201 case Runtime::kStoreLookupSlot: |
| 201 case Runtime::kStringBuilderConcat: | 202 case Runtime::kStringBuilderConcat: |
| 202 case Runtime::kStringBuilderJoin: | 203 case Runtime::kStringBuilderJoin: |
| 203 case Runtime::kStringMatch: | 204 case Runtime::kStringMatch: |
| 204 case Runtime::kStringReplaceGlobalRegExpWithString: | 205 case Runtime::kStringReplaceGlobalRegExpWithString: |
| 206 case Runtime::kThrowConstAssignError: |
| 205 case Runtime::kThrowNonMethodError: | 207 case Runtime::kThrowNonMethodError: |
| 206 case Runtime::kThrowNotDateError: | 208 case Runtime::kThrowNotDateError: |
| 207 case Runtime::kThrowReferenceError: | 209 case Runtime::kThrowReferenceError: |
| 208 case Runtime::kThrowUnsupportedSuperError: | 210 case Runtime::kThrowUnsupportedSuperError: |
| 209 case Runtime::kThrow: | 211 case Runtime::kThrow: |
| 210 case Runtime::kTypedArraySetFastCases: | 212 case Runtime::kTypedArraySetFastCases: |
| 211 case Runtime::kTypedArrayInitializeFromArrayLike: | 213 case Runtime::kTypedArrayInitializeFromArrayLike: |
| 212 #ifdef V8_I18N_SUPPORT | 214 #ifdef V8_I18N_SUPPORT |
| 213 case Runtime::kGetImplFromInitializedIntlObject: | 215 case Runtime::kGetImplFromInitializedIntlObject: |
| 214 #endif | 216 #endif |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 | 251 |
| 250 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, | 252 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, |
| 251 MachineSignature* sig) { | 253 MachineSignature* sig) { |
| 252 UNIMPLEMENTED(); | 254 UNIMPLEMENTED(); |
| 253 return NULL; | 255 return NULL; |
| 254 } | 256 } |
| 255 #endif // !V8_TURBOFAN_BACKEND | 257 #endif // !V8_TURBOFAN_BACKEND |
| 256 } | 258 } |
| 257 } | 259 } |
| 258 } // namespace v8::internal::compiler | 260 } // namespace v8::internal::compiler |
| OLD | NEW |