Displaying 20 results from an estimated 2100 matches similar to: "[LLVMdev] Problem with building llvm and running project"
2013 Aug 29
2
[LLVMdev] unique id for a llvm Instruction‏
what if another pointer points to the same instruction?
Is this possible to happen?
Eirini
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130829/ad6ba4bb/attachment.html>
2013 Sep 24
2
[LLVMdev] get the address in memory where an instruction lives
Hi,
i want to get the address in memory of an instruction pointer and use it as
a key in my tables.
i iterate over the instructions in LLVM IR like this:
for (Module::iterator fi = Mod->begin(), fi_end = Mod->end(); fi != fi_end;
++fi) {
for (inst_iterator I = inst_begin(fi), E = inst_end(fi); I != E; ++I) {
Instruction *ii = dyn_cast<Instruction>(&*I);
2013 Sep 24
1
[LLVMdev] get the address in memory where an instruction lives
On 24.09.2013, at 17:38, Eirini Psallida <eirini.psallida at gmail.com
<http://lists.cs.uiuc.edu/mailman/listinfo/llvmdev>> wrote:
>* Hi, *>* i want to get the address in memory of an instruction pointer and use it as a key in my tables.*>* i iterate over the instructions in LLVM IR like this:*>* for (Module::iterator fi = Mod->begin(), fi_end = Mod->end(); fi !=
2013 Aug 29
0
[LLVMdev] unique id for a llvm Instruction
>
>
> what if another pointer points to the same instruction?
>
You can have many pointers to the same instruction. However, the address in
memory where that instruction lives is unique. Instruction pointers (or
Value pointers) are thus commonly used as keys in hash tables or similar.
Instructions or Values are almost never copied, so that you won't find the
same instruction at
2005 May 17
3
The error in R while using bugs.R function
Dear R users,
I followed the instuctions on Dr. Gelman's web to install all
of documents that bugs.R needs, but when I try to run the school example that the web posted in R, I got an error: couldn't find function "bugs", what's wrong?
Thanks,
Jia
2013 Oct 17
1
[LLVMdev] get the value of a Constant in LLVM IR
Hello,
i parse the llvm IR (llvm-3.3 version) and when i meet a constant, i want
to get it's value.
eg i32 5, i want to get the 5.
I am interested in ConstantInt-ConstantFP-ConstantArray-ConstantStruct
subclasses.
Things are a bit easier with ConstantInt and ConstantFP constants but how
could i get the value of a ConstantArray?
The
2013 Jul 11
0
[LLVMdev] lower-lever IR (A-normal form)
I would like to create some tables for my instructions in the IR. For example a table that has all the store instructions.
I want all the arguments to a function or instruction or constant etc to be trivial.
So to fix my previous example instead of having :
call void @llvm.memcpy.i32(i8* %19, i8* getelementptr inbounds ([2 x [2
x [3 x i8]]]* @main.s, i32 0, i32 0, i32 0, i32 0), i32 12, i32
2007 Dec 02
1
Asterisk on Solaris
I submiited to the list last night, but it never showed up. Here we go
again.
I've tried building Asterisk 1.4.15 on Solaris based on instuctions
here, http://forums.digium.com/viewtopic.php?t=5888. However, this is
the message I get. This is Solaris on X86. Any ideas?
[CC] stdtime/localtime.c -> stdtime/localtime.o
stdtime/localtime.c: In function `localsub':
2005 May 16
1
A question about bugs.R: functions for running WinBUGs from R
Dear R users,
I've found bugs.R : the functions for running WinBUGs from R that is
writen by Dr. Andrew Gelman who is a professor from Columbia University.
The bugs.R would be very useful for me, and I think many of you know it
as well. I followed the instuctions on Dr. Gelman's web to install all
of documents that bugs.R needs, but when I try to run the school example
the web posted in
2013 Jul 10
2
[LLVMdev] lower-lever IR (A-normal form)
Hi,
i would like to ask you, if i can get a lower-level representation than the llvm IR.For example, having the following instruction in the llvm IR, call void @llvm.memcpy.i32(i8* %19, i8* getelementptr inbounds ([2 x [2 x [3 x i8]]]* @main.s, i32 0, i32 0, i32 0, i32 0), i32 12, i32 1)
i would like to get something like this (in A-normal form (without nested instructions):%temp = i8*
2007 Sep 20
3
[LLVMdev] Building with Microsoft Visual Studio
I am working on a port of LLVM targeting a proprietary VM. Thus far
development has been under Linux and Cygwin. Cygwin licensing would appear
to require that LLVM built under Cygwin would have to be released under the
GPL, so alternatives are being investigated.
Using MS Visual Studio and following the instructions at
http://llvm.org/docs/GettingStartedVS.html (Getting Started with the LLVM
2019 Jul 16
2
Usage of chmod 400 in lld lit tests causes failures when run by root user
Hi,
There are 3 lld tests[1] that run the command `chmod 400` or `chmod u-w`
and then check that lld generates a permission denied error when trying to
write to the files. These tests fail when run as root,
because `chmod 400` is not enough to prevent root from writing to files.
Is there some other way we can tests this, or should we just not support
running tests as root?
A related question I
2015 Jul 17
3
[LLVMdev] Fail to build LLVM release_36 in MSVC 2013
Hi, All,
I follow the menu http://llvm.org/docs/GettingStartedVS.html , but still
failed to build LLVM debug version.
Here's error message:
7>C:\study\llvm\projects\compiler-rt\lib\asan\asan_win.cc(69): fatal error
C1189: #error : Please build the runtime with a non-debug CRT: /MD or /MT
Any idear?
--
Best Regards,
Amy
-------------- next part --------------
An HTML attachment was
2012 Jul 10
2
[LLVMdev] Unable to do even basic Clang tutorial
Looks like your make/install is incomplete wrt clang. I follow the
instuctions for checking out the sources but build using cmake instead
of configure:
> cmake -G ""Unix Makefiles" -DLLVM_TARGETS_TO_BUILD="X86" -DCMAKE_BUILD_TYPE="Release" -DCMAKE_INSTALL_PREFIX="../bin" ../llvm
> make install
This builds and installs llvm+clang in the bin
2010 Jan 18
2
[LLVMdev] Any detailed instructions for building LLVM on Win XP?
I need to build LLVM on Win XP VM. Are there any detailed instructions for that?
Thank you
-Shad Ahmad | Release Manager, Adobe AIR | Adobe Systems, Inc | sahmad at adobe.com | 408.536.4101
2012 Jul 02
2
[LLVMdev] Creating a new project using LLVM
Chen,
Thank you.
When I replaced gcc by clang, how do I ensure that the clang use the
LLVM backend that is already modified by myself? I am trying to
modified the source code for the register allocator of the llvm and
want to apply this modification to the clang compiler. I see that when
I compile the whole modified llvm project from scratch, it does not
produce a Clang executable. The clang
2012 Jun 16
9
[LLVMdev] Fwd: RFC: "Building with MinGW on Windows" (DOC, NEW)
Mikael,
Thanks for working on.
My gross comments...
- Canonical URL of LLVM project is; http://llvm.org/ , not www.llvm.org.
- "test-suite and cygwin" could be split out. It would be special thing.
- Memory/storage requirements would be moved to "A.B Debugging". Less
memory would be enough without debug build.
- Python (x64 binary) is available, too. I am using.
Python
2005 Mar 10
2
[LLVMdev] VC++ 2003
Hi,
I was trying to know if LLVM 1.5 works better with VC++ 2003 and to what extent. This link:
http://llvm.cs.uiuc.edu/releases/1.5/
Referred to in : http://llvm.cs.uiuc.edu/docs/ReleaseNotes.html
Is broken
Where can I find more information? In particular:
Can the LLVM be compiled using VC++ 2003?
Does it generate bytecode and executable code?
Thanks
2018 Mar 04
1
[GSOC 2018] Improve code generation testing
Hi Matthias,
I am a fourth year undergraduate student with some knowledge working on
code generation, but with the java backend (committer at an Apache project)
and have C++ as my primary language.
What I've done so far?
-----
1. I've created an account on bugzilla
2. studying LLVM ProgrammersManual
3. studying LLVM CodingStandards
Help
----
1. trying to setup `llvm-core` and `clang`
2008 May 14
2
[LLVMdev] patch for building llvm on Windows with MSVC 2008
I verified the patch and it compiles all the targets, both in Debug and
Release modes.
If there is no someone else to keep the MSVC projects files updated, I will
try from time to time to update them and to add the new targets.
Maybe a note must be put in "docs/GettingStartedVS.html" at the Requirements
section that llvm needs now MSVC (Express) 2008 to compile.
Razvan
-----