Displaying 20 results from an estimated 53 matches for "vutbr".
2014 Aug 04
3
[LLVMdev] Publication: Languages Used in LLVM During Compilation
...ink also other may find it useful, so I am sending it
here, so you can add it somewhere on the web if you will
would like to.
It is not exactly a publication, rather lecture
slides.
Title: Languages Used in LLVM During Compilation
Date: 30th April 2014
Author: Adam Husar, FIT BUT, ihusar at fit.vutbr.cz
Abstract:
Presentation deals with intermediate presentations
used in LLVM during compilation from a high-level
programming language into assembly language.
It briefly describes clang's AST, then LLVM IR,
and also Selection DAG and Machine Code repesentations.
It can be dowloaded here http:...
2002 Sep 25
10
Reading complicated data file
Hi, I am new in R and I have problem with reading this data file
0 TITLE Title
0 XLEGEND Legend
-1 LABEL x
1 1 12
1 2 30
1 3 34
I want to read only lines starting with 1 (it indicates 1st plotting line)
and create data set from second and third value on this row.
Thank for advice
Jakub Zlamal
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-help mailing list
2003 Nov 27
2
Question about adding another parameter for OpenSSH
...passphrase. */
- private = key_load_private(identity_file, passphrase, &comment);
+ private = key_load_private(identity_file, passphrase,
+ &comment, 0);
if (private == NULL) {
memset(passphrase, 0, strlen(passphrase));
xfree(passphrase);
--
Rudolf Cejka <cejkar at fit.vutbr.cz> http://www.fit.vutbr.cz/~cejkar
Brno University of Technology, Faculty of Information Technology
Bozetechova 2, 612 66 Brno, Czech Republic
2006 Jul 03
1
clamav upgrade help and info
Dear list...
In regards to recent upgrade in www.clamav.net to 0.88.3 and...
...as an example I've used this page to create a process where I can create
my own clamav programs/stuff/etc...
http://qmail.jms1.net/clamav-upgrade.shtml
and so I would go to http://crash.fce.vutbr.cz/crash-hat/4/clamav/ and snag
the source rpm that Petr made for Fedora 4.
He hasn't updated yet (pretty sure he will soon)
as an alternative... how would I do what Petr does and create my own clamav
source rpm...
I don't think it is that hard yet since I am involving production hardwar...
2009 Sep 14
1
Fwd: NUT and removed allowfrom/ACCEPT/REJECT support
I don't reply to messages send to me in private.
Best regards, Arjen
--
Please keep list traffic on the list
-------------- next part --------------
An embedded message was scrubbed...
From: Rudolf Cejka <cejkar op fit.vutbr.cz>
Subject: NUT and removed allowfrom/ACCEPT/REJECT support
Date: Mon, 14 Sep 2009 19:23:17 +0200
Size: 3148
URL: <http://lists.alioth.debian.org/pipermail/nut-upsuser/attachments/20090914/40c0e230/attachment.eml>
2004 Feb 13
1
samba-docs mailing list
Hello
How do I subscribe to samba-docs mailing list? The list is listed at
http://samba.kn.vutbr.cz/samba/archives.html
however it is not listed on the subscription page at
http://lists.samba.org/mailman/
judging by grepping 'samba-docs' in the page and finding nothing.
Cl<
2009 Jun 25
0
[LLVMdev] Replacing instruction in LLVM IR by an intrinsics
On Thu, Jun 25, 2009 at 12:32 AM, ihusar<ihusar at fit.vutbr.cz> wrote:
> //now i need to create an instruction that represents a call to a intrinsic
> Function* FIntr = Intrinsic::getDeclaration(&M, Intrinsic::regread_i32);
>
> // here it fails: void llvm::CallInst::init(llvm::Value*):
> ...
2004 Aug 06
2
Icecast Compilation Error
Hallo!
While compiling Icecast (after successfully installing libshout, ogg,
vorbis-tools, and libao on a Red Hat 8.0 system) I get the following error
which causes the compilation to abort:
--- quote:
[...]
make[2]: Entering directory `/usr/local/programs/icecast/src'
source='yp.c' object='yp.o' libtool=no \
depfile='.deps/yp.Po' tmpdepfile='.deps/yp.TPo' \
2009 Jun 24
3
[LLVMdev] Replacing instruction in LLVM IR by an intrinsics
Hi everyone,
I am trying to write a pass, that finds some instructions and replaces them with my intrinsics,
but I am having problem understanding, how this should be done.
Let's say I have this instruction:
%tmp14 = load i32* getelementptr ([32 x i32]* @gpregs, i32 0, i64 28)
and i need to read the load's operands and replace it by let's say:
%tmp14 = call i32
2013 Jun 10
3
[LLVMdev] Whole program alias analysis in backend
Hello everyone,
we are planning to implement a stronger alias analysis
for backend, because e.g. for VLIW architectures, this is our main
performance limitation.
I would have 2 questions regarding this.
I know that backend processes one function at a time,
is it somehow possible to do there a whole program analysis,
or could you give me some guidelines?
Which alias analysis algorithm
2015 Jan 07
4
[LLVMdev] ARM disassembler
Hi,
I am newbie for LLVM. I need some help,
I want to disassemble ARM binaries and perform some operation on LLVM IR
and again back to generate ARM binary from modified ARM LLVM IR. How I can
proceed for the same.
Any tool or document will be highly appreciated.
Thanks and Regards,
Deep
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2009 Jun 02
3
[LLVMdev] LLVM frontend supporting arbitrary bit-width integral datatypes
Hello gyus,
I am working on a project, where we are trying to create a development environment
for new ASIP processor design. Part of this project is a compiler generator,
where we would like to generate C compiler from some instruction description.
To keep it short, let's say, that in each instruction's semantics
is described by some C code. What I would like to do is to compile this
2011 Feb 15
0
[LLVMdev] How to use ConstantFoldConstantExpression?
I forgot to mention, that I use LLVM release 2.8, I did not try it with the latest revision, but I expect that I
am rather doing something wrong than using non-implemented functions.
On Tue, 15 Feb 2011 14:09:57 +0100, ihusar <ihusar at fit.vutbr.cz> wrote:
> Hello,
>
> i need to fold constants, i found that a function ConstantFoldConstantExpression could be used,
> however I am not able to make it fold anything. Could you please give me some advice, what I am doing wrong?
>
>
> My code looks something like this:...
2009 Jun 24
4
[LLVMdev] LLVM frontend supporting arbitrary bit-width integral datatypes
...piler then reads the architecture
> description and creates an LLVM backend on the fly.
>
> Please don't hesitate to get in touch with us if you have
> questions.
Hello,
thank you for your answers, in fact, the TCE project is quite similar to our project Lissom (http://www.fit.vutbr.cz/research/view_product.php.en?id=52¬itle=1), I will take a closer look at it.
One problem, I was trying to solve was, that I need to declare variables of let's say 5-bit width like 'i5 var',
the maximal bit-width may be limited to 64 bits. I need such variables to represent i...
2011 Feb 15
3
[LLVMdev] How to use ConstantFoldConstantExpression?
Hello,
i need to fold constants, i found that a function ConstantFoldConstantExpression could be used,
however I am not able to make it fold anything. Could you please give me some advice, what I am doing wrong?
My code looks something like this:
//data layout is obtained from clang-generated code for triple arm-none-linux-gnueabi with added v32:32:32
const char* const TARGET_DATA_LAYOUT =
2011 Feb 15
2
[LLVMdev] How to use ConstantFoldConstantExpression?
...[LLVMdev] How to use ConstantFoldConstantExpression?
I forgot to mention, that I use LLVM release 2.8, I did not try it with the latest revision, but I expect that I
am rather doing something wrong than using non-implemented functions.
On Tue, 15 Feb 2011 14:09:57 +0100, ihusar <ihusar at fit.vutbr.cz> wrote:
> Hello,
>
> i need to fold constants, i found that a function ConstantFoldConstantExpression could be used,
> however I am not able to make it fold anything. Could you please give me some advice, what I am doing wrong?
>
>
> My code looks something like this:...
2010 Mar 23
1
[LLVMdev] Canonical rules
LLVM version: 2.6
Query context: Automatic generator of LLVM backends.
Query:
What are canonical rules for initial DAG (generated by LLVM)?
Are there any at all?
Example:
Commutative operations. Are operations like
X = 1 + REG
automatically transformed into
X = REG + 1
?
Because of the nature of our project, we need exact information.
Thank you very much.
JH
2010 Apr 14
2
[LLVMdev] Delay Slot Filler
...ve lib/Target/Mips/MipsDelaySlotFiller.cpp by
substituting nops emitting with instructions reordering. I need
a hazard recognizer, but I haven't found any. Do I have to create
one, or looking bad and there is any?
Thanks for any reply.
--
Filip Kocina, student FIT
Email: xkocin00 at stud.fit.vutbr.cz
2010 Apr 16
1
[LLVMdev] Delay Slot Filler
> You have to create one! Take a look at PPCHazardRecognizers.cpp
> and SPUHazardRecognizers.cpp for examples.
> If you can, contribute it back! :)
There is also generic hazard recognizer which works on top of
instruction itineraries.
--
With best regards, Anton Korobeynikov
Faculty of Mathematics and Mechanics, Saint Petersburg State University
2013 Jul 03
2
[LLVMdev] CallGraph in immutable pass
Hello,
is there any way I can access CallGraph from immutable pass via
getAnalysis?
As I understand it, this may not be possible, because immutable pass
don't have runOn method and is never actually planned. But I'm not 100%
sure how this works, so I don't know if there is some other way.
Thanks,
Robert Barucak