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

Side by Side Diff: src/builtins.h

Issue 110573004: Merge bleeding_edge 17696:18016. (Closed) Base URL: https://v8.googlecode.com/svn/branches/experimental/parser
Patch Set: Created 7 years 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 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 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
107 V(ConcurrentRecompile, BUILTIN, UNINITIALIZED, \ 107 V(ConcurrentRecompile, BUILTIN, UNINITIALIZED, \
108 Code::kNoExtraICState) \ 108 Code::kNoExtraICState) \
109 V(NotifyDeoptimized, BUILTIN, UNINITIALIZED, \ 109 V(NotifyDeoptimized, BUILTIN, UNINITIALIZED, \
110 Code::kNoExtraICState) \ 110 Code::kNoExtraICState) \
111 V(NotifySoftDeoptimized, BUILTIN, UNINITIALIZED, \ 111 V(NotifySoftDeoptimized, BUILTIN, UNINITIALIZED, \
112 Code::kNoExtraICState) \ 112 Code::kNoExtraICState) \
113 V(NotifyLazyDeoptimized, BUILTIN, UNINITIALIZED, \ 113 V(NotifyLazyDeoptimized, BUILTIN, UNINITIALIZED, \
114 Code::kNoExtraICState) \ 114 Code::kNoExtraICState) \
115 V(NotifyStubFailure, BUILTIN, UNINITIALIZED, \ 115 V(NotifyStubFailure, BUILTIN, UNINITIALIZED, \
116 Code::kNoExtraICState) \ 116 Code::kNoExtraICState) \
117 V(NotifyStubFailureSaveDoubles, BUILTIN, UNINITIALIZED, \
118 Code::kNoExtraICState) \
117 \ 119 \
118 V(LoadIC_Miss, BUILTIN, UNINITIALIZED, \ 120 V(LoadIC_Miss, BUILTIN, UNINITIALIZED, \
119 Code::kNoExtraICState) \ 121 Code::kNoExtraICState) \
120 V(KeyedLoadIC_Miss, BUILTIN, UNINITIALIZED, \ 122 V(KeyedLoadIC_Miss, BUILTIN, UNINITIALIZED, \
121 Code::kNoExtraICState) \ 123 Code::kNoExtraICState) \
122 V(KeyedLoadIC_MissForceGeneric, BUILTIN, UNINITIALIZED, \
123 Code::kNoExtraICState) \
124 V(StoreIC_Miss, BUILTIN, UNINITIALIZED, \ 124 V(StoreIC_Miss, BUILTIN, UNINITIALIZED, \
125 Code::kNoExtraICState) \ 125 Code::kNoExtraICState) \
126 V(KeyedStoreIC_Miss, BUILTIN, UNINITIALIZED, \ 126 V(KeyedStoreIC_Miss, BUILTIN, UNINITIALIZED, \
127 Code::kNoExtraICState) \ 127 Code::kNoExtraICState) \
128 V(KeyedStoreIC_MissForceGeneric, BUILTIN, UNINITIALIZED, \
129 Code::kNoExtraICState) \
130 V(LoadIC_Initialize, LOAD_IC, UNINITIALIZED, \ 128 V(LoadIC_Initialize, LOAD_IC, UNINITIALIZED, \
131 Code::kNoExtraICState) \ 129 Code::kNoExtraICState) \
132 V(LoadIC_PreMonomorphic, LOAD_IC, PREMONOMORPHIC, \ 130 V(LoadIC_PreMonomorphic, LOAD_IC, PREMONOMORPHIC, \
133 Code::kNoExtraICState) \ 131 Code::kNoExtraICState) \
134 V(LoadIC_Megamorphic, LOAD_IC, MEGAMORPHIC, \ 132 V(LoadIC_Megamorphic, LOAD_IC, MEGAMORPHIC, \
135 Code::kNoExtraICState) \ 133 Code::kNoExtraICState) \
136 V(LoadIC_Getter_ForDeopt, LOAD_IC, MONOMORPHIC, \ 134 V(LoadIC_Getter_ForDeopt, LOAD_IC, MONOMORPHIC, \
137 Code::kNoExtraICState) \ 135 Code::kNoExtraICState) \
138 \ 136 \
139 V(KeyedLoadIC_Initialize, KEYED_LOAD_IC, UNINITIALIZED, \ 137 V(KeyedLoadIC_Initialize, KEYED_LOAD_IC, UNINITIALIZED, \
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after
400 static void Generate_JSConstructStubGeneric(MacroAssembler* masm); 398 static void Generate_JSConstructStubGeneric(MacroAssembler* masm);
401 static void Generate_JSConstructStubApi(MacroAssembler* masm); 399 static void Generate_JSConstructStubApi(MacroAssembler* masm);
402 static void Generate_JSEntryTrampoline(MacroAssembler* masm); 400 static void Generate_JSEntryTrampoline(MacroAssembler* masm);
403 static void Generate_JSConstructEntryTrampoline(MacroAssembler* masm); 401 static void Generate_JSConstructEntryTrampoline(MacroAssembler* masm);
404 static void Generate_LazyCompile(MacroAssembler* masm); 402 static void Generate_LazyCompile(MacroAssembler* masm);
405 static void Generate_LazyRecompile(MacroAssembler* masm); 403 static void Generate_LazyRecompile(MacroAssembler* masm);
406 static void Generate_NotifyDeoptimized(MacroAssembler* masm); 404 static void Generate_NotifyDeoptimized(MacroAssembler* masm);
407 static void Generate_NotifySoftDeoptimized(MacroAssembler* masm); 405 static void Generate_NotifySoftDeoptimized(MacroAssembler* masm);
408 static void Generate_NotifyLazyDeoptimized(MacroAssembler* masm); 406 static void Generate_NotifyLazyDeoptimized(MacroAssembler* masm);
409 static void Generate_NotifyStubFailure(MacroAssembler* masm); 407 static void Generate_NotifyStubFailure(MacroAssembler* masm);
408 static void Generate_NotifyStubFailureSaveDoubles(MacroAssembler* masm);
410 static void Generate_ArgumentsAdaptorTrampoline(MacroAssembler* masm); 409 static void Generate_ArgumentsAdaptorTrampoline(MacroAssembler* masm);
411 410
412 static void Generate_FunctionCall(MacroAssembler* masm); 411 static void Generate_FunctionCall(MacroAssembler* masm);
413 static void Generate_FunctionApply(MacroAssembler* masm); 412 static void Generate_FunctionApply(MacroAssembler* masm);
414 413
415 static void Generate_InternalArrayCode(MacroAssembler* masm); 414 static void Generate_InternalArrayCode(MacroAssembler* masm);
416 static void Generate_ArrayCode(MacroAssembler* masm); 415 static void Generate_ArrayCode(MacroAssembler* masm);
417 416
418 static void Generate_StringConstructCode(MacroAssembler* masm); 417 static void Generate_StringConstructCode(MacroAssembler* masm);
419 static void Generate_OnStackReplacement(MacroAssembler* masm); 418 static void Generate_OnStackReplacement(MacroAssembler* masm);
(...skipping 18 matching lines...) Expand all
438 437
439 friend class BuiltinFunctionTable; 438 friend class BuiltinFunctionTable;
440 friend class Isolate; 439 friend class Isolate;
441 440
442 DISALLOW_COPY_AND_ASSIGN(Builtins); 441 DISALLOW_COPY_AND_ASSIGN(Builtins);
443 }; 442 };
444 443
445 } } // namespace v8::internal 444 } } // namespace v8::internal
446 445
447 #endif // V8_BUILTINS_H_ 446 #endif // V8_BUILTINS_H_
OLDNEW
« include/v8-platform.h ('K') | « src/bootstrapper.cc ('k') | src/builtins.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698