| 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 127 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 138 case Runtime::kDataViewGetUint8: | 138 case Runtime::kDataViewGetUint8: |
| 139 case Runtime::kDataViewGetInt16: | 139 case Runtime::kDataViewGetInt16: |
| 140 case Runtime::kDataViewGetUint16: | 140 case Runtime::kDataViewGetUint16: |
| 141 case Runtime::kDataViewGetInt32: | 141 case Runtime::kDataViewGetInt32: |
| 142 case Runtime::kDataViewGetUint32: | 142 case Runtime::kDataViewGetUint32: |
| 143 case Runtime::kDataViewGetFloat32: | 143 case Runtime::kDataViewGetFloat32: |
| 144 case Runtime::kDataViewGetFloat64: | 144 case Runtime::kDataViewGetFloat64: |
| 145 case Runtime::kDebugEvaluate: | 145 case Runtime::kDebugEvaluate: |
| 146 case Runtime::kDebugGetLoadedScripts: | 146 case Runtime::kDebugGetLoadedScripts: |
| 147 case Runtime::kDebugGetPropertyDetails: | 147 case Runtime::kDebugGetPropertyDetails: |
| 148 case Runtime::kDebugPromiseRejectEvent: | |
| 149 case Runtime::kDebugPromiseEvent: | 148 case Runtime::kDebugPromiseEvent: |
| 150 case Runtime::kDeleteProperty: | 149 case Runtime::kDeleteProperty: |
| 151 case Runtime::kDeoptimizeFunction: | 150 case Runtime::kDeoptimizeFunction: |
| 152 case Runtime::kFunctionBindArguments: | 151 case Runtime::kFunctionBindArguments: |
| 153 case Runtime::kGetFrameCount: | 152 case Runtime::kGetFrameCount: |
| 154 case Runtime::kGetOwnProperty: | 153 case Runtime::kGetOwnProperty: |
| 155 case Runtime::kInlineCallFunction: | 154 case Runtime::kInlineCallFunction: |
| 156 case Runtime::kInlineDateField: | 155 case Runtime::kInlineDateField: |
| 157 case Runtime::kInlineRegExpExec: | 156 case Runtime::kInlineRegExpExec: |
| 158 case Runtime::kLiveEditGatherCompileInfo: | 157 case Runtime::kLiveEditGatherCompileInfo: |
| 159 case Runtime::kLoadLookupSlot: | 158 case Runtime::kLoadLookupSlot: |
| 160 case Runtime::kLoadLookupSlotNoReferenceError: | 159 case Runtime::kLoadLookupSlotNoReferenceError: |
| 161 case Runtime::kMaterializeRegExpLiteral: | 160 case Runtime::kMaterializeRegExpLiteral: |
| 162 case Runtime::kNewObjectFromBound: | 161 case Runtime::kNewObjectFromBound: |
| 163 case Runtime::kObjectFreeze: | 162 case Runtime::kObjectFreeze: |
| 164 case Runtime::kParseJson: | 163 case Runtime::kParseJson: |
| 165 case Runtime::kPrepareStep: | 164 case Runtime::kPrepareStep: |
| 166 case Runtime::kPreventExtensions: | 165 case Runtime::kPreventExtensions: |
| 166 case Runtime::kPromiseRejectEvent: |
| 167 case Runtime::kPromiseRevokeReject: |
| 167 case Runtime::kRegExpCompile: | 168 case Runtime::kRegExpCompile: |
| 168 case Runtime::kRegExpExecMultiple: | 169 case Runtime::kRegExpExecMultiple: |
| 169 case Runtime::kResolvePossiblyDirectEval: | 170 case Runtime::kResolvePossiblyDirectEval: |
| 170 // case Runtime::kSetPrototype: | 171 // case Runtime::kSetPrototype: |
| 171 case Runtime::kSetScriptBreakPoint: | 172 case Runtime::kSetScriptBreakPoint: |
| 172 case Runtime::kStackGuard: | 173 case Runtime::kStackGuard: |
| 173 case Runtime::kStoreLookupSlot: | 174 case Runtime::kStoreLookupSlot: |
| 174 case Runtime::kStringBuilderConcat: | 175 case Runtime::kStringBuilderConcat: |
| 175 case Runtime::kStringReplaceGlobalRegExpWithString: | 176 case Runtime::kStringReplaceGlobalRegExpWithString: |
| 176 case Runtime::kThrowReferenceError: | 177 case Runtime::kThrowReferenceError: |
| (...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 212 | 213 |
| 213 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, | 214 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, |
| 214 MachineSignature* sig) { | 215 MachineSignature* sig) { |
| 215 UNIMPLEMENTED(); | 216 UNIMPLEMENTED(); |
| 216 return NULL; | 217 return NULL; |
| 217 } | 218 } |
| 218 #endif // !V8_TURBOFAN_BACKEND | 219 #endif // !V8_TURBOFAN_BACKEND |
| 219 } | 220 } |
| 220 } | 221 } |
| 221 } // namespace v8::internal::compiler | 222 } // namespace v8::internal::compiler |
| OLD | NEW |