search for: computingnow

Displaying 9 results from an estimated 9 matches for "computingnow".

2012 Mar 23
0
CFP: Special Issue on Cloud Computing in Science & Engineering, in the the IEEE Computing in Science & Engineering (CiSE)
*Call for Papers* *IEEE Computing in Science & Engineering* ** *Special Issue on Cloud Computing in Science & Engineering* http://www.computer.org/portal/web/computingnow/cise ** *Submissions due: November 04, 2012* *Estimated Publication date: July/August, 2013* Cloud computing has emerged as a dominant paradigm that has been widely adopted by enterprises. Clouds provide on-demand access to computing utilities, an abstraction of unlimited computing resources,...
2012 Mar 23
0
CFP: Special Issue on Cloud Computing in Science & Engineering, in the the IEEE Computing in Science & Engineering (CiSE)
*Call for Papers* *IEEE Computing in Science & Engineering* ** *Special Issue on Cloud Computing in Science & Engineering* http://www.computer.org/portal/web/computingnow/cise ** *Submissions due: November 04, 2012* *Estimated Publication date: July/August, 2013* Cloud computing has emerged as a dominant paradigm that has been widely adopted by enterprises. Clouds provide on-demand access to computing utilities, an abstraction of unlimited computing resources,...
2017 Apr 04
3
[inline-asm][asm-goto] Supporting "asm goto" in inline assembly
...ere 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 applications use this tracing mechanism. I believe we already have much of the infrastructure in place (using the indirecbr instruction infrastructure). We do need to make sure MachineBlockPlacemen...
2017 Apr 04
1
[inline-asm][asm-goto] Supporting "asm goto" in inline assembly
...ce 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 applications use this tracing mechanism. > > Thanks, this is exactly the kind of discussion that I think will help make progress here. I think this feature makes a lot of sense and i...
2017 Apr 04
4
[inline-asm][asm-goto] Supporting "asm goto" in inline assembly
...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://www.computer.org/cms/ComputingNow/HomePage/2011/0111/rW_SW_UsingTracing.pdf> > This presentation also mentions that a lot of other Linux applications use this tracing mechanism. > Thanks, this is exactly the kind of discussion that I th...
2018 Nov 03
2
[RFC] Implementing asm-goto support in Clang/LLVM
...erformance 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 gcc thread introducing this feature ( > http://gcc.gnu.org/ml/gcc-patches/2009-07/msg01556.htm) > _______________________________________________ > LLVM Developers mailing list > llvm-dev at lists.llvm.org >...
2018 Feb 14
0
[inline-asm][asm-goto] Supporting "asm goto" in inline assembly
...e 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 > > applications use this tracing mechanism. > > Thanks, this is exactly the kind of discussion that I think will help > make progress here. > > I think th...
2018 Nov 04
2
[RFC] Implementing asm-goto support in Clang/LLVM
...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 gcc thread introducing this feature ( >>> http://gcc.gnu.org/ml/gcc-patches/2009-07/msg01556.htm) >>> _______________________________________________ >>> LLVM Developers m...
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