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

Side by Side Diff: src/arm/macro-assembler-arm.h

Issue 1459083003: Fix object initialization when slack tracking for it's map is still enabled. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@toon
Patch Set: Fixed arm port Created 5 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
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_ARM_MACRO_ASSEMBLER_ARM_H_ 5 #ifndef V8_ARM_MACRO_ASSEMBLER_ARM_H_
6 #define V8_ARM_MACRO_ASSEMBLER_ARM_H_ 6 #define V8_ARM_MACRO_ASSEMBLER_ARM_H_
7 7
8 #include "src/assembler.h" 8 #include "src/assembler.h"
9 #include "src/bailout-reason.h" 9 #include "src/bailout-reason.h"
10 #include "src/frames.h" 10 #include "src/frames.h"
(...skipping 745 matching lines...) Expand 10 before | Expand all | Expand 10 after
756 // tag_allocated_object is true the result is tagged as as a heap object. 756 // tag_allocated_object is true the result is tagged as as a heap object.
757 // All registers are clobbered also when control continues at the gc_required 757 // All registers are clobbered also when control continues at the gc_required
758 // label. 758 // label.
759 void Allocate(int object_size, 759 void Allocate(int object_size,
760 Register result, 760 Register result,
761 Register scratch1, 761 Register scratch1,
762 Register scratch2, 762 Register scratch2,
763 Label* gc_required, 763 Label* gc_required,
764 AllocationFlags flags); 764 AllocationFlags flags);
765 765
766 void Allocate(Register object_size, 766 void Allocate(Register object_size, Register result, Register result_end,
767 Register result, 767 Register scratch, Label* gc_required, AllocationFlags flags);
768 Register scratch1,
769 Register scratch2,
770 Label* gc_required,
771 AllocationFlags flags);
772 768
773 void AllocateTwoByteString(Register result, 769 void AllocateTwoByteString(Register result,
774 Register length, 770 Register length,
775 Register scratch1, 771 Register scratch1,
776 Register scratch2, 772 Register scratch2,
777 Register scratch3, 773 Register scratch3,
778 Label* gc_required); 774 Label* gc_required);
779 void AllocateOneByteString(Register result, Register length, 775 void AllocateOneByteString(Register result, Register length,
780 Register scratch1, Register scratch2, 776 Register scratch1, Register scratch2,
781 Register scratch3, Label* gc_required); 777 Register scratch3, Label* gc_required);
(...skipping 780 matching lines...) Expand 10 before | Expand all | Expand 10 after
1562 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm-> 1558 #define ACCESS_MASM(masm) masm->stop(__FILE_LINE__); masm->
1563 #else 1559 #else
1564 #define ACCESS_MASM(masm) masm-> 1560 #define ACCESS_MASM(masm) masm->
1565 #endif 1561 #endif
1566 1562
1567 1563
1568 } // namespace internal 1564 } // namespace internal
1569 } // namespace v8 1565 } // namespace v8
1570 1566
1571 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_ 1567 #endif // V8_ARM_MACRO_ASSEMBLER_ARM_H_
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698