OLD | NEW |
1 // Copyright (c) 1994-2006 Sun Microsystems Inc. | 1 // Copyright (c) 1994-2006 Sun Microsystems Inc. |
2 // All Rights Reserved. | 2 // All Rights Reserved. |
3 // | 3 // |
4 // Redistribution and use in source and binary forms, with or without | 4 // Redistribution and use in source and binary forms, with or without |
5 // modification, are permitted provided that the following conditions are | 5 // modification, are permitted provided that the following conditions are |
6 // met: | 6 // met: |
7 // | 7 // |
8 // - Redistributions of source code must retain the above copyright notice, | 8 // - Redistributions of source code must retain the above copyright notice, |
9 // this list of conditions and the following disclaimer. | 9 // this list of conditions and the following disclaimer. |
10 // | 10 // |
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
189 if (distance == kNear) { | 189 if (distance == kNear) { |
190 near_link_pos_ = pos + 1; | 190 near_link_pos_ = pos + 1; |
191 ASSERT(is_near_linked()); | 191 ASSERT(is_near_linked()); |
192 } else { | 192 } else { |
193 pos_ = pos + 1; | 193 pos_ = pos + 1; |
194 ASSERT(is_linked()); | 194 ASSERT(is_linked()); |
195 } | 195 } |
196 } | 196 } |
197 | 197 |
198 friend class Assembler; | 198 friend class Assembler; |
199 friend class RegexpAssembler; | |
200 friend class Displacement; | 199 friend class Displacement; |
201 friend class RegExpMacroAssemblerIrregexp; | 200 friend class RegExpMacroAssemblerIrregexp; |
202 }; | 201 }; |
203 | 202 |
204 | 203 |
205 enum SaveFPRegsMode { kDontSaveFPRegs, kSaveFPRegs }; | 204 enum SaveFPRegsMode { kDontSaveFPRegs, kSaveFPRegs }; |
206 | 205 |
207 | 206 |
208 // ----------------------------------------------------------------------------- | 207 // ----------------------------------------------------------------------------- |
209 // Relocation information | 208 // Relocation information |
(...skipping 847 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1057 public: | 1056 public: |
1058 NullCallWrapper() { } | 1057 NullCallWrapper() { } |
1059 virtual ~NullCallWrapper() { } | 1058 virtual ~NullCallWrapper() { } |
1060 virtual void BeforeCall(int call_size) const { } | 1059 virtual void BeforeCall(int call_size) const { } |
1061 virtual void AfterCall() const { } | 1060 virtual void AfterCall() const { } |
1062 }; | 1061 }; |
1063 | 1062 |
1064 } } // namespace v8::internal | 1063 } } // namespace v8::internal |
1065 | 1064 |
1066 #endif // V8_ASSEMBLER_H_ | 1065 #endif // V8_ASSEMBLER_H_ |
OLD | NEW |