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

Side by Side Diff: src/assembler.cc

Issue 5889001: Add missing files from last commit. (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/gc/
Patch Set: Created 10 years 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 | « no previous file | src/heap-inl.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 655 matching lines...) Expand 10 before | Expand all | Expand 10 after
666 return ExternalReference(RegExpStack::limit_address()); 666 return ExternalReference(RegExpStack::limit_address());
667 } 667 }
668 668
669 669
670 ExternalReference ExternalReference::new_space_start() { 670 ExternalReference ExternalReference::new_space_start() {
671 return ExternalReference(Heap::NewSpaceStart()); 671 return ExternalReference(Heap::NewSpaceStart());
672 } 672 }
673 673
674 674
675 ExternalReference ExternalReference::write_buffer_top() { 675 ExternalReference ExternalReference::write_buffer_top() {
676 return ExternalReference(WriteBuffer::Top()); 676 return ExternalReference(WriteBuffer::TopAddress());
677 } 677 }
678 678
679 679
680 ExternalReference ExternalReference::new_space_mask() { 680 ExternalReference ExternalReference::new_space_mask() {
681 return ExternalReference(reinterpret_cast<Address>(Heap::NewSpaceMask())); 681 return ExternalReference(reinterpret_cast<Address>(Heap::NewSpaceMask()));
682 } 682 }
683 683
684 684
685 ExternalReference ExternalReference::new_space_allocation_top_address() { 685 ExternalReference ExternalReference::new_space_allocation_top_address() {
686 return ExternalReference(Heap::NewSpaceAllocationTopAddress()); 686 return ExternalReference(Heap::NewSpaceAllocationTopAddress());
(...skipping 254 matching lines...) Expand 10 before | Expand all | Expand 10 after
941 assembler_->RecordRelocInfo(RelocInfo::POSITION, state_.current_position); 941 assembler_->RecordRelocInfo(RelocInfo::POSITION, state_.current_position);
942 state_.written_position = state_.current_position; 942 state_.written_position = state_.current_position;
943 written = true; 943 written = true;
944 } 944 }
945 945
946 // Return whether something was written. 946 // Return whether something was written.
947 return written; 947 return written;
948 } 948 }
949 949
950 } } // namespace v8::internal 950 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « no previous file | src/heap-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698