search for: fpinst

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

Did you mean: pinst
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
2015 Sep 17
2
Register Number
...any meaning other than to represent a particular register. The 0x01 would be the encoding used in generating the binary. The D0 has id 14 on ARM because there are 13 other registers preceding it: namespace ARM { enum { NoRegister, APSR = 1, APSR_NZCV = 2, CPSR = 3, FPEXC = 4, FPINST = 5, FPSCR = 6, FPSCR_NZCV = 7, FPSID = 8, ITSTATE = 9, LR = 10, PC = 11, SP = 12, SPSR = 13, D0 = 14, ... -Krzysztof -- Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation
2015 Sep 17
2
Register Number
Dear all, in my TestRegisterInfo.td file, I defined a register like this: class TestReg<bits<6> enc, string name> : Register<name> { let HWEncoding{5-0} = enc; let Namespace = "TEST"; } def D0 : TestReg<0x01, "d0">, DwarfRegNum<[1]>; but when I compile, the result I have in TestGenAsmMatcher.inc is this: case 'd': // 7
2005 Apr 28
3
[LLVMdev] Floating point instructions patch
...ncludes "sinh", "cosh" and friends -- as far as I know, these can actually set errno so they should not be in the table... Here is the patch, hope to see it applied soon! m. -------------- next part -------------- An embedded and charset-unspecified text was scrubbed... Name: fpinst.patch URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20050428/7ba2cd6a/attachment.ksh>
2013 Oct 08
3
Re: [PATCH v4 1/9] xen/arm: Implement hvm save and restore
..._timer); >> + >> +struct 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 >> >> /* >> > &...