Displaying 20 results from an estimated 2000 matches similar to: "[LLVMdev] Preserving BBs of bitcode to target binary"
2011 May 31
2
[LLVMdev] How to identify LLVM version?
Hi, all
I'd like to write a code that can build different codes based on LLVM version.
Like code snippets in the below.
#ifdef __LLVM_29__
PHINode *PN = Builder.CreatePHI (Type::getDoubleTy(getGlobalContext()), 2, "iftmp");
#elif __LLVM_28__
PHINode *PN = Builder.CreatePHI (Type::getDoubleTy(getGlobalContext()), "iftmp");
#else
assert ("wrong
2011 May 31
0
[LLVMdev] How to identify LLVM version?
Kangkook Jee <aixer77 at gmail.com> writes:
> Hi, all
>
> I'd like to write a code that can build different codes based on LLVM version.
> Like code snippets in the below.
>
> #ifdef __LLVM_29__
> PHINode *PN = Builder.CreatePHI (Type::getDoubleTy(getGlobalContext()), 2, "iftmp");
> #elif __LLVM_28__
> PHINode *PN = Builder.CreatePHI
2011 Apr 23
6
TC: Simple and complex configs interplay
Hello,
From a user perspective, the simple (tcpri) and complex TC configs
offers two rather distinct choices. A user can very well be OK with
only using the simple way and that''s very fine. Then again, even in
doing so, the more complex config options are available. What is the
interplay between the two as far as having some parameters configured
in both at the same time ? So far
2006 Dec 21
4
Migrate to Debian Etch - nogo
Hi Everyone,
I have a small project going on. I'm about to migrate Redhat 7.3 to
Debian Etch (smbd version 3.0.23d-2+b1).
I've already managed to migrate Redhat 7.3 to Debian Sarge (smbd version
3.0.14a-) without any bigger problems.
However, when I migrate to Etch I face a small problem. The last thing I
want to do before I start samba is to grant my linux/samba admin,
NT 'Domain
2003 Sep 23
3
OpenSSH: multiple vulnerabilities in the new PAM code
This affects only 3.7p1 and 3.7.1p1. The advice to leave
PAM disabled is far from heartening, nor is the semi-lame
blaming the PAM spec for implementation bugs.
I happen to like OPIE for remote access.
Subject: Portable OpenSSH Security Advisory: sshpam.adv
This document can be found at: http://www.openssh.com/txt/sshpam.adv
1. Versions affected:
Portable OpenSSH versions 3.7p1
2013 Sep 18
0
[LLVMdev] Is it safe to insert instructions in batches into BBs?
> From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu]
> On Behalf Of Marcello Maggioni
> Subject: [LLVMdev] Is it safe to insert instructions in batches into BBs?
> Because I need to insert instructions in a certain specific order inside
> multiple different BBs I found it easy to use the IRBuilder to create
> instructions without inserting them into a
2004 Nov 28
1
asterisk based bbs
hello list,
I was wondering: anybody ever wrote an asterisk based bbs? not a bbs about
asterisk, but a vocal bbs that runs on asterisk, so that people can call,
hear the discussion of the day, leave messages, etc.
it seems a rather basic application to me though I cannot find much about.
thanks
l.
--
Creato con M2, il rivoluzionario client e-mail di Opera:
http://www.opera.com/m2/
2013 Sep 18
0
[LLVMdev] Is it safe to insert instructions in batches into BBs?
Marcello Maggioni <marcello at codeplay.com> writes:
> I'm getting a very strange behaviour while adding already created
> instructions in batches into basicblocks instead of creating and
> inserting them immediately.
>
> Because I need to insert instructions in a certain specific order
> inside multiple different BBs I found it easy to use the IRBuilder to
> create
2013 Sep 17
4
[LLVMdev] Is it safe to insert instructions in batches into BBs?
Hi,
I'm getting a very strange behaviour while adding already created
instructions in batches into basicblocks instead of creating and
inserting them immediately.
Because I need to insert instructions in a certain specific order inside
multiple different BBs I found it easy to use the IRBuilder to create
instructions without inserting them into a BB, storing them somewhere
(vector, map
2016 Dec 12
0
Obtaining the actual size of basic blocks (BBs) in bytes and the number of fixups of each BB
Hello,
I am working on my research using LLVM.
I need to obtain the following information at each object file during
compilation, and want to store them into the new section that I define.
Currently the target architecture is x86_64 with ELF format.
*a) actual size of basic blocks in bytes to be emitted *
*b) number of fixups (adjusted in MCAssembler.cpp) that belong to each
basic block *
I
2016 Dec 13
0
[Repost] Obtaining the actual size of BBs in bytes and the number of fixups per each BB
Hello,
I want to obtain the following information at each object file during
compilation, and store them into the new section that I define. Currently
the target architecture is x86_64 with ELF format.
*a) actual size of basic blocks in bytes to be emitted *
*b) number of fixups that belong to each basic block*
By the time of emitting the actual bytes, I could only see the unit of the
2014 May 07
2
les opérations ajouter,supprimer,modifier un client avec jEE et asterisk
salut,
je suis entrain de developper une application jEE avec asterisk qui
consiste ? ajouter, supprimer,modifier des clients en utilisant Asterisk au
lieu de base de donn?e, donc je suis d?butante dans ce domaine,j'ai fait
pour l'instant une connection via asterisk avec API manager , mais je
n'arrive pas a faire la manipulation d'ajout,supprime..Client car je n'ai
pas saisie
2006 Jun 28
20
Rails Vs JBoss Seam
I have been frustrated with J2EE technology just like any other developer who has worked in that
technology for a long time. This made me learn about Rails and I was excited about RoR. Today I
came across JBoss Seam framework and I am not able to contain my excitement.
My passion for JEE development is back. It seems like it is better than RoR. I would like to hear
differnt opinions about this
2013 Oct 07
2
GlusterFS as underlying Replicated Disk for App Server
Hi All,
We have a requirement for a common replicated filesystem between our two
datacentres, mostly for DR and patching purposes when running Weblogic
clusters.
For those that are not acquainted, Weblogic has a persistent store that it
uses for global transaction logs amongst other things. This store can be
hosted on shared disk (usually NFS), or in recent versions within an Oracle
DB.
2013 Jun 22
0
[LLVMdev] Outputting constant char array from llvm pass
Hi, all
I want to know how a llvm pass output constant char array defined from the input
source. Here's an example that I want to do.
== test input source ==
char* msg = "hello, world\n";
void msg_out(char * in) {
printf("msg: %s \n", in);
}
main () {
...
msg_out(msg);
...
}
== llvm pass snippet ==
...
const CallInst* ci =
2011 Apr 24
1
Logging specific Classified packets
Hi All,
I''m not convinced I have my tcrules correctly setup and looking at the
counters in the mangle table''s tcpost doesn''t really help much as I can''t
tell what is the final match.
Is there a way to match packets in iptables based on the classifier? i.e.
so I can LOG packets classified with 1:18 for example.
I can''t see anything in iptables, except
2012 Apr 19
1
[Job Offer] Redmine dev for 4 month contract in Toronto, immediately
Hello All:
I''m looking for a Redmine developer for a minimum 4-month contract with a
major Canadian company in the Mississauga (Airport) area.
The job is to design a new project management web portal for both internal
teams and external vendors.
The current portal is written in JEE on Tomcat with SOPHIA connecting to a
MySQL backend.
Must Have Competency:
- RoR development
2007 Apr 03
1
General question about 'smbclient'
As above,
From what I understand (also obvious from the package name) is that
'smbclient' is only a client.
You can browse shares or use it for troubleshooting. Does it have any
affect on the actual samba server?
I mean does this package have to be installed in order for a samba
server to work properly?
It seems to be that this package can be removed, I just want to make
sure that
2008 Jan 21
1
JavaScript book recommendations
No, not a question, but a few suggestions.
I take it that everyone serious about using Prototype & Co. already has
Christophe''s (Porteneuve) Prototype and Script.aculo.us book. Apart
from that, I''d like to point out two new, library-agnostic books:
Cameron Adams and several others
The Art & Science of JavaScript
Sitepoint 2008
http://www.sitepoint.com/books/jsdesign1/
2008 May 27
4
Fault tolerance with webservers
dear all
i have a web server on centos 4.6. i have configured one more back up Webserver with the same configuration as the same on the primary web server
Now how to configure this servers for fault tolerance. that is. if one server gets down the other should automatically become up.
Please any one help me out how to configure the above. i am new to Linux ...
Regards,
Gopinath M
Signal