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

Side by Side Diff: src/heap.h

Issue 6287030: Create specialized code stubs for PixelArray loads. (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: review feedback Created 9 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/ia32/code-stubs-ia32.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 2010 the V8 project authors. All rights reserved. 1 // Copyright 2010 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 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
170 V(Date_symbol, "Date") \ 170 V(Date_symbol, "Date") \
171 V(this_symbol, "this") \ 171 V(this_symbol, "this") \
172 V(to_string_symbol, "toString") \ 172 V(to_string_symbol, "toString") \
173 V(char_at_symbol, "CharAt") \ 173 V(char_at_symbol, "CharAt") \
174 V(undefined_symbol, "undefined") \ 174 V(undefined_symbol, "undefined") \
175 V(value_of_symbol, "valueOf") \ 175 V(value_of_symbol, "valueOf") \
176 V(InitializeVarGlobal_symbol, "InitializeVarGlobal") \ 176 V(InitializeVarGlobal_symbol, "InitializeVarGlobal") \
177 V(InitializeConstGlobal_symbol, "InitializeConstGlobal") \ 177 V(InitializeConstGlobal_symbol, "InitializeConstGlobal") \
178 V(KeyedLoadSpecialized_symbol, "KeyedLoadSpecialized") \ 178 V(KeyedLoadSpecialized_symbol, "KeyedLoadSpecialized") \
179 V(KeyedStoreSpecialized_symbol, "KeyedStoreSpecialized") \ 179 V(KeyedStoreSpecialized_symbol, "KeyedStoreSpecialized") \
180 V(KeyedLoadPixelArray_symbol, "KeyedLoadPixelArray") \
180 V(stack_overflow_symbol, "kStackOverflowBoilerplate") \ 181 V(stack_overflow_symbol, "kStackOverflowBoilerplate") \
181 V(illegal_access_symbol, "illegal access") \ 182 V(illegal_access_symbol, "illegal access") \
182 V(out_of_memory_symbol, "out-of-memory") \ 183 V(out_of_memory_symbol, "out-of-memory") \
183 V(illegal_execution_state_symbol, "illegal execution state") \ 184 V(illegal_execution_state_symbol, "illegal execution state") \
184 V(get_symbol, "get") \ 185 V(get_symbol, "get") \
185 V(set_symbol, "set") \ 186 V(set_symbol, "set") \
186 V(function_class_symbol, "Function") \ 187 V(function_class_symbol, "Function") \
187 V(illegal_argument_symbol, "illegal argument") \ 188 V(illegal_argument_symbol, "illegal argument") \
188 V(MakeReferenceError_symbol, "MakeReferenceError") \ 189 V(MakeReferenceError_symbol, "MakeReferenceError") \
189 V(MakeSyntaxError_symbol, "MakeSyntaxError") \ 190 V(MakeSyntaxError_symbol, "MakeSyntaxError") \
(...skipping 1936 matching lines...) Expand 10 before | Expand all | Expand 10 after
2126 // Return whether this object should be retained. If NULL is returned the 2127 // Return whether this object should be retained. If NULL is returned the
2127 // object has no references. Otherwise the address of the retained object 2128 // object has no references. Otherwise the address of the retained object
2128 // should be returned as in some GC situations the object has been moved. 2129 // should be returned as in some GC situations the object has been moved.
2129 virtual Object* RetainAs(Object* object) = 0; 2130 virtual Object* RetainAs(Object* object) = 0;
2130 }; 2131 };
2131 2132
2132 2133
2133 } } // namespace v8::internal 2134 } } // namespace v8::internal
2134 2135
2135 #endif // V8_HEAP_H_ 2136 #endif // V8_HEAP_H_
OLDNEW
« no previous file with comments | « src/arm/stub-cache-arm.cc ('k') | src/ia32/code-stubs-ia32.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698