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

Side by Side Diff: src/ppc/code-stubs-ppc.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 unified diff | Download patch
« no previous file with comments | « src/ostreams.h ('k') | src/ppc/lithium-codegen-ppc.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_PPC_CODE_STUBS_PPC_H_ 5 #ifndef V8_PPC_CODE_STUBS_PPC_H_
6 #define V8_PPC_CODE_STUBS_PPC_H_ 6 #define V8_PPC_CODE_STUBS_PPC_H_
7 7
8 namespace v8 { 8 namespace v8 {
9 namespace internal { 9 namespace internal {
10 10
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 Register scratch1_; 208 Register scratch1_;
209 209
210 friend class RecordWriteStub; 210 friend class RecordWriteStub;
211 }; 211 };
212 212
213 enum OnNoNeedToInformIncrementalMarker { 213 enum OnNoNeedToInformIncrementalMarker {
214 kReturnOnNoNeedToInformIncrementalMarker, 214 kReturnOnNoNeedToInformIncrementalMarker,
215 kUpdateRememberedSetOnNoNeedToInformIncrementalMarker 215 kUpdateRememberedSetOnNoNeedToInformIncrementalMarker
216 }; 216 };
217 217
218 virtual inline Major MajorKey() const FINAL OVERRIDE { return RecordWrite; } 218 inline Major MajorKey() const FINAL { return RecordWrite; }
219 219
220 virtual void Generate(MacroAssembler* masm) OVERRIDE; 220 void Generate(MacroAssembler* masm) OVERRIDE;
221 void GenerateIncremental(MacroAssembler* masm, Mode mode); 221 void GenerateIncremental(MacroAssembler* masm, Mode mode);
222 void CheckNeedsToInformIncrementalMarker( 222 void CheckNeedsToInformIncrementalMarker(
223 MacroAssembler* masm, OnNoNeedToInformIncrementalMarker on_no_need, 223 MacroAssembler* masm, OnNoNeedToInformIncrementalMarker on_no_need,
224 Mode mode); 224 Mode mode);
225 void InformIncrementalMarker(MacroAssembler* masm); 225 void InformIncrementalMarker(MacroAssembler* masm);
226 226
227 void Activate(Code* code) { 227 void Activate(Code* code) {
228 code->GetHeap()->incremental_marking()->ActivateGeneratedStub(code); 228 code->GetHeap()->incremental_marking()->ActivateGeneratedStub(code);
229 } 229 }
230 230
(...skipping 85 matching lines...) Expand 10 before | Expand all | Expand 10 after
316 316
317 class LookupModeBits : public BitField<LookupMode, 0, 1> {}; 317 class LookupModeBits : public BitField<LookupMode, 0, 1> {};
318 318
319 DEFINE_NULL_CALL_INTERFACE_DESCRIPTOR(); 319 DEFINE_NULL_CALL_INTERFACE_DESCRIPTOR();
320 DEFINE_PLATFORM_CODE_STUB(NameDictionaryLookup, PlatformCodeStub); 320 DEFINE_PLATFORM_CODE_STUB(NameDictionaryLookup, PlatformCodeStub);
321 }; 321 };
322 } 322 }
323 } // namespace v8::internal 323 } // namespace v8::internal
324 324
325 #endif // V8_PPC_CODE_STUBS_PPC_H_ 325 #endif // V8_PPC_CODE_STUBS_PPC_H_
OLDNEW
« no previous file with comments | « src/ostreams.h ('k') | src/ppc/lithium-codegen-ppc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698