| OLD | NEW |
| 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 113 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 124 Label* undo, | 124 Label* undo, |
| 125 Label* slow, | 125 Label* slow, |
| 126 Label::Distance non_smi_near = Label::kFar, | 126 Label::Distance non_smi_near = Label::kFar, |
| 127 Label::Distance undo_near = Label::kFar, | 127 Label::Distance undo_near = Label::kFar, |
| 128 Label::Distance slow_near = Label::kFar); | 128 Label::Distance slow_near = Label::kFar); |
| 129 void GenerateSmiCodeBitNot(MacroAssembler* masm, | 129 void GenerateSmiCodeBitNot(MacroAssembler* masm, |
| 130 Label* non_smi, | 130 Label* non_smi, |
| 131 Label::Distance non_smi_near = Label::kFar); | 131 Label::Distance non_smi_near = Label::kFar); |
| 132 void GenerateSmiCodeUndo(MacroAssembler* masm); | 132 void GenerateSmiCodeUndo(MacroAssembler* masm); |
| 133 | 133 |
| 134 void GenerateHeapNumberStub(MacroAssembler* masm); | 134 void GenerateNumberStub(MacroAssembler* masm); |
| 135 void GenerateHeapNumberStubSub(MacroAssembler* masm); | 135 void GenerateNumberStubSub(MacroAssembler* masm); |
| 136 void GenerateHeapNumberStubBitNot(MacroAssembler* masm); | 136 void GenerateNumberStubBitNot(MacroAssembler* masm); |
| 137 void GenerateHeapNumberCodeSub(MacroAssembler* masm, Label* slow); | 137 void GenerateHeapNumberCodeSub(MacroAssembler* masm, Label* slow); |
| 138 void GenerateHeapNumberCodeBitNot(MacroAssembler* masm, Label* slow); | 138 void GenerateHeapNumberCodeBitNot(MacroAssembler* masm, Label* slow); |
| 139 | 139 |
| 140 void GenerateGenericStub(MacroAssembler* masm); | 140 void GenerateGenericStub(MacroAssembler* masm); |
| 141 void GenerateGenericStubSub(MacroAssembler* masm); | 141 void GenerateGenericStubSub(MacroAssembler* masm); |
| 142 void GenerateGenericStubBitNot(MacroAssembler* masm); | 142 void GenerateGenericStubBitNot(MacroAssembler* masm); |
| 143 void GenerateGenericCodeFallback(MacroAssembler* masm); | 143 void GenerateGenericCodeFallback(MacroAssembler* masm); |
| 144 | 144 |
| 145 virtual int GetCodeKind() { return Code::UNARY_OP_IC; } | 145 virtual int GetCodeKind() { return Code::UNARY_OP_IC; } |
| 146 | 146 |
| (...skipping 490 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 637 Register address_; | 637 Register address_; |
| 638 RememberedSetAction remembered_set_action_; | 638 RememberedSetAction remembered_set_action_; |
| 639 SaveFPRegsMode save_fp_regs_mode_; | 639 SaveFPRegsMode save_fp_regs_mode_; |
| 640 RegisterAllocation regs_; | 640 RegisterAllocation regs_; |
| 641 }; | 641 }; |
| 642 | 642 |
| 643 | 643 |
| 644 } } // namespace v8::internal | 644 } } // namespace v8::internal |
| 645 | 645 |
| 646 #endif // V8_IA32_CODE_STUBS_IA32_H_ | 646 #endif // V8_IA32_CODE_STUBS_IA32_H_ |
| OLD | NEW |