LCOV - code coverage report
Current view: top level - arch/arm/kernel - jump_label.c (source / functions) Hit Total Coverage
Test: gcov_data_raspi2_qemu_modules_combined.info Lines: 13 13 100.0 %
Date: 2020-09-30 20:25:01 Functions: 3 3 100.0 %
Branches: 4 4 100.0 %

           Branch data     Line data    Source code
       1                 :            : // SPDX-License-Identifier: GPL-2.0
       2                 :            : #include <linux/kernel.h>
       3                 :            : #include <linux/jump_label.h>
       4                 :            : #include <asm/patch.h>
       5                 :            : #include <asm/insn.h>
       6                 :            : 
       7                 :     702224 : static void __arch_jump_label_transform(struct jump_entry *entry,
       8                 :            :                                         enum jump_label_type type,
       9                 :            :                                         bool is_static)
      10                 :            : {
      11                 :     702224 :         void *addr = (void *)entry->code;
      12                 :            :         unsigned int insn;
      13                 :            : 
      14         [ +  + ]:     702224 :         if (type == JUMP_LABEL_JMP)
      15                 :      60240 :                 insn = arm_gen_branch(entry->code, entry->target);
      16                 :            :         else
      17                 :            :                 insn = arm_gen_nop();
      18                 :            : 
      19         [ +  + ]:     702224 :         if (is_static)
      20                 :            :                 __patch_text_early(addr, insn);
      21                 :            :         else
      22                 :      69964 :                 patch_text(addr, insn);
      23                 :     702224 : }
      24                 :            : 
      25                 :      69964 : void arch_jump_label_transform(struct jump_entry *entry,
      26                 :            :                                enum jump_label_type type)
      27                 :            : {
      28                 :      69964 :         __arch_jump_label_transform(entry, type, false);
      29                 :      69964 : }
      30                 :            : 
      31                 :     632260 : void arch_jump_label_transform_static(struct jump_entry *entry,
      32                 :            :                                       enum jump_label_type type)
      33                 :            : {
      34                 :     632260 :         __arch_jump_label_transform(entry, type, true);
      35                 :     632260 : }

Generated by: LCOV version 1.14