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

Side by Side Diff: src/builtins.h

Issue 573003: ia32: Fuse map and type checks in call ICs for API functions. (Closed)
Patch Set: Rewrote a comment. Created 10 years, 10 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 2006-2008 the V8 project authors. All rights reserved. 1 // Copyright 2006-2008 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 V(Illegal, NO_EXTRA_ARGUMENTS) \ 43 V(Illegal, NO_EXTRA_ARGUMENTS) \
44 \ 44 \
45 V(EmptyFunction, NO_EXTRA_ARGUMENTS) \ 45 V(EmptyFunction, NO_EXTRA_ARGUMENTS) \
46 \ 46 \
47 V(ArrayCodeGeneric, NO_EXTRA_ARGUMENTS) \ 47 V(ArrayCodeGeneric, NO_EXTRA_ARGUMENTS) \
48 \ 48 \
49 V(ArrayPush, NO_EXTRA_ARGUMENTS) \ 49 V(ArrayPush, NO_EXTRA_ARGUMENTS) \
50 V(ArrayPop, NO_EXTRA_ARGUMENTS) \ 50 V(ArrayPop, NO_EXTRA_ARGUMENTS) \
51 \ 51 \
52 V(HandleApiCall, NEEDS_CALLED_FUNCTION) \ 52 V(HandleApiCall, NEEDS_CALLED_FUNCTION) \
53 V(FastHandleApiCall, NO_EXTRA_ARGUMENTS) \
53 V(HandleApiCallConstruct, NEEDS_CALLED_FUNCTION) \ 54 V(HandleApiCallConstruct, NEEDS_CALLED_FUNCTION) \
54 V(HandleApiCallAsFunction, NO_EXTRA_ARGUMENTS) \ 55 V(HandleApiCallAsFunction, NO_EXTRA_ARGUMENTS) \
55 V(HandleApiCallAsConstructor, NO_EXTRA_ARGUMENTS) 56 V(HandleApiCallAsConstructor, NO_EXTRA_ARGUMENTS)
56 57
57 58
58 // Define list of builtins implemented in assembly. 59 // Define list of builtins implemented in assembly.
59 #define BUILTIN_LIST_A(V) \ 60 #define BUILTIN_LIST_A(V) \
60 V(ArgumentsAdaptorTrampoline, BUILTIN, UNINITIALIZED) \ 61 V(ArgumentsAdaptorTrampoline, BUILTIN, UNINITIALIZED) \
61 V(JSConstructCall, BUILTIN, UNINITIALIZED) \ 62 V(JSConstructCall, BUILTIN, UNINITIALIZED) \
62 V(JSConstructStubGeneric, BUILTIN, UNINITIALIZED) \ 63 V(JSConstructStubGeneric, BUILTIN, UNINITIALIZED) \
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 static void Generate_FunctionCall(MacroAssembler* masm); 247 static void Generate_FunctionCall(MacroAssembler* masm);
247 static void Generate_FunctionApply(MacroAssembler* masm); 248 static void Generate_FunctionApply(MacroAssembler* masm);
248 249
249 static void Generate_ArrayCode(MacroAssembler* masm); 250 static void Generate_ArrayCode(MacroAssembler* masm);
250 static void Generate_ArrayConstructCode(MacroAssembler* masm); 251 static void Generate_ArrayConstructCode(MacroAssembler* masm);
251 }; 252 };
252 253
253 } } // namespace v8::internal 254 } } // namespace v8::internal
254 255
255 #endif // V8_BUILTINS_H_ 256 #endif // V8_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/arm/stub-cache-arm.cc ('k') | src/builtins.cc » ('j') | src/ia32/stub-cache-ia32.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698