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

Side by Side Diff: src/builtins/builtins.h

Issue 2158303002: Begin porting CallSite to C++ (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@remove-overflow-boilerplate
Patch Set: Eager CallSite import and rebase Created 4 years, 5 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/builtins-callsite.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_BUILTINS_H_ 5 #ifndef V8_BUILTINS_BUILTINS_H_
6 #define V8_BUILTINS_BUILTINS_H_ 6 #define V8_BUILTINS_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 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 CPP(ArrayBufferIsView) \ 204 CPP(ArrayBufferIsView) \
205 \ 205 \
206 /* Boolean */ \ 206 /* Boolean */ \
207 CPP(BooleanConstructor) \ 207 CPP(BooleanConstructor) \
208 CPP(BooleanConstructor_ConstructStub) \ 208 CPP(BooleanConstructor_ConstructStub) \
209 /* ES6 section 19.3.3.2 Boolean.prototype.toString ( ) */ \ 209 /* ES6 section 19.3.3.2 Boolean.prototype.toString ( ) */ \
210 TFJ(BooleanPrototypeToString, 1) \ 210 TFJ(BooleanPrototypeToString, 1) \
211 /* ES6 section 19.3.3.3 Boolean.prototype.valueOf ( ) */ \ 211 /* ES6 section 19.3.3.3 Boolean.prototype.valueOf ( ) */ \
212 TFJ(BooleanPrototypeValueOf, 1) \ 212 TFJ(BooleanPrototypeValueOf, 1) \
213 \ 213 \
214 /* CallSite */ \
215 CPP(CallSiteConstructor) \
216 CPP(CallSitePrototypeGetColumnNumber) \
217 CPP(CallSitePrototypeGetEvalOrigin) \
218 CPP(CallSitePrototypeGetFileName) \
219 CPP(CallSitePrototypeGetFunction) \
220 CPP(CallSitePrototypeGetFunctionName) \
221 CPP(CallSitePrototypeGetLineNumber) \
222 CPP(CallSitePrototypeGetMethodName) \
223 CPP(CallSitePrototypeGetPosition) \
224 CPP(CallSitePrototypeGetScriptNameOrSourceURL) \
225 CPP(CallSitePrototypeGetThis) \
226 CPP(CallSitePrototypeGetTypeName) \
227 CPP(CallSitePrototypeIsConstructor) \
228 CPP(CallSitePrototypeIsEval) \
229 CPP(CallSitePrototypeIsNative) \
230 CPP(CallSitePrototypeIsToplevel) \
231 CPP(CallSitePrototypeToString) \
232 \
214 /* DataView */ \ 233 /* DataView */ \
215 CPP(DataViewConstructor) \ 234 CPP(DataViewConstructor) \
216 CPP(DataViewConstructor_ConstructStub) \ 235 CPP(DataViewConstructor_ConstructStub) \
217 CPP(DataViewPrototypeGetBuffer) \ 236 CPP(DataViewPrototypeGetBuffer) \
218 CPP(DataViewPrototypeGetByteLength) \ 237 CPP(DataViewPrototypeGetByteLength) \
219 CPP(DataViewPrototypeGetByteOffset) \ 238 CPP(DataViewPrototypeGetByteOffset) \
220 \ 239 \
221 /* Date */ \ 240 /* Date */ \
222 CPP(DateConstructor) \ 241 CPP(DateConstructor) \
223 CPP(DateConstructor_ConstructStub) \ 242 CPP(DateConstructor_ConstructStub) \
(...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after
624 643
625 friend class Isolate; 644 friend class Isolate;
626 645
627 DISALLOW_COPY_AND_ASSIGN(Builtins); 646 DISALLOW_COPY_AND_ASSIGN(Builtins);
628 }; 647 };
629 648
630 } // namespace internal 649 } // namespace internal
631 } // namespace v8 650 } // namespace v8
632 651
633 #endif // V8_BUILTINS_BUILTINS_H_ 652 #endif // V8_BUILTINS_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | src/builtins/builtins-callsite.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698