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

Side by Side Diff: src/builtins.h

Issue 11498006: Revert 13157, 13145 and 13140: Crankshaft code stubs. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 8 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
« no previous file with comments | « src/ast.cc ('k') | src/code-stubs.h » ('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 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
100 V(LazyCompile, BUILTIN, UNINITIALIZED, \ 100 V(LazyCompile, BUILTIN, UNINITIALIZED, \
101 Code::kNoExtraICState) \ 101 Code::kNoExtraICState) \
102 V(LazyRecompile, BUILTIN, UNINITIALIZED, \ 102 V(LazyRecompile, BUILTIN, UNINITIALIZED, \
103 Code::kNoExtraICState) \ 103 Code::kNoExtraICState) \
104 V(ParallelRecompile, BUILTIN, UNINITIALIZED, \ 104 V(ParallelRecompile, 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(NotifyLazyDeoptimized, BUILTIN, UNINITIALIZED, \ 108 V(NotifyLazyDeoptimized, BUILTIN, UNINITIALIZED, \
109 Code::kNoExtraICState) \ 109 Code::kNoExtraICState) \
110 V(NotifyICMiss, BUILTIN, UNINITIALIZED, \
111 Code::kNoExtraICState) \
112 V(NotifyOSR, BUILTIN, UNINITIALIZED, \ 110 V(NotifyOSR, BUILTIN, UNINITIALIZED, \
113 Code::kNoExtraICState) \ 111 Code::kNoExtraICState) \
114 \ 112 \
115 V(LoadIC_Miss, BUILTIN, UNINITIALIZED, \ 113 V(LoadIC_Miss, BUILTIN, UNINITIALIZED, \
116 Code::kNoExtraICState) \ 114 Code::kNoExtraICState) \
117 V(KeyedLoadIC_Miss, BUILTIN, UNINITIALIZED, \ 115 V(KeyedLoadIC_Miss, BUILTIN, UNINITIALIZED, \
118 Code::kNoExtraICState) \ 116 Code::kNoExtraICState) \
119 V(KeyedLoadIC_MissForceGeneric, BUILTIN, UNINITIALIZED, \ 117 V(KeyedLoadIC_MissForceGeneric, BUILTIN, UNINITIALIZED, \
120 Code::kNoExtraICState) \ 118 Code::kNoExtraICState) \
121 V(KeyedLoadIC_Slow, BUILTIN, UNINITIALIZED, \ 119 V(KeyedLoadIC_Slow, BUILTIN, UNINITIALIZED, \
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
381 static void Generate_JSConstructStubCountdown(MacroAssembler* masm); 379 static void Generate_JSConstructStubCountdown(MacroAssembler* masm);
382 static void Generate_JSConstructStubGeneric(MacroAssembler* masm); 380 static void Generate_JSConstructStubGeneric(MacroAssembler* masm);
383 static void Generate_JSConstructStubApi(MacroAssembler* masm); 381 static void Generate_JSConstructStubApi(MacroAssembler* masm);
384 static void Generate_JSEntryTrampoline(MacroAssembler* masm); 382 static void Generate_JSEntryTrampoline(MacroAssembler* masm);
385 static void Generate_JSConstructEntryTrampoline(MacroAssembler* masm); 383 static void Generate_JSConstructEntryTrampoline(MacroAssembler* masm);
386 static void Generate_LazyCompile(MacroAssembler* masm); 384 static void Generate_LazyCompile(MacroAssembler* masm);
387 static void Generate_LazyRecompile(MacroAssembler* masm); 385 static void Generate_LazyRecompile(MacroAssembler* masm);
388 static void Generate_NotifyDeoptimized(MacroAssembler* masm); 386 static void Generate_NotifyDeoptimized(MacroAssembler* masm);
389 static void Generate_NotifyLazyDeoptimized(MacroAssembler* masm); 387 static void Generate_NotifyLazyDeoptimized(MacroAssembler* masm);
390 static void Generate_NotifyOSR(MacroAssembler* masm); 388 static void Generate_NotifyOSR(MacroAssembler* masm);
391 static void Generate_NotifyICMiss(MacroAssembler* masm);
392 static void Generate_ArgumentsAdaptorTrampoline(MacroAssembler* masm); 389 static void Generate_ArgumentsAdaptorTrampoline(MacroAssembler* masm);
393 390
394 static void Generate_FunctionCall(MacroAssembler* masm); 391 static void Generate_FunctionCall(MacroAssembler* masm);
395 static void Generate_FunctionApply(MacroAssembler* masm); 392 static void Generate_FunctionApply(MacroAssembler* masm);
396 393
397 static void Generate_InternalArrayCode(MacroAssembler* masm); 394 static void Generate_InternalArrayCode(MacroAssembler* masm);
398 static void Generate_ArrayCode(MacroAssembler* masm); 395 static void Generate_ArrayCode(MacroAssembler* masm);
399 static void Generate_ArrayConstructCode(MacroAssembler* masm); 396 static void Generate_ArrayConstructCode(MacroAssembler* masm);
400 397
401 static void Generate_StringConstructCode(MacroAssembler* masm); 398 static void Generate_StringConstructCode(MacroAssembler* masm);
(...skipping 13 matching lines...) Expand all
415 412
416 friend class BuiltinFunctionTable; 413 friend class BuiltinFunctionTable;
417 friend class Isolate; 414 friend class Isolate;
418 415
419 DISALLOW_COPY_AND_ASSIGN(Builtins); 416 DISALLOW_COPY_AND_ASSIGN(Builtins);
420 }; 417 };
421 418
422 } } // namespace v8::internal 419 } } // namespace v8::internal
423 420
424 #endif // V8_BUILTINS_H_ 421 #endif // V8_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/ast.cc ('k') | src/code-stubs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698