http://llvm.org/bugs/show_bug.cgi?id=10884

           Summary: [AVX] crash in generated code due to %rbp being
                    clobbered
           Product: new-bugs
           Version: unspecified
          Platform: PC
        OS/Version: All
            Status: NEW
          Severity: normal
          Priority: P
         Component: new bugs
        AssignedTo: [email protected]
        ReportedBy: [email protected]
                CC: [email protected]


Created an attachment (id=7236)
 --> (http://llvm.org/bugs/attachment.cgi?id=7236)
test case

I'm seeing a crash upon exiting the _mandelbrot_ispc function defined in the
attached test case.  Upon examination, it turns out that %rbp is 0x0, such that
things go south upon the following at the end:

    mov %rbp, %rsp
    pop %rbp

The issue seems to be that %ebp has been used as a temporary register in the

    vmovmskps %ymm12, %ebp

instruction at line 242 in the attached assembly file.

-- 
Configure bugmail: http://llvm.org/bugs/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug.
_______________________________________________
LLVMbugs mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/llvmbugs

Reply via email to