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

Side by Side Diff: src/builtins.h

Issue 6711027: [Isolates] Merge 7201:7258 from bleeding_edge to isolates. (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/isolates/
Patch Set: Created 9 years, 9 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
OLDNEW
1 // Copyright 2010 the V8 project authors. All rights reserved. 1 // Copyright 2010 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 V(ArrayShift, NO_EXTRA_ARGUMENTS) \ 51 V(ArrayShift, NO_EXTRA_ARGUMENTS) \
52 V(ArrayUnshift, NO_EXTRA_ARGUMENTS) \ 52 V(ArrayUnshift, NO_EXTRA_ARGUMENTS) \
53 V(ArraySlice, NO_EXTRA_ARGUMENTS) \ 53 V(ArraySlice, NO_EXTRA_ARGUMENTS) \
54 V(ArraySplice, NO_EXTRA_ARGUMENTS) \ 54 V(ArraySplice, NO_EXTRA_ARGUMENTS) \
55 V(ArrayConcat, NO_EXTRA_ARGUMENTS) \ 55 V(ArrayConcat, NO_EXTRA_ARGUMENTS) \
56 \ 56 \
57 V(HandleApiCall, NEEDS_CALLED_FUNCTION) \ 57 V(HandleApiCall, NEEDS_CALLED_FUNCTION) \
58 V(FastHandleApiCall, NO_EXTRA_ARGUMENTS) \ 58 V(FastHandleApiCall, NO_EXTRA_ARGUMENTS) \
59 V(HandleApiCallConstruct, NEEDS_CALLED_FUNCTION) \ 59 V(HandleApiCallConstruct, NEEDS_CALLED_FUNCTION) \
60 V(HandleApiCallAsFunction, NO_EXTRA_ARGUMENTS) \ 60 V(HandleApiCallAsFunction, NO_EXTRA_ARGUMENTS) \
61 V(HandleApiCallAsConstructor, NO_EXTRA_ARGUMENTS) 61 V(HandleApiCallAsConstructor, NO_EXTRA_ARGUMENTS) \
62 \
63 V(StrictArgumentsCallee, NO_EXTRA_ARGUMENTS) \
64 V(StrictArgumentsCaller, NO_EXTRA_ARGUMENTS) \
65 V(StrictFunctionCaller, NO_EXTRA_ARGUMENTS) \
66 V(StrictFunctionArguments, NO_EXTRA_ARGUMENTS)
62 67
63 68
64 // Define list of builtins implemented in assembly. 69 // Define list of builtins implemented in assembly.
65 #define BUILTIN_LIST_A(V) \ 70 #define BUILTIN_LIST_A(V) \
66 V(ArgumentsAdaptorTrampoline, BUILTIN, UNINITIALIZED, \ 71 V(ArgumentsAdaptorTrampoline, BUILTIN, UNINITIALIZED, \
67 Code::kNoExtraICState) \ 72 Code::kNoExtraICState) \
68 V(JSConstructCall, BUILTIN, UNINITIALIZED, \ 73 V(JSConstructCall, BUILTIN, UNINITIALIZED, \
69 Code::kNoExtraICState) \ 74 Code::kNoExtraICState) \
70 V(JSConstructStubCountdown, BUILTIN, UNINITIALIZED, \ 75 V(JSConstructStubCountdown, BUILTIN, UNINITIALIZED, \
71 Code::kNoExtraICState) \ 76 Code::kNoExtraICState) \
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
345 350
346 friend class BuiltinFunctionTable; 351 friend class BuiltinFunctionTable;
347 friend class Isolate; 352 friend class Isolate;
348 353
349 DISALLOW_COPY_AND_ASSIGN(Builtins); 354 DISALLOW_COPY_AND_ASSIGN(Builtins);
350 }; 355 };
351 356
352 } } // namespace v8::internal 357 } } // namespace v8::internal
353 358
354 #endif // V8_BUILTINS_H_ 359 #endif // V8_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/bootstrapper.cc ('k') | src/builtins.cc » ('j') | src/global-handles.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698