Displaying 20 results from an estimated 30000 matches similar to: "[LLVMdev] noalias for functions?"
2016 Nov 18
2
Loop invariant not being optimized
I tried changing 'noalias' to 'restrict' in the code and I get:
fma.c:17:12: warning: 'restrict' attribute only applies to return values
that are pointers
It seems like 'noalias' would be the correct attribute here, from the
article you linked:
"if a function is annotated as noalias, the optimizer can assume that, in
addition to the parameters themselves,
2013 May 06
2
flac-dev Digest, Vol 102, Issue 7
Ralph, for Mac OS you should download either the Unarchiver which is free,
or Entrophy which is what I use, but it costs like $15 I believe, both
support decompressing .7z and Entrophy supports compressing TO .7z
On Mon, May 6, 2013 at 3:00 PM, <flac-dev-request at xiph.org> wrote:
> Send flac-dev mailing list submissions to
> flac-dev at xiph.org
>
> To subscribe or
2013 May 07
0
flac-dev Digest, Vol 102, Issue 7
It's not that hard to repackage it, is it?
Here you go: www.icer.nl/misc_stuff/flac.xcodeproj .zip
On 06-05-13 23:37, Marcus Johnson wrote:
> Ralph, for Mac OS you should download either the Unarchiver which is
> free, or Entrophy which is what I use, but it costs like $15 I
> believe, both support decompressing .7z and Entrophy supports
> compressing TO .7z
>
>
> On
2013 May 06
3
Bug fix and compatibility patches for 1.3.0pre4
On 6.5.2013 0:43, Timothy B. Terriberry wrote:
> Janne Hyv?rinen wrote:
>> You people do realize these hacks would only be required for 10+ year
>> old obsolete compilers?
> No, they're required for easy distribution on 12 year old OSes (which,
> last I saw, make up almost 40% of Firefox's desktop userbase, and likely
> will continue to for some time).
>
What
2015 Feb 15
3
What options do I have to create OUs and ACLs in Samba4?
On 15/02/15 18:27, Marc Muehlfeld wrote:
> Hello John,
>
> Am 15.02.2015 um 18:56 schrieb John Lewis:
>> I need to create a couple of OUs under Users to separate my internal
>> users from my external users that have LDAP backed accounts so I can put
>> ACLs over the external users so I can limit what they can see on the
>> tree. What options do I have to create the
2013 Dec 03
1
LDAPcmp show errors (serverState, subRefs)
Hi there!
Here it is a setup with an Windows 2003 SBS and two Samba 4.1.2.
Everything is working fine, but I found differences in LDAP and need to
know if this is relevant for replication
samba-tool ldapcmp ldap://sbssrv2003 ldap://samba4.1.2
[...]
Comparing:
'CN=Builtin,DC=SAMBADOMAIN,DC=local' [ldap://gaia]
'CN=Builtin,DC=SAMBADOMAIN,DC=local' [ldap://samba1]
Attributes
2012 Apr 25
1
Function ReadFileEx in Wine
Hi,
I would like to know if this function is completely implement in Wine because since the release of new Ubisoft's games, there is a problem to launch correctly the game.
The error message is :
Code:
2011-12-21 22:04:31 [ 97] [ERROR ] NamedPipeReceiveLoop.cpp (74) : ReadFileEx failed, error = 997.
On Microsoft msdn website, this error (997 = ERROR_IO_PENDING) means that an operation
2013 Jan 16
2
[LLVMdev] RFC: auto-linking IR proposal
Hi Gao,
Thanks for the extra information...
On Wed, Jan 16, 2013 at 1:14 PM, Yunzhong Gao <Yunzhong.Gao at am.sony.com>wrote:
> Hi Daniel,
>
> Nice to meet you.
>
> My understanding of the Microsoft #pragma comment(lib, ...) semantics is
> that
> each specified library will be converted into a directive that starts with
> "/DEFAULTLIB" in the COFF
2015 Sep 03
1
ldapcmp issue
Thank you Rowland for these info.
So no more issue with 4.2.3 and auto-replication : )
Cheers
2015-09-03 11:52 GMT+02:00 Rowland Penny <rowlandpenny241155 at gmail.com>:
> On 03/09/15 09:59, mathias dufresne wrote:
>
>> Hi Mourik,
>>
>> whenChanged was replicated in my test once I did replicate in both way, so
>> it seems to me it is supposed to be
2016 Nov 17
2
Loop invariant not being optimized
I've got an example where I think that there should be some loop-invariant
optimization happening, but it's not. Here's the C code:
#define DIM 8
#define UNROLL_DIM DIM
typedef double InArray[DIM][DIM];
__declspec(noalias) void f1( InArray c, const InArray a, const InArray b )
{
#pragma clang loop unroll_count(UNROLL_DIM)
for( int i=0;i<DIM;i++)
#pragma clang loop
2013 Jan 16
0
[LLVMdev] RFC: auto-linking IR proposal
Hi Daniel,
Nice to meet you.
My understanding of the Microsoft #pragma comment(lib, ...) semantics is that
each specified library will be converted into a directive that starts with
"/DEFAULTLIB" in the COFF .drectve section. To demonstrate, the following patch
produces directives that work with Visual Studio 2010 using the now-deprecated
dependent library feature (commits r168779 and
2013 May 05
2
Bug fix and compatibility patches for 1.3.0pre4
Timothy B. Terriberry wrote:
> Instead I've attached a patch that uses fgetpos/fsetpos. This is
> totally untested (I haven't even checked it compiles), but the idea
> should work.
MSDN says "The pos value is stored in an internal format and is intended
for use only by *fgetpos* and *fsetpos*."
(http://msdn.microsoft.com/en-us/library/70hdhh4t%28v=vs.80%29.aspx), so
2015 May 06
1
IdntoAscii issue with KERNEL32.dll on 64-bit R on Windows Server 2003 x64 SP2
On Wed, May 6, 2015 at 9:44 AM, Duncan Murdoch <murdoch.duncan at gmail.com> wrote:
>
> On the MSDN page for that function, it mentions that you need a header file and DLL to use it in XP or Server 2003. You might try downloading the DLL to see if it works for you automagically; I think it's unlikely we will put in code to special case that version in the general release of R, as
2018 Nov 30
3
(Question regarding the) incomplete "builtins library" of "Compiler-RT"
Hi @ll,
compiler-rt implements (for example) the MSVC (really Windows)
specific routines compiler-rt/lib/builtins/i386/chkstk.S and
compiler-rt/lib/builtins/x86_64/chkstk.S as __chkstk_ms()
See <http://msdn.microsoft.com/en-us/library/ms648426.aspx>
Is there any special reason why compiler-rt doesn't implement
other MSVC specific functions (alias builtins or "compiler
2016 May 26
3
No such Base DN: CN=Produktion A-Studio (alt?), CN=Users, DC=srg2, DC=local / RSAT
2016-05-26 13:51 GMT+02:00 mathias dufresne <infractory at gmail.com>:
> Parenthesis are not yet a good idea with Samba. A colleague created users
> with parenthesis in CN field and we just can't use ldbsearch to look for
> them, as long as we set parenthesis in LDAP filter. We must use wildcard to
> avoid the bug (bug because we can use escaped parenthesis in filters with
2013 Mar 14
0
snprintf and MS Visual Studio
On 3/14/2013 8:00 AM, Erik de Castro Lopo wrote:
> Hi all,
>
> There are a bunch of sprintf calls in the FLAC code base and I'd like
> to replace them with calls to snprintf but I know that can cause
> problems with at least some versions of Visual Studio.
>
> Whats the current state of play in this regard?
>
> Erik
Since MS refuses to support C99, the common
2015 Oct 04
0
Obtaining password hash from kerberos ?
Hi Guy,
> I'm trying to merge the LDAP tree of two servers together so that I can
> perform authentication from a web service on the third server to this
> tree. The problem I have is that the passwords (or, more precisely, the
> passwords hash) is not stored in LDAP but rather via kerberos.
why do you think that kerberos hashes are not stored in the ldap tree? Take a look at
2013 Mar 19
0
Patch to add Unicode filename support for win32 flac
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
On 19.03.2013 20:35, Janne Hyv?rinen wrote:
>
> On 19.3.2013 15:49, JonY wrote:
>> On 3/19/2013 19:59, Janne Hyv?rinen wrote:
>>> On 18.3.2013 12:25, Erik de Castro Lopo wrote:
>>>> JonY wrote:
>>>>
>>>>> Before anyone does anything, see __wgetmainargs
>>>>>
2015 May 11
0
Windows environmental variables
Hi,
I recently had some difficulty getting an embedded R session running
on Windows, due to the way that R Sys.getenv works, which I would
consider a bug. Even if you do not agree, then you may still want to
document it for future users who might be bitten.
As outlined in R-exts (?8.2.2):
http://cran.r-project.org/doc/manuals/r-release/R-exts.html#Calling-R_002edll-directly
R_HOME/bin needs to
2008 Apr 26
0
[LLVMdev] ParamAttr Patch - Alignment fix
Hi Anders,
Thanks for the patch. I'd like you to incorporate some feedback before
I apply it, though.
> Index: include/llvm/Argument.h
> ===================================================================
> --- include/llvm/Argument.h (revision 50213)
> +++ include/llvm/Argument.h (working copy)
> @@ -60,7 +60,16 @@
> +
> + /// setByValAttr - Set true to give the