search for: 350714

Displaying 8 results from an estimated 8 matches for "350714".

2017 Apr 04
3
[inline-asm][asm-goto] Supporting "asm goto" in inline assembly
...labeled block out of line, to optimize the fall through path from the asm. Here is the Linux kernel RFC which discusses the old C way of implementing it and the performance issues that were noticed. It also states some performance numbers of the old C code vs. the asm goto: https://lwn.net/Articles/350714/ This LTTng (Linux Trace Toolkit Next Generation) presentation talks about using this feature as a way of optimize static tracepoints (slides 3-4) https://www.computer.org/cms/ComputingNow/HomePage/2011/0111/rW_SW_UsingTracing.pdf This presentation also mentions that a lot of other Linux applic...
2017 Apr 04
1
[inline-asm][asm-goto] Supporting "asm goto" in inline assembly
...he fall through > path from the asm. > > Here is the Linux kernel RFC which discusses the old C way of implementing > it and the performance issues that were noticed. > > It also states some performance numbers of the old C code vs. the asm goto: > > https://lwn.net/Articles/350714/ > > > > This LTTng (Linux Trace Toolkit Next Generation) presentation talks about using this feature as a way of optimize static tracepoints (slides 3-4) > > > https://www.computer.org/cms/ComputingNow/HomePage/2011/0111/rW_SW_UsingTracing.pdf > > This presentation also...
2017 Apr 04
4
[inline-asm][asm-goto] Supporting "asm goto" in inline assembly
...mize the fall through path from the asm. > > Here is the Linux kernel RFC which discusses the old C way of implementing it and the performance issues that were noticed. > > It also states some performance numbers of the old C code vs. the asm goto: > > https://lwn.net/Articles/350714/ <https://lwn.net/Articles/350714/> > > This LTTng (Linux Trace Toolkit Next Generation) presentation talks about using this feature as a way of optimize static tracepoints (slides 3-4) > https://www.computer.org/cms/ComputingNow/HomePage/2011/0111/rW_SW_UsingTracing.pdf <https:...
2009 Sep 30
1
Managing random number generating, while using Condor parallel computing
Hello all, Recently I started playing with running R scripts on the Condor system in my institute. (For more on this, have a look at: Running Long R Jobs with Condor DAG by Xianhong Xie link: http://cran.r-project.org/doc/Rnews/Rnews_2005-2.pdf ) Might someone advice me about the following question: How should I handle the RNG (random number generation) in the running of parallel instances of R
2018 Nov 03
2
[RFC] Implementing asm-goto support in Clang/LLVM
...org/onlinedocs/gcc-4.8.4/gcc/Extended-Asm.html) > > [6] Linux kernel RFC which discusses the old C way of implementing > tracepoints and the performance issues that were noticed. It also states > some performance numbers of the old C code vs. the asm goto ( > https://lwn.net/Articles/350714/) > > [7] LTTng (Linux Trace Toolkit Next Generation) presentation talks about > using asm-goto feature as a way of optimize static tracepoints (slides 3-4) > ( > https://www.computer.org/cms/ComputingNow/HomePage/2011/0111/rW_SW_UsingTracing.pdf > ) > > [8] A link to the gc...
2018 Feb 14
0
[inline-asm][asm-goto] Supporting "asm goto" in inline assembly
...> path from the asm. > > Here is the Linux kernel RFC which discusses the old C way of > > implementing it and the performance issues that were noticed. > > It also states some performance numbers of the old C code vs. the > > asm goto: > > https://lwn.net/Articles/350714/ > >   > > This LTTng (Linux Trace Toolkit Next Generation) presentation talks > > about using this feature as a way of optimize static tracepoints > > (slides 3-4) > > https://www.computer.org/cms/ComputingNow/HomePage/2011/0111/rW_SW_ > > UsingTracing.pdf >...
2018 Nov 04
2
[RFC] Implementing asm-goto support in Clang/LLVM
...m.html) >>> >>> [6] Linux kernel RFC which discusses the old C way of implementing >>> tracepoints and the performance issues that were noticed. It also states >>> some performance numbers of the old C code vs. the asm goto ( >>> https://lwn.net/Articles/350714/) >>> >>> [7] LTTng (Linux Trace Toolkit Next Generation) presentation talks about >>> using asm-goto feature as a way of optimize static tracepoints (slides 3-4) >>> ( >>> https://www.computer.org/cms/ComputingNow/HomePage/2011/0111/rW_SW_UsingTracing.p...
2017 Mar 30
3
[inline-asm][asm-goto] Supporting "asm goto" in inline assembly
Linux kernel is using the “asm goto” feature, other projects probably use it as well. I think it provides motivation to support it in LLVM. Regarding the complexity, I believe there is some infrastructure that we can at least partially reuse (the support for “indirectbr” instruction). My focus is adding “asm goto” support, the other things are indeed completely orthogonal and came up in bugs