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

Unified Diff: src/type-feedback-vector.h

Issue 797943002: Consistently use only one of virtual/OVERRIDE/FINAL. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Removed temporary hack. Created 6 years 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/string-stream.h ('k') | src/x64/code-stubs-x64.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/type-feedback-vector.h
diff --git a/src/type-feedback-vector.h b/src/type-feedback-vector.h
index 888fe971bddbeb06e93e82ff8b4feee609616ac9..5846c5f4ed8849ad70218d07972964b8c19a132d 100644
--- a/src/type-feedback-vector.h
+++ b/src/type-feedback-vector.h
@@ -292,13 +292,13 @@ class CallICNexus : public FeedbackNexus {
void ConfigureMonomorphicArray();
void ConfigureMonomorphic(Handle<JSFunction> function);
- virtual InlineCacheState StateFromFeedback() const OVERRIDE;
+ InlineCacheState StateFromFeedback() const OVERRIDE;
- virtual int ExtractMaps(MapHandleList* maps) const OVERRIDE {
+ int ExtractMaps(MapHandleList* maps) const OVERRIDE {
// CallICs don't record map feedback.
return 0;
}
- virtual MaybeHandle<Code> FindHandlerForMap(Handle<Map> map) const OVERRIDE {
+ MaybeHandle<Code> FindHandlerForMap(Handle<Map> map) const OVERRIDE {
return MaybeHandle<Code>();
}
virtual bool FindHandlers(CodeHandleList* code_list,
@@ -327,9 +327,9 @@ class LoadICNexus : public FeedbackNexus {
void ConfigurePolymorphic(TypeHandleList* types, CodeHandleList* handlers);
- virtual InlineCacheState StateFromFeedback() const OVERRIDE;
- virtual int ExtractMaps(MapHandleList* maps) const OVERRIDE;
- virtual MaybeHandle<Code> FindHandlerForMap(Handle<Map> map) const OVERRIDE;
+ InlineCacheState StateFromFeedback() const OVERRIDE;
+ int ExtractMaps(MapHandleList* maps) const OVERRIDE;
+ MaybeHandle<Code> FindHandlerForMap(Handle<Map> map) const OVERRIDE;
virtual bool FindHandlers(CodeHandleList* code_list,
int length = -1) const OVERRIDE;
};
@@ -358,12 +358,12 @@ class KeyedLoadICNexus : public FeedbackNexus {
void ConfigurePolymorphic(Handle<Name> name, TypeHandleList* types,
CodeHandleList* handlers);
- virtual InlineCacheState StateFromFeedback() const OVERRIDE;
- virtual int ExtractMaps(MapHandleList* maps) const OVERRIDE;
- virtual MaybeHandle<Code> FindHandlerForMap(Handle<Map> map) const OVERRIDE;
+ InlineCacheState StateFromFeedback() const OVERRIDE;
+ int ExtractMaps(MapHandleList* maps) const OVERRIDE;
+ MaybeHandle<Code> FindHandlerForMap(Handle<Map> map) const OVERRIDE;
virtual bool FindHandlers(CodeHandleList* code_list,
int length = -1) const OVERRIDE;
- virtual Name* FindFirstName() const OVERRIDE;
+ Name* FindFirstName() const OVERRIDE;
};
}
} // namespace v8::internal
« no previous file with comments | « src/string-stream.h ('k') | src/x64/code-stubs-x64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698