All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] hexagon: work around compiler crash
@ 2019-10-28 15:57 Nick Desaulniers
  2019-10-28 20:09   ` Brian Cain
  0 siblings, 1 reply; 4+ messages in thread
From: Nick Desaulniers @ 2019-10-28 15:57 UTC (permalink / raw)
  To: bcain
  Cc: Nick Desaulniers, Sid Manning, Allison Randal,
	Greg Kroah-Hartman, Richard Fontana, Thomas Gleixner,
	linux-hexagon, linux-kernel, clang-built-linux

Clang cannot translate the string "r30" into a valid register yet.

Link: https://github.com/ClangBuiltLinux/linux/issues/755
Suggested-by: Sid Manning <sidneym@quicinc.com>
Signed-off-by: Nick Desaulniers <ndesaulniers@google.com>
---
 arch/hexagon/kernel/stacktrace.c | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/arch/hexagon/kernel/stacktrace.c b/arch/hexagon/kernel/stacktrace.c
index 35f29423fda8..5ed02f699479 100644
--- a/arch/hexagon/kernel/stacktrace.c
+++ b/arch/hexagon/kernel/stacktrace.c
@@ -11,8 +11,6 @@
 #include <linux/thread_info.h>
 #include <linux/module.h>
 
-register unsigned long current_frame_pointer asm("r30");
-
 struct stackframe {
 	unsigned long fp;
 	unsigned long rets;
@@ -30,7 +28,7 @@ void save_stack_trace(struct stack_trace *trace)
 
 	low = (unsigned long)task_stack_page(current);
 	high = low + THREAD_SIZE;
-	fp = current_frame_pointer;
+	fp = (unsigned long)__builtin_frame_address(0);
 
 	while (fp >= low && fp <= (high - sizeof(*frame))) {
 		frame = (struct stackframe *)fp;
-- 
2.24.0.rc0.303.g954a862665-goog


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2019-12-10  1:36 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-28 15:57 [PATCH] hexagon: work around compiler crash Nick Desaulniers
2019-10-28 20:09 ` Brian Cain
2019-10-28 20:09   ` Brian Cain
2019-12-10  1:36   ` Nick Desaulniers

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.