Displaying 20 results from an estimated 25 matches for "auler".
Did you mean:
auger
2014 Sep 29
2
[LLVMdev] Windows Installer
Your install dir has a whitespace. Have you tried quoting? e.g.
<LLVMInstallDir>"C:\Program
Files (x86)\LLVM"</LLVMInstallDir>
Best regards,
Rafael Auler
On Mon, Sep 29, 2014 at 7:38 PM, Eric Mader <emader at gmx.us> wrote:
> I changed tooset-vs2013.props to this:
>
> <Project xmlns="http://schemas.microsoft.com/developer/msbuild/2003"
> <http://schemas.microsoft.com/developer/msbuild/2003>>
> <Impo...
2014 Sep 30
2
[LLVMdev] Windows Installer
...he other one passes "-m64".
>
> They both reference $(Platform), so I wonder if maybe $(Platform)
> isn't getting set correctly? The platform name in the project is "x64"
> which seems right...
>
> Regards,
> Eric
>
> On 9/29/14, 12:40 PM, Rafael Auler wrote:
>> Your install dir has a whitespace. Have you tried quoting? e.g.
>> <LLVMInstallDir>"C:\Program Files (x86)\LLVM"</LLVMInstallDir>
>>
>> Best regards,
>> Rafael Auler
>>
>> On Mon, Sep 29, 2014 at 7:38 PM, Eric Mader <ema...
2014 Sep 29
2
[LLVMdev] Windows Installer
...noticed that it wrote toolsets
> only for win32. (vs2010, vs2013, vs2113_xp) Looking at the script, it seems
> like it should write x64 toolsets too. I'll try copying the x64 toolsets by
> hand to see what happens
>
> Regards,
> Eric Mader
>
> On 9/29/14, 9:38 AM, Rafael Auler wrote:
>
> I was not necessarily asking you to build, but just to check your
> installation folder and see whether you have "tools/msbuild/install.bat"
> there because I don't know if the Windows installer puts this there.
> However, if you want to build outside VS, I r...
2015 Jul 06
2
[LLVMdev] [lld] Current ways to position memory sections (e.g. .text, .data, .bss) with lld?
Hi Ed,
I wrote http://reviews.llvm.org/D10952 to address your last problem. There
is also the related http://reviews.llvm.org/D10918 by Denis to address how
you can directly assign sections to segments in the script. Both are in
code review.
Rafael auelr
On Fri, Jul 3, 2015 at 12:29 AM, Rafael Auler <rafaelauler at gmail.com> wrote:
> Hi Ed,
>
> It looks like lld is failing at mapping two sections far apart from each
> other into two different segments. Since it puts these two sections (.text
> and .data) in the same ELF segment, the segment is forced to be huge
> beca...
2014 Sep 29
4
[LLVMdev] Windows Installer
I was hoping to not have to build LLVM myself, especially on Windows.
Can anybody help me with the Windows installer?
Failing that, I find the directions for how to compile on Windows hard
to follow? Can I build using Cygwin?
Regards,
Eric
On 9/29/14, 8:11 AM, Rafael Auler wrote:
> I'm not sure about the Windows installer, but if you build and install
> LLVM for Windows from the source code, you should be able to go to the
> installation folder, find a subfolder named "tools/msbuild" and run
> the "install.bat" script. This shou...
2015 Aug 22
2
a lld linker script bug
...ker script
testing, with your example? Alternatively, you can modify
lld/test/elf/linkerscript/sections-with-wildcards.test to test your
case. This will make your patch complete and ready for commit, and
will ensure we do not regress on this bug if this code is ever
rewritten.
Best regards,
Rafael Auler
On Fri, Aug 21, 2015 at 8:48 PM, Davide Italiano <davide at freebsd.org> wrote:
> On Fri, Aug 21, 2015 at 4:41 AM, zan jyu Wong via llvm-dev
> <llvm-dev at lists.llvm.org> wrote:
>> Hi,
>>
>> I've found a crash in lld when using linker script with wildcard m...
2015 Feb 09
2
[LLVMdev] lld options to parse linker script
Hi all,
Which are the command-line options available to pass linker script, library
path etc.. to lld? I see minimal options listed, when i say,
lld -flavor gnu -help
Thanks in advance,
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20150209/e7a6f7b8/attachment.html>
2020 Apr 08
3
Error with perf2bolt in LLVM BOLT
Hi,
I was interested in trying out LLVM BOLT and generated profile data using
Linux perf using the following:
perf record -e cycles:u -o perf.data <command>
This is without the use of LBR so I understand the performance improvements
may not be much but this was more for becoming familiar with BOLT's
commands.
I then run:
perf2bolt -nl -p perf.data -o perf.fdata <binary>
and I
2014 Sep 26
2
[LLVMdev] [lld] A primitive program linked by lld core dumps
Hi,
I've encountered a newly introduced bug in lld today.
I am building my program with clang and lld on an X86-64 Ubuntu Linux
machine.
Command line:
clang main.c
The compiled program invokes the "main" function multiple times until it
closes with a segmentation fault.
This affects even the most primitive programs like "int main() { return
0; }".
The problem
2015 Jul 01
2
[LLVMdev] [lld] Current ways to position memory sections (e.g. .text, .data, .bss) with lld?
Hi All,
Congratulations on the major progress on the llvm linker lld over the past
year including the new linker script support. This really makes it
possible to ditch binutils altogether. It looks like lld's MEMORY sections
are currently parsed but not evaluated, but so far that hasn't been a
problem.
The only snag is I can't figure out how to define the start of the .data
section
2011 Apr 08
0
[LLVMdev] GSoC 2011: Superoptimization for LLVM IR
...when lowering to machine code.
An example:
%3 = fcmp %1, %2
%6 = fcmp %4, %5
%7 = and %3, %6
%8 = and %7, %foo
Sometimes you'll be screw if you want to play reassociate %7 and %8. I
don't see a easy way of catching them in theorem provers.
Haohui
On Thu, Apr 7, 2011 at 5:03 PM, Rafael Auler <rafaelauler at gmail.com> wrote:
> Hello all, thanks for the feedback!
>>
>> It sounds like you are planning to follow the approach of Joshi, Nelson
>> and
>> Randall ("Denali: A Goal-directed Superoptimizer") in that you don't
>> intend
>>...
2011 Apr 06
7
[LLVMdev] GSoC 2011: Superoptimization for LLVM IR
...USA, 1987. IEEE Computer Society Press.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110406/2161e6bb/attachment.html>
-------------- next part --------------
A non-text attachment was scrubbed...
Name: Auler,GSoC2011.pdf
Type: application/pdf
Size: 102451 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20110406/2161e6bb/attachment.pdf>
2014 Nov 26
2
[LLVMdev] Out of source backend
Hello,
I am in a developing process for a new llvm backend (target). Can I
create the new target subdirectory out of source. My point is that I want
to create a separate svn repo only for my new backend directory and use the
llvm project as an external repository. I have to amke some changes to llvm
project, to integrate my backend to the llvm, but I won't commit my changes
to the llvm
2016 Aug 03
2
Initial selection DAG creation (SelectionDAG.cpp) - output detailed debug info
Hello.
In order to detect a problem in the initial selection DAG creation that I have in my
back end I need to output detailed debug info from the SelectionDAG.cpp module with all
the TableGen records that are being processed, and compare between a working back end and
my buggy back end.
I can debug by adding myself DEBUG() statements in the visit*() methods of the
SelectionDAG.cpp
2011 Apr 07
2
[LLVMdev] GSoC 2011: Superoptimization for LLVM IR
Hello all, thanks for the feedback!
It sounds like you are planning to follow the approach of Joshi, Nelson and
> Randall ("Denali: A Goal-directed Superoptimizer") in that you don't intend
> to exhaustively enumerate all possible code sequences, and see if they are
> the same as the original only better; but instead start from the original
> code
> sequence and
2015 Aug 21
2
a lld linker script bug
Hi,
I've found a crash in lld when using linker script with wildcard matching.
An example linker script:
INPUT(os/main.o os/foo.o os/startup.o)
OUTPUT(k.bin)
SECTIONS
{
. = 0x0
.text : { *startup.o (.text) }
.text.2 : { *(.tex*) }
}
I've wrote up a patch to fix this crash.
Index: tools/lld/lib/ReaderWriter/LinkerScript.cpp
<+>UTF-8
2014 Sep 29
4
[LLVMdev] Windows Installer
I’m trying to install LLVM-3.6.0-r218288-win32.exe on Windows 7 Ultimate
x64. The install doesn’t complain, but the toolset doesn’t show up in
either Visual Studio 2013 or Visual Studio 2010. Also I selected the
choices to add LLVM to the path for every user and put an LLVM icon on
the desktop. Neither of this happened. Can anyone tell me how to get
this to work?
Regards,
Eric Mader
2019 Oct 11
2
[RFC] Propeller: A frame work for Post Link Optimizations
...he function, and another containing the cold blocks? The
linker would have less flexibility in placement, but maybe it doesn't
actually need that flexibility?
Apologies if this is obvious for those who actually know what they're
talking about here. :)
On Wed, Oct 2, 2019 at 6:18 PM Rafael Auler <rafaelauler at fb.com> wrote:
> You’re correct, except that, in Propeller, CFI duplication happens for
> every basic block as it operates with the conservative assumption that a
> block can be put anywhere by the linker. That’s a significant bloat that is
> not cleaned up later....
2019 Oct 17
2
[RFC] Propeller: A frame work for Post Link Optimizations
...may also require global context.
>
>
>
> It is conceivable to have an option to control the level of granularity at
> the possible cost of performance.
>
>
>
> thanks,
>
>
>
> David
>
>
>
>
>
>
>
> On Wed, Oct 2, 2019 at 6:18 PM Rafael Auler <rafaelauler at fb.com> wrote:
>
> You’re correct, except that, in Propeller, CFI duplication happens for
> every basic block as it operates with the conservative assumption that a
> block can be put anywhere by the linker. That’s a significant bloat that is
> not cleaned up la...
2019 Oct 14
2
[RFC] Propeller: A frame work for Post Link Optimizations
...e processor
> front-end throughput may also require global context.
>
> It is conceivable to have an option to control the level of granularity at
> the possible cost of performance.
>
> thanks,
>
> David
>
>
>
>>
>> On Wed, Oct 2, 2019 at 6:18 PM Rafael Auler <rafaelauler at fb.com> wrote:
>>
>>> You’re correct, except that, in Propeller, CFI duplication happens for
>>> every basic block as it operates with the conservative assumption that a
>>> block can be put anywhere by the linker. That’s a significant bloat th...