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

Side by Side Diff: src/interface-descriptors.h

Issue 703473004: [turbofan] Add AllocateHeapNumberStub to avoid runtime call. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 6 years, 1 month 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 | Annotate | Revision Log
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 #ifndef V8_CALL_INTERFACE_DESCRIPTOR_H_ 5 #ifndef V8_CALL_INTERFACE_DESCRIPTOR_H_
6 #define V8_CALL_INTERFACE_DESCRIPTOR_H_ 6 #define V8_CALL_INTERFACE_DESCRIPTOR_H_
7 7
8 #include "src/assembler.h" 8 #include "src/assembler.h"
9 #include "src/macro-assembler.h" 9 #include "src/macro-assembler.h"
10 10
(...skipping 15 matching lines...) Expand all
26 V(ToNumber) \ 26 V(ToNumber) \
27 V(NumberToString) \ 27 V(NumberToString) \
28 V(FastCloneShallowArray) \ 28 V(FastCloneShallowArray) \
29 V(FastCloneShallowObject) \ 29 V(FastCloneShallowObject) \
30 V(CreateAllocationSite) \ 30 V(CreateAllocationSite) \
31 V(CallFunction) \ 31 V(CallFunction) \
32 V(CallFunctionWithFeedback) \ 32 V(CallFunctionWithFeedback) \
33 V(CallConstruct) \ 33 V(CallConstruct) \
34 V(RegExpConstructResult) \ 34 V(RegExpConstructResult) \
35 V(TransitionElementsKind) \ 35 V(TransitionElementsKind) \
36 V(AllocateHeapNumber) \
36 V(ArrayConstructorConstantArgCount) \ 37 V(ArrayConstructorConstantArgCount) \
37 V(ArrayConstructor) \ 38 V(ArrayConstructor) \
38 V(InternalArrayConstructorConstantArgCount) \ 39 V(InternalArrayConstructorConstantArgCount) \
39 V(InternalArrayConstructor) \ 40 V(InternalArrayConstructor) \
40 V(CompareNil) \ 41 V(CompareNil) \
41 V(ToBoolean) \ 42 V(ToBoolean) \
42 V(BinaryOp) \ 43 V(BinaryOp) \
43 V(BinaryOpWithAllocationSite) \ 44 V(BinaryOpWithAllocationSite) \
44 V(StringAdd) \ 45 V(StringAdd) \
45 V(Keyed) \ 46 V(Keyed) \
(...skipping 293 matching lines...) Expand 10 before | Expand all | Expand 10 after
339 DECLARE_DESCRIPTOR(RegExpConstructResultDescriptor, CallInterfaceDescriptor) 340 DECLARE_DESCRIPTOR(RegExpConstructResultDescriptor, CallInterfaceDescriptor)
340 }; 341 };
341 342
342 343
343 class TransitionElementsKindDescriptor : public CallInterfaceDescriptor { 344 class TransitionElementsKindDescriptor : public CallInterfaceDescriptor {
344 public: 345 public:
345 DECLARE_DESCRIPTOR(TransitionElementsKindDescriptor, CallInterfaceDescriptor) 346 DECLARE_DESCRIPTOR(TransitionElementsKindDescriptor, CallInterfaceDescriptor)
346 }; 347 };
347 348
348 349
350 class AllocateHeapNumberDescriptor : public CallInterfaceDescriptor {
351 public:
352 DECLARE_DESCRIPTOR(AllocateHeapNumberDescriptor, CallInterfaceDescriptor)
353 };
354
355
349 class ArrayConstructorConstantArgCountDescriptor 356 class ArrayConstructorConstantArgCountDescriptor
350 : public CallInterfaceDescriptor { 357 : public CallInterfaceDescriptor {
351 public: 358 public:
352 DECLARE_DESCRIPTOR(ArrayConstructorConstantArgCountDescriptor, 359 DECLARE_DESCRIPTOR(ArrayConstructorConstantArgCountDescriptor,
353 CallInterfaceDescriptor) 360 CallInterfaceDescriptor)
354 }; 361 };
355 362
356 363
357 class ArrayConstructorDescriptor : public CallInterfaceDescriptor { 364 class ArrayConstructorDescriptor : public CallInterfaceDescriptor {
358 public: 365 public:
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
494 } // namespace v8::internal 501 } // namespace v8::internal
495 502
496 503
497 #if V8_TARGET_ARCH_ARM64 504 #if V8_TARGET_ARCH_ARM64
498 #include "src/arm64/interface-descriptors-arm64.h" 505 #include "src/arm64/interface-descriptors-arm64.h"
499 #elif V8_TARGET_ARCH_ARM 506 #elif V8_TARGET_ARCH_ARM
500 #include "src/arm/interface-descriptors-arm.h" 507 #include "src/arm/interface-descriptors-arm.h"
501 #endif 508 #endif
502 509
503 #endif // V8_CALL_INTERFACE_DESCRIPTOR_H_ 510 #endif // V8_CALL_INTERFACE_DESCRIPTOR_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698