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

Side by Side Diff: src/assembler.cc

Issue 8700: As discussed on the phone, I'd like your thoughts on the... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: '' Created 12 years, 1 month 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/codegen.h » ('j') | src/heap.h » ('J')
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 546 matching lines...) Expand 10 before | Expand all | Expand 10 after
557 557
558 558
559 ExternalReference ExternalReference::new_space_start() { 559 ExternalReference ExternalReference::new_space_start() {
560 return ExternalReference(Heap::NewSpaceStart()); 560 return ExternalReference(Heap::NewSpaceStart());
561 } 561 }
562 562
563 ExternalReference ExternalReference::new_space_allocation_top_address() { 563 ExternalReference ExternalReference::new_space_allocation_top_address() {
564 return ExternalReference(Heap::NewSpaceAllocationTopAddress()); 564 return ExternalReference(Heap::NewSpaceAllocationTopAddress());
565 } 565 }
566 566
567 ExternalReference ExternalReference::heap_always_allocate_scope_depth() {
568 return ExternalReference(Heap::always_allocate_scope_depth_address());
569 }
570
567 ExternalReference ExternalReference::new_space_allocation_limit_address() { 571 ExternalReference ExternalReference::new_space_allocation_limit_address() {
568 return ExternalReference(Heap::NewSpaceAllocationLimitAddress()); 572 return ExternalReference(Heap::NewSpaceAllocationLimitAddress());
569 } 573 }
570 574
571 ExternalReference ExternalReference::debug_step_in_fp_address() { 575 ExternalReference ExternalReference::debug_step_in_fp_address() {
572 return ExternalReference(Debug::step_in_fp_addr()); 576 return ExternalReference(Debug::step_in_fp_addr());
573 } 577 }
574 578
575 } } // namespace v8::internal 579 } } // namespace v8::internal
OLDNEW
« no previous file with comments | « src/assembler.h ('k') | src/codegen.h » ('j') | src/heap.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698