This is the mail archive of the libc-alpha@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

RFC: Should x86-64 support arbitrary calling conventions?


According to x86-64 psABI, xmm0-xmm7 can be used to pass function
parameters.  But ICC also uses xmm8-xmm15 to pass function parameters.
This doesn't work with newer glibc since _dl_runtime_resolve only preserves
the first 8 vector registers:

https://sourceware.org/bugzilla/show_bug.cgi?id=21236

We can use xsave/xrstor to preserve all vector registers to support arbitrary
calling conventions.  But xsave/restor is about 8X slower, comparing against
saving/restoring the first 8 vector registers.

-- 
H.J.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]