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

Side by Side Diff: src/mips64/code-stubs-mips64.h

Issue 542103002: MIPS: remove remnants of MinorKey. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/mips/code-stubs-mips.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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_MIPS_CODE_STUBS_ARM_H_ 5 #ifndef V8_MIPS_CODE_STUBS_ARM_H_
6 #define V8_MIPS_CODE_STUBS_ARM_H_ 6 #define V8_MIPS_CODE_STUBS_ARM_H_
7 7
8 #include "src/code-stubs.h" 8 #include "src/code-stubs.h"
9 9
10 10
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 61
62 62
63 class StoreRegistersStateStub: public PlatformCodeStub { 63 class StoreRegistersStateStub: public PlatformCodeStub {
64 public: 64 public:
65 explicit StoreRegistersStateStub(Isolate* isolate) 65 explicit StoreRegistersStateStub(Isolate* isolate)
66 : PlatformCodeStub(isolate) {} 66 : PlatformCodeStub(isolate) {}
67 67
68 static void GenerateAheadOfTime(Isolate* isolate); 68 static void GenerateAheadOfTime(Isolate* isolate);
69 private: 69 private:
70 virtual inline Major MajorKey() const FINAL OVERRIDE; 70 virtual inline Major MajorKey() const FINAL OVERRIDE;
71 uint32_t MinorKey() const { return 0; }
72 71
73 void Generate(MacroAssembler* masm); 72 void Generate(MacroAssembler* masm);
74 }; 73 };
75 74
76 class RestoreRegistersStateStub: public PlatformCodeStub { 75 class RestoreRegistersStateStub: public PlatformCodeStub {
77 public: 76 public:
78 explicit RestoreRegistersStateStub(Isolate* isolate) 77 explicit RestoreRegistersStateStub(Isolate* isolate)
79 : PlatformCodeStub(isolate) {} 78 : PlatformCodeStub(isolate) {}
80 79
81 static void GenerateAheadOfTime(Isolate* isolate); 80 static void GenerateAheadOfTime(Isolate* isolate);
82 private: 81 private:
83 virtual inline Major MajorKey() const FINAL OVERRIDE; 82 virtual inline Major MajorKey() const FINAL OVERRIDE;
84 uint32_t MinorKey() const { return 0; }
85 83
86 void Generate(MacroAssembler* masm); 84 void Generate(MacroAssembler* masm);
87 }; 85 };
88 86
89 // This stub can convert a signed int32 to a heap number (double). It does 87 // This stub can convert a signed int32 to a heap number (double). It does
90 // not work for int32s that are in Smi range! No GC occurs during this stub 88 // not work for int32s that are in Smi range! No GC occurs during this stub
91 // so you don't have to set up the frame. 89 // so you don't have to set up the frame.
92 class WriteInt32ToHeapNumberStub : public PlatformCodeStub { 90 class WriteInt32ToHeapNumberStub : public PlatformCodeStub {
93 public: 91 public:
94 WriteInt32ToHeapNumberStub(Isolate* isolate, Register the_int, 92 WriteInt32ToHeapNumberStub(Isolate* isolate, Register the_int,
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after
402 400
403 class LookupModeBits: public BitField<LookupMode, 0, 1> {}; 401 class LookupModeBits: public BitField<LookupMode, 0, 1> {};
404 402
405 DISALLOW_COPY_AND_ASSIGN(NameDictionaryLookupStub); 403 DISALLOW_COPY_AND_ASSIGN(NameDictionaryLookupStub);
406 }; 404 };
407 405
408 406
409 } } // namespace v8::internal 407 } } // namespace v8::internal
410 408
411 #endif // V8_MIPS_CODE_STUBS_ARM_H_ 409 #endif // V8_MIPS_CODE_STUBS_ARM_H_
OLDNEW
« no previous file with comments | « src/mips/code-stubs-mips.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698