search for: reti

Displaying 20 results from an estimated 59 matches for "reti".

Did you mean: ret
2020 Mar 31
3
How to add new AVR targets?
Hi Dylan, looks ok now. One thing: the ISR is now: __vector_21: ; @__vector_21 __vector_21$local: sei push r0 push r1 in r0, 63 push r0 clr r0 push r24 lds r24, v1 sts v2, r24 pop r24 pop r0 out 63, r0 pop r1 pop r0 reti There are unneccessary push/pops of r1 and r0 too, since the clr is useless ... GCC had the same problem but they made improvements. Thanks. Am 31.03.20 um 08:09 schrieb Wilhelm Meier via llvm-dev: > Hi Dylan, > > thank you. I'll be back with a test ... > > Wilhelm > &g...
2020 Mar 28
2
How to add new AVR targets?
...or_21v>: 74: 80 91 60 00 lds r24, 0x0060 ; 0x800060 <__data_end> 78: 80 93 61 00 sts 0x0061, r24 ; 0x800061 <v2> 7c: 08 95 ret So, in C++ mode it is not recognized as ISR due to name mangling. Furthermore there are no register push/pos and no reti. Whats wrong? Thanks. Am 11.03.20 um 08:13 schrieb Dylan McKay: > Here you go Wilhelm, > > https://github.com/dylanmckay/clang-avr-libc-interrupt-example > > > > On Thu, Mar 5, 2020 at 4:05 AM Wilhelm Meier <wilhelm.meier at hs-kl.de > <mailto:wilhelm.meier at...
2020 Mar 31
2
How to add new AVR targets?
...; > > > On Sat, Mar 28, 2020 at 6:36 PM Wilhelm Meier <wilhelm.meier at hs-kl.de > > <mailto:wilhelm.meier at hs-kl.de>> wrote: > > > > Answering partly to myself there was a extern "C" missing. > > > > But the register pushes ans reti are still missing. > > > > Whats wrong? > > > > Am 28.03.20 um 06:26 schrieb Wilhelm Meier via llvm-dev: > > > Hi Dylan, > > > > > > the following code > > > > > > volatile uint8_t v1; > > &gt...
2020 Mar 30
2
How to add new AVR targets?
...IR generated from your C++ file? This can be achieved with 'clang -S -emit-llvm' Cheers On Sat, Mar 28, 2020 at 6:36 PM Wilhelm Meier <wilhelm.meier at hs-kl.de> wrote: > Answering partly to myself there was a extern "C" missing. > > But the register pushes ans reti are still missing. > > Whats wrong? > > Am 28.03.20 um 06:26 schrieb Wilhelm Meier via llvm-dev: > > Hi Dylan, > > > > the following code > > > > volatile uint8_t v1; > > volatile uint8_t v2; > > > > __attribute__((interrupt)) void __vecto...
2012 Jan 05
9
[PATCHv2 0 of 2] Deal with IOMMU faults in softirq context.
...passthrough/vtd/iommu.c | 39 ++++++++++++++++++++++++++++++++++++--- 2 files changed, 80 insertions(+), 6 deletions(-) -- <<This happens because I choose it to happen!>> (Raistlin Majere) ------------------------------------------------------------------- Dario Faggioli, http://retis.sssup.it/people/faggioli Senior Software Engineer, Citrix Systems R&D Ltd., Cambridge (UK) PhD Candidate, ReTiS Lab, Scuola Superiore Sant''Anna, Pisa (Italy) _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource....
2020 Apr 08
2
How to add new AVR targets?
...t;> sei >> push r0 >> push r1 >> in r0, 63 >> push r0 >> clr r0 >> push r24 >> lds r24, v1 >> sts v2, r24 >> pop r24 >> pop r0 >> out 63, r0 >> pop r1 >> pop r0 >> reti >> >> There are unneccessary push/pops of r1 and r0 too, since the clr is >> useless ... GCC had the same problem but they made improvements. >> >> Thanks. >> >> >> Am 31.03.20 um 08:09 schrieb Wilhelm Meier via llvm-dev: >>> Hi Dylan, >&g...
2011 Dec 06
1
Re: [RFC/RFT][PATCH 0 of 3] rework locking in sched_adjust
...   |   34 ++-------------------------------- > 4 files changed, 130 insertions(+), 66 deletions(-) > > -- > <<This happens because I choose it to happen!>> (Raistlin Majere) > ------------------------------------------------------------------- > Dario Faggioli, http://retis.sssup.it/people/faggioli > Senior Software Engineer, Citrix Systems R&D Ltd., Cambridge (UK) > PhD Candidate, ReTiS Lab, Scuola Superiore Sant''Anna, Pisa (Italy) > > > > _______________________________________________ > Xen-devel mailing list > Xen-devel@lists....
2020 Mar 04
2
How to add new AVR targets?
...Dylan McKay: > > * *The C/C++ function needs to be declared with either the calling > convention avr-interrupt or avr-non-blocking-interrupt.* Skipping > this step will cause regular ret instructions to be emitted for > return-from-subroutine, instead of the required reti for interrupt > handlers. ISRs also have stricter requirements on which registers > must not be clobbered after execution, which the backend will handle > properly by restoring all clobbered registers in the interrupt > handler epilogue > * *The symbol names of the...
2009 Jul 24
0
[LLVMdev] LLVM and Interrupt Service Routines.
...rrupt handler as an ordinary function on > x86-32-linux. There can be significant differences between an interrupt handler and a void f(void) function. An interrupt handler may have to: - Save /all/ registers, including those that are normally caller saved. - Use a special return instruction (RETI). - Step over the "red zone" on the stack. - Set up a safe stack frame before calling normal functions. I usually write the first level interrupt handler in assembler, and then call normal C function from there.
2009 Jul 22
3
[LLVMdev] LLVM and Interrupt Service Routines.
Hi Alex, > Assuming that that support for Ada in LLVM is complete, I would look to > see if there is something that is done there. Ada provides two pragmas > (Interrupt_Handler & Attach_Handler) which allow you to both statically > and dynamically attach interrupts to procedures. the interrupt handler itself is a parameterless procedure that does not return a value. As such,
2011 Oct 17
8
Re: Issue with PCI-passthrough and pvops
On Mon, Oct 17, 2011 at 05:36:27PM +0200, Dario Faggioli wrote: > Hi everyone, > > I''m trying to setup PCI-passthrough for a network card on a testbox. > With HVM, everything seems to work, while if I try with a pv-guest the > domain crashes! > > Here''s the thing: > -- > # xl pci-list-assignable-devices > 0000:07:00.0 > 0000:07:00.1 > >
2019 Jan 11
3
upgrade to 4.8.3 authentication not work without specifying domain
...p me !! > > Hope it helps you a bit. > > > >> tanks > >> > >> Buda > >> > >> -- > >> -------------------------------------------------------------- > >> ---------- > >> *Alberto Maria Fiaschi* > >> /UOC: / Reti e Sistemi Area Nord-Ovest > >> /Dip.to: / Tecnologie Informatiche > >> > >> */ESTAR / * > >> /c/o / Azienda Ospedaliero Universitaria Pisana > >> Presidio Ospedaliero Spedali Riuniti Santa Chiara > >> Via Roma, 67 - 56126 Pisa, Italy > >&g...
2009 Jul 24
4
[LLVMdev] LLVM and Interrupt Service Routines.
...gt; x86-32-linux. > > There can be significant differences between an interrupt handler > and a > void f(void) function. An interrupt handler may have to: > > - Save /all/ registers, including those that are normally caller > saved. > - Use a special return instruction (RETI). > - Step over the "red zone" on the stack. > - Set up a safe stack frame before calling normal functions. > > I usually write the first level interrupt handler in assembler, and > then > call normal C function from there. Wouldn't a custom calling convention wor...
2004 Aug 06
2
Speex DLL wrapper looking.
...very usefull to check quikly this codec. Thank you. Best Regards. Pierluigi Pentimalli Technical Manager <p>********************************************************************* A member of the European Low Power Radio Association. Società di progettazione di impianti di trasmissione dati, reti wireless multiservizio per applicazioni industriali e civili. ---------------------------------------------------------------------------- ---------- Piazzale Castagnara, 17 35010 - Cadoneghe (PD) - Italy Tel: +39.049.8881511 Fax: +39.049.8784266 www.reicom.it **************************************...
2019 Jan 11
6
upgrade to 4.8.3 authentication not work without specifying domain
.... I have 5000 windows (xp / 7/10) clients not in domain. Client workgroups are varied. Users are not expert at all and are not able to change their habits. Please help me !! tanks Buda -- ------------------------------------------------------------------------ *Alberto Maria Fiaschi* /UOC: / Reti e Sistemi Area Nord-Ovest /Dip.to: / Tecnologie Informatiche */ESTAR / * /c/o / Azienda Ospedaliero Universitaria Pisana Presidio Ospedaliero Spedali Riuniti Santa Chiara Via Roma, 67 - 56126 Pisa, Italy /Tel.: / +39 050 99 3117 /Fax: / +39 050 99 3396 /mail:/alberto.fiaschi at estar.toscana.it &...
2019 Jan 11
2
upgrade to 4.8.3 authentication not work without specifying domain
...;>> >>>>>> Buda >>>>>> >>>>>> -- >>>>>> -------------------------------------------------------------- >>>>>> ---------- >>>>>> *Alberto Maria Fiaschi* >>>>>> /UOC: / Reti e Sistemi Area Nord-Ovest >>>>>> /Dip.to: / Tecnologie Informatiche >>>>>> >>>>>> */ESTAR / * >>>>>> /c/o / Azienda Ospedaliero Universitaria Pisana >>>>>> Presidio Ospedaliero Spedali Riuniti Santa Chiara &gt...
2019 Jan 11
0
[SOLVED] upgrade to 4.8.3 authentication not work without specifying domain
...t;>> Buda >>>>>>> >>>>>>> -- >>>>>>> -------------------------------------------------------------- >>>>>>> ---------- >>>>>>> *Alberto Maria Fiaschi* >>>>>>> /UOC: / Reti e Sistemi Area Nord-Ovest >>>>>>> /Dip.to: / Tecnologie Informatiche >>>>>>> >>>>>>> */ESTAR / * >>>>>>> /c/o / Azienda Ospedaliero Universitaria Pisana >>>>>>> Presidio Ospedaliero Spedali Riun...
2016 Nov 30
2
Asterisk 14.2 CLI don't show debug/verbose data
...Data directory: /var/lib/asterisk ASTDB: /var/lib/asterisk/astdb IAX2 Keys directory: /var/lib/asterisk/keys AGI Scripts directory: /var/lib/asterisk/agi-bin Any hint ? Michele -- Michele Pinassi Responsabile Telefonia di Ateneo Servizio Reti, Sistemi e Sicurezza Informatica - Universit? degli Studi di Siena tel: 0577.(23)5000 - centralino at unisi.it Per trovare una soluzione rapida ai tuoi problemi tecnici consulta le FAQ di Ateneo, http://www.faq.unisi.it -------------- next part -------------- A non-text attachment was scrubbed....
2019 Jan 11
0
upgrade to 4.8.3 authentication not work without specifying domain
...t; tanks > >>>> > >>>> Buda > >>>> > >>>> -- > >>>> -------------------------------------------------------------- > >>>> ---------- > >>>> *Alberto Maria Fiaschi* > >>>> /UOC: / Reti e Sistemi Area Nord-Ovest > >>>> /Dip.to: / Tecnologie Informatiche > >>>> > >>>> */ESTAR / * > >>>> /c/o / Azienda Ospedaliero Universitaria Pisana > >>>> Presidio Ospedaliero Spedali Riuniti Santa Chiara > >>>&...
2014 Mar 12
2
libvirtError: this function is not supported by the connection driver: virInterfaceDefineXML
Hi, Could anyone help I'm getting the following error when I tried to add a new network interface. DETAILS Connection --------------------------- import libvirt conn = libvirt.open('qemu:///system') Interface XML ---------------------- <interface type="bridge" name="br0"> <start mode="onboot"/> <mtu size="1500"/>