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

Side by Side Diff: src/assembler.cc

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/assembler.h ('k') | src/code-stubs.h » ('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 629 matching lines...) Expand 10 before | Expand all | Expand 10 after
640 ExternalReference ExternalReference::keyed_lookup_cache_field_offsets() { 640 ExternalReference ExternalReference::keyed_lookup_cache_field_offsets() {
641 return ExternalReference(KeyedLookupCache::field_offsets_address()); 641 return ExternalReference(KeyedLookupCache::field_offsets_address());
642 } 642 }
643 643
644 644
645 ExternalReference ExternalReference::the_hole_value_location() { 645 ExternalReference ExternalReference::the_hole_value_location() {
646 return ExternalReference(Factory::the_hole_value().location()); 646 return ExternalReference(Factory::the_hole_value().location());
647 } 647 }
648 648
649 649
650 ExternalReference ExternalReference::arguments_marker_location() {
651 return ExternalReference(Factory::arguments_marker().location());
652 }
653
654
650 ExternalReference ExternalReference::roots_address() { 655 ExternalReference ExternalReference::roots_address() {
651 return ExternalReference(Heap::roots_address()); 656 return ExternalReference(Heap::roots_address());
652 } 657 }
653 658
654 659
655 ExternalReference ExternalReference::address_of_stack_limit() { 660 ExternalReference ExternalReference::address_of_stack_limit() {
656 return ExternalReference(StackGuard::address_of_jslimit()); 661 return ExternalReference(StackGuard::address_of_jslimit());
657 } 662 }
658 663
659 664
(...skipping 276 matching lines...) Expand 10 before | Expand all | Expand 10 after
936 assembler_->RecordRelocInfo(RelocInfo::POSITION, state_.current_position); 941 assembler_->RecordRelocInfo(RelocInfo::POSITION, state_.current_position);
937 state_.written_position = state_.current_position; 942 state_.written_position = state_.current_position;
938 written = true; 943 written = true;
939 } 944 }
940 945
941 // Return whether something was written. 946 // Return whether something was written.
942 return written; 947 return written;
943 } 948 }
944 949
945 } } // namespace v8::internal 950 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/assembler.h ('k') | src/code-stubs.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698