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

Side by Side Diff: src/builtins.h

Issue 132193005: Merged r16772, r18000, r18030, r18298, r18319 into 3.21 branch. (Closed) Base URL: https://v8.googlecode.com/svn/branches/3.21
Patch Set: Created 6 years, 11 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/assembler.cc ('k') | src/date.js » ('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 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
104 V(ConcurrentRecompile, BUILTIN, UNINITIALIZED, \ 104 V(ConcurrentRecompile, BUILTIN, UNINITIALIZED, \
105 Code::kNoExtraICState) \ 105 Code::kNoExtraICState) \
106 V(NotifyDeoptimized, BUILTIN, UNINITIALIZED, \ 106 V(NotifyDeoptimized, BUILTIN, UNINITIALIZED, \
107 Code::kNoExtraICState) \ 107 Code::kNoExtraICState) \
108 V(NotifySoftDeoptimized, BUILTIN, UNINITIALIZED, \ 108 V(NotifySoftDeoptimized, BUILTIN, UNINITIALIZED, \
109 Code::kNoExtraICState) \ 109 Code::kNoExtraICState) \
110 V(NotifyLazyDeoptimized, BUILTIN, UNINITIALIZED, \ 110 V(NotifyLazyDeoptimized, BUILTIN, UNINITIALIZED, \
111 Code::kNoExtraICState) \ 111 Code::kNoExtraICState) \
112 V(NotifyStubFailure, BUILTIN, UNINITIALIZED, \ 112 V(NotifyStubFailure, BUILTIN, UNINITIALIZED, \
113 Code::kNoExtraICState) \ 113 Code::kNoExtraICState) \
114 V(NotifyStubFailureSaveDoubles, BUILTIN, UNINITIALIZED, \
115 Code::kNoExtraICState) \
114 V(NotifyOSR, BUILTIN, UNINITIALIZED, \ 116 V(NotifyOSR, BUILTIN, UNINITIALIZED, \
115 Code::kNoExtraICState) \ 117 Code::kNoExtraICState) \
116 \ 118 \
117 V(LoadIC_Miss, BUILTIN, UNINITIALIZED, \ 119 V(LoadIC_Miss, BUILTIN, UNINITIALIZED, \
118 Code::kNoExtraICState) \ 120 Code::kNoExtraICState) \
119 V(KeyedLoadIC_Miss, BUILTIN, UNINITIALIZED, \ 121 V(KeyedLoadIC_Miss, BUILTIN, UNINITIALIZED, \
120 Code::kNoExtraICState) \ 122 Code::kNoExtraICState) \
121 V(KeyedLoadIC_MissForceGeneric, BUILTIN, UNINITIALIZED, \ 123 V(KeyedLoadIC_MissForceGeneric, BUILTIN, UNINITIALIZED, \
122 Code::kNoExtraICState) \ 124 Code::kNoExtraICState) \
123 V(KeyedLoadIC_Slow, STUB, MONOMORPHIC, \ 125 V(KeyedLoadIC_Slow, STUB, MONOMORPHIC, \
(...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after
386 static void Generate_JSConstructStubApi(MacroAssembler* masm); 388 static void Generate_JSConstructStubApi(MacroAssembler* masm);
387 static void Generate_JSEntryTrampoline(MacroAssembler* masm); 389 static void Generate_JSEntryTrampoline(MacroAssembler* masm);
388 static void Generate_JSConstructEntryTrampoline(MacroAssembler* masm); 390 static void Generate_JSConstructEntryTrampoline(MacroAssembler* masm);
389 static void Generate_LazyCompile(MacroAssembler* masm); 391 static void Generate_LazyCompile(MacroAssembler* masm);
390 static void Generate_LazyRecompile(MacroAssembler* masm); 392 static void Generate_LazyRecompile(MacroAssembler* masm);
391 static void Generate_NotifyDeoptimized(MacroAssembler* masm); 393 static void Generate_NotifyDeoptimized(MacroAssembler* masm);
392 static void Generate_NotifySoftDeoptimized(MacroAssembler* masm); 394 static void Generate_NotifySoftDeoptimized(MacroAssembler* masm);
393 static void Generate_NotifyLazyDeoptimized(MacroAssembler* masm); 395 static void Generate_NotifyLazyDeoptimized(MacroAssembler* masm);
394 static void Generate_NotifyOSR(MacroAssembler* masm); 396 static void Generate_NotifyOSR(MacroAssembler* masm);
395 static void Generate_NotifyStubFailure(MacroAssembler* masm); 397 static void Generate_NotifyStubFailure(MacroAssembler* masm);
398 static void Generate_NotifyStubFailureSaveDoubles(MacroAssembler* masm);
396 static void Generate_ArgumentsAdaptorTrampoline(MacroAssembler* masm); 399 static void Generate_ArgumentsAdaptorTrampoline(MacroAssembler* masm);
397 400
398 static void Generate_FunctionCall(MacroAssembler* masm); 401 static void Generate_FunctionCall(MacroAssembler* masm);
399 static void Generate_FunctionApply(MacroAssembler* masm); 402 static void Generate_FunctionApply(MacroAssembler* masm);
400 403
401 static void Generate_InternalArrayCode(MacroAssembler* masm); 404 static void Generate_InternalArrayCode(MacroAssembler* masm);
402 static void Generate_ArrayCode(MacroAssembler* masm); 405 static void Generate_ArrayCode(MacroAssembler* masm);
403 406
404 static void Generate_StringConstructCode(MacroAssembler* masm); 407 static void Generate_StringConstructCode(MacroAssembler* masm);
405 static void Generate_OnStackReplacement(MacroAssembler* masm); 408 static void Generate_OnStackReplacement(MacroAssembler* masm);
(...skipping 15 matching lines...) Expand all
421 424
422 friend class BuiltinFunctionTable; 425 friend class BuiltinFunctionTable;
423 friend class Isolate; 426 friend class Isolate;
424 427
425 DISALLOW_COPY_AND_ASSIGN(Builtins); 428 DISALLOW_COPY_AND_ASSIGN(Builtins);
426 }; 429 };
427 430
428 } } // namespace v8::internal 431 } } // namespace v8::internal
429 432
430 #endif // V8_BUILTINS_H_ 433 #endif // V8_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/assembler.cc ('k') | src/date.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698