search for: peet

Displaying 20 results from an estimated 22 matches for "peet".

Did you mean: peer
2015 Jun 07
3
[LLVMdev] Clang-Format all LLVM Projects
...request which basically clang-formats projects like libcxxabi/libunwind ? Since those projects aren't following the LLVM coding standards. It would make the code even "more readable" also it would give "me" the feeling that it actually belongs to the LLVM project. Thanks -- Peet
2016 Feb 08
2
Assigning constant value without alloca/load/store
...to do this is, but is there any reason > you're against just using alloca/load/store? That's what clang emits for > most locals/parameters/..., and LLVM tends to do a very good job of > SSAifying that where it can. :) > > George > > On Sun, Feb 7, 2016 at 3:00 PM, Paul Peet via llvm-dev < > llvm-dev at lists.llvm.org> wrote: > >> Hello, >> >> I am currently trying to translate some custom IR to LLVM-IR and came >> across and issue. >> The custom IR has several registers and I am basically try to SSAfy it so >> it can be...
2009 Jun 19
4
Newb needs help with Lotus Ami Pro
...disappears if I move it into the area of the program window. Shortly after opening the window dims and I believe this means the program is not responding. I'm totally new to this application and operating system so I really have no idea how to make this work. Any help would be appreciated. Peet
2008 Jun 13
3
before_filter order of execution
Hi I''m trying to use before_filter to allow access to a site. Only logged in users can view any object in the controller, but only users with a access_level higher than 2 can view specific objects. My code is: ----------------------------------------------------------- IN USER_CONTROLLER before_filter :login_required before_filter :access_granted, :only => [:destroy, :new , :edit]
2016 Feb 10
2
Memory Store/Load Optimization Issue (Emulating stack)
...eax, ecx) will overlap because of the size difference (eax = i32). What are the consequences when doing this. Will this break alias analysis for the further instructions? 2016-02-10 21:24 GMT+01:00 Daniel Berlin <dberlin at dberlin.org>: > > > On Wed, Feb 10, 2016 at 12:18 PM, Paul Peet via llvm-dev < > llvm-dev at lists.llvm.org> wrote: > >> Thank you for the hint. >> >> I adjusted the code and it works: >> >> The code after replacing inttoptr with getelementptr: >> >> define { i32, i32, i8* } @test(i32 %foo, i32 %bar, i8* %sp...
2016 Feb 07
5
Assigning constant value without alloca/load/store
Hello, I am currently trying to translate some custom IR to LLVM-IR and came across and issue. The custom IR has several registers and I am basically try to SSAfy it so it can be easily translated/converted to LLVM-IR. The problem: Since in my custom IR I can reassign every register I have to reassign every new expression with a new llvm Value. But my IR has something like this: REG A = VAR C
2016 Feb 10
4
Memory Store/Load Optimization Issue (Emulating stack)
...d. I'm not sure where that came from, but I'd not > bother looking into until the preceding point is addressed. > > In general, you may find these docs useful: > http://llvm.org/docs/Frontend/PerformanceTips.html > > Philip > > > > On 02/08/2016 06:54 AM, Paul Peet via llvm-dev wrote: > > Hello, > > I am trying to emulate the "stack" as like on x86 when using push/pop so > afterwards I can use LLVM's optimizer passes to simplify (reduce junk) the > code. > > The LLVM IR code: > > define { i32, i32, i32 } @test(i32 %...
2003 Sep 28
1
Win XP on Samba3
...profiles., win98 is ok., BUT winXP recons "Cannot log you on.: "the procedure number is out of range" please try..." This happens irrespective of username/passwd entered or not. Does anyone know what is going on? Or how to fix it? I could not find this in FAQ's. Regards Peet Nel 021 671 6523 082 565 6359 www.soundreflections.co.za
2016 Feb 12
2
Memory Store/Load Optimization Issue (Emulating stack)
...o provide it but it is possible right? Could you guide me through where I should look to implement such analysis? Would it be complex/non-trivial to implement such thing? 2016-02-10 21:24 GMT+01:00 Daniel Berlin <dberlin at dberlin.org>: > > > On Wed, Feb 10, 2016 at 12:18 PM, Paul Peet via llvm-dev < > llvm-dev at lists.llvm.org> wrote: > >> Thank you for the hint. >> >> I adjusted the code and it works: >> >> The code after replacing inttoptr with getelementptr: >> >> define { i32, i32, i8* } @test(i32 %foo, i32 %bar, i8* %sp...
2006 Apr 21
4
link_to_function with submit
...m. Normally I would do this with a javascript like function sendForm () { document.forms[0].submit(); } but this doesn''t work with form_remote_tag link_to_function( ''Send'' , "sendform();") So the question is: how do I send my ajax form? Thanks in advance Peet -- Posted via http://www.ruby-forum.com/.
2016 Jul 04
2
Optimization issues (Alias Analysis?)
Hey, I am currently working on a VM which is based on LLVM and I would like to use its optimizer, but it somehow it can't detect something very simple (I guess.) This is the LLVM IR: target datalayout = "e-m:e-p:32:32-f64:32:64-f80:32-n8:16:32-S128" target triple = "i386-unknown-linux-gnu" %struct.regs = type { i32, i32, i32 } define void @Test(%struct.regs* noalias
2007 Oct 29
6
Fair que between 255 users
Hello guys I have a subnet with 255 users, which need to share 1 single slow internet connection, so i would like to implement a kind of *fair queuing *on the UPLOAD between them, which means that they all share the connection equally.. The tools that i have available is: A linux box with IPROUTE2,HTB and TC.. I have looked at some examples, and my first idea was to make 255 entries in
2004 Dec 20
0
Calling SIP Address From Behind NAT
My asterisk box is behind a NAT firewall. I have friends that are on Earthlink, Vonage, etc. I'd like to make VOIP calls directly to them rather than going through the PSTN. With Earthlink, I can make this work through FWD peeting numbers, but that's sort of a waste of FWD bandwidth. WIth Vonage, it doesn't work. I suspect this is because of the breakage between FWD and Vonage that I saw mentioned on this list. But going through FWD seems like a hack. I'd like to contact them directly using SIP. Obviously th...
2016 Feb 08
2
Memory Store/Load Optimization Issue (Emulating stack)
Hello, I am trying to emulate the "stack" as like on x86 when using push/pop so afterwards I can use LLVM's optimizer passes to simplify (reduce junk) the code. The LLVM IR code: define { i32, i32, i32 } @test(i32 %foo, i32 %bar, i32 %sp) { ; push foo (On "stack") %sp_1 = sub i32 %sp, 4 %sp_1_ptr = inttoptr i32 %sp_1 to i32* store i32 %foo, i32* %sp_1_ptr, align
2016 Dec 29
1
[compiler-rt] Improve atomic locking?
Hey, I am wondering if there wouldn't be more room for improving the locking of a pointer when an atomic operation is being made since I've noticed that one could increase the SPINLOCK_COUNT in lib/builtins/atomic.c to (1 << 13) which is a 8x increase of available locks if we also change the type of the atomic lock which currently is uintptr_t to a single byte (uint8_t) which I
2008 Jan 23
6
ROR Learning with Dating /Classified Site Development
Hi, I am falling in love more and more with RoR. I am looking for a Book/Tutorial which teaches me creating an excellent WebSite for dating and Classified. I am coming from .net community and now willing to grow more with ROR. We used to have few starterkits in .Net. Can any one provide me an excellent guideline, how is it possible. Is there any tutorial site, which offers scripts to study
2007 Aug 12
0
Got Sighup dumpmg debug info
I am Running Centos 4.4 on a Poweredge box 2600 Aug 8th 7.30 am, the server had a problem when all the available disk space had gone, there should of been 180 Gig. Investigating the logs the last activity was at 04.02 in the morning with this: ********************************** Aug 8 04:02:05 localhost nmbd[3799]: [2007/08/08 04:02:05, 0] nmbd/nmbd.crocess(542) Aug 8 04:02:05 localhost
2007 Oct 20
0
ncsh: alpha release
... Hello! An alpha-mature code of the Connexion project is available: http://www.radlinux.org/ http://www.radlinux.org/download/connexion-0.4.4.tar.bz2 [171Kb] docs: * en: http://www.radlinux.org/docs/static/en/ * ru: http://www.radlinux.org/docs/static/ru/ See docs/INSTALL for quick start-up howto (strictly speaking, installation isn''t required, it can work out-of-box -- if all
2007 Oct 25
0
ncsh: docs + news
... Not so long time ago there was a mail about distros. I made packages of ipp2p and l7-filter for ALT Linux Sisyphus repository -- so, now there is one more PC-oriented distro with both these tools. ... About ncsh: * new docs: http://www.radlinux.org/docs/static/en/ncsh_usecases.html (not proofreaded yet, I''ll send it to Mohan with next mail) * new capability: l7-filter frontend
2007 Nov 02
0
HiPAC
... Is there anyone, who has worked with HiPAC? (http://www.hipac.org/) The project seems interesting, but orphaned. -- Peter V. Saveliev