Displaying 5 results from an estimated 5 matches for "vagraw".
Did you mean:
vagrant
2013 Oct 12
2
[LLVMdev] Building for a specific target, corei7
...passing the "-march=corei7" flag.
For gcc, I was passing the "-mcpu=corei7" flag.
Am I passing the correct flags?
Any help, comments or suggestions, would be helpful.
Thanks,
--
Varun Agrawal
PhD Student
Computer Science, Stony Brook University
http://compas.cs.stonybrook.edu/~vagrawal/
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20131012/9aed7f2c/attachment.html>
2013 Oct 14
0
[LLVMdev] Building for a specific target, corei7
Hi Varun,
I see the point of your question, but I'm not the best person to answer from that perspective.
Nadav Rotem is the owner of the x86 backend, and he can probably give you a more complete answer than I could.
Thanks,
Andy
From: Varun Agrawal [mailto:vagrawal at cs.stonybrook.edu]
Sent: Friday, October 11, 2013 8:48 PM
To: Kaylor, Andrew; llvmdev at cs.uiuc.edu
Subject: RE: Building for a specific target, corei7
Hi Andrew,
I think I diluted my question. My question was not related to MCJIT.
I ran the following 4 scenarios:
(1)gcc -mcpu=corei7 tetri...
2013 Oct 11
2
[LLVMdev] Building for a specific target, corei7
...passing the "-march=corei7" flag.
For gcc, I was passing the "-mcpu=corei7" flag.
Am I passing the correct flags?
Any help, comments or suggestions, would be helpful.
Thanks,
--
Varun Agrawal
PhD Student
Computer Science, Stony Brook University
http://compas.cs.stonybrook.edu/~vagrawal/
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20131011/a6c5c399/attachment.html>
2013 Oct 11
0
[LLVMdev] Building for a specific target, corei7
...passing the "-march=corei7" flag.
For gcc, I was passing the "-mcpu=corei7" flag.
Am I passing the correct flags?
Any help, comments or suggestions, would be helpful.
Thanks,
--
Varun Agrawal
PhD Student
Computer Science, Stony Brook University
http://compas.cs.stonybrook.edu/~vagrawal/
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20131011/449ec587/attachment.html>
2013 Mar 17
0
[LLVMdev] Problem with executing recompileAndRelinkFunction successively
Hi,
I am trying to recompile a function during runtime, using JIT
compilation (not MCJIT). I choose JIT over MCJIT, because I only want
to modify a single function and not the whole module.
I am successfully able to recompile the function, but after that, the
original function definition is lost. And if I try to recompile, it
recompiles with the new function definition.
I figured out two