Lines Matching refs:object_size
2920 void MacroAssembler::Allocate(int object_size, in Allocate() argument
2926 DCHECK(object_size <= kMaxRegularHeapObjectSize); in Allocate()
2948 object_size *= kPointerSize; in Allocate()
2950 DCHECK(0 == (object_size & kObjectAlignmentMask)); in Allocate()
2987 Adds(result_end, result, object_size); in Allocate()
3001 void MacroAssembler::Allocate(Register object_size, Register result, in Allocate() argument
3020 DCHECK(!AreAliased(object_size, result, scratch, scratch2)); in Allocate()
3022 DCHECK(object_size.Is64Bits() && result.Is64Bits() && scratch.Is64Bits() && in Allocate()
3060 Adds(result_end, result, Operand(object_size, LSL, kPointerSizeLog2)); in Allocate()
3062 Adds(result_end, result, object_size); in Allocate()
3082 void MacroAssembler::FastAllocate(int object_size, Register result, in FastAllocate() argument
3085 DCHECK(object_size <= kMaxRegularHeapObjectSize); in FastAllocate()
3092 object_size *= kPointerSize; in FastAllocate()
3094 DCHECK(0 == (object_size & kObjectAlignmentMask)); in FastAllocate()
3110 Adds(result_end, result, object_size); in FastAllocate()
3116 void MacroAssembler::FastAllocate(Register object_size, Register result, in FastAllocate() argument
3120 DCHECK(!AreAliased(object_size, result, scratch)); in FastAllocate()
3122 DCHECK(object_size.Is64Bits() && result.Is64Bits() && scratch.Is64Bits() && in FastAllocate()
3139 Adds(result_end, result, Operand(object_size, LSL, kPointerSizeLog2)); in FastAllocate()
3141 Adds(result_end, result, object_size); in FastAllocate()