grub/grub-core/lib/i386/relocator_asm.S

81 lines
1.7 KiB
ArmAsm
Raw Normal View History

2009-11-25 22:39:59 +00:00
/*
* GRUB -- GRand Unified Bootloader
* Copyright (C) 2009 Free Software Foundation, Inc.
*
* GRUB is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* GRUB is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with GRUB. If not, see <http://www.gnu.org/licenses/>.
*/
#include <grub/symbol.h>
#include <grub/i386/memory.h>
2010-01-10 17:59:31 +00:00
.p2align 2
2010-01-09 23:30:33 +00:00
VARIABLE(grub_relocator_backward_start)
2009-11-25 22:39:59 +00:00
/* mov imm32, %eax */
.byte 0xb8
2010-01-09 23:30:33 +00:00
VARIABLE(grub_relocator_backward_dest)
2009-11-25 22:39:59 +00:00
.long 0
movl %eax, %edi
/* mov imm32, %eax */
.byte 0xb8
2010-01-09 23:30:33 +00:00
VARIABLE(grub_relocator_backward_src)
2009-11-25 22:39:59 +00:00
.long 0
movl %eax, %esi
/* mov imm32, %ecx */
.byte 0xb9
2010-01-11 12:40:59 +00:00
VARIABLE(grub_relocator_backward_chunk_size)
2009-11-25 22:39:59 +00:00
.long 0
2010-01-09 23:30:33 +00:00
add %ecx, %esi
add %ecx, %edi
2009-11-25 22:39:59 +00:00
2010-01-09 23:30:33 +00:00
/* Backward movsb is implicitly off-by-one. compensate that. */
sub $1, %esi
sub $1, %edi
2009-11-25 22:39:59 +00:00
/* Backward copy. */
std
rep
2010-01-09 23:30:33 +00:00
movsb
VARIABLE(grub_relocator_backward_end)
2009-11-25 22:39:59 +00:00
2010-01-09 23:30:33 +00:00
VARIABLE(grub_relocator_forward_start)
2009-11-25 22:39:59 +00:00
/* mov imm32, %eax */
.byte 0xb8
2010-01-09 23:30:33 +00:00
VARIABLE(grub_relocator_forward_dest)
2009-11-25 22:39:59 +00:00
.long 0
2010-01-09 23:30:33 +00:00
movl %eax, %edi
2009-11-25 22:39:59 +00:00
2010-01-09 23:30:33 +00:00
/* mov imm32, %rax */
2009-11-25 22:39:59 +00:00
.byte 0xb8
2010-01-09 23:30:33 +00:00
VARIABLE(grub_relocator_forward_src)
2009-11-25 22:39:59 +00:00
.long 0
2010-01-09 23:30:33 +00:00
movl %eax, %esi
2009-11-25 22:39:59 +00:00
/* mov imm32, %ecx */
.byte 0xb9
2010-01-11 12:40:59 +00:00
VARIABLE(grub_relocator_forward_chunk_size)
2009-11-25 22:39:59 +00:00
.long 0
2010-01-09 23:30:33 +00:00
/* Forward copy. */
2009-11-25 22:39:59 +00:00
cld
2010-01-09 23:30:33 +00:00
rep
movsb
VARIABLE(grub_relocator_forward_end)