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

Side by Side Diff: src/x64/code-stubs-x64.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/type-info.cc ('k') | src/x64/code-stubs-x64.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 109 matching lines...) Expand 10 before | Expand all | Expand 10 after
120 void GenerateSmiStubBitNot(MacroAssembler* masm); 120 void GenerateSmiStubBitNot(MacroAssembler* masm);
121 void GenerateSmiCodeSub(MacroAssembler* masm, 121 void GenerateSmiCodeSub(MacroAssembler* masm,
122 Label* non_smi, 122 Label* non_smi,
123 Label* slow, 123 Label* slow,
124 Label::Distance non_smi_near = Label::kFar, 124 Label::Distance non_smi_near = Label::kFar,
125 Label::Distance slow_near = Label::kFar); 125 Label::Distance slow_near = Label::kFar);
126 void GenerateSmiCodeBitNot(MacroAssembler* masm, 126 void GenerateSmiCodeBitNot(MacroAssembler* masm,
127 Label* non_smi, 127 Label* non_smi,
128 Label::Distance non_smi_near); 128 Label::Distance non_smi_near);
129 129
130 void GenerateHeapNumberStub(MacroAssembler* masm); 130 void GenerateNumberStub(MacroAssembler* masm);
131 void GenerateHeapNumberStubSub(MacroAssembler* masm); 131 void GenerateNumberStubSub(MacroAssembler* masm);
132 void GenerateHeapNumberStubBitNot(MacroAssembler* masm); 132 void GenerateNumberStubBitNot(MacroAssembler* masm);
133 void GenerateHeapNumberCodeSub(MacroAssembler* masm, Label* slow); 133 void GenerateHeapNumberCodeSub(MacroAssembler* masm, Label* slow);
134 void GenerateHeapNumberCodeBitNot(MacroAssembler* masm, Label* slow); 134 void GenerateHeapNumberCodeBitNot(MacroAssembler* masm, Label* slow);
135 135
136 void GenerateGenericStub(MacroAssembler* masm); 136 void GenerateGenericStub(MacroAssembler* masm);
137 void GenerateGenericStubSub(MacroAssembler* masm); 137 void GenerateGenericStubSub(MacroAssembler* masm);
138 void GenerateGenericStubBitNot(MacroAssembler* masm); 138 void GenerateGenericStubBitNot(MacroAssembler* masm);
139 void GenerateGenericCodeFallback(MacroAssembler* masm); 139 void GenerateGenericCodeFallback(MacroAssembler* masm);
140 140
141 virtual int GetCodeKind() { return Code::UNARY_OP_IC; } 141 virtual int GetCodeKind() { return Code::UNARY_OP_IC; }
142 142
(...skipping 471 matching lines...) Expand 10 before | Expand all | Expand 10 after
614 RememberedSetAction remembered_set_action_; 614 RememberedSetAction remembered_set_action_;
615 SaveFPRegsMode save_fp_regs_mode_; 615 SaveFPRegsMode save_fp_regs_mode_;
616 Label slow_; 616 Label slow_;
617 RegisterAllocation regs_; 617 RegisterAllocation regs_;
618 }; 618 };
619 619
620 620
621 } } // namespace v8::internal 621 } } // namespace v8::internal
622 622
623 #endif // V8_X64_CODE_STUBS_X64_H_ 623 #endif // V8_X64_CODE_STUBS_X64_H_
OLDNEW
« no previous file with comments | « src/type-info.cc ('k') | src/x64/code-stubs-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698