Lines Matching refs:object_size
3925 void MacroAssembler::Allocate(int object_size, in Allocate() argument
3931 DCHECK(object_size <= kMaxRegularHeapObjectSize); in Allocate()
3948 object_size *= kPointerSize; in Allocate()
3950 DCHECK_EQ(0, object_size & kObjectAlignmentMask); in Allocate()
4003 Addu(result_end, result, Operand(object_size)); in Allocate()
4016 void MacroAssembler::Allocate(Register object_size, Register result, in Allocate() argument
4033 DCHECK(!AreAliased(object_size, result, scratch, t9, at)); in Allocate()
4035 DCHECK((flags & DOUBLE_ALIGNMENT) == 0 || !object_size.is(result_end)); in Allocate()
4088 Lsa(result_end, result, object_size, kPointerSizeLog2); in Allocate()
4090 Addu(result_end, result, Operand(object_size)); in Allocate()
4110 void MacroAssembler::FastAllocate(int object_size, Register result, in FastAllocate() argument
4113 DCHECK(object_size <= kMaxRegularHeapObjectSize); in FastAllocate()
4118 object_size *= kPointerSize; in FastAllocate()
4120 DCHECK_EQ(0, object_size & kObjectAlignmentMask); in FastAllocate()
4145 Addu(result_end, result, Operand(object_size)); in FastAllocate()
4153 void MacroAssembler::FastAllocate(Register object_size, Register result, in FastAllocate() argument
4158 DCHECK(!AreAliased(object_size, result, scratch, t9, at)); in FastAllocate()
4160 DCHECK((flags & DOUBLE_ALIGNMENT) == 0 || !object_size.is(result_end)); in FastAllocate()
4188 Lsa(result_end, result, object_size, kPointerSizeLog2); in FastAllocate()
4190 Addu(result_end, result, Operand(object_size)); in FastAllocate()