| 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 424 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 435 // ExternalReferenceTable in serialize.cc manually. | 435 // ExternalReferenceTable in serialize.cc manually. |
| 436 | 436 |
| 437 static ExternalReference builtin_passed_function(); | 437 static ExternalReference builtin_passed_function(); |
| 438 | 438 |
| 439 // Static variable Factory::the_hole_value.location() | 439 // Static variable Factory::the_hole_value.location() |
| 440 static ExternalReference the_hole_value_location(); | 440 static ExternalReference the_hole_value_location(); |
| 441 | 441 |
| 442 // Static variable StackGuard::address_of_limit() | 442 // Static variable StackGuard::address_of_limit() |
| 443 static ExternalReference address_of_stack_guard_limit(); | 443 static ExternalReference address_of_stack_guard_limit(); |
| 444 | 444 |
| 445 // Static variable RegExpStack::limit_address() |
| 446 static ExternalReference address_of_regexp_stack_limit(); |
| 447 |
| 445 // Function Debug::Break() | 448 // Function Debug::Break() |
| 446 static ExternalReference debug_break(); | 449 static ExternalReference debug_break(); |
| 447 | 450 |
| 448 // Static variable Heap::NewSpaceStart() | 451 // Static variable Heap::NewSpaceStart() |
| 449 static ExternalReference new_space_start(); | 452 static ExternalReference new_space_start(); |
| 450 static ExternalReference heap_always_allocate_scope_depth(); | 453 static ExternalReference heap_always_allocate_scope_depth(); |
| 451 | 454 |
| 452 // Used for fast allocation in generated code. | 455 // Used for fast allocation in generated code. |
| 453 static ExternalReference new_space_allocation_top_address(); | 456 static ExternalReference new_space_allocation_top_address(); |
| 454 static ExternalReference new_space_allocation_limit_address(); | 457 static ExternalReference new_space_allocation_limit_address(); |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 486 static inline bool is_uint4(int x) { return is_uintn(x, 4); } | 489 static inline bool is_uint4(int x) { return is_uintn(x, 4); } |
| 487 static inline bool is_uint5(int x) { return is_uintn(x, 5); } | 490 static inline bool is_uint5(int x) { return is_uintn(x, 5); } |
| 488 static inline bool is_uint8(int x) { return is_uintn(x, 8); } | 491 static inline bool is_uint8(int x) { return is_uintn(x, 8); } |
| 489 static inline bool is_uint12(int x) { return is_uintn(x, 12); } | 492 static inline bool is_uint12(int x) { return is_uintn(x, 12); } |
| 490 static inline bool is_uint16(int x) { return is_uintn(x, 16); } | 493 static inline bool is_uint16(int x) { return is_uintn(x, 16); } |
| 491 static inline bool is_uint24(int x) { return is_uintn(x, 24); } | 494 static inline bool is_uint24(int x) { return is_uintn(x, 24); } |
| 492 | 495 |
| 493 } } // namespace v8::internal | 496 } } // namespace v8::internal |
| 494 | 497 |
| 495 #endif // V8_ASSEMBLER_H_ | 498 #endif // V8_ASSEMBLER_H_ |
| OLD | NEW |