Displaying 20 results from an estimated 121 matches for "cil".
Did you mean:
ci
2009 Apr 24
0
[LLVMdev] CIL 1.3.7 release, with experimental LLVM code generation
The latest release of the CIL C frontend (http://sf.net/projects/cil)
now includes a module to generate LLVM assembly code from CIL's
intermediate format. It should be considered alpha-level code and
still has a number of significant limitations:
It is targeted to the 32-bit mode of x86 processors using gcc's C
dial...
2017 Apr 30
3
selinux problem policies
...;/var/www/html(/.*)?/
typo3conf(/.*)?"
I have more instances from typo3
I found this construct in the selinux policies
"/var/www/html(/.*)?/uploads(/.*)?"
but my is not working ?
and I have only errors?
neverallow check failed at /etc/selinux/targeted/tmp/modules/100/selinuxutil/
cil:244
(neverallow selinuxutil_typeattr_1 semanage_store_t (file (relabelto)))
<root>
allow at /etc/selinux/targeted/tmp/modules/100/selinuxutil/cil:675
(allow restorecond_t non_auth_file_type (file (getattr relabelfrom
relabelto)))
<root>
allow at /etc/selinux/tar...
2008 Apr 12
0
[LLVMdev] Bitwidth analysis?
We have a bitwidth analysis that can be downloaded. It is not in LLVM.
There should be a link in the paper:
http://www.cs.utah.edu/~regehr/papers/pldi075-cooprider.pdf
John Regehr
2008 Apr 12
1
[LLVMdev] Bitwidth analysis?
Dear John,
thanks for pointing it to me. I just downloaded and installed CIL.
However, I am getting an error when I run "make check", or when I try to
compile the blink application, and I am sending you the error notice
below. In any case, do you think it is possible to get some sort of 'dump'
of the target C program with some bitwidth information, onc...
2008 Apr 09
4
[LLVMdev] Bitwidth analysis?
Hi, LLVMers,
has someone implemented bitwidth analysis for LLVM? I was looking for
something similar to the bitwise compiler described in
"Bidwidth analysis with application to silicon compilation, by Mark
Stephenson, Jonathan Babb and Saman Amarasinghe"
e.g.: http://portal.acm.org/citation.cfm?id=349299.349317
all the best,
Fernando
2008 Feb 14
2
[LLVMdev] Higher-level OCaml bindings
...higher level IR that clang uses is basically a C AST. This interface
> is under constant flux though. If you wanted to do this, it would be
> very reasonable to just cons up some C code and send it through the clang
> parser. Clang works great in a JIT environment.
Great! Sounds like CIL should do the trick:
http://manju.cs.berkeley.edu/cil/
:-)
--
Dr Jon D Harrop, Flying Frog Consultancy Ltd.
http://www.ffconsultancy.com/products/?e
2010 Jun 22
0
[LLVMdev] Hello World to MSIL/CIL?
Hello I am trying to use llvm to see if i can compile the following C code
to MSIL/CIL but I cant seem to find any instructions on how to select the
backend i want to output to. Some direction on this would be much
appreciated.
#include <stdio.h>
int main() {
printf("hello world\n");
return 0;
}
Thanks
Kevin
-------------- next part --------------
An HTML att...
2017 May 01
2
selinux problem policies
...t;
>
> OK. Did you get an error?
I have only Errors ;-).
when I like to set this Rule ?
semanage fcontext -a -t httpd_sys_rw_content_t "/var/www/html(/.*)?/
typo3conf(/.*)?"
This Errors are displayd ?
neverallow check failed at /etc/selinux/targeted/tmp/modules/100/selinuxutil/
cil:244
(neverallow selinuxutil_typeattr_1 semanage_store_t (file (relabelto)))
<root>
allow at /etc/selinux/targeted/tmp/modules/100/selinuxutil/cil:675
(allow restorecond_t non_auth_file_type (file (getattr relabelfrom
relabelto)))
<root>
allow at /etc/selinux/tar...
2004 Jul 10
3
[LLVMdev] GCC frontend
...structures
b) how to go about interfacing to them
c) what are changes that LLVM did to the gcc front end
My interest is to interface to gcc data-structures to produce an
open-source language
independent IL in Ocaml -- like LLVM but at a higher level suitable for program
analysis in Ocaml (like the CIL effort at berkeley -- note CIL folks developed
their C frontend from scratch -- a waste of effort when they could
have leveraged the gcc frontend)
Unfortunately there is very little documentation for the gcc front
end interface.
I have to spend a lot of time code-browsing the gcc code trying to
und...
2006 Mar 03
2
Strange Expression
Hello,
I have a dataframe with a column 'col' of expressions of the form
2*3+4*5+6*7 and substrings thereof.
Now
>eval(2*3+4*5+6*7) is ok.
But I want it done on that column... nothing seems to work
Even
> cil <- dataframe$col
>eval(cil[1])
2*3+4*5+6*7
I want the elements of the column evaluated.
Thanks,
A. Mani
Member, Cal. Math. Soc
[[alternative HTML version deleted]]
2008 Feb 14
0
[LLVMdev] Higher-level OCaml bindings
On Thu, 14 Feb 2008, Jon Harrop wrote:
>> is under constant flux though. If you wanted to do this, it would be
>> very reasonable to just cons up some C code and send it through the clang
>> parser. Clang works great in a JIT environment.
>
> Great! Sounds like CIL should do the trick:
>
> http://manju.cs.berkeley.edu/cil/
Huh?
-Chris
--
http://nondot.org/sabre/
http://llvm.org/
2004 Jul 10
0
[LLVMdev] GCC frontend
...d writing docs that makes it easier for people
to not use LLVM is not a high-priority. :)
> My interest is to interface to gcc data-structures to produce an
> open-source language independent IL in Ocaml -- like LLVM but at a
> higher level suitable for program analysis in Ocaml (like the CIL effort
> at berkeley -- note CIL folks developed their C frontend from scratch --
> a waste of effort when they could have leveraged the gcc frontend)
Ok.
> Unfortunately there is very little documentation for the gcc front end
> interface. I have to spend a lot of time code-browsing...
2012 Mar 15
1
Bar graph with 2 Y axis
...s" library (to be able to add error bars as well). Data and codes currently I am using is below.
==================================================
means<-matrix(c(2.3, 2.0, 0.0, 3.0, 2.5, 40), nrow=2, byrow=TRUE)
SEM<-matrix(c(0.3, 0.2, 0.0, 0.4, 0.3, 10), nrow=2, byrow=TRUE)
CIL<-means-SEM
CIU<-means+SEM
rname<-c("Gr1", "Gr2")
cname<-c("day1", "day2", "day3")
rownames(means)<-rname
rownames(CIL)<-rname
rownames(CIU)<-rname
colnames(means)<-cname
colnames(CIL)<-cname
colnames(CIU)<-cname
libra...
2017 Jan 19
2
SELinux upgrade
I have experienced this myself. It is very upsetting.
(Sent from iPhone, so please accept my apologies in advance for any spelling or grammatical errors.)
> On Jan 19, 2017, at 2:57 AM, Fabian Arrotin <arrfab at centos.org> wrote:
>
> log
2001 Apr 21
2
permisos de archivos ...
como puedo cambiar los permisos para un directorio de
tal forma que en un cliente windows pueda leer,
guardar pero no pueda borrar archivos???
_________________________________________________________
Do You Yahoo!?
Construye tu p?gina personal en Yahoo! GeoCities. ?Es f?cil,
r?pido y gratis! http://geocities.yahoo.com.mx
2005 Mar 19
4
How I calculate nCr with R ? (Como calculo nCr con R? )
En espa?ol (In Spanish)
Necesito calcular la en numeros de combinaciones de n cosas
tomando k al tiempo.
Como hago eso en R ???
Yo escrib? mi propia funci?n pero pienso que de esa forma no es
f?cil para mis estudiantes .
He estado buscando en la ayuda y no he encontrado informaci?n
sobre una funci?n que calcule eso directamente. Podr?an ayudarme
In English (en Ingl?s )
I need calculate the combination of n things taking k at time.
How do I do that in R ?
I wrote my own function but in...
2004 Jul 01
0
.Net & Mono language news: C, C++, C#, Java, Python & Perl
...rt for compiling C programs.
The companion libc implementation for the C compiler is called 'pnetC'.
The code is based on glibc."
===
C
lcc -- lcc is a retargetable compiler for Standard C.
lcc.NET, an lcc 4.2 backend for MSIL
According to DotGNU "[MSIL] is exactly the same as CIL, but some media
reports have called it 'MSIL' for some reason."
http://www.cs.princeton.edu/software/lcc/
1. "LCC 4.2 has been recently released. This release adds support for
compiling ANSI C programs to CIL.
Note that the CIL support only works on Win32 right now, but should...
2006 Dec 02
2
nonlinear quantile regression
...o use the
command:
funx <- function(x,a,b){
res <- a*log(x)-b
res
}
Dat.nlrq <- nlrq(y ~ funx(x, a, b), data=Dat, tau=0.25, trace=TRUE)
But a can?t solve de problem, How I put the formula ?y ~ funx(x,a,b)??
_________________________________________________________________
MSN Busca: f?cil, r?pido, direto ao ponto. http://search.msn.com.br
2020 Nov 20
2
selinux policy (& engine) broken in C7
...9.2.noarch
selinux-policy-targeted-3.13.1-268.el7_9.2.noarch
actually three different boxes, all the same:
$ semodule -l
No modules.
and an attempt to install modules fails:
$ semodule -i openvpn.pp
Failed to resolve typeattributeset statement at
/etc/selinux/targeted/tmp/modules/400/pe-openvpn/cil:1
semodule:? Failed!
Does above "usual" work for you?
many thanks, L.
2016 Jan 02
1
Default R Font Changed After Upgrade to Debian 8
...1.14.0-2.1 amd64 Cairo 2D vector graphics library
ii libcairo2-dev 1.14.0-2.1 amd64 Development files for the Cairo 2D graphics library
ii libmono-cairo2.0-cil 3.2.8+dfsg-10 all Mono Cairo library (for CLI 2.0)
ii libmono-cairo4.0-cil 3.2.8+dfsg-10 all Mono Cairo library (for CLI 4.0)
ii libpangocairo-1.0-0:...