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 395 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
406 | 406 |
407 // Static variable Heap::NewSpaceStart() | 407 // Static variable Heap::NewSpaceStart() |
408 static ExternalReference new_space_start(); | 408 static ExternalReference new_space_start(); |
409 static ExternalReference heap_always_allocate_scope_depth(); | 409 static ExternalReference heap_always_allocate_scope_depth(); |
410 | 410 |
411 // Used for fast allocation in generated code. | 411 // Used for fast allocation in generated code. |
412 static ExternalReference new_space_allocation_top_address(); | 412 static ExternalReference new_space_allocation_top_address(); |
413 static ExternalReference new_space_allocation_limit_address(); | 413 static ExternalReference new_space_allocation_limit_address(); |
414 | 414 |
415 static ExternalReference double_fp_operation(Token::Value operation); | 415 static ExternalReference double_fp_operation(Token::Value operation); |
| 416 static ExternalReference compare_doubles(); |
416 | 417 |
417 Address address() const {return reinterpret_cast<Address>(address_);} | 418 Address address() const {return reinterpret_cast<Address>(address_);} |
418 | 419 |
419 #ifdef ENABLE_DEBUGGER_SUPPORT | 420 #ifdef ENABLE_DEBUGGER_SUPPORT |
420 // Function Debug::Break() | 421 // Function Debug::Break() |
421 static ExternalReference debug_break(); | 422 static ExternalReference debug_break(); |
422 | 423 |
423 // Used to check if single stepping is enabled in generated code. | 424 // Used to check if single stepping is enabled in generated code. |
424 static ExternalReference debug_step_in_fp_address(); | 425 static ExternalReference debug_step_in_fp_address(); |
425 #endif | 426 #endif |
(...skipping 45 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
471 static inline bool is_uint5(int x) { return is_uintn(x, 5); } | 472 static inline bool is_uint5(int x) { return is_uintn(x, 5); } |
472 static inline bool is_uint6(int x) { return is_uintn(x, 6); } | 473 static inline bool is_uint6(int x) { return is_uintn(x, 6); } |
473 static inline bool is_uint8(int x) { return is_uintn(x, 8); } | 474 static inline bool is_uint8(int x) { return is_uintn(x, 8); } |
474 static inline bool is_uint12(int x) { return is_uintn(x, 12); } | 475 static inline bool is_uint12(int x) { return is_uintn(x, 12); } |
475 static inline bool is_uint16(int x) { return is_uintn(x, 16); } | 476 static inline bool is_uint16(int x) { return is_uintn(x, 16); } |
476 static inline bool is_uint24(int x) { return is_uintn(x, 24); } | 477 static inline bool is_uint24(int x) { return is_uintn(x, 24); } |
477 | 478 |
478 } } // namespace v8::internal | 479 } } // namespace v8::internal |
479 | 480 |
480 #endif // V8_ASSEMBLER_H_ | 481 #endif // V8_ASSEMBLER_H_ |
OLD | NEW |