search for: local_storage

Displaying 4 results from an estimated 4 matches for "local_storage".

2013 Oct 19
0
MmioTrace: Using the Instruction Decoder, etc.
...nt to the instrumented one. After instrumentation is done, the target driver may start executing. If some original function of the driver contained, say, mov 0xabcd (%rax), %rsi mov %rbx, 0xbeeffeed (%rsi) that will be transformed to something like lea 0xabcd (%rax), %rbx mov %rbx, <local_storage1> mov 0xabcd (%rax), %rsi lea 0xbeeffeed (%rsi), %rbx mov %rbx, <local_storage2> mov %rbx, 0xbeeffeed (%rsi) ... <send the local_storage to the output system> That is, the address which is about to be accessed is determined and stored in 'local_storage', a speci...
2013 Oct 19
3
MmioTrace: Using the Instruction Decoder, etc.
On Fri, 18 Oct 2013 00:11:15 +0400 Eugene Shatokhin <euspectre at gmail.com> wrote: > Hi, > > Good to know that! > > Yes, it should be faster than page faulting, although I haven't done the > benchmarking yet. And yes, it is not needed to disable all but one CPU. In > my current implementation, I use an ordered workqueue to send the data to > the mmapped output
2016 Apr 04
5
enable/disable shared namespace in passdb
hello all i'm currently using passdb to enable and disable various namespaces conditionally : for example the following work namespace/inbox/inbox=no namespace/legacy_pfso/disabled=no namespace/legacy_pfso/inbox=no namespace/local_storage/disabled=no namespace/comboINBOX_local_pfso/disabled=no namespace/comboINBOX_local_pfso/inbox=yes but i can't get things like the following to work namespace/shared/disabled=yes -- the shared namespace is configured as shown below namespace shared { type = shared list = yes #...
2013 Oct 25
2
MmioTrace: Using the Instruction Decoder, etc.
..., the target > driver may start executing. Oh, that works on a completely different way than I even imagined, a whole another level of complexity. <...snip code you corrected in another email> > That is, the address which is about to be accessed is determined and stored > in 'local_storage', a special memory structure. At the end of the block of > instructions, the information from the local storage is sent to the output > system. So the addresses and sizes of the accessed memory areas as well as > the types of the accesses (read/write/update) will be available for readi...