Home | History | Annotate | Download | only in ia32

Lines Matching full:result_end

727                                              Register result_end,
749 ASSERT(!scratch.is(result_end));
756 void MacroAssembler::UpdateAllocationTopHelper(Register result_end,
759 test(result_end, Immediate(kObjectAlignmentMask));
768 mov(Operand::StaticVariable(new_space_allocation_top), result_end);
770 mov(Operand(scratch, 0), result_end);
777 Register result_end,
781 ASSERT(!result.is(result_end));
784 LoadAllocationTopHelper(result, result_end, scratch, flags);
789 lea(result_end, Operand(result, object_size));
790 cmp(result_end, Operand::StaticVariable(new_space_allocation_limit));
799 UpdateAllocationTopHelper(result_end, scratch);
807 Register result_end,
811 ASSERT(!result.is(result_end));
814 LoadAllocationTopHelper(result, result_end, scratch, flags);
819 lea(result_end, Operand(result, element_count, element_size, header_size));
820 cmp(result_end, Operand::StaticVariable(new_space_allocation_limit));
829 UpdateAllocationTopHelper(result_end, scratch);
835 Register result_end,
839 ASSERT(!result.is(result_end));
842 LoadAllocationTopHelper(result, result_end, scratch, flags);
847 if (!object_size.is(result_end)) {
848 mov(result_end, object_size);
850 add(result_end, Operand(result));
851 cmp(result_end, Operand::StaticVariable(new_space_allocation_limit));
860 UpdateAllocationTopHelper(result_end, scratch);