Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(276)

Side by Side Diff: src/assembler.h

Issue 6113004: Version 3.0.7 (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/array.js ('k') | src/assembler.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 494 matching lines...) Expand 10 before | Expand all | Expand 10 after
505 static ExternalReference compute_output_frames_function(); 505 static ExternalReference compute_output_frames_function();
506 static ExternalReference global_contexts_list(); 506 static ExternalReference global_contexts_list();
507 507
508 // Static data in the keyed lookup cache. 508 // Static data in the keyed lookup cache.
509 static ExternalReference keyed_lookup_cache_keys(); 509 static ExternalReference keyed_lookup_cache_keys();
510 static ExternalReference keyed_lookup_cache_field_offsets(); 510 static ExternalReference keyed_lookup_cache_field_offsets();
511 511
512 // Static variable Factory::the_hole_value.location() 512 // Static variable Factory::the_hole_value.location()
513 static ExternalReference the_hole_value_location(); 513 static ExternalReference the_hole_value_location();
514 514
515 // Static variable Factory::arguments_marker.location()
516 static ExternalReference arguments_marker_location();
517
515 // Static variable Heap::roots_address() 518 // Static variable Heap::roots_address()
516 static ExternalReference roots_address(); 519 static ExternalReference roots_address();
517 520
518 // Static variable StackGuard::address_of_jslimit() 521 // Static variable StackGuard::address_of_jslimit()
519 static ExternalReference address_of_stack_limit(); 522 static ExternalReference address_of_stack_limit();
520 523
521 // Static variable StackGuard::address_of_real_jslimit() 524 // Static variable StackGuard::address_of_real_jslimit()
522 static ExternalReference address_of_real_stack_limit(); 525 static ExternalReference address_of_real_stack_limit();
523 526
524 // Static variable RegExpStack::limit_address() 527 // Static variable RegExpStack::limit_address()
(...skipping 189 matching lines...) Expand 10 before | Expand all | Expand 10 after
714 return num_bits_set; 717 return num_bits_set;
715 } 718 }
716 719
717 // Computes pow(x, y) with the special cases in the spec for Math.pow. 720 // Computes pow(x, y) with the special cases in the spec for Math.pow.
718 double power_double_int(double x, int y); 721 double power_double_int(double x, int y);
719 double power_double_double(double x, double y); 722 double power_double_double(double x, double y);
720 723
721 } } // namespace v8::internal 724 } } // namespace v8::internal
722 725
723 #endif // V8_ASSEMBLER_H_ 726 #endif // V8_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/array.js ('k') | src/assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698