2017-05-17 11:19:34 +00:00
|
|
|
===========
|
|
|
|
Static Keys
|
|
|
|
===========
|
2012-02-21 20:03:30 +00:00
|
|
|
|
2017-05-17 11:19:34 +00:00
|
|
|
.. warning::
|
2015-07-30 03:59:48 +00:00
|
|
|
|
2017-05-17 11:19:34 +00:00
|
|
|
DEPRECATED API:
|
2015-07-30 03:59:48 +00:00
|
|
|
|
2017-05-17 11:19:34 +00:00
|
|
|
The use of 'struct static_key' directly, is now DEPRECATED. In addition
|
|
|
|
static_key_{true,false}() is also DEPRECATED. IE DO NOT use the following::
|
2015-07-30 03:59:48 +00:00
|
|
|
|
2017-05-17 11:19:34 +00:00
|
|
|
struct static_key false = STATIC_KEY_INIT_FALSE;
|
|
|
|
struct static_key true = STATIC_KEY_INIT_TRUE;
|
|
|
|
static_key_true()
|
|
|
|
static_key_false()
|
2015-07-30 03:59:48 +00:00
|
|
|
|
2017-05-17 11:19:34 +00:00
|
|
|
The updated API replacements are::
|
2012-02-21 20:03:30 +00:00
|
|
|
|
2017-05-17 11:19:34 +00:00
|
|
|
DEFINE_STATIC_KEY_TRUE(key);
|
|
|
|
DEFINE_STATIC_KEY_FALSE(key);
|
|
|
|
DEFINE_STATIC_KEY_ARRAY_TRUE(keys, count);
|
|
|
|
DEFINE_STATIC_KEY_ARRAY_FALSE(keys, count);
|
|
|
|
static_branch_likely()
|
|
|
|
static_branch_unlikely()
|
|
|
|
|
|
|
|
Abstract
|
|
|
|
========
|
2012-02-21 20:03:30 +00:00
|
|
|
|
|
|
|
Static keys allows the inclusion of seldom used features in
|
|
|
|
performance-sensitive fast-path kernel code, via a GCC feature and a code
|
2017-05-17 11:19:34 +00:00
|
|
|
patching technique. A quick example::
|
2012-02-21 20:03:30 +00:00
|
|
|
|
2015-07-30 03:59:48 +00:00
|
|
|
DEFINE_STATIC_KEY_FALSE(key);
|
2012-02-21 20:03:30 +00:00
|
|
|
|
|
|
|
...
|
|
|
|
|
2015-07-30 03:59:48 +00:00
|
|
|
if (static_branch_unlikely(&key))
|
2012-02-21 20:03:30 +00:00
|
|
|
do unlikely code
|
|
|
|
else
|
|
|
|
do likely code
|
|
|
|
|
|
|
|
...
|
2015-07-30 03:59:48 +00:00
|
|
|
static_branch_enable(&key);
|
2012-02-21 20:03:30 +00:00
|
|
|
...
|
2015-07-30 03:59:48 +00:00
|
|
|
static_branch_disable(&key);
|
2012-02-21 20:03:30 +00:00
|
|
|
...
|
|
|
|
|
2015-07-30 03:59:48 +00:00
|
|
|
The static_branch_unlikely() branch will be generated into the code with as little
|
2012-02-21 20:03:30 +00:00
|
|
|
impact to the likely code path as possible.
|
|
|
|
|
|
|
|
|
2017-05-17 11:19:34 +00:00
|
|
|
Motivation
|
|
|
|
==========
|
2012-02-21 20:03:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
Currently, tracepoints are implemented using a conditional branch. The
|
|
|
|
conditional check requires checking a global variable for each tracepoint.
|
|
|
|
Although the overhead of this check is small, it increases when the memory
|
|
|
|
cache comes under pressure (memory cache lines for these global variables may
|
|
|
|
be shared with other memory accesses). As we increase the number of tracepoints
|
|
|
|
in the kernel this overhead may become more of an issue. In addition,
|
|
|
|
tracepoints are often dormant (disabled) and provide no direct kernel
|
|
|
|
functionality. Thus, it is highly desirable to reduce their impact as much as
|
|
|
|
possible. Although tracepoints are the original motivation for this work, other
|
|
|
|
kernel code paths should be able to make use of the static keys facility.
|
|
|
|
|
|
|
|
|
2017-05-17 11:19:34 +00:00
|
|
|
Solution
|
|
|
|
========
|
2012-02-21 20:03:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
gcc (v4.5) adds a new 'asm goto' statement that allows branching to a label:
|
|
|
|
|
2020-05-26 06:05:44 +00:00
|
|
|
https://gcc.gnu.org/ml/gcc-patches/2009-07/msg01556.html
|
2012-02-21 20:03:30 +00:00
|
|
|
|
|
|
|
Using the 'asm goto', we can create branches that are either taken or not taken
|
|
|
|
by default, without the need to check memory. Then, at run-time, we can patch
|
|
|
|
the branch site to change the branch direction.
|
|
|
|
|
2017-05-17 11:19:34 +00:00
|
|
|
For example, if we have a simple branch that is disabled by default::
|
2012-02-21 20:03:30 +00:00
|
|
|
|
2015-07-30 03:59:48 +00:00
|
|
|
if (static_branch_unlikely(&key))
|
2012-02-21 20:03:30 +00:00
|
|
|
printk("I am the true branch\n");
|
|
|
|
|
|
|
|
Thus, by default the 'printk' will not be emitted. And the code generated will
|
|
|
|
consist of a single atomic 'no-op' instruction (5 bytes on x86), in the
|
|
|
|
straight-line code path. When the branch is 'flipped', we will patch the
|
|
|
|
'no-op' in the straight-line codepath with a 'jump' instruction to the
|
|
|
|
out-of-line true branch. Thus, changing branch direction is expensive but
|
|
|
|
branch selection is basically 'free'. That is the basic tradeoff of this
|
|
|
|
optimization.
|
|
|
|
|
|
|
|
This lowlevel patching mechanism is called 'jump label patching', and it gives
|
|
|
|
the basis for the static keys facility.
|
|
|
|
|
2017-05-17 11:19:34 +00:00
|
|
|
Static key label API, usage and examples
|
|
|
|
========================================
|
2012-02-21 20:03:30 +00:00
|
|
|
|
|
|
|
|
2017-05-17 11:19:34 +00:00
|
|
|
In order to make use of this optimization you must first define a key::
|
2012-02-21 20:03:30 +00:00
|
|
|
|
2015-07-30 03:59:48 +00:00
|
|
|
DEFINE_STATIC_KEY_TRUE(key);
|
2012-02-21 20:03:30 +00:00
|
|
|
|
2017-05-17 11:19:34 +00:00
|
|
|
or::
|
2012-02-21 20:03:30 +00:00
|
|
|
|
2015-07-30 03:59:48 +00:00
|
|
|
DEFINE_STATIC_KEY_FALSE(key);
|
|
|
|
|
2012-02-21 20:03:30 +00:00
|
|
|
|
2015-07-30 03:59:48 +00:00
|
|
|
The key must be global, that is, it can't be allocated on the stack or dynamically
|
2012-02-21 20:03:30 +00:00
|
|
|
allocated at run-time.
|
|
|
|
|
2017-05-17 11:19:34 +00:00
|
|
|
The key is then used in code as::
|
2012-02-21 20:03:30 +00:00
|
|
|
|
2015-07-30 03:59:48 +00:00
|
|
|
if (static_branch_unlikely(&key))
|
2012-02-21 20:03:30 +00:00
|
|
|
do unlikely code
|
|
|
|
else
|
|
|
|
do likely code
|
|
|
|
|
2017-05-17 11:19:34 +00:00
|
|
|
Or::
|
2012-02-21 20:03:30 +00:00
|
|
|
|
2015-07-30 03:59:48 +00:00
|
|
|
if (static_branch_likely(&key))
|
2012-02-21 20:03:30 +00:00
|
|
|
do likely code
|
|
|
|
else
|
|
|
|
do unlikely code
|
|
|
|
|
2015-07-30 03:59:48 +00:00
|
|
|
Keys defined via DEFINE_STATIC_KEY_TRUE(), or DEFINE_STATIC_KEY_FALSE, may
|
|
|
|
be used in either static_branch_likely() or static_branch_unlikely()
|
2017-04-21 11:16:03 +00:00
|
|
|
statements.
|
2012-02-21 20:03:30 +00:00
|
|
|
|
2017-05-17 11:19:34 +00:00
|
|
|
Branch(es) can be set true via::
|
2012-02-21 20:03:30 +00:00
|
|
|
|
2017-05-17 11:19:34 +00:00
|
|
|
static_branch_enable(&key);
|
2012-02-21 20:03:30 +00:00
|
|
|
|
2017-05-17 11:19:34 +00:00
|
|
|
or false via::
|
2015-07-30 03:59:48 +00:00
|
|
|
|
2017-05-17 11:19:34 +00:00
|
|
|
static_branch_disable(&key);
|
2012-02-21 20:03:30 +00:00
|
|
|
|
2017-05-17 11:19:34 +00:00
|
|
|
The branch(es) can then be switched via reference counts::
|
2012-02-21 20:03:30 +00:00
|
|
|
|
2015-07-30 03:59:48 +00:00
|
|
|
static_branch_inc(&key);
|
|
|
|
...
|
|
|
|
static_branch_dec(&key);
|
2012-02-21 20:03:30 +00:00
|
|
|
|
2015-07-30 03:59:48 +00:00
|
|
|
Thus, 'static_branch_inc()' means 'make the branch true', and
|
|
|
|
'static_branch_dec()' means 'make the branch false' with appropriate
|
|
|
|
reference counting. For example, if the key is initialized true, a
|
|
|
|
static_branch_dec(), will switch the branch to false. And a subsequent
|
|
|
|
static_branch_inc(), will change the branch back to true. Likewise, if the
|
|
|
|
key is initialized false, a 'static_branch_inc()', will change the branch to
|
|
|
|
true. And then a 'static_branch_dec()', will again make the branch false.
|
2012-02-21 20:03:30 +00:00
|
|
|
|
2017-08-01 15:24:05 +00:00
|
|
|
The state and the reference count can be retrieved with 'static_key_enabled()'
|
|
|
|
and 'static_key_count()'. In general, if you use these functions, they
|
|
|
|
should be protected with the same mutex used around the enable/disable
|
|
|
|
or increment/decrement function.
|
|
|
|
|
2017-08-01 08:02:56 +00:00
|
|
|
Note that switching branches results in some locks being taken,
|
|
|
|
particularly the CPU hotplug lock (in order to avoid races against
|
2018-11-19 11:02:45 +00:00
|
|
|
CPUs being brought in the kernel while the kernel is getting
|
2017-08-01 08:02:56 +00:00
|
|
|
patched). Calling the static key API from within a hotplug notifier is
|
|
|
|
thus a sure deadlock recipe. In order to still allow use of the
|
2019-02-04 08:46:57 +00:00
|
|
|
functionality, the following functions are provided:
|
2017-08-01 08:02:56 +00:00
|
|
|
|
|
|
|
static_key_enable_cpuslocked()
|
|
|
|
static_key_disable_cpuslocked()
|
|
|
|
static_branch_enable_cpuslocked()
|
|
|
|
static_branch_disable_cpuslocked()
|
|
|
|
|
|
|
|
These functions are *not* general purpose, and must only be used when
|
|
|
|
you really know that you're in the above context, and no other.
|
|
|
|
|
2017-05-17 11:19:34 +00:00
|
|
|
Where an array of keys is required, it can be defined as::
|
2016-09-05 17:25:47 +00:00
|
|
|
|
|
|
|
DEFINE_STATIC_KEY_ARRAY_TRUE(keys, count);
|
|
|
|
|
2017-05-17 11:19:34 +00:00
|
|
|
or::
|
2016-09-05 17:25:47 +00:00
|
|
|
|
|
|
|
DEFINE_STATIC_KEY_ARRAY_FALSE(keys, count);
|
2012-02-21 20:03:30 +00:00
|
|
|
|
|
|
|
4) Architecture level code patching interface, 'jump labels'
|
|
|
|
|
|
|
|
|
|
|
|
There are a few functions and macros that architectures must implement in order
|
|
|
|
to take advantage of this optimization. If there is no architecture support, we
|
jump_label: Reduce the size of struct static_key
The static_key->next field goes mostly unused. The field is used for
associating module uses with a static key. Most uses of struct static_key
define a static key in the core kernel and make use of it entirely within
the core kernel, or define the static key in a module and make use of it
only from within that module. In fact, of the ~3,000 static keys defined,
I found only about 5 or so that did not fit this pattern.
Thus, we can remove the static_key->next field entirely and overload
the static_key->entries field. That is, when all the static_key uses
are contained within the same module, static_key->entries continues
to point to those uses. However, if the static_key uses are not contained
within the module where the static_key is defined, then we allocate a
struct static_key_mod, store a pointer to the uses within that
struct static_key_mod, and have the static key point at the static_key_mod.
This does incur some extra memory usage when a static_key is used in a
module that does not define it, but since there are only a handful of such
cases there is a net savings.
In order to identify if the static_key->entries pointer contains a
struct static_key_mod or a struct jump_entry pointer, bit 1 of
static_key->entries is set to 1 if it points to a struct static_key_mod and
is 0 if it points to a struct jump_entry. We were already using bit 0 in a
similar way to store the initial value of the static_key. This does mean
that allocations of struct static_key_mod and that the struct jump_entry
tables need to be at least 4-byte aligned in memory. As far as I can tell
all arches meet this criteria.
For my .config, the patch increased the text by 778 bytes, but reduced
the data + bss size by 14912, for a net savings of 14,134 bytes.
text data bss dec hex filename
8092427 5016512 790528 13899467 d416cb vmlinux.pre
8093205 5001600 790528 13885333 d3df95 vmlinux.post
Link: http://lkml.kernel.org/r/1486154544-4321-1-git-send-email-jbaron@akamai.com
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Joe Perches <joe@perches.com>
Signed-off-by: Jason Baron <jbaron@akamai.com>
Signed-off-by: Steven Rostedt (VMware) <rostedt@goodmis.org>
2017-02-03 20:42:24 +00:00
|
|
|
simply fall back to a traditional, load, test, and jump sequence. Also, the
|
|
|
|
struct jump_entry table must be at least 4-byte aligned because the
|
|
|
|
static_key->entry field makes use of the two least significant bits.
|
2012-02-21 20:03:30 +00:00
|
|
|
|
2017-05-17 11:19:34 +00:00
|
|
|
* ``select HAVE_ARCH_JUMP_LABEL``,
|
|
|
|
see: arch/x86/Kconfig
|
2012-02-21 20:03:30 +00:00
|
|
|
|
2017-05-17 11:19:34 +00:00
|
|
|
* ``#define JUMP_LABEL_NOP_SIZE``,
|
|
|
|
see: arch/x86/include/asm/jump_label.h
|
2012-02-21 20:03:30 +00:00
|
|
|
|
2017-05-17 11:19:34 +00:00
|
|
|
* ``__always_inline bool arch_static_branch(struct static_key *key, bool branch)``,
|
|
|
|
see: arch/x86/include/asm/jump_label.h
|
2015-07-30 03:59:48 +00:00
|
|
|
|
2017-05-17 11:19:34 +00:00
|
|
|
* ``__always_inline bool arch_static_branch_jump(struct static_key *key, bool branch)``,
|
|
|
|
see: arch/x86/include/asm/jump_label.h
|
2012-02-21 20:03:30 +00:00
|
|
|
|
2017-05-17 11:19:34 +00:00
|
|
|
* ``void arch_jump_label_transform(struct jump_entry *entry, enum jump_label_type type)``,
|
|
|
|
see: arch/x86/kernel/jump_label.c
|
2012-02-21 20:03:30 +00:00
|
|
|
|
2017-05-17 11:19:34 +00:00
|
|
|
* ``__init_or_module void arch_jump_label_transform_static(struct jump_entry *entry, enum jump_label_type type)``,
|
|
|
|
see: arch/x86/kernel/jump_label.c
|
2012-02-21 20:03:30 +00:00
|
|
|
|
2017-05-17 11:19:34 +00:00
|
|
|
* ``struct jump_entry``,
|
|
|
|
see: arch/x86/include/asm/jump_label.h
|
2012-02-21 20:03:30 +00:00
|
|
|
|
|
|
|
|
|
|
|
5) Static keys / jump label analysis, results (x86_64):
|
|
|
|
|
|
|
|
|
|
|
|
As an example, let's add the following branch to 'getppid()', such that the
|
2017-05-17 11:19:34 +00:00
|
|
|
system call now looks like::
|
2012-02-21 20:03:30 +00:00
|
|
|
|
2017-05-17 11:19:34 +00:00
|
|
|
SYSCALL_DEFINE0(getppid)
|
|
|
|
{
|
2012-02-21 20:03:30 +00:00
|
|
|
int pid;
|
|
|
|
|
2017-05-17 11:19:34 +00:00
|
|
|
+ if (static_branch_unlikely(&key))
|
|
|
|
+ printk("I am the true branch\n");
|
2012-02-21 20:03:30 +00:00
|
|
|
|
|
|
|
rcu_read_lock();
|
|
|
|
pid = task_tgid_vnr(rcu_dereference(current->real_parent));
|
|
|
|
rcu_read_unlock();
|
|
|
|
|
|
|
|
return pid;
|
2017-05-17 11:19:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
The resulting instructions with jump labels generated by GCC is::
|
|
|
|
|
|
|
|
ffffffff81044290 <sys_getppid>:
|
|
|
|
ffffffff81044290: 55 push %rbp
|
|
|
|
ffffffff81044291: 48 89 e5 mov %rsp,%rbp
|
|
|
|
ffffffff81044294: e9 00 00 00 00 jmpq ffffffff81044299 <sys_getppid+0x9>
|
|
|
|
ffffffff81044299: 65 48 8b 04 25 c0 b6 mov %gs:0xb6c0,%rax
|
|
|
|
ffffffff810442a0: 00 00
|
|
|
|
ffffffff810442a2: 48 8b 80 80 02 00 00 mov 0x280(%rax),%rax
|
|
|
|
ffffffff810442a9: 48 8b 80 b0 02 00 00 mov 0x2b0(%rax),%rax
|
|
|
|
ffffffff810442b0: 48 8b b8 e8 02 00 00 mov 0x2e8(%rax),%rdi
|
|
|
|
ffffffff810442b7: e8 f4 d9 00 00 callq ffffffff81051cb0 <pid_vnr>
|
|
|
|
ffffffff810442bc: 5d pop %rbp
|
|
|
|
ffffffff810442bd: 48 98 cltq
|
|
|
|
ffffffff810442bf: c3 retq
|
|
|
|
ffffffff810442c0: 48 c7 c7 e3 54 98 81 mov $0xffffffff819854e3,%rdi
|
|
|
|
ffffffff810442c7: 31 c0 xor %eax,%eax
|
|
|
|
ffffffff810442c9: e8 71 13 6d 00 callq ffffffff8171563f <printk>
|
|
|
|
ffffffff810442ce: eb c9 jmp ffffffff81044299 <sys_getppid+0x9>
|
|
|
|
|
|
|
|
Without the jump label optimization it looks like::
|
|
|
|
|
|
|
|
ffffffff810441f0 <sys_getppid>:
|
|
|
|
ffffffff810441f0: 8b 05 8a 52 d8 00 mov 0xd8528a(%rip),%eax # ffffffff81dc9480 <key>
|
|
|
|
ffffffff810441f6: 55 push %rbp
|
|
|
|
ffffffff810441f7: 48 89 e5 mov %rsp,%rbp
|
|
|
|
ffffffff810441fa: 85 c0 test %eax,%eax
|
|
|
|
ffffffff810441fc: 75 27 jne ffffffff81044225 <sys_getppid+0x35>
|
|
|
|
ffffffff810441fe: 65 48 8b 04 25 c0 b6 mov %gs:0xb6c0,%rax
|
|
|
|
ffffffff81044205: 00 00
|
|
|
|
ffffffff81044207: 48 8b 80 80 02 00 00 mov 0x280(%rax),%rax
|
|
|
|
ffffffff8104420e: 48 8b 80 b0 02 00 00 mov 0x2b0(%rax),%rax
|
|
|
|
ffffffff81044215: 48 8b b8 e8 02 00 00 mov 0x2e8(%rax),%rdi
|
|
|
|
ffffffff8104421c: e8 2f da 00 00 callq ffffffff81051c50 <pid_vnr>
|
|
|
|
ffffffff81044221: 5d pop %rbp
|
|
|
|
ffffffff81044222: 48 98 cltq
|
|
|
|
ffffffff81044224: c3 retq
|
|
|
|
ffffffff81044225: 48 c7 c7 13 53 98 81 mov $0xffffffff81985313,%rdi
|
|
|
|
ffffffff8104422c: 31 c0 xor %eax,%eax
|
|
|
|
ffffffff8104422e: e8 60 0f 6d 00 callq ffffffff81715193 <printk>
|
|
|
|
ffffffff81044233: eb c9 jmp ffffffff810441fe <sys_getppid+0xe>
|
|
|
|
ffffffff81044235: 66 66 2e 0f 1f 84 00 data32 nopw %cs:0x0(%rax,%rax,1)
|
|
|
|
ffffffff8104423c: 00 00 00 00
|
2012-02-21 20:03:30 +00:00
|
|
|
|
|
|
|
Thus, the disable jump label case adds a 'mov', 'test' and 'jne' instruction
|
|
|
|
vs. the jump label case just has a 'no-op' or 'jmp 0'. (The jmp 0, is patched
|
|
|
|
to a 5 byte atomic no-op instruction at boot-time.) Thus, the disabled jump
|
2017-05-17 11:19:34 +00:00
|
|
|
label case adds::
|
2012-02-21 20:03:30 +00:00
|
|
|
|
2017-05-17 11:19:34 +00:00
|
|
|
6 (mov) + 2 (test) + 2 (jne) = 10 - 5 (5 byte jump 0) = 5 addition bytes.
|
2012-02-21 20:03:30 +00:00
|
|
|
|
|
|
|
If we then include the padding bytes, the jump label code saves, 16 total bytes
|
2012-04-09 15:22:13 +00:00
|
|
|
of instruction memory for this small function. In this case the non-jump label
|
2013-11-06 21:18:21 +00:00
|
|
|
function is 80 bytes long. Thus, we have saved 20% of the instruction
|
2012-02-21 20:03:30 +00:00
|
|
|
footprint. We can in fact improve this even further, since the 5-byte no-op
|
|
|
|
really can be a 2-byte no-op since we can reach the branch with a 2-byte jmp.
|
|
|
|
However, we have not yet implemented optimal no-op sizes (they are currently
|
|
|
|
hard-coded).
|
|
|
|
|
|
|
|
Since there are a number of static key API uses in the scheduler paths,
|
|
|
|
'pipe-test' (also known as 'perf bench sched pipe') can be used to show the
|
|
|
|
performance improvement. Testing done on 3.3.0-rc2:
|
|
|
|
|
2017-05-17 11:19:34 +00:00
|
|
|
jump label disabled::
|
2012-02-21 20:03:30 +00:00
|
|
|
|
|
|
|
Performance counter stats for 'bash -c /tmp/pipe-test' (50 runs):
|
|
|
|
|
|
|
|
855.700314 task-clock # 0.534 CPUs utilized ( +- 0.11% )
|
|
|
|
200,003 context-switches # 0.234 M/sec ( +- 0.00% )
|
|
|
|
0 CPU-migrations # 0.000 M/sec ( +- 39.58% )
|
|
|
|
487 page-faults # 0.001 M/sec ( +- 0.02% )
|
|
|
|
1,474,374,262 cycles # 1.723 GHz ( +- 0.17% )
|
|
|
|
<not supported> stalled-cycles-frontend
|
|
|
|
<not supported> stalled-cycles-backend
|
|
|
|
1,178,049,567 instructions # 0.80 insns per cycle ( +- 0.06% )
|
|
|
|
208,368,926 branches # 243.507 M/sec ( +- 0.06% )
|
|
|
|
5,569,188 branch-misses # 2.67% of all branches ( +- 0.54% )
|
|
|
|
|
|
|
|
1.601607384 seconds time elapsed ( +- 0.07% )
|
|
|
|
|
2017-05-17 11:19:34 +00:00
|
|
|
jump label enabled::
|
2012-02-21 20:03:30 +00:00
|
|
|
|
|
|
|
Performance counter stats for 'bash -c /tmp/pipe-test' (50 runs):
|
|
|
|
|
|
|
|
841.043185 task-clock # 0.533 CPUs utilized ( +- 0.12% )
|
|
|
|
200,004 context-switches # 0.238 M/sec ( +- 0.00% )
|
|
|
|
0 CPU-migrations # 0.000 M/sec ( +- 40.87% )
|
|
|
|
487 page-faults # 0.001 M/sec ( +- 0.05% )
|
|
|
|
1,432,559,428 cycles # 1.703 GHz ( +- 0.18% )
|
|
|
|
<not supported> stalled-cycles-frontend
|
|
|
|
<not supported> stalled-cycles-backend
|
|
|
|
1,175,363,994 instructions # 0.82 insns per cycle ( +- 0.04% )
|
|
|
|
206,859,359 branches # 245.956 M/sec ( +- 0.04% )
|
|
|
|
4,884,119 branch-misses # 2.36% of all branches ( +- 0.85% )
|
|
|
|
|
|
|
|
1.579384366 seconds time elapsed
|
|
|
|
|
|
|
|
The percentage of saved branches is .7%, and we've saved 12% on
|
|
|
|
'branch-misses'. This is where we would expect to get the most savings, since
|
|
|
|
this optimization is about reducing the number of branches. In addition, we've
|
|
|
|
saved .2% on instructions, and 2.8% on cycles and 1.4% on elapsed time.
|