Displaying 10 results from an estimated 10 matches for "eirini".
Did you mean:
irini
2013 Sep 24
2
[LLVMdev] get the address in memory where an instruction lives
...= inst_end(fi); I != E; ++I) {
Instruction *ii = dyn_cast<Instruction>(&*I);
errs() << &ii << "\n";
}
but i get the same address for every instruction, eg 0xbfc979fc
Why is this happening and how can i get the rigth address?
Thanks,
Eirini
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130924/77287bb6/attachment.html>
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 (Mod...
2013 Jul 01
1
[LLVMdev] Problem with building llvm and running project
...ll me the instuctions about what i have
to do in order to build llvm? do i need to create a new build folder?
What do i have to set to Path variable?
After building llvm i would
like to run my own project, let's say Hello.cpp found in the
/lib/Transforms folder on the llvm source.
Thanks,
Eirini
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130701/1706f99c/attachment.html>
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 Aug 29
0
[LLVMdev] unique id for a llvm Instruction
...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 different addresses in memory.
Jonas
On Thu, Aug 29, 2013 at 2:57 PM, Eirini Psallida <eirini_dit at windowslive.com
> wrote:
> what if another pointer points to the same instruction?
> Is this possible to happen?
>
> Eirini
>
> _______________________________________________
> LLVM Developers mailing list
> LLVMdev at cs.uiuc.edu htt...
2013 Oct 17
1
[LLVMdev] get the value of a Constant in LLVM IR
...is not what i want.
I found also the 'static void WriteConstantInternal()' method in
llvm/lib/IR/AsmWriter.cpp which is called
by 'Value::print()' but it is 'static' so i cannot access it. I need
something like the 'WriteConstantInternal' method.
Any ideas?
Thanks
Eirini
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20131017/97f2c88a/attachment.html>
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*
2013 Jul 11
0
[LLVMdev] lower-lever IR (A-normal form)
...Let me rephrase your question slightly. Would you be satisfied if the disassembled llvm format showed constant expressions on their own line, without turning them into instructions or changing the binary representation at all?
On Thu, Jul 11, 2013 at 4:05 AM, Eirini _ <eirini_dit at windowslive.com> wrote:
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,...
2013 Aug 29
1
[LLVMdev] unique id for a llvm Instruction
Hello,
i would like to ask, is there a way to get a unique id for each llvm instruction?
Eirini
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130829/ca483d68/attachment.html>
2013 Aug 29
0
[LLVMdev] unique id for a llvm Instruction
Hello,
i would like to ask, is there a way to get a unique id for each llvm
instruction?
Eirini
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20130829/34741ae5/attachment.html>