Displaying 20 results from an estimated 10000 matches similar to: "Some questions about writing compiler passes."
2018 Nov 04
3
Some questions about writing compiler passes.
Thanks for the help. I have a couple follow up questions-
Where can I find the code which calculates the properties of inline asm
nodes and examples of passes that make use of this information?
Thanks again,
Carter.
On Mon, Nov 5, 2018 at 12:04 AM David Blaikie <dblaikie at gmail.com> wrote:
>
>
> On Sun, Nov 4, 2018 at 1:56 AM Carter Cheng via llvm-dev <
> llvm-dev at
2018 Feb 07
1
Possible typo in the C source code of R
Good morning,
I am Martin Bodin, a postdoc at the CMM in Santiago de Chile, and I am
currently in the process of formalising (a part of) the R language into
the Coq proof assistant. This work makes me look frequently at the
source code of R.
I have noticed a strange line in the file src/main/util.c of the trunk
branch:
2010 Sep 23
6
Named scope in named scope ??
Hi,
I would like to return a combination of named scopes in a named
scope :
For example, I have a named scope filter and I want to add a named
scope eval_filters like
Product.eval_filters([''x'',''y'',''z'']) is equivalent to
Product.filter(''x'').filter(''y'').filter(''z'')
Anybody know how can I
2009 Feb 18
2
Tables
Are there any standards emerging for how to represent tables in Markdown?
Regards,
- Daniel
--------------------------------------------
Dr Daniel Winterstein
Winterwell Associates Ltd
tel: 0772 5172 612
http://www.winterwell.com
Registered in Scotland, company no. SC342991
2009 Oct 07
2
Rails, flash, function and parameter
Hi,
I try do update the flash on my page with ajax.
I have this on my layout :
<div id="flash_messages">
<%= render :partial => ''layouts/flash'' %>
</div>
I have this on my ApplicationHelper :
def reload_flash
page.replace "flash_messages", :partial => ''layouts/flash''
end
and I try do that on my controller :
2014 Dec 01
2
[LLVMdev] [lld] filename in the atom model.
+ Nick
Rui,
Does PECOFF writer need the filename in the writer as well, I am not
sure if linker scripts are supported with PECOFF though.
If PECOFF also needs it, I think it makes sense to store the filename in
the Atom as the native format needs to store that information.
The only option for the ELF writer to know this information is to use
References if other flavors dont need the
2006 Nov 04
6
Javascript form validation for In place editting in scriptaculous ?
Is there a way by which I can do form validation for form generated by In
Place Editting of scritaculous?
The reason is, I want to avoid server roundtrip for checks which I can
perform at browser.
Regards,
Jatinder
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060828/ca882668/attachment-0001.html
2015 May 15
3
[LLVMdev] [RFC] Upstreaming LLVM/SPIR-V converter
On Fri, May 15, 2015 at 11:50 AM, David Chisnall <
David.Chisnall at cl.cam.ac.uk> wrote:
> On 15 May 2015, at 17:53, Chris Bieneman <beanz at apple.com> wrote:
> >
> > +1 to lib/Target/SPIRV/(Reader|Writer)
> >
> > I really like this idea. I’ve talked with some people on both the LLVM
> and Khronos sides and I really think adding SPIR-V support to LLVM
2006 Dec 13
3
Testing has_many :through
I''m working with a has_many :through association, where a Member
has_many Projects through ProjectViewers. The problem I''m running
into is that Rails doesn''t load the association so line (3) fails
until I explicitly access a member of the collection (in this case, I
iterated it). Is there a better way?
Thanks,
Steve
1. assigns[:member].should_not_be_nil
2.
2012 Jun 04
1
Performance translators - a overview.
Hi,
The purpose of performance translators is to decrease system call latency
of applications and increase responsiveness of glusterfs.
The standard approach used within glusterfs to decrease system call latency
is making sure we avoid network roundtrip time as part of the fop
processing. And based on what fop we are dealing with, we have different
translators like read-ahead, io-cache,
2020 Apr 16
2
Various Intermediate Representations. IR
On Wed, 15 Apr 2020 at 17:28, David Blaikie <dblaikie at gmail.com> wrote:
>
> opaque pointers don't exist in the IR yet - the goal is to reduce the places that use non-opacity of pointer types already/today and then opacify the existing pointer type, rather than introducing an opaque pointer type & having it concurrently with non-opaque pointer types. (though in retrospect
2008 Oct 16
0
about formal verification about Xen
Dear all,
Is there any project or work about the formal analysis of Xen?
For example, Using theorem provers, eg. Acl2, isabelle, coq etc.
to verify it. Thanks!
Cheers:)
Liu Jian
--
email to: gjk.liu@gmail.org
_______________________________________________
Xen-community mailing list
Xen-community@lists.xensource.com
http://lists.xensource.com/mailman/listinfo/xen-community
2006 Nov 15
3
Regular audio fade-out fade-in on IAX2 calls Asterisk 1.2.4 Hi all, One of my users has a problem with many of his calls via my Asterisk™ server. He describes the problem as having the sound slowly fade out and then fade back at a regular frequency. Has
Hi all,
Originally tried to post this without being subscribed, apologies if
the list gets this twice.
One of my users has a problem with many of his calls via my Asterisk?
server. He describes the problem as having the sound slowly fade out
and then fade back at a regular frequency. Has anyone experienced
this before? Can you suggest a potential cause?
The client is an IAX2 soft
2006 Aug 01
3
Radio buttons and AJAX
Hi,
Here is what I would like:
2 radio buttons:
"yes" and
"no"
There will be 2 containers:
<div id="yes" style="display: none;">Yes stuff</div>
<div id="no" style="display: none;">No stuff</div>
What I want is whenever the "yes" radio button is selected, on the "yes"
div should be made
2010 Mar 27
1
ar_mailer, class Email : add field to the table?
Hi,
I use ar_mailer to send emails from my application.
I want to build a page where the admin case see the queue of mails and
the possibility of remove some mail in the queue if he wants.
The email in the queue are save in the AR model Email.
I have an AR model Sent where i save the email that the user sent.
I would like to add to the model Email a column to save the id of the
corresponding
2004 Sep 15
7
Splitting vector into individual elements
Is there a means to split a vector into its individual
elements without going the brute-force route for arguments
to a predefined function call?
offred.rgb <- c(1, 0, 0) * 0.60;
## Brute force style
offred.col <- rgb(offred.rgb[1],
offred.rgb[2],
offred.rgb[3],
names = "offred")
## Desired style
2015 Feb 03
6
Another Fedora decision
On Tue, Feb 3, 2015 at 2:03 PM, Always Learning <centos at u64.u22.net> wrote:
>
> Nothing wrong with letting "an expert" preconfigure the system and then,
> after installation, the SysAdmin checking to ensure all the settings
> satisfy the SysAdmin's requirements.
>
I'd just rather see them applying their expertise to actually making
the code resist
2009 Jan 23
4
sshd exponential backoff patch
hi,
I wrote a patch to openssh sshd.c which enables "exponential backoff",
so that an attacker cannot brute force your password by making hundreds
of login attempts.
here is the code:
http://sam.nipl.net/sshd-backoff/
An attacker who fails to login is locked out (by IP address) for 1
minute, and the lockout period doubles for each failed login after that.
Normally three logins are
2017 Sep 14
5
Confusing lstat() performance
Hi,
I have a gluster 3.10 volume with a dir with ~1 million small files in
them, say mounted at /mnt/dir with FUSE, and I'm observing something weird:
When I list and stat them all using rsync, then the lstat() calls that
rsync does are incredibly fast (23 microseconds per call on average,
definitely faster than a network roundtrip between my 3-machine bricks
connected via Ethernet).
But
2009 Aug 20
5
protecting multiuser systems from bruteforce ssh attacks
Hello,
What is the best way to protect multiuser systems from brute force
attacks? I am setting up a relatively loose DenyHosts policy, but I
like the idea of locking an account for a time if too many attempts
are made, but to balance this with keeping the user from making a
helpdesk call.
What are some policies/techniques that have worked for this list with
minimal hassle?
Thanks!
-Eugene