search for: pragma's

Displaying 20 results from an estimated 1567 matches for "pragma's".

2006 Mar 06
1
Wins Installation problem on solairs x86 version 5.10
...LineA ../../dlls/libwinecrt0.a(exe_main.o) WinMain ../../dlls/libwinecrt0.a(exe_main.o) ld: warning: Symbol referencing errors In file included from x11drv.h:30, from bitblt.c:33: /usr/openwin/include/X11/Xlib.h:38: warning: ignoring #pragma ident In file included from x11drv.h:32, from bitblt.c:33: /usr/openwin/include/X11/Xutil.h:56: warning: ignoring #pragma ident In file included from x11drv.h:47, from bitblt.c:33: /usr/openwin/include/X11/Xmd.h:51: warning: ignoring #pragma ident In file includ...
2010 May 19
4
[LLVMdev] Support for per-loop pragma
Hi Chris, Thanks. I will see what I can do for this. Junjie On Wed, May 19, 2010 at 3:45 PM, Chris Lattner <clattner at apple.com> wrote: > > On May 19, 2010, at 2:38 PM, Junjie Gu wrote: > >> Many compilers support per-loop pragma, such as loop unrolling (ie >> #pragma unroll=2).  Is there any LLVM project/effort going on >> in this area ? What is the expected way for implementing per-loop >> pragma, or general pragma ?  Suggestions/comments ? > > Hi Junjie, > > I don't know of anyone workin...
2010 Jun 02
0
[LLVMdev] Support for per-loop pragma
I'd like to add a pragma support in llvm. I am thinking about using a llvm intrinsic to represent each pragma, such as llvm.pragma (metadata, ...) where metadata describes a pragma. So if an application has: #pragma p1 .. #pragma p2... for (...) The llvm IR would be llvm.pragma (metadata..) // for p1...
2017 Mar 14
2
[cfe-dev] proposal - pragma section directive in clang
Thanks Reid/Jonathon for your replies. Reid, An important case against module level flags is that it wont allow changing or resetting section names e.g. int a; #pragma clang section bss = "xyz" int b; In case above, users would like to see only 'b' placed in 'xyz' and not 'a' as well. Link pointed to by Jonathon seems to require same behavior. Jonathon, We are happy to revise the spelling to - #pragma clang section bss =...
2017 Mar 10
3
[cfe-dev] proposal - pragma section directive in clang
...se that we (I) > hope will be nicer. > > ** Rationale (for llvm-dev) ** > > The goal of this proposed feature is to provide a migration path toward > Clang for developers in the automotive domain. As Javed has mentioned, > AUTOSAR, an automotive standard, mandates the use of a #pragma in header > files to determine in which sections initialized and uninitialized data get > put. > > This feature is implemented in our legacy ARM Compiler 5 toolchain and > we're also aware of GCC forks used across the automotive space that have > this feature implemented compa...
2013 Apr 24
0
[LLVMdev] [cfe-dev] [PROPOSAL] per-function optimization level control
...4. tries to outline a possible workflow for implementing this > new feature. > > I am looking for any feedback or suggestions etc. > > Thanks! > Andrea Di Biagio > SN Systems Ltd. > http://www.snsys.com > > 1. Description > ============== > The idea is to add pragmas to control the optimization level on functions. > > A similar approach has been implemented by GCC as well. > Since GCC 4.4, new function specific option pragmas have been added to > allow > users to set the optimization level on a per function basis. > > http://gcc.gnu.org/on...
2020 Apr 01
3
New LLVM backend for Renesas RL78 MCU
...r I recently received a request which brings me to the reason why I'm writing today: I was asked if I can implement the C Language extension from the Renesas CCRL (Renesas RL78 commercial compiler) in clang in order to close the gap between the two compilers. In GCC I implemented one of them (#pragma address) but when I pushed it upstream it wasn't met with too much enthusiasm and it didn't get accepted. I ended up maintaining it locally among many other things which I didn't upstream which made updating to new versions of GCC difficult. This is one very important thing which I woul...
2016 Jan 12
2
r250501 adds dependancy to ole32.dll on MSVC
...ld OLE32 is added > to > >>>> > the dependencies for LLVMSupport.lib in the CMakeLists.txt file, > there > >>>> > are a couple of other libraries added as well. This lead me to find > >>>> > that those where added for the MSVC build with a pragma(lib, xx), > so I > >>>> > added such a pragma for OLE32 and that fixes my script that is > >>>> > generating LLVM.dll, will also fix other peoples problems with OLE32 > >>>> > missing as well. > >>>> > >>>> Gener...
2015 Dec 24
2
r250501 adds dependancy to ole32.dll on MSVC
...stigation show that for the MinGW build OLE32 is added to >>> > the dependencies for LLVMSupport.lib in the CMakeLists.txt file, there >>> > are a couple of other libraries added as well. This lead me to find >>> > that those where added for the MSVC build with a pragma(lib, xx), so I >>> > added such a pragma for OLE32 and that fixes my script that is >>> > generating LLVM.dll, will also fix other peoples problems with OLE32 >>> > missing as well. >>> >>> Generally speaking, static libraries like LLVMSupport a...
2013 Feb 25
1
[PATCH] lib: avoid pragma usage in inspect-fs-windows
pragma GCC diagnostic is a gcc 4.6+ feature, compilation fails with older compilers: inspect-fs-windows.c: In function 'map_registry_disk_blob': inspect-fs-windows.c:502: error: #pragma GCC diagnostic not allowed inside functions inspect-fs-windows.c:503: error: #pragma GCC diagnostic not allowed...
2009 Oct 08
3
Solution to problem : dynamic variable drops with non-empty dirty list
I read some of the previous posts on this forum, which discussed this particular problem. I tried to use the solution that those posts suggested, but I am still having a problem with my dtrace application running on a heavily loaded system. I have the following lines in my D script, #pragma D option aggsize=8m #pragma D option bufsize=16m #pragma D option dynvarsize=16m #pragma D option aggrate=0 #pragma D option stackframes=MAX_STACK #pragma D option cleanrate=50Hz but still I am getting the following messages, Drop: 17458 dynamic variable drops Drop: 3426 dynamic variabl...
2020 Mar 05
3
Should rint and nearbyint be always constrained?
+cfe-dev as the discussion is now biased toward C standard. I'm not sure what problem you see here. In default mode, i.e. > when there is no "#pragma STDC FENV_ACCESS on" in effect, > then the compiler can always assume that the default rounding > mode is in effect. Well, if #pragma STDC FENV_ACCESS on is not in effect, that means > that the user has promised that at this point during execution, > we will *always* have the def...
2010 May 19
2
[LLVMdev] Support for per-loop pragma
Many compilers support per-loop pragma, such as loop unrolling (ie #pragma unroll=2). Is there any LLVM project/effort going on in this area ? What is the expected way for implementing per-loop pragma, or general pragma ? Suggestions/comments ? Thanks Junjie
2013 Aug 20
1
[PATCH] lib: avoid pragma usage in journal.c
journal.c: In function 'guestfs__journal_get': journal.c:120:9: error: #pragma GCC diagnostic not allowed inside functions journal.c:121:9: error: #pragma GCC diagnostic not allowed inside functions journal.c:123:9: error: #pragma GCC diagnostic not allowed inside functions make[3]: *** [libguestfs_la-journal.lo] Error 1 Signed-off-by: Olaf Hering <olaf@aepfle.de> ---...
2017 Mar 15
2
Problems with replication and dns
...bind using the dlz backend and these are the results. named log: Mar 15 09:39:41 neptuno named[13166]: sizing zone task pool based on 6 zones Mar 15 09:39:41 neptuno named[13166]: Loading 'AD DNS Zone' using driver dlopen Mar 15 09:39:42 neptuno named[13166]: samba_dlz: started for DN DC=pragma,DC=com,DC=co Mar 15 09:39:42 neptuno named[13166]: samba_dlz: starting configure Mar 15 09:39:42 neptuno named[13166]: samba_dlz: configured writeable zone 'waspruebas.proteccion.com.co' Mar 15 09:39:42 neptuno named[13166]: samba_dlz: configured writeable zone 'segdllo02.suranet.com...
2017 Mar 14
2
Problems with replication and dns
Hello, Sorry for the few details. rsync: rsync -h -a -v /usr/local/samba/var/locks/sysvol/pragma.com.co/ root at server2:/usr/local/samba/var/locks/sysvol/pragma.com.co/ first dc smb.conf: [global] tls verify peer = no_check ldap server require strong auth = no netbios name = NEPTUNO realm = PRAGMA.COM.CO server services = s3fs, rpc, nbt, wrepl, ldap, cldap, kdc, drepl, winbindd, n...
2013 Apr 24
1
[LLVMdev] [cfe-dev] [PROPOSAL] per-function optimization level control
...lementing this >> new feature. >> >> I am looking for any feedback or suggestions etc. >> >> Thanks! >> Andrea Di Biagio >> SN Systems Ltd. >> http://www.snsys.com >> >> 1. Description >> ============== >> The idea is to add pragmas to control the optimization level on functions. >> >> A similar approach has been implemented by GCC as well. >> Since GCC 4.4, new function specific option pragmas have been added to >> allow >> users to set the optimization level on a per function basis. >> &g...
2010 Jun 02
1
[LLVMdev] Support for per-loop pragma
...front end to build > loops, which is an > additional task for the front end. And this task is really a backend's > job, not the front end's. The front-ends (llvm-gcc and clang) typically lower their internal AST into llvm IR. The front-end's will have to do a job of attaching pragma to respective AST node any way. Which node will it chose to annotate #pragma, irrespective of how it is annotated ? > If the only concern is that it is hard for pragma intrinsics to stay > with their associated code, > another choice is to process pragma intrinsic at the beginning of >...
2015 Dec 23
2
r250501 adds dependancy to ole32.dll on MSVC
...> > Further investigation show that for the MinGW build OLE32 is added to > > the dependencies for LLVMSupport.lib in the CMakeLists.txt file, there > > are a couple of other libraries added as well. This lead me to find > > that those where added for the MSVC build with a pragma(lib, xx), so I > > added such a pragma for OLE32 and that fixes my script that is > > generating LLVM.dll, will also fix other peoples problems with OLE32 > > missing as well. > > Generally speaking, static libraries like LLVMSupport are just an > archive of a bunch of co...
2013 Apr 24
3
[LLVMdev] [PROPOSAL] per-function optimization level control
...the definition of per-function optimizations; - Section 4. tries to outline a possible workflow for implementing this new feature. I am looking for any feedback or suggestions etc. Thanks! Andrea Di Biagio SN Systems Ltd. http://www.snsys.com 1. Description ============== The idea is to add pragmas to control the optimization level on functions. A similar approach has been implemented by GCC as well. Since GCC 4.4, new function specific option pragmas have been added to allow users to set the optimization level on a per function basis. http://gcc.gnu.org/onlinedocs/gcc/Function-Specific-O...