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

Unified Diff: src/compiler/js-generic-lowering.cc

Issue 526223002: Use Chrome compatible naming for compiler specifics. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: mips Created 6 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/compiler/instruction-selector-unittest.h ('k') | src/compiler/linkage.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/compiler/js-generic-lowering.cc
diff --git a/src/compiler/js-generic-lowering.cc b/src/compiler/js-generic-lowering.cc
index 16fb166527d6ca1d0504dd2728ef6fecb4e1d360..f576557030635705d3ca9aaa1441b5fbd127f60c 100644
--- a/src/compiler/js-generic-lowering.cc
+++ b/src/compiler/js-generic-lowering.cc
@@ -39,22 +39,22 @@ class LoadICStubShim : public HydrogenCodeStub {
i::compiler::GetInterfaceDescriptor(isolate, this);
}
- virtual Handle<Code> GenerateCode() V8_OVERRIDE {
+ virtual Handle<Code> GenerateCode() OVERRIDE {
ExtraICState extra_state = LoadIC::ComputeExtraICState(contextual_mode_);
return LoadIC::initialize_stub(isolate(), extra_state);
}
virtual void InitializeInterfaceDescriptor(
- CodeStubInterfaceDescriptor* descriptor) V8_OVERRIDE {
+ CodeStubInterfaceDescriptor* descriptor) OVERRIDE {
CallInterfaceDescriptor* call_descriptor =
isolate()->call_descriptor(CallDescriptorKey::LoadICCall);
descriptor->Initialize(MajorKey(), call_descriptor);
}
private:
- virtual Major MajorKey() const V8_OVERRIDE { return NoCache; }
- virtual int NotMissMinorKey() const V8_OVERRIDE { return 0; }
- virtual bool UseSpecialCache() V8_OVERRIDE { return true; }
+ virtual Major MajorKey() const OVERRIDE { return NoCache; }
+ virtual int NotMissMinorKey() const OVERRIDE { return 0; }
+ virtual bool UseSpecialCache() OVERRIDE { return true; }
ContextualMode contextual_mode_;
};
@@ -69,21 +69,21 @@ class KeyedLoadICStubShim : public HydrogenCodeStub {
i::compiler::GetInterfaceDescriptor(isolate, this);
}
- virtual Handle<Code> GenerateCode() V8_OVERRIDE {
+ virtual Handle<Code> GenerateCode() OVERRIDE {
return isolate()->builtins()->KeyedLoadIC_Initialize();
}
virtual void InitializeInterfaceDescriptor(
- CodeStubInterfaceDescriptor* descriptor) V8_OVERRIDE {
+ CodeStubInterfaceDescriptor* descriptor) OVERRIDE {
CallInterfaceDescriptor* call_descriptor =
isolate()->call_descriptor(CallDescriptorKey::LoadICCall);
descriptor->Initialize(MajorKey(), call_descriptor);
}
private:
- virtual Major MajorKey() const V8_OVERRIDE { return NoCache; }
- virtual int NotMissMinorKey() const V8_OVERRIDE { return 0; }
- virtual bool UseSpecialCache() V8_OVERRIDE { return true; }
+ virtual Major MajorKey() const OVERRIDE { return NoCache; }
+ virtual int NotMissMinorKey() const OVERRIDE { return 0; }
+ virtual bool UseSpecialCache() OVERRIDE { return true; }
};
@@ -97,21 +97,21 @@ class StoreICStubShim : public HydrogenCodeStub {
i::compiler::GetInterfaceDescriptor(isolate, this);
}
- virtual Handle<Code> GenerateCode() V8_OVERRIDE {
+ virtual Handle<Code> GenerateCode() OVERRIDE {
return StoreIC::initialize_stub(isolate(), strict_mode_);
}
virtual void InitializeInterfaceDescriptor(
- CodeStubInterfaceDescriptor* descriptor) V8_OVERRIDE {
+ CodeStubInterfaceDescriptor* descriptor) OVERRIDE {
CallInterfaceDescriptor* call_descriptor =
isolate()->call_descriptor(CallDescriptorKey::StoreICCall);
descriptor->Initialize(MajorKey(), call_descriptor);
}
private:
- virtual Major MajorKey() const V8_OVERRIDE { return NoCache; }
- virtual int NotMissMinorKey() const V8_OVERRIDE { return 0; }
- virtual bool UseSpecialCache() V8_OVERRIDE { return true; }
+ virtual Major MajorKey() const OVERRIDE { return NoCache; }
+ virtual int NotMissMinorKey() const OVERRIDE { return 0; }
+ virtual bool UseSpecialCache() OVERRIDE { return true; }
StrictMode strict_mode_;
};
@@ -127,23 +127,23 @@ class KeyedStoreICStubShim : public HydrogenCodeStub {
i::compiler::GetInterfaceDescriptor(isolate, this);
}
- virtual Handle<Code> GenerateCode() V8_OVERRIDE {
+ virtual Handle<Code> GenerateCode() OVERRIDE {
return strict_mode_ == SLOPPY
? isolate()->builtins()->KeyedStoreIC_Initialize()
: isolate()->builtins()->KeyedStoreIC_Initialize_Strict();
}
virtual void InitializeInterfaceDescriptor(
- CodeStubInterfaceDescriptor* descriptor) V8_OVERRIDE {
+ CodeStubInterfaceDescriptor* descriptor) OVERRIDE {
CallInterfaceDescriptor* call_descriptor =
isolate()->call_descriptor(CallDescriptorKey::StoreICCall);
descriptor->Initialize(MajorKey(), call_descriptor);
}
private:
- virtual Major MajorKey() const V8_OVERRIDE { return NoCache; }
- virtual int NotMissMinorKey() const V8_OVERRIDE { return 0; }
- virtual bool UseSpecialCache() V8_OVERRIDE { return true; }
+ virtual Major MajorKey() const OVERRIDE { return NoCache; }
+ virtual int NotMissMinorKey() const OVERRIDE { return 0; }
+ virtual bool UseSpecialCache() OVERRIDE { return true; }
StrictMode strict_mode_;
};
« no previous file with comments | « src/compiler/instruction-selector-unittest.h ('k') | src/compiler/linkage.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698