| 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 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 case less: | 324 case less: |
| 325 return greater; | 325 return greater; |
| 326 case greater: | 326 case greater: |
| 327 return less; | 327 return less; |
| 328 case greater_equal: | 328 case greater_equal: |
| 329 return less_equal; | 329 return less_equal; |
| 330 case less_equal: | 330 case less_equal: |
| 331 return greater_equal; | 331 return greater_equal; |
| 332 default: | 332 default: |
| 333 return cc; | 333 return cc; |
| 334 }; | 334 } |
| 335 } | 335 } |
| 336 | 336 |
| 337 | 337 |
| 338 // ----------------------------------------------------------------------------- | 338 // ----------------------------------------------------------------------------- |
| 339 // Machine instruction Immediates | 339 // Machine instruction Immediates |
| 340 | 340 |
| 341 class Immediate BASE_EMBEDDED { | 341 class Immediate BASE_EMBEDDED { |
| 342 public: | 342 public: |
| 343 inline explicit Immediate(int x); | 343 inline explicit Immediate(int x); |
| 344 inline explicit Immediate(const ExternalReference& ext); | 344 inline explicit Immediate(const ExternalReference& ext); |
| (...skipping 943 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1288 private: | 1288 private: |
| 1289 Assembler* assembler_; | 1289 Assembler* assembler_; |
| 1290 #ifdef DEBUG | 1290 #ifdef DEBUG |
| 1291 int space_before_; | 1291 int space_before_; |
| 1292 #endif | 1292 #endif |
| 1293 }; | 1293 }; |
| 1294 | 1294 |
| 1295 } } // namespace v8::internal | 1295 } } // namespace v8::internal |
| 1296 | 1296 |
| 1297 #endif // V8_IA32_ASSEMBLER_IA32_H_ | 1297 #endif // V8_IA32_ASSEMBLER_IA32_H_ |
| OLD | NEW |