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

Side by Side Diff: src/builtins.h

Issue 575022: Eliminate unused function KeyedStoreIC::GenerateExtendStorage, and unused par... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' 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 | Annotate | Revision Log
« no previous file with comments | « src/arm/stub-cache-arm.cc ('k') | src/builtins.cc » ('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 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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 V(JSConstructStubGeneric, BUILTIN, UNINITIALIZED) \ 62 V(JSConstructStubGeneric, BUILTIN, UNINITIALIZED) \
63 V(JSConstructStubApi, BUILTIN, UNINITIALIZED) \ 63 V(JSConstructStubApi, BUILTIN, UNINITIALIZED) \
64 V(JSEntryTrampoline, BUILTIN, UNINITIALIZED) \ 64 V(JSEntryTrampoline, BUILTIN, UNINITIALIZED) \
65 V(JSConstructEntryTrampoline, BUILTIN, UNINITIALIZED) \ 65 V(JSConstructEntryTrampoline, BUILTIN, UNINITIALIZED) \
66 \ 66 \
67 V(LoadIC_Miss, BUILTIN, UNINITIALIZED) \ 67 V(LoadIC_Miss, BUILTIN, UNINITIALIZED) \
68 V(KeyedLoadIC_Miss, BUILTIN, UNINITIALIZED) \ 68 V(KeyedLoadIC_Miss, BUILTIN, UNINITIALIZED) \
69 V(StoreIC_Miss, BUILTIN, UNINITIALIZED) \ 69 V(StoreIC_Miss, BUILTIN, UNINITIALIZED) \
70 V(KeyedStoreIC_Miss, BUILTIN, UNINITIALIZED) \ 70 V(KeyedStoreIC_Miss, BUILTIN, UNINITIALIZED) \
71 \ 71 \
72 V(StoreIC_ExtendStorage, BUILTIN, UNINITIALIZED) \
73 V(KeyedStoreIC_ExtendStorage, BUILTIN, UNINITIALIZED) \
74 \
75 V(LoadIC_Initialize, LOAD_IC, UNINITIALIZED) \ 72 V(LoadIC_Initialize, LOAD_IC, UNINITIALIZED) \
76 V(LoadIC_PreMonomorphic, LOAD_IC, PREMONOMORPHIC) \ 73 V(LoadIC_PreMonomorphic, LOAD_IC, PREMONOMORPHIC) \
77 V(LoadIC_Normal, LOAD_IC, MONOMORPHIC) \ 74 V(LoadIC_Normal, LOAD_IC, MONOMORPHIC) \
78 V(LoadIC_ArrayLength, LOAD_IC, MONOMORPHIC) \ 75 V(LoadIC_ArrayLength, LOAD_IC, MONOMORPHIC) \
79 V(LoadIC_StringLength, LOAD_IC, MONOMORPHIC) \ 76 V(LoadIC_StringLength, LOAD_IC, MONOMORPHIC) \
80 V(LoadIC_FunctionPrototype, LOAD_IC, MONOMORPHIC) \ 77 V(LoadIC_FunctionPrototype, LOAD_IC, MONOMORPHIC) \
81 V(LoadIC_Megamorphic, LOAD_IC, MEGAMORPHIC) \ 78 V(LoadIC_Megamorphic, LOAD_IC, MEGAMORPHIC) \
82 \ 79 \
83 V(KeyedLoadIC_Initialize, KEYED_LOAD_IC, UNINITIALIZED) \ 80 V(KeyedLoadIC_Initialize, KEYED_LOAD_IC, UNINITIALIZED) \
84 V(KeyedLoadIC_PreMonomorphic, KEYED_LOAD_IC, PREMONOMORPHIC) \ 81 V(KeyedLoadIC_PreMonomorphic, KEYED_LOAD_IC, PREMONOMORPHIC) \
(...skipping 161 matching lines...) Expand 10 before | Expand all | Expand 10 after
246 static void Generate_FunctionCall(MacroAssembler* masm); 243 static void Generate_FunctionCall(MacroAssembler* masm);
247 static void Generate_FunctionApply(MacroAssembler* masm); 244 static void Generate_FunctionApply(MacroAssembler* masm);
248 245
249 static void Generate_ArrayCode(MacroAssembler* masm); 246 static void Generate_ArrayCode(MacroAssembler* masm);
250 static void Generate_ArrayConstructCode(MacroAssembler* masm); 247 static void Generate_ArrayConstructCode(MacroAssembler* masm);
251 }; 248 };
252 249
253 } } // namespace v8::internal 250 } } // namespace v8::internal
254 251
255 #endif // V8_BUILTINS_H_ 252 #endif // V8_BUILTINS_H_
OLDNEW
« no previous file with comments | « src/arm/stub-cache-arm.cc ('k') | src/builtins.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698