search for: slagell

Displaying 10 results from an estimated 10 matches for "slagell".

Did you mean: slagel
2013 Apr 10
1
[LLVMdev] Saving a reference to a Basic Block?
Sorry for bringing up an old topic, but I was wondering the status? (See below) Thanks!! On Sat, Nov 10, 2012 at 9:41 AM, Caldarale, Charles R < Chuck.Caldarale at unisys.com> wrote: > > From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] > > On Behalf Of John Slagel > > Subject: [LLVMdev] Saving a reference to a Basic Block? > > > Is
2012 Nov 07
0
[LLVMdev] How to link code into EXE, or, am I doing this wrong?
On Wed, Nov 7, 2012 at 8:28 AM, John Slagel <john.slagel at gmail.com> wrote: > Hi, > > I've been writing a 80's era-flavor of QuickBASIC compiler based on LLVM, > and it's come surprisingly far very quickly, LLVM is working great. GOSUB's, > GOTO's, FIELD statements. > I'm using Visual Studio 2010. > Here's my setup: I use LLVM to turn my AST
2012 Nov 10
0
[LLVMdev] Saving a reference to a Basic Block?
> From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu] > On Behalf Of John Slagel > Subject: [LLVMdev] Saving a reference to a Basic Block? > Is there a way to save a reference to a Basic Block that gets all fixed > up in the linker, so that you can branch to it during execution? We use the blockaddress() constant generator, coupled with the indirectbr
2012 Nov 07
2
[LLVMdev] How to link code into EXE, or, am I doing this wrong?
Hi, I've been writing a 80's era-flavor of QuickBASIC compiler based on LLVM, and it's come surprisingly far very quickly, LLVM is working great. GOSUB's, GOTO's, FIELD statements. I'm using Visual Studio 2010. Here's my setup: I use LLVM to turn my AST into code, which, during debugging I then execute natively using "getPointerToFunction" and the runtime
2012 Nov 10
2
[LLVMdev] Saving a reference to a Basic Block?
Is there a way to save a reference to a Basic Block that gets all fixed up in the linker, so that you can branch to it during execution? (Or maybe just a better way to do what I'm trying to do?) In my old-school BASIC compiler that I'm writing with LLVM, for each GOSUB, I keep a map of an integer ID and a pointer to the basic block following the GOSUB to return to. Then, when a BASIC
2009 Sep 09
4
undefined method `attr_accessor' for #&lt;CustomersControl
pleas help -- Posted via http://www.ruby-forum.com/.
2004 Apr 13
0
Remote Samba Servers Timming Out....
Hello, I am have a strange problem with remote samba servers and I am hopping some one can give me a insite into what is happening. First is the Setup I have 2 remote sites connected to a central site by 2 T1 Lines. The two remote sites each have a IBM X305 Running RedHat 9 and Samba 3.0.2a per/Site. Each box per site has been configured to be the local master(cross Subnet Browsing).All Sites use
2012 Jun 27
5
explanation required on def method = (.)
hello, i''ve come across a code like def password=(pass) @password = pass . . end Anyone can please explain to me what is happening in the first line itself for the def part? the code I saw did not provide anything on it -- Posted via http://www.ruby-forum.com/. -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To
2010 Apr 14
35
Conditionally adding a link to a form -- how?
I''ve got two entities created by scaffolding: Expense & Vendor In Expense#new there''s a form with a Vendors-drop-down and a NewVendor- button. The latter button brings up Vendor#new. The Create button in Vendor#new brings up Vendor#show with Edit & Back links. I want to append a third link conditionally to Vendor#show: if the Expense#new form led to the Vendor#show
2013 Jan 07
0
[LLVMdev] How to output a .S *and* a .OBJ file?
Hi, I'm embarrassed that I can't figure this out... I have a compiler that outputs my module in either .s assembly format or .obj binary format, either one works just fine. But if I try to output both of them by adding passes, LLVM throws an Assert: void WinCOFFStreamer::EmitLabel(MCSymbol *Symbol) { assert(Symbol->isUndefined() && "Cannot define a symbol