Displaying 6 results from an estimated 6 matches for "setaddress".
Did you mean:
getaddress
2008 Sep 08
1
ActiveRecord::StatementInvalid Error
...d_by_sql("select *
from addresses where typeid=#{params[:id]} and
customerid=#{session[:customerid]} and enabled=''1''"), :id, :address,
{},
{:onchange=>"showcompletedetails()", :onclick=>remote_function(:update=>"", :url=>{:action=>"setaddress"},:with
=> "''id='' + $
(''address_id'').value"),:size=>"5",:class=>"dropdown",:style=>"width:
100%;border:1px solid #0099cc;" }%>
"
Thanks
Mohd Anas
--~--~---------~--~----~------------~-------~--~-...
2010 Jul 07
0
[LLVMdev] simple way to print disassembly of final code from jit?
...code, but I can point you to how I currently believe you can get access to what you need. If you take a look at the code for the implementation of lvm::JIT::runJITOnFunction(Function *, MachineCodeInfo *), you'll see that if a MachineCodeInfo parameter is supplied, it is populated via a call to setAddress and setSize via the registration of a JITEventListener on the Jitting of the given function. I'm almost certain this is the address and size that is needed by the disassembler. You then should be able to either use runJITOnFunction as part of your current JIT compilation process or do the same...
2010 Jul 08
1
[LLVMdev] simple way to print disassembly of final code from jit?
...code, but I can point you to how I currently believe you can get access to what you need. If you take a look at the code for the implementation of lvm::JIT::runJITOnFunction(Function *, MachineCodeInfo *), you'll see that if a MachineCodeInfo parameter is supplied, it is populated via a call to setAddress and setSize via the registration of a JITEventListener on the Jitting of the given function. I'm almost certain this is the address and size that is needed by the disassembler. You then should be able to either use runJITOnFunction as part of your current JIT compilation process or do the same...
2010 Jul 07
3
[LLVMdev] simple way to print disassembly of final code from jit?
Thanks Reid - I'm on Windows. I guess I just assumed I was missing
something obvious in how to hook up the JIT and disassembler! Given
the nice looking disassembly code I found, I thought people would be
doing it all the time :-)
b.
On Tue, Jul 6, 2010 at 8:41 PM, Reid Kleckner <reid.kleckner at gmail.com> wrote:
> If you're on a recent flavor of Linux, you may be able to just
2010 Mar 31
0
[LLVMdev] One question on runJITOnFunction() in JIT.cpp in llvm-2.6
...ot;,
leaving the second argument, the MCI, empty.
As a result, if the call the recompileAndRelinkFunction() for a function
for the first time, everything is fine, if I re-JIT the same function again,
a segment fault occur, because the MCIListener class needs to use MCI like
this: "MCI->setAddress(Code);".
How to make re-JIT work, please? For example, sometimes I need to JIT a
function for the first time, and modify its llvm code in the function body,
and re-JIT it again.
--
Regards,
Heming Cui
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <htt...
2004 Jan 12
0
batch files
...String[]{"Edgar", "Soldin"});
Address address = new Address();
address.setStreet("Stadtweg 119");
address.setSuburb("Ottersleben");
address.setZip(39116);
address.setCity("Magdeburg");
address.setCountry("Germany");
sender.setAddress(address);
sender.setMobilePhone(" +49(0)171-2782880 ");
sender.setWebSiteUrl(" http://www.soldin.de ");
sender.setEmail(" edgar@soldin.de ");
sender.setGender(true);
System.out.println(sender.toString());
}
}
@echo off
echo %*
echo
:encode
echo Proce...