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

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: 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
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 192 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 CPP(ArrayBufferIsView) \ 203 CPP(ArrayBufferIsView) \
204 \ 204 \
205 /* Boolean */ \ 205 /* Boolean */ \
206 CPP(BooleanConstructor) \ 206 CPP(BooleanConstructor) \
207 CPP(BooleanConstructor_ConstructStub) \ 207 CPP(BooleanConstructor_ConstructStub) \
208 /* ES6 section 19.3.3.2 Boolean.prototype.toString ( ) */ \ 208 /* ES6 section 19.3.3.2 Boolean.prototype.toString ( ) */ \
209 TFJ(BooleanPrototypeToString, 1) \ 209 TFJ(BooleanPrototypeToString, 1) \
210 /* ES6 section 19.3.3.3 Boolean.prototype.valueOf ( ) */ \ 210 /* ES6 section 19.3.3.3 Boolean.prototype.valueOf ( ) */ \
211 TFJ(BooleanPrototypeValueOf, 1) \ 211 TFJ(BooleanPrototypeValueOf, 1) \
212 \ 212 \
213 /* CallSite */ \
214 CPP(CallSiteConstructor) \
215 CPP(CallSitePrototypeGetColumnNumber) \
216 CPP(CallSitePrototypeGetEvalOrigin) \
217 CPP(CallSitePrototypeGetFileName) \
218 CPP(CallSitePrototypeGetFunction) \
219 CPP(CallSitePrototypeGetFunctionName) \
220 CPP(CallSitePrototypeGetLineNumber) \
221 CPP(CallSitePrototypeGetMethodName) \
222 CPP(CallSitePrototypeGetPosition) \
223 CPP(CallSitePrototypeGetScriptNameOrSourceURL) \
224 CPP(CallSitePrototypeGetThis) \
225 CPP(CallSitePrototypeGetTypeName) \
226 CPP(CallSitePrototypeIsConstructor) \
227 CPP(CallSitePrototypeIsEval) \
228 CPP(CallSitePrototypeIsNative) \
229 CPP(CallSitePrototypeIsToplevel) \
230 CPP(CallSitePrototypeToString) \
231 \
213 /* DataView */ \ 232 /* DataView */ \
214 CPP(DataViewConstructor) \ 233 CPP(DataViewConstructor) \
215 CPP(DataViewConstructor_ConstructStub) \ 234 CPP(DataViewConstructor_ConstructStub) \
216 CPP(DataViewPrototypeGetBuffer) \ 235 CPP(DataViewPrototypeGetBuffer) \
217 CPP(DataViewPrototypeGetByteLength) \ 236 CPP(DataViewPrototypeGetByteLength) \
218 CPP(DataViewPrototypeGetByteOffset) \ 237 CPP(DataViewPrototypeGetByteOffset) \
219 \ 238 \
220 /* Date */ \ 239 /* Date */ \
221 CPP(DateConstructor) \ 240 CPP(DateConstructor) \
222 CPP(DateConstructor_ConstructStub) \ 241 CPP(DateConstructor_ConstructStub) \
(...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after
623 642
624 friend class Isolate; 643 friend class Isolate;
625 644
626 DISALLOW_COPY_AND_ASSIGN(Builtins); 645 DISALLOW_COPY_AND_ASSIGN(Builtins);
627 }; 646 };
628 647
629 } // namespace internal 648 } // namespace internal
630 } // namespace v8 649 } // namespace v8
631 650
632 #endif // V8_BUILTINS_BUILTINS_H_ 651 #endif // V8_BUILTINS_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | src/builtins/builtins.cc » ('j') | src/js/messages.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698