Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 212399
b: refs/heads/master
c: 72dc43a
h: refs/heads/master
i:
  212397: 879a016
  212395: a82d4a0
  212391: 65c2941
  212383: 1295e13
v: v3
  • Loading branch information
Rabin Vincent authored and Russell King committed Sep 2, 2010
1 parent 7db0479 commit 6850f8c
Show file tree
Hide file tree
Showing 4 changed files with 37 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 3b6c223b1b97ad60bbb0f4efda57d649414ac2a2
refs/heads/master: 72dc43a9eb123d2742bd413c80dbeab0c588f622
3 changes: 2 additions & 1 deletion trunk/arch/arm/include/asm/ftrace.h
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ struct dyn_arch_ftrace {

static inline unsigned long ftrace_call_adjust(unsigned long addr)
{
return addr;
/* With Thumb-2, the recorded addresses have the lsb set */
return addr & ~1;
}

extern void ftrace_caller_old(void);
Expand Down
33 changes: 33 additions & 0 deletions trunk/arch/arm/kernel/ftrace.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,11 @@
#include <asm/cacheflush.h>
#include <asm/ftrace.h>

#ifdef CONFIG_THUMB2_KERNEL
#define NOP 0xeb04f85d /* pop.w {lr} */
#else
#define NOP 0xe8bd4000 /* pop {lr} */
#endif

#ifdef CONFIG_OLD_MCOUNT
#define OLD_MCOUNT_ADDR ((unsigned long) mcount)
Expand Down Expand Up @@ -56,6 +60,34 @@ static unsigned long adjust_address(struct dyn_ftrace *rec, unsigned long addr)
#endif

/* construct a branch (BL) instruction to addr */
#ifdef CONFIG_THUMB2_KERNEL
static unsigned long ftrace_call_replace(unsigned long pc, unsigned long addr)
{
unsigned long s, j1, j2, i1, i2, imm10, imm11;
unsigned long first, second;
long offset;

offset = (long)addr - (long)(pc + 4);
if (offset < -16777216 || offset > 16777214) {
WARN_ON_ONCE(1);
return 0;
}

s = (offset >> 24) & 0x1;
i1 = (offset >> 23) & 0x1;
i2 = (offset >> 22) & 0x1;
imm10 = (offset >> 12) & 0x3ff;
imm11 = (offset >> 1) & 0x7ff;

j1 = (!i1) ^ s;
j2 = (!i2) ^ s;

first = 0xf000 | (s << 10) | imm10;
second = 0xd000 | (j1 << 13) | (j2 << 11) | imm11;

return (second << 16) | first;
}
#else
static unsigned long ftrace_call_replace(unsigned long pc, unsigned long addr)
{
long offset;
Expand All @@ -73,6 +105,7 @@ static unsigned long ftrace_call_replace(unsigned long pc, unsigned long addr)

return 0xeb000000 | offset;
}
#endif

static int ftrace_modify_code(unsigned long pc, unsigned long old,
unsigned long new)
Expand Down
2 changes: 1 addition & 1 deletion trunk/scripts/recordmcount.pl
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ sub check_objcopy
} elsif ($arch eq "arm") {
$alignment = 2;
$section_type = '%progbits';
$mcount_regex = "^\\s*([0-9a-fA-F]+):\\s*R_ARM_(CALL|PC24)" .
$mcount_regex = "^\\s*([0-9a-fA-F]+):\\s*R_ARM_(CALL|PC24|THM_CALL)" .
"\\s+(__gnu_mcount_nc|mcount)\$";

} elsif ($arch eq "ia64") {
Expand Down

0 comments on commit 6850f8c

Please sign in to comment.