search for: fpinst2

Displaying 5 results from an estimated 5 matches for "fpinst2".

Did you mean: fpinst
2013 May 30
9
[PATCH v2 0/2] Implement VFP context switch for arm32
Hello, This is the second version of this patch series. I only implement the VPF context switch support for arm32 and add dummy function to avoid compilation on arm64. I have switched the order of the patch because the old second one can be applied alone and the patch are cleaner :). For all the changes see each patch. Cheers, Julien Grall (2): xen/arm: don''t enable VFP on XEN
2005 Apr 29
1
[LLVMdev] Floating point instructions patch
...n (I can't create new VM programs at the moment), but it compiles OK ;-) Please look over it and see if there are some more changes you'd like me to make before you can commit it... m. -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: fpinst2.patch URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20050429/852db12c/attachment.ksh>
2005 Apr 28
0
[LLVMdev] Floating point instructions patch
On Thu, 28 Apr 2005, Morten Ofstad wrote: > I have been gone for a while, finishing work on my Master's thesis... Hi Morten, congrats! :) > Now that I'm back I updated LLVM to the most recent version and found > that my FP_ABS SelectionDAGNode type and code generation was now > conflicting with the new FABS node type. I brought the rest of my local > modifications in
2005 Apr 28
3
[LLVMdev] Floating point instructions patch
Hello, I have been gone for a while, finishing work on my Master's thesis... Now that I'm back I updated LLVM to the most recent version and found that my FP_ABS SelectionDAGNode type and code generation was now conflicting with the new FABS node type. I brought the rest of my local modifications in line with the FABS implementation, so here is my patch that includes sqrt, sin and cos
2013 Oct 08
3
Re: [PATCH v4 1/9] xen/arm: Implement hvm save and restore
...truct hvm_hw_vfp >> +{ >> + uint64_t fpregs1[16]; /* {d0-d15} */ >> + uint64_t fpregs2[16]; /* {d16-d31} */ >> + uint32_t fpexc; >> + uint32_t fpscr; >> + /* VFP implementation specific state */ >> + uint32_t fpinst; >> + uint32_t fpinst2; >> +}; >> + >> +DECLARE_HVM_SAVE_TYPE(VFP, 4, struct hvm_hw_vfp); >> + >> +/* >> + * Largest type-code in use >> + */ >> +#define HVM_SAVE_CODE_MAX 4 >> + >> #endif >> >> /* >> > > >-- >Julien Grall