search for: adda

Displaying 14 results from an estimated 14 matches for "adda".

Did you mean: add
2007 Sep 21
2
[LLVMdev] Q about instruction pattern matching
Hi, I'm trying to describe the patterns for the m68k instructions ADD and ADDA when used with a data register operand for the source. Basically, ADD operates on anything but address registers and immediates, and ADDA works on address registers only so I'm going to need both instructions in my instruction set. These are the two problematic definitions; by themselves they...
2020 Apr 01
3
New LLVM backend for Renesas RL78 MCU
...ne short example which was my starting point and motivation to switch to LLVM: char foo(char a, char b, char c, char d, char e, char f) { return a + b + c + d + e + f; } This is what GCC produces (30 bytes and 18 clock cycles excluding the ret instruction) _foo: mova, [sp+14] movc, a mova, [sp+12] adda, c movc, a mova, [sp+10] adda, c movc, a mova, [sp+8] adda, c movc, a mova, [sp+6] adda, c movc, a mova, [sp+4] adda, c movr8, a ret While with I can produce the following output code (11 bytes and 5 clock cycles excluding the ret) Notice also the ABI difference (with LLVM I was able to use the sam...
2020 May 26
2
New LLVM backend for Renesas RL78 MCU
...ne short example which was my starting point and motivation to switch to LLVM: char foo(char a, char b, char c, char d, char e, char f) { return a + b + c + d + e + f; } This is what GCC produces (30 bytes and 18 clock cycles excluding the ret instruction) _foo: mova, [sp+14] movc, a mova, [sp+12] adda, c movc, a mova, [sp+10] adda, c movc, a mova, [sp+8] adda, c movc, a mova, [sp+6] adda, c movc, a mova, [sp+4] adda, c movr8, a ret While with I can produce the following output code (11 bytes and 5 clock cycles excluding the ret) Notice also the ABI difference (with LLVM I was able to use the sam...
2011 Nov 30
4
Compile error with Ubuntu 11.10
...op&bits=64&release=latest) - sudo apt-get install mercurial libsdl-dev pciutils-dev ncurses-dev uuid-dev gettext libyajl-dev flex zlib1g-dev libssl-dev xorg-dev bcc bin86 iasl libc6-dev-i386 patch git - hg clone http://xenbits.xensource.com/xen-unstable.hg - cd xen-unstable.hg/tools - make Adda _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
2007 Jul 16
2
mongrel_rails start working mongrel_rails cluster::start not working
...address: 127.0.0.1 pid_file: tmp/mongrel.pid servers: 3 My server configuration is as follows : Linux Centos 5 ruby 1.8.6 rubygems 0.9.4 Rails 1.2.3 Mongrel Web Server 1.0.1 mongrel_cluster 1.0.2 nginx version: nginx/0.5.27 Can anyone give help me to get this out ? Thanks a lot in advance Addame -------------- next part -------------- An HTML attachment was scrubbed... URL: http://rubyforge.org/pipermail/mongrel-users/attachments/20070716/4b622447/attachment.html
2007 Sep 21
0
[LLVMdev] Q about instruction pattern matching
On Sep 21, 2007, at 2:04 AM, Andreas Fredriksson wrote: > Hi, > I'm trying to describe the patterns for the m68k instructions ADD and > ADDA when used with a data register operand for the source. Basically, > ADD operates on anything but address registers and immediates, and > ADDA works on address registers only so I'm going to need both > instructions in my instruction set. > > These are the two problematic definiti...
2020 May 26
1
New LLVM backend for Renesas RL78 MCU
...ne short example which was my starting point and motivation to switch to LLVM: char foo(char a, char b, char c, char d, char e, char f) { return a + b + c + d + e + f; } This is what GCC produces (30 bytes and 18 clock cycles excluding the ret instruction) _foo: mova, [sp+14] movc, a mova, [sp+12] adda, c movc, a mova, [sp+10] adda, c movc, a mova, [sp+8] adda, c movc, a mova, [sp+6] adda, c movc, a mova, [sp+4] adda, c movr8, a ret While with I can produce the following output code (11 bytes and 5 clock cycles excluding the ret) Notice also the ABI difference (with LLVM I was able to use the sam...
2015 May 31
0
Error while changing security permissions on Ubuntu 14.04 with glusterfs 3.4
...as described in https://lists.samba.org/archive/samba/2014-April/180928.html and https://wiki.samba.org/index.php/Setup_and_configure_file_shares_with_Windows_ACLs with no success. Using linux tools (setfattr, setfacl) I am able to change the xattr and acl in the glusterfs mount point. Thank you Adda
2015 Dec 08
0
CentOS 6 pci audio card not enabled
....ko license: GPL description: VIA ICEnsemble ICE1724/1720 (Envy24HT/PT) author: Jaroslav Kysela <perex at perex.cz> srcversion: 4159E44B9111EFB98548209 alias: pci:v00001412d00001724sv*sd*bc*sc*i* depends: snd,snd-ac97-codec,snd-pcm,snd-i2c,snd-ice17xx-ak4xxx,snd-rawmidi,snd-pt2258,snd-ak4xxx-adda,snd-ak4114 vermagic: 2.6.32-573.8.1.el6.x86_64 SMP mod_unload modversions parm: index:Index value for ICE1724 soundcard. (array of int) parm: id:ID string for ICE1724 soundcard. (array of charp) parm: enable:Enable ICE1724 soundcard. (array of bool) parm: model:Use the given board model. (array of...
2007 Jul 16
1
mongrel_rails start working mongrel_rails
...aded with mongrel_rails start. Do you have any idea on why mongrel_rails cluster::start is not loading the environment ? I checked the path for the rails application ans it''s ok Is there any other alternative to force mongrel_rails cluster::start to load the rails environment ? Cheers, Addame Two things I would check: 1) Make sure you that you are not missing any gems that your application uses; 2) Check to see if your application will run under webrick Bill Siggelkow bsiggelkow at mac.com <http://rubyforge.org/mailman/listinfo/mongrel-users> AIM: siggelkowb Home: 770-457-8...
2006 Jun 12
3
Multiple Form Fields with Same Model?
Hello, I''m trying to create a form that will allow a user to submit a list of phone numbers, but the list is dynamically created. Thus allowing my form to submit an unknown number of phone numbers. Here is some of the code I have been trying: <%= collection_select( "phone[]", "phone_type_id", PhoneType.find(:all, :order => "position"),
2012 Feb 28
16
Ruby IDEs
Hi, I''m a novice in Ruby , I want to ask what is the best IDEs to use Ruby for beginners ? Is eclipse a good choice ? any idea? Thanks a lot! Nada -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe
2013 Mar 30
0
[LLVMdev] Problems with parallelizing lli
Hi, I am trying to parallize the lli interpreter (code: http://pastebin.com/6iuHNH3Q). I am using ubuntu 12.04 with llvm version 3.1. Each thread uses a seperate LLVMContext, however the interpreter continues to crash. $ clang -S -emit-llvm test.c && parallel_lli test.s Error msg: ..../include/llvm/Support/Mutex.h:116: bool llvm::sys::SmartMutex<true>::release(): Assertion
2013 Mar 20
0
[LLVMdev] Problems with parallelizing lli
Hi, I am trying to parallize the lli interpreter (code: http://pastebin.com/6iuHNH3Q). I am using ubuntu 12.04 with llvm version 3.1. Each thread uses a seperate LLVMContext, however the interpreter continues to crash. Error msg: ..../include/llvm/Support/Mutex.h:116: bool llvm::sys::SmartMutex<true>::release(): Assertion `((recursive && acquired) || (acquired == 1)) &&