Displaying 7 results from an estimated 7 matches for "mxxx".
Did you mean:
maxx
2014 Jan 19
1
PATCH: add FLAC__SSE_SUPPORTED and FLAC__SSE2_SUPPORTED
...d also moves their
definitions to cpu.h.
It also adds GCC 4.9 support (http://gcc.gnu.org/gcc-4.9/changes.html:
"It is now possible to call x86 intrinsics from select functions in a file
that are tagged with the corresponding target attribute without having
to compile the entire file with the -mxxx option")
I also found that I wrote "#ifdef _MSC_VER" instead of
"#if defined _MSC_VER || defined __INTEL_COMPILER". The second attached patch
fixes this.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: 1_sse_support.patch
Type: applicati...
2017 Mar 12
3
Distributing llc and opt with own package?
...s Braun <matze at braunis.de> wrote:
>
> -mllvm xxx will pass options directly to the llvm libraries though for that the same caveats apply in that they are more of a developer/debug tool than a stable interface.
> The stable interface to clang is the usual flags like -O0/-O3/-fXXX/-mXXX ...
>
> If you find yourself in a position that you want to control the pass pipeline down to single passes (why would you want to enable/disable mem2reg really?) then you are relying on LLVM internals anyway. If you need/want that level of control then your best bet would be to link against...
2017 Mar 14
2
Distributing llc and opt with own package?
...unis.de> wrote:
>>>
>>> -mllvm xxx will pass options directly to the llvm libraries though for that the same caveats apply in that they are more of a developer/debug tool than a stable interface.
>>> The stable interface to clang is the usual flags like -O0/-O3/-fXXX/-mXXX ...
>>>
>>> If you find yourself in a position that you want to control the pass pipeline down to single passes (why would you want to enable/disable mem2reg really?) then you are relying on LLVM internals anyway. If you need/want that level of control then your best bet would be...
2017 Mar 11
2
Distributing llc and opt with own package?
Hi Matthias,
I’m trying to see if I can make do with the clang interface only.
How do I pass flags to opt or llc? Say I want to enable/disable tbaa,
which could be done with `--enable-tbaa=true/false` or `-mem2reg` or
`-globalopt`? Would the `-llvm` switch be, what I’m looking for or the
`-Xclang`, or something else entirely?
Cheers,
Moritz
> On Mar 11, 2017, at 2:26 AM, Matthias Braun
2014 Jan 03
2
PATCH: add FLAC__SSE_SUPPORTED and FLAC__SSE2_SUPPORTED
Currently the only way to compile FLAC using GCC w/o SSE support
is to disable asm optimizations (see configure.ac):
if test "x$asm_optimisation" = "xyes" ; then
XIPH_ADD_CFLAGS([-msse2])
fi
Also it's not possible to enable SSE4.1 intrinsic functions even
with -msse4.1 option. The patch fixes both problems.
---------------
BTW: I'm not sure that share/compat.h
2005 May 10
1
Browsing across networks
Hi All,
I have a openvpn setup between two Linux boxes. The internal networks
on each side are on seperate network ranges.
I can ping all boxes from either side, and if I search for a box using
it's ip address, I can see the box and access it's shares.
What I would like to do however is to be able to see the the pc's in
their workgroups (each subnet has it's own workgroup).
I
2016 Feb 24
6
Possible soundness issue with available_externally (split from "RFC: Add guard intrinsics")
Hi all,
This is something that came up in the "RFC: Add guard intrinsics to
LLVM" thread; and while I'm not exactly blocked on this, figuring out
a path forward here will be helpful in deciding if we can use the
available_externally linkage type to expression certain semantic
properties guard intrinsics will have.
Let's start with an example that shows that we have a problem