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

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

Issue 12254036: Minor cleanup of CompareIC state (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Actually address all comments Created 7 years, 10 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/ic.cc ('k') | src/objects.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 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 102 matching lines...) Expand 10 before | Expand all | Expand 10 after
113 void Generate(MacroAssembler* masm); 113 void Generate(MacroAssembler* masm);
114 114
115 void GenerateTypeTransition(MacroAssembler* masm); 115 void GenerateTypeTransition(MacroAssembler* masm);
116 116
117 void GenerateSmiStub(MacroAssembler* masm); 117 void GenerateSmiStub(MacroAssembler* masm);
118 void GenerateSmiStubSub(MacroAssembler* masm); 118 void GenerateSmiStubSub(MacroAssembler* masm);
119 void GenerateSmiStubBitNot(MacroAssembler* masm); 119 void GenerateSmiStubBitNot(MacroAssembler* masm);
120 void GenerateSmiCodeSub(MacroAssembler* masm, Label* non_smi, Label* slow); 120 void GenerateSmiCodeSub(MacroAssembler* masm, Label* non_smi, Label* slow);
121 void GenerateSmiCodeBitNot(MacroAssembler* masm, Label* slow); 121 void GenerateSmiCodeBitNot(MacroAssembler* masm, Label* slow);
122 122
123 void GenerateHeapNumberStub(MacroAssembler* masm); 123 void GenerateNumberStub(MacroAssembler* masm);
124 void GenerateHeapNumberStubSub(MacroAssembler* masm); 124 void GenerateNumberStubSub(MacroAssembler* masm);
125 void GenerateHeapNumberStubBitNot(MacroAssembler* masm); 125 void GenerateNumberStubBitNot(MacroAssembler* masm);
126 void GenerateHeapNumberCodeSub(MacroAssembler* masm, Label* slow); 126 void GenerateHeapNumberCodeSub(MacroAssembler* masm, Label* slow);
127 void GenerateHeapNumberCodeBitNot(MacroAssembler* masm, Label* slow); 127 void GenerateHeapNumberCodeBitNot(MacroAssembler* masm, Label* slow);
128 128
129 void GenerateGenericStub(MacroAssembler* masm); 129 void GenerateGenericStub(MacroAssembler* masm);
130 void GenerateGenericStubSub(MacroAssembler* masm); 130 void GenerateGenericStubSub(MacroAssembler* masm);
131 void GenerateGenericStubBitNot(MacroAssembler* masm); 131 void GenerateGenericStubBitNot(MacroAssembler* masm);
132 void GenerateGenericCodeFallback(MacroAssembler* masm); 132 void GenerateGenericCodeFallback(MacroAssembler* masm);
133 133
134 virtual int GetCodeKind() { return Code::UNARY_OP_IC; } 134 virtual int GetCodeKind() { return Code::UNARY_OP_IC; }
135 135
(...skipping 649 matching lines...) Expand 10 before | Expand all | Expand 10 after
785 785
786 class LookupModeBits: public BitField<LookupMode, 0, 1> {}; 786 class LookupModeBits: public BitField<LookupMode, 0, 1> {};
787 787
788 LookupMode mode_; 788 LookupMode mode_;
789 }; 789 };
790 790
791 791
792 } } // namespace v8::internal 792 } } // namespace v8::internal
793 793
794 #endif // V8_MIPS_CODE_STUBS_ARM_H_ 794 #endif // V8_MIPS_CODE_STUBS_ARM_H_
OLDNEW
« no previous file with comments | « src/ic.cc ('k') | src/objects.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698