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

Side by Side Diff: src/type-feedback-vector.h

Issue 1316953003: Vector ICs: Make the Oracle gather feedback for vector stores. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Slight update. Created 5 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
« no previous file with comments | « no previous file | src/type-feedback-vector.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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_TYPE_FEEDBACK_VECTOR_H_ 5 #ifndef V8_TYPE_FEEDBACK_VECTOR_H_
6 #define V8_TYPE_FEEDBACK_VECTOR_H_ 6 #define V8_TYPE_FEEDBACK_VECTOR_H_
7 7
8 #include <vector> 8 #include <vector>
9 9
10 #include "src/checks.h" 10 #include "src/checks.h"
(...skipping 472 matching lines...) Expand 10 before | Expand all | Expand 10 after
483 } 483 }
484 484
485 void Clear(Code* host); 485 void Clear(Code* host);
486 486
487 // name can be a null handle for element loads. 487 // name can be a null handle for element loads.
488 void ConfigureMonomorphic(Handle<Name> name, Handle<Map> receiver_map, 488 void ConfigureMonomorphic(Handle<Name> name, Handle<Map> receiver_map,
489 Handle<Code> handler); 489 Handle<Code> handler);
490 // name can be null. 490 // name can be null.
491 void ConfigurePolymorphic(Handle<Name> name, MapHandleList* maps, 491 void ConfigurePolymorphic(Handle<Name> name, MapHandleList* maps,
492 CodeHandleList* handlers); 492 CodeHandleList* handlers);
493 void ConfigurePolymorphic(MapHandleList* maps,
494 MapHandleList* transitioned_maps,
495 CodeHandleList* handlers);
496
497 KeyedAccessStoreMode GetKeyedAccessStoreMode() const;
498 IcCheckType GetKeyType() const;
493 499
494 InlineCacheState StateFromFeedback() const override; 500 InlineCacheState StateFromFeedback() const override;
495 Name* FindFirstName() const override; 501 Name* FindFirstName() const override;
496 }; 502 };
497 } 503 }
498 } // namespace v8::internal 504 } // namespace v8::internal
499 505
500 #endif // V8_TRANSITIONS_H_ 506 #endif // V8_TRANSITIONS_H_
OLDNEW
« no previous file with comments | « no previous file | src/type-feedback-vector.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698