search for: slagel

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

Did you mean: dslagel
2013 Apr 10
1
[LLVMdev] Saving a reference to a Basic Block?
...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 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 th...
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...
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 instruction:...
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....
...ADMIN$ IPC IPC Service (Samba Server) mercylab Printer Mercys main office printer mercypa Printer mercy pas laser printer cytolaser Printer cytos laser printer mercybloodban Printer Mercys BloodBank 1200LaserJet drslagelhp Printer dr slagels office hp Anonymous login successful Domain=[CSQ] OS=[Unix] Server=[Samba 3.0.2a] Server Comment --------- ------- STEVESG40 SWALLACE TEDMONDS TESTBACKUP Samba Server TRAINING2151...
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