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

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

Issue 1316933002: [es6] Initial steps towards a correct implementation of IsCallable. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase again. Created 5 years, 3 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/runtime.js ('k') | src/runtime/runtime-classes.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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_RUNTIME_RUNTIME_H_ 5 #ifndef V8_RUNTIME_RUNTIME_H_
6 #define V8_RUNTIME_RUNTIME_H_ 6 #define V8_RUNTIME_RUNTIME_H_
7 7
8 #include "src/allocation.h" 8 #include "src/allocation.h"
9 #include "src/objects.h" 9 #include "src/objects.h"
10 #include "src/unicode.h" 10 #include "src/unicode.h"
(...skipping 303 matching lines...) Expand 10 before | Expand all | Expand 10 after
314 F(NewReferenceError, 2, 1) \ 314 F(NewReferenceError, 2, 1) \
315 F(ThrowIteratorResultNotAnObject, 1, 1) \ 315 F(ThrowIteratorResultNotAnObject, 1, 1) \
316 F(ThrowStrongModeImplicitConversion, 0, 1) \ 316 F(ThrowStrongModeImplicitConversion, 0, 1) \
317 F(PromiseRejectEvent, 3, 1) \ 317 F(PromiseRejectEvent, 3, 1) \
318 F(PromiseRevokeReject, 1, 1) \ 318 F(PromiseRevokeReject, 1, 1) \
319 F(StackGuard, 0, 1) \ 319 F(StackGuard, 0, 1) \
320 F(Interrupt, 0, 1) \ 320 F(Interrupt, 0, 1) \
321 F(AllocateInNewSpace, 1, 1) \ 321 F(AllocateInNewSpace, 1, 1) \
322 F(AllocateInTargetSpace, 2, 1) \ 322 F(AllocateInTargetSpace, 2, 1) \
323 F(CollectStackTrace, 2, 1) \ 323 F(CollectStackTrace, 2, 1) \
324 F(RenderCallSite, 0, 1) \
325 F(MessageGetStartPosition, 1, 1) \ 324 F(MessageGetStartPosition, 1, 1) \
326 F(MessageGetScript, 1, 1) \ 325 F(MessageGetScript, 1, 1) \
327 F(ErrorToStringRT, 1, 1) \ 326 F(ErrorToStringRT, 1, 1) \
328 F(FormatMessageString, 4, 1) \ 327 F(FormatMessageString, 4, 1) \
329 F(CallSiteGetFileNameRT, 1, 1) \ 328 F(CallSiteGetFileNameRT, 1, 1) \
330 F(CallSiteGetFunctionNameRT, 1, 1) \ 329 F(CallSiteGetFunctionNameRT, 1, 1) \
331 F(CallSiteGetScriptNameOrSourceUrlRT, 1, 1) \ 330 F(CallSiteGetScriptNameOrSourceUrlRT, 1, 1) \
332 F(CallSiteGetMethodNameRT, 1, 1) \ 331 F(CallSiteGetMethodNameRT, 1, 1) \
333 F(CallSiteGetLineNumberRT, 1, 1) \ 332 F(CallSiteGetLineNumberRT, 1, 1) \
334 F(CallSiteGetColumnNumberRT, 1, 1) \ 333 F(CallSiteGetColumnNumberRT, 1, 1) \
(...skipping 914 matching lines...) Expand 10 before | Expand all | Expand 10 after
1249 inline bool Runtime::AtomicIsLockFree(uint32_t size) { 1248 inline bool Runtime::AtomicIsLockFree(uint32_t size) {
1250 return size == 1 || size == 2 || size == 4; 1249 return size == 1 || size == 2 || size == 4;
1251 } 1250 }
1252 1251
1253 #endif 1252 #endif
1254 1253
1255 } // namespace internal 1254 } // namespace internal
1256 } // namespace v8 1255 } // namespace v8
1257 1256
1258 #endif // V8_RUNTIME_RUNTIME_H_ 1257 #endif // V8_RUNTIME_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/runtime.js ('k') | src/runtime/runtime-classes.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698