Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/arch/amd64/src/asm.S

    re80329d6 rf77e591d  
    9595memcpy_from_uspace_failover_address:
    9696memcpy_to_uspace_failover_address:
    97         xorl %eax, %eax         /* return 0, failure */
     97        xorq %rax, %rax         /* return 0, failure */
    9898        ret
    9999
     
    143143
    144144set_efer_flag:
    145         movl $0xc0000080, %ecx
     145        movq $0xc0000080, %rcx
    146146        rdmsr
    147147        btsl %edi, %eax
     
    150150
    151151read_efer_flag:
    152         movl $0xc0000080, %ecx
     152        movq $0xc0000080, %rcx
    153153        rdmsr
    154154        ret
     
    243243         * Stop stack traces here if we came from userspace.
    244244         */
    245         xorl %edx, %edx
    246         cmpq $(GDT_SELECTOR(KTEXT_DES)), ISTATE_OFFSET_CS(%rsp)
     245        xorq %rdx, %rdx
     246        cmpq $(gdtselector(KTEXT_DES)), ISTATE_OFFSET_CS(%rsp)
    247247        cmovnzq %rdx, %rbp
    248248
     
    386386        movq ISTATE_OFFSET_RSP(%rsp), %rsp
    387387
    388         /*
    389          * Clear the rest of the scratch registers to prevent information leak.
    390          * The 32-bit XOR on the low GPRs actually clears the entire 64-bit
    391          * register and the instruction is shorter.
    392          */
    393         xorl %edx, %edx
    394         xorl %esi, %esi
    395         xorl %edi, %edi
    396         xorq %r8, %r8
    397         xorq %r9, %r9
    398         xorq %r10, %r10
    399 
    400388        sysretq
    401389
     
    425413        movq %rdi, %rsi
    426414        movq $(PA2KA(0xb8000)), %rdi  /* base of EGA text mode memory */
    427         xorl %eax, %eax
     415        xorq %rax, %rax
    428416       
    429417        /* Read bits 8 - 15 of the cursor address */
     
    505493                movq $(PA2KA(0xb80a0)), %rsi
    506494                movq $(PA2KA(0xb8000)), %rdi
    507                 movl $480, %ecx
     495                movq $480, %rcx
    508496                rep movsq
    509497               
    510498                /* Clear the 24th row */
    511                 xorl %eax, %eax
    512                 movl $20, %ecx
     499                xorq %rax, %rax
     500                movq $20, %rcx
    513501                rep stosq
    514502               
Note: See TracChangeset for help on using the changeset viewer.