| 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 408 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 419 // Static variable RegExpStack::limit_address() | 419 // Static variable RegExpStack::limit_address() |
| 420 static ExternalReference address_of_regexp_stack_limit(); | 420 static ExternalReference address_of_regexp_stack_limit(); |
| 421 | 421 |
| 422 // Static variables for RegExp. | 422 // Static variables for RegExp. |
| 423 static ExternalReference address_of_static_offsets_vector(); | 423 static ExternalReference address_of_static_offsets_vector(); |
| 424 static ExternalReference address_of_regexp_stack_memory_address(); | 424 static ExternalReference address_of_regexp_stack_memory_address(); |
| 425 static ExternalReference address_of_regexp_stack_memory_size(); | 425 static ExternalReference address_of_regexp_stack_memory_size(); |
| 426 | 426 |
| 427 // Static variable Heap::NewSpaceStart() | 427 // Static variable Heap::NewSpaceStart() |
| 428 static ExternalReference new_space_start(); | 428 static ExternalReference new_space_start(); |
| 429 static ExternalReference new_space_mask(); |
| 429 static ExternalReference heap_always_allocate_scope_depth(); | 430 static ExternalReference heap_always_allocate_scope_depth(); |
| 430 | 431 |
| 431 // Used for fast allocation in generated code. | 432 // Used for fast allocation in generated code. |
| 432 static ExternalReference new_space_allocation_top_address(); | 433 static ExternalReference new_space_allocation_top_address(); |
| 433 static ExternalReference new_space_allocation_limit_address(); | 434 static ExternalReference new_space_allocation_limit_address(); |
| 434 | 435 |
| 435 static ExternalReference double_fp_operation(Token::Value operation); | 436 static ExternalReference double_fp_operation(Token::Value operation); |
| 436 static ExternalReference compare_doubles(); | 437 static ExternalReference compare_doubles(); |
| 437 | 438 |
| 438 static ExternalReference handle_scope_extensions_address(); | 439 static ExternalReference handle_scope_extensions_address(); |
| (...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 532 unsigned int num_bits_set; | 533 unsigned int num_bits_set; |
| 533 for (num_bits_set = 0; x; x >>= 1) { | 534 for (num_bits_set = 0; x; x >>= 1) { |
| 534 num_bits_set += x & 1; | 535 num_bits_set += x & 1; |
| 535 } | 536 } |
| 536 return num_bits_set; | 537 return num_bits_set; |
| 537 } | 538 } |
| 538 | 539 |
| 539 } } // namespace v8::internal | 540 } } // namespace v8::internal |
| 540 | 541 |
| 541 #endif // V8_ASSEMBLER_H_ | 542 #endif // V8_ASSEMBLER_H_ |
| OLD | NEW |