OLD | NEW |
1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 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 101 matching lines...) Loading... |
112 void Generate(MacroAssembler* masm); | 112 void Generate(MacroAssembler* masm); |
113 | 113 |
114 void GenerateTypeTransition(MacroAssembler* masm); | 114 void GenerateTypeTransition(MacroAssembler* masm); |
115 | 115 |
116 void GenerateSmiStub(MacroAssembler* masm); | 116 void GenerateSmiStub(MacroAssembler* masm); |
117 void GenerateSmiStubSub(MacroAssembler* masm); | 117 void GenerateSmiStubSub(MacroAssembler* masm); |
118 void GenerateSmiStubBitNot(MacroAssembler* masm); | 118 void GenerateSmiStubBitNot(MacroAssembler* masm); |
119 void GenerateSmiCodeSub(MacroAssembler* masm, Label* non_smi, Label* slow); | 119 void GenerateSmiCodeSub(MacroAssembler* masm, Label* non_smi, Label* slow); |
120 void GenerateSmiCodeBitNot(MacroAssembler* masm, Label* slow); | 120 void GenerateSmiCodeBitNot(MacroAssembler* masm, Label* slow); |
121 | 121 |
122 void GenerateHeapNumberStub(MacroAssembler* masm); | 122 void GenerateNumberStub(MacroAssembler* masm); |
123 void GenerateHeapNumberStubSub(MacroAssembler* masm); | 123 void GenerateNumberStubSub(MacroAssembler* masm); |
124 void GenerateHeapNumberStubBitNot(MacroAssembler* masm); | 124 void GenerateNumberStubBitNot(MacroAssembler* masm); |
125 void GenerateHeapNumberCodeSub(MacroAssembler* masm, Label* slow); | 125 void GenerateHeapNumberCodeSub(MacroAssembler* masm, Label* slow); |
126 void GenerateHeapNumberCodeBitNot(MacroAssembler* masm, Label* slow); | 126 void GenerateHeapNumberCodeBitNot(MacroAssembler* masm, Label* slow); |
127 | 127 |
128 void GenerateGenericStub(MacroAssembler* masm); | 128 void GenerateGenericStub(MacroAssembler* masm); |
129 void GenerateGenericStubSub(MacroAssembler* masm); | 129 void GenerateGenericStubSub(MacroAssembler* masm); |
130 void GenerateGenericStubBitNot(MacroAssembler* masm); | 130 void GenerateGenericStubBitNot(MacroAssembler* masm); |
131 void GenerateGenericCodeFallback(MacroAssembler* masm); | 131 void GenerateGenericCodeFallback(MacroAssembler* masm); |
132 | 132 |
133 virtual int GetCodeKind() { return Code::UNARY_OP_IC; } | 133 virtual int GetCodeKind() { return Code::UNARY_OP_IC; } |
134 | 134 |
(...skipping 656 matching lines...) Loading... |
791 | 791 |
792 class LookupModeBits: public BitField<LookupMode, 0, 1> {}; | 792 class LookupModeBits: public BitField<LookupMode, 0, 1> {}; |
793 | 793 |
794 LookupMode mode_; | 794 LookupMode mode_; |
795 }; | 795 }; |
796 | 796 |
797 | 797 |
798 } } // namespace v8::internal | 798 } } // namespace v8::internal |
799 | 799 |
800 #endif // V8_ARM_CODE_STUBS_ARM_H_ | 800 #endif // V8_ARM_CODE_STUBS_ARM_H_ |
OLD | NEW |