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

Side by Side Diff: src/stub-cache.h

Issue 10828303: Fix improved LoadICs for dictionaries with callbacks. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Ported to all architectures and addressed comments. Created 8 years, 4 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/ic.cc ('k') | src/x64/ic-x64.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 532 matching lines...) Expand 10 before | Expand all | Expand 10 after
543 Handle<String> name, 543 Handle<String> name,
544 Label* miss); 544 Label* miss);
545 545
546 void GenerateLoadCallback(Handle<JSObject> object, 546 void GenerateLoadCallback(Handle<JSObject> object,
547 Handle<JSObject> holder, 547 Handle<JSObject> holder,
548 Register receiver, 548 Register receiver,
549 Register name_reg, 549 Register name_reg,
550 Register scratch1, 550 Register scratch1,
551 Register scratch2, 551 Register scratch2,
552 Register scratch3, 552 Register scratch3,
553 Register scratch4,
553 Handle<AccessorInfo> callback, 554 Handle<AccessorInfo> callback,
554 Handle<String> name, 555 Handle<String> name,
555 Label* miss); 556 Label* miss);
556 557
557 void GenerateDictionaryLoadCallback(Register receiver, 558 void GenerateDictionaryLoadCallback(Register receiver,
558 Register name_reg, 559 Register name_reg,
559 Register scratch1, 560 Register scratch1,
560 Register scratch2, 561 Register scratch2,
561 Register scratch3, 562 Register scratch3,
562 Handle<AccessorInfo> callback, 563 Handle<AccessorInfo> callback,
(...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after
925 Handle<JSFunction> constant_function_; 926 Handle<JSFunction> constant_function_;
926 bool is_simple_api_call_; 927 bool is_simple_api_call_;
927 Handle<FunctionTemplateInfo> expected_receiver_type_; 928 Handle<FunctionTemplateInfo> expected_receiver_type_;
928 Handle<CallHandlerInfo> api_call_info_; 929 Handle<CallHandlerInfo> api_call_info_;
929 }; 930 };
930 931
931 932
932 } } // namespace v8::internal 933 } } // namespace v8::internal
933 934
934 #endif // V8_STUB_CACHE_H_ 935 #endif // V8_STUB_CACHE_H_
OLDNEW
« no previous file with comments | « src/ic.cc ('k') | src/x64/ic-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698