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

Side by Side Diff: src/hydrogen.h

Issue 23578030: Reland Handle non-JSObject heap objects using slow-path IC stub guarded by the map. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed comments Created 7 years, 3 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/builtins.h ('k') | src/hydrogen.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 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 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 1990 matching lines...) Expand 10 before | Expand all | Expand 10 after
2001 HValue* key, 2001 HValue* key,
2002 HValue* val, 2002 HValue* val,
2003 HValue* dependency, 2003 HValue* dependency,
2004 Handle<Map> map, 2004 Handle<Map> map,
2005 bool is_store, 2005 bool is_store,
2006 KeyedAccessStoreMode store_mode); 2006 KeyedAccessStoreMode store_mode);
2007 2007
2008 HValue* HandlePolymorphicElementAccess(HValue* object, 2008 HValue* HandlePolymorphicElementAccess(HValue* object,
2009 HValue* key, 2009 HValue* key,
2010 HValue* val, 2010 HValue* val,
2011 Expression* prop, 2011 SmallMapList* maps,
2012 BailoutId ast_id, 2012 BailoutId ast_id,
2013 int position, 2013 int position,
2014 bool is_store, 2014 bool is_store,
2015 KeyedAccessStoreMode store_mode, 2015 KeyedAccessStoreMode store_mode,
2016 bool* has_side_effects); 2016 bool* has_side_effects);
2017 2017
2018 HValue* HandleKeyedElementAccess(HValue* obj, 2018 HValue* HandleKeyedElementAccess(HValue* obj,
2019 HValue* key, 2019 HValue* key,
2020 HValue* val, 2020 HValue* val,
2021 Expression* expr, 2021 Expression* expr,
(...skipping 279 matching lines...) Expand 10 before | Expand all | Expand 10 after
2301 } 2301 }
2302 2302
2303 private: 2303 private:
2304 HGraphBuilder* builder_; 2304 HGraphBuilder* builder_;
2305 }; 2305 };
2306 2306
2307 2307
2308 } } // namespace v8::internal 2308 } } // namespace v8::internal
2309 2309
2310 #endif // V8_HYDROGEN_H_ 2310 #endif // V8_HYDROGEN_H_
OLDNEW
« no previous file with comments | « src/builtins.h ('k') | src/hydrogen.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698