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

Side by Side Diff: src/builtins.h

Issue 10069050: Add isolate accessor to AccessorInfo and Arguments. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed comment by Daniel Clifford. Created 8 years, 8 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 | Annotate | Revision Log
« no previous file with comments | « src/arm/stub-cache-arm.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 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 \ 49 \
50 V(ArrayPush, NO_EXTRA_ARGUMENTS) \ 50 V(ArrayPush, NO_EXTRA_ARGUMENTS) \
51 V(ArrayPop, NO_EXTRA_ARGUMENTS) \ 51 V(ArrayPop, NO_EXTRA_ARGUMENTS) \
52 V(ArrayShift, NO_EXTRA_ARGUMENTS) \ 52 V(ArrayShift, NO_EXTRA_ARGUMENTS) \
53 V(ArrayUnshift, NO_EXTRA_ARGUMENTS) \ 53 V(ArrayUnshift, NO_EXTRA_ARGUMENTS) \
54 V(ArraySlice, NO_EXTRA_ARGUMENTS) \ 54 V(ArraySlice, NO_EXTRA_ARGUMENTS) \
55 V(ArraySplice, NO_EXTRA_ARGUMENTS) \ 55 V(ArraySplice, NO_EXTRA_ARGUMENTS) \
56 V(ArrayConcat, NO_EXTRA_ARGUMENTS) \ 56 V(ArrayConcat, NO_EXTRA_ARGUMENTS) \
57 \ 57 \
58 V(HandleApiCall, NEEDS_CALLED_FUNCTION) \ 58 V(HandleApiCall, NEEDS_CALLED_FUNCTION) \
59 V(FastHandleApiCall, NO_EXTRA_ARGUMENTS) \
60 V(HandleApiCallConstruct, NEEDS_CALLED_FUNCTION) \ 59 V(HandleApiCallConstruct, NEEDS_CALLED_FUNCTION) \
61 V(HandleApiCallAsFunction, NO_EXTRA_ARGUMENTS) \ 60 V(HandleApiCallAsFunction, NO_EXTRA_ARGUMENTS) \
62 V(HandleApiCallAsConstructor, NO_EXTRA_ARGUMENTS) \ 61 V(HandleApiCallAsConstructor, NO_EXTRA_ARGUMENTS) \
63 \ 62 \
64 V(StrictModePoisonPill, NO_EXTRA_ARGUMENTS) 63 V(StrictModePoisonPill, NO_EXTRA_ARGUMENTS)
65 64
66 // Define list of builtins implemented in assembly. 65 // Define list of builtins implemented in assembly.
67 #define BUILTIN_LIST_A(V) \ 66 #define BUILTIN_LIST_A(V) \
68 V(ArgumentsAdaptorTrampoline, BUILTIN, UNINITIALIZED, \ 67 V(ArgumentsAdaptorTrampoline, BUILTIN, UNINITIALIZED, \
69 Code::kNoExtraICState) \ 68 Code::kNoExtraICState) \
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after
376 375
377 friend class BuiltinFunctionTable; 376 friend class BuiltinFunctionTable;
378 friend class Isolate; 377 friend class Isolate;
379 378
380 DISALLOW_COPY_AND_ASSIGN(Builtins); 379 DISALLOW_COPY_AND_ASSIGN(Builtins);
381 }; 380 };
382 381
383 } } // namespace v8::internal 382 } } // namespace v8::internal
384 383
385 #endif // V8_BUILTINS_H_ 384 #endif // V8_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/arm/stub-cache-arm.cc ('k') | src/builtins.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698