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

Side by Side Diff: src/builtins.h

Issue 1698343002: [builtins] Move the Boolean constructor to C++. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Also remove it from ia32 of course. Created 4 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/bootstrapper.cc ('k') | src/builtins.cc » ('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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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_BUILTINS_H_ 5 #ifndef V8_BUILTINS_H_
6 #define V8_BUILTINS_H_ 6 #define V8_BUILTINS_H_
7 7
8 #include "src/base/flags.h" 8 #include "src/base/flags.h"
9 #include "src/handles.h" 9 #include "src/handles.h"
10 10
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 V(ArrayPush, kNone) \ 62 V(ArrayPush, kNone) \
63 V(ArrayShift, kNone) \ 63 V(ArrayShift, kNone) \
64 V(ArraySlice, kNone) \ 64 V(ArraySlice, kNone) \
65 V(ArraySplice, kNone) \ 65 V(ArraySplice, kNone) \
66 V(ArrayUnshift, kNone) \ 66 V(ArrayUnshift, kNone) \
67 \ 67 \
68 V(ArrayBufferConstructor, kTarget) \ 68 V(ArrayBufferConstructor, kTarget) \
69 V(ArrayBufferConstructor_ConstructStub, kTargetAndNewTarget) \ 69 V(ArrayBufferConstructor_ConstructStub, kTargetAndNewTarget) \
70 V(ArrayBufferIsView, kNone) \ 70 V(ArrayBufferIsView, kNone) \
71 \ 71 \
72 V(BooleanConstructor, kNone) \
73 V(BooleanConstructor_ConstructStub, kTargetAndNewTarget) \
74 \
72 V(DateConstructor, kNone) \ 75 V(DateConstructor, kNone) \
73 V(DateConstructor_ConstructStub, kTargetAndNewTarget) \ 76 V(DateConstructor_ConstructStub, kTargetAndNewTarget) \
74 V(DateNow, kNone) \ 77 V(DateNow, kNone) \
75 V(DateParse, kNone) \ 78 V(DateParse, kNone) \
76 V(DateUTC, kNone) \ 79 V(DateUTC, kNone) \
77 V(DatePrototypeSetDate, kNone) \ 80 V(DatePrototypeSetDate, kNone) \
78 V(DatePrototypeSetFullYear, kNone) \ 81 V(DatePrototypeSetFullYear, kNone) \
79 V(DatePrototypeSetHours, kNone) \ 82 V(DatePrototypeSetHours, kNone) \
80 V(DatePrototypeSetMilliseconds, kNone) \ 83 V(DatePrototypeSetMilliseconds, kNone) \
81 V(DatePrototypeSetMinutes, kNone) \ 84 V(DatePrototypeSetMinutes, kNone) \
(...skipping 521 matching lines...) Expand 10 before | Expand all | Expand 10 after
603 friend class BuiltinFunctionTable; 606 friend class BuiltinFunctionTable;
604 friend class Isolate; 607 friend class Isolate;
605 608
606 DISALLOW_COPY_AND_ASSIGN(Builtins); 609 DISALLOW_COPY_AND_ASSIGN(Builtins);
607 }; 610 };
608 611
609 } // namespace internal 612 } // namespace internal
610 } // namespace v8 613 } // namespace v8
611 614
612 #endif // V8_BUILTINS_H_ 615 #endif // V8_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | src/builtins.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698