search for: nounreachabletrap

Displaying 2 results from an estimated 2 matches for "nounreachabletrap".

2013 Nov 01
0
[LLVMdev] Add a 'notrap' function attribute?
...d up to that thread, I proposed using more fine-grained attributes and Michael rightly pointed out the problem with that: you'd need one for every possible form of undefined behaviour. You listed "nofptrap", "nodivtrap" and "nomemtrap", but you didn't say "nounreachabletrap". Whoops! Nick On 31 October 2013 07:38, Pekka Jääskeläinen <pekka.jaaskelainen at tut.fi>wrote: > Hello, > > OpenCL C specifies that instructions should not trap (it is "discouraged" > in the specs). If they do, it's vendor-specific how the hardware > ex...
2013 Oct 31
6
[LLVMdev] Add a 'notrap' function attribute?
Hello, OpenCL C specifies that instructions should not trap (it is "discouraged" in the specs). If they do, it's vendor-specific how the hardware exceptions are handled. It might be also the case with some other (future) languages targeting "streamlined" parallel accelerators in an heterogeneous setting. At least CUDA comes to mind. What about OpenACC and the new OpenMP,