Re: Calling Convention for Vector ?
Earl Killian
Vectors are passed in memory and returned in memory. Vectors are arbitrary length, whereas the vector registers are fixed length, and can only be used to temporarily hold a portion of a memory vector. Thus it doesn’t make sense to pass or return things in vector registers, or to have the registers saved or restored as part of the calling convention.
toggle quoted message
Show quoted text
On Dec 25, 2019, at 20:17, "戎杰杰 <jiejie.rjj@...> wrote: |
|