Displaying 20 results from an estimated 800 matches similar to: "[LLVMdev] LLVM for dynamic languages"
2003 Sep 14
1
[LLVMdev] LLVM for dynamic languages
> That said, many dynamic languages should be cleanly mappable to the LLVM
> layer. What are you thinking about in particular?
Not thinking of one in particular right now, but it would probably something
like an object-oriented Scheme.
> recommend writing some language tuned optimizations (as necessary) that
> would lower the dynamic objects into the primitives the optimizers
>
2003 Sep 12
0
[LLVMdev] LLVM for dynamic languages
On Thu, 11 Sep 2003, Rayiner Hashem wrote:
> How suitable do the developers think that LLVM would be as a code-generator
> for a dynamically typed langage? Would the lack of static type information
> make the traditional code optimizations performed by LLVM relatively
> ineffective?
LLVM is designed to be able to support "any" language, efficiently,
without restriction.
2013 Oct 30
1
[LLVMdev] Interfacing llvm with a precise, relocating GC
With regard to Bartlett-style collectors, they are also used in CMUCL/SBCL,
OpenDylan, and various products based on Ravenbrook's Memory Pool System.
Also, while Mono doesn't use a Bartlett-style collector, it does support
pinning objects referenced from ambiguous stack roots, in an otherwise
copying collector. While ITA has expressed concerns with SBCL's GC, they
seem to involve the
2012 Jan 13
2
function to replace values doesn't work on vectors
I've got a numeric vector with values ranging from 1 to 5, I would like to
catagorize these values like this:
1 becomes catagory 1
3 becomes catagory 3
And everything else in catagory 2. The simple function I wrote beneath works
for single numeric data, but for some reason I am unable to feed it vectors.
Any help would be appreciated, as I'm fairly new to R.
--
View this message in
2015 Feb 05
5
resize: Preserve GPT GUID so we don't break EFI bootloaders (RHBZ#1189284)
virt-resize didn't preserve the per-partition GPT GUID.
Now that guests using UEFI are becoming common (basically it's the
default on aarch64) we need to take into account that sometimes the
partition GUID is used by the bootloader NVRAM variables to identify
the boot partition, so it must be preserved across resize.
This bug caused the 'virt-builder --size' option to fail on
2007 Jul 02
5
softphone with g729 codec
Hi:
Iam looking for a sip softphone that supports g729 codec
Any one have an idea ?
Reagrds;
jonnyhashem
---------------------------------
Don't get soaked. Take a quick peak at the forecast
with theYahoo! Search weather shortcut.
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2002 May 09
4
Samba wins eWeek and PC Magazine "Innovation in Infrastructure" (i3) award for best Enterprise Software !
Hi all,
I was in Las Vegas yesterday accepting an award from eWeek and
PC Magazine on behalf of Samba for the Innovation in Infrastructure Award
in the "Enterprise Software" catagory !
The award was sepcifically for Samba 2.2.2, and we beat out Sun Microsystems
Java 2 Platform Standard Edition Version 1.4 and Bea Systems WebLogic Server 7.0
for the award, so I'm stunned that we
2002 May 09
4
Samba wins eWeek and PC Magazine "Innovation in Infrastructure" (i3) award for best Enterprise Software !
Hi all,
I was in Las Vegas yesterday accepting an award from eWeek and
PC Magazine on behalf of Samba for the Innovation in Infrastructure Award
in the "Enterprise Software" catagory !
The award was sepcifically for Samba 2.2.2, and we beat out Sun Microsystems
Java 2 Platform Standard Edition Version 1.4 and Bea Systems WebLogic Server 7.0
for the award, so I'm stunned that we
2005 Aug 11
2
Sip ports
i have added port=5060 to sip client configuration but
it seems the same problem and in the same errors:
Aug 11 10:29:18 WARNING[9869]: chan_sip.c:843
retrans_pkt: Maximum retries exceeded on call
04b3ccd87e45e719588c54a4017e3b99@172.16.180.21 for
seqno 102 (Non-critical Response)
__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam
2006 Feb 16
2
show calls
HI:
what is command on console to know how many calls are
sending in the same time?
__________________________________________________
Do You Yahoo!?
Tired of spam? Yahoo! Mail has the best spam protection around
http://mail.yahoo.com
2005 Sep 23
2
asterisk invitation problem
when i send calls from an asterisk box to a voip
provider the call fails and give me these messages:
*CLI> Sep 23 21:32:32 WARNING[14595]: chan_sip.c:6890
handle_response: Forbidden - wrong password on
authentication for INVITE to '"asterisk"
<sip:asterisk@195.112.214.99:5070>;tag=as19e688a1'
-- SIP/call-0f60 is circuit-busy
== Everyone is busy/congested at this
2006 May 11
3
Find By ID
Hi folks,
Newbie with ruby on rails but very excited by the features provided by
the framework ;)
Suppose I''ve got a table ''Company'' and a table ''Category'' Company
belongs to a category but I will retrieve the Catagory in the Company
list?
It seems that I don''t have the basic ruby wau of thinking to get this
easily.
Can someone help?
2007 Dec 06
3
Please help me rate vnc, rdesktop, and freenx
I have been dragging my feet on remote display, and have just gotten VNC
going to have SOMETHING to move off the start line. But I need the
'best' for different situations, so I want to rate them.
1 to 3 where 1 is the 'best' for the catagory and 3 the loser.
VNC RDESKTOP FREENX
Server memory
Server cpu
client memory
client cpu
bandwidth
2018 Mar 19
2
[gsoc2018] Where's the source for clang-doc
Hi
I'm interested in working on clang as a gsoc project. It's under the
catagory "Clang Tools Extra"
[here](http://llvm.org/OpenProjects.html#doc-html-generator), but I
can't seem to find it's source anywhere. Not even at the llvm site
[documentation](https://clang.llvm.org/extra/clang-doc.html). It isn't
on github and google is no help either in this case. Does
2014 Nov 11
6
[LLVMdev] [lld][ELF] How to transfer st_other field value from input to output file
I had a similar issue with arm vs thumb in mach-o. Each function’s thumbness is marked in its symbol table entry.
But it is even worse, a function could change encoding in the middle (only hand coded assembly could do this).
My solution was to add a new Reference Kind for mach-o which is the current instruction encoding. The offsetInAtom() is the offset where the encoding kind changes.
2014 Nov 06
2
[LLVMdev] [lld][ELF] How to transfer st_other field value from input to output file
STO_MIPS16 and STO_MICROMIPS flags denote that the symbol use a
different "compressed" instructions encoding. Both these flags can be
combined with usual "visibility" flags.
It looks like adding new flag into the contentTypes set might solve
the problem. Thanks for the idea. I try to implement it.
On Thu, Nov 6, 2014 at 6:52 PM, Shankar Easwaran
<shankare at
2005 Feb 18
3
Barplot - Can't figure it out
Hi,
I have two catagorical vectors like this;
x = c(1, 2, 4, 2, 1)
y = c(2, 4, 2 ,4, 1)
I want to set up a barplot with the catagories 1-4 horizontally and
number of occurances vertically for each vector x,y. I've tried
boxplot(table(x,y), beside=T)
and
boxplot(c(x,y), beside=T)
among others, but can't get it to work...Any ideas? I'd apppreciate any help
2007 Aug 13
1
Matlab 2007a and C5 out-of-box broken
I had to reinstall C5 64-bit out-of-box on two machines. Before the
reinstall, Matlab 2007a 64-bit worked fine. Now, I get "failed to start
the desktop; failure loading desktop class". matlab -nojvm works fine.
The reinstall was not an upgrade.
I tested on two identical systems - one before I installed the NVIDIA
drivers, and one after. No difference.
I installed jre and jdk
2006 Jul 01
1
Uh oh, Error solving...
undefined method `stringify_keys'' for [["Craved"], ["Whole Sale"]]:Array
I did this earler in the script how come now it''s yealling?
<% catas = Category.find(:all, :order=> "name").map {|u| [u.name]} -%>
<p><label for="item_cata">Catagory:</label><br/>
<%= select ''item'',
2004 Aug 06
1
Oddcast not working with WinAmp 5.01
I recently reformatted & reinstalled Windows98. Oddly, only now after a
fresh re-install has Oddcast been behaving badly with WinAmp 5.01.
It shows up in the DSP catagory as a mirror of the previous plugin, plus
"[dsp_oddcast_v2.dll]". I know Oddcast isn't configurable by the WinAmp
Configure Plugin button, but it shouldn't give this message when I try: