Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(7)

Side by Side Diff: src/compiler/linkage.cc

Issue 885643004: new classes: assert that constructors are not callable and rewrite 'return;' (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix bit width Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « src/code-stubs.h ('k') | src/globals.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 195 matching lines...) Expand 10 before | Expand all | Expand 10 after
206 case Runtime::kStoreKeyedToSuper_Sloppy: 206 case Runtime::kStoreKeyedToSuper_Sloppy:
207 case Runtime::kStoreKeyedToSuper_Strict: 207 case Runtime::kStoreKeyedToSuper_Strict:
208 case Runtime::kStoreToSuper_Sloppy: 208 case Runtime::kStoreToSuper_Sloppy:
209 case Runtime::kStoreToSuper_Strict: 209 case Runtime::kStoreToSuper_Strict:
210 case Runtime::kStoreLookupSlot: 210 case Runtime::kStoreLookupSlot:
211 case Runtime::kStringBuilderConcat: 211 case Runtime::kStringBuilderConcat:
212 case Runtime::kStringBuilderJoin: 212 case Runtime::kStringBuilderJoin:
213 case Runtime::kStringMatch: 213 case Runtime::kStringMatch:
214 case Runtime::kStringReplaceGlobalRegExpWithString: 214 case Runtime::kStringReplaceGlobalRegExpWithString:
215 case Runtime::kThrowConstAssignError: 215 case Runtime::kThrowConstAssignError:
216 case Runtime::kThrowConstructorNonCallableError:
216 case Runtime::kThrowNonMethodError: 217 case Runtime::kThrowNonMethodError:
217 case Runtime::kThrowNotDateError: 218 case Runtime::kThrowNotDateError:
218 case Runtime::kThrowReferenceError: 219 case Runtime::kThrowReferenceError:
219 case Runtime::kThrowUnsupportedSuperError: 220 case Runtime::kThrowUnsupportedSuperError:
220 case Runtime::kThrow: 221 case Runtime::kThrow:
221 case Runtime::kTypedArraySetFastCases: 222 case Runtime::kTypedArraySetFastCases:
222 case Runtime::kTypedArrayInitializeFromArrayLike: 223 case Runtime::kTypedArrayInitializeFromArrayLike:
223 #ifdef V8_I18N_SUPPORT 224 #ifdef V8_I18N_SUPPORT
224 case Runtime::kGetImplFromInitializedIntlObject: 225 case Runtime::kGetImplFromInitializedIntlObject:
225 #endif 226 #endif
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after
267 268
268 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone, 269 CallDescriptor* Linkage::GetSimplifiedCDescriptor(Zone* zone,
269 MachineSignature* sig) { 270 MachineSignature* sig) {
270 UNIMPLEMENTED(); 271 UNIMPLEMENTED();
271 return NULL; 272 return NULL;
272 } 273 }
273 #endif // !V8_TURBOFAN_BACKEND 274 #endif // !V8_TURBOFAN_BACKEND
274 } 275 }
275 } 276 }
276 } // namespace v8::internal::compiler 277 } // namespace v8::internal::compiler
OLDNEW
« no previous file with comments | « src/code-stubs.h ('k') | src/globals.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698