[llvm-commits] [llvm] r63962 - /llvm/trunk/lib/Target/X86/X86JITInfo.cpp
Dan Gohman
gohman at apple.com
Fri Feb 6 13:15:52 PST 2009
Author: djg
Date: Fri Feb 6 15:15:52 2009
New Revision: 63962
URL: http://llvm.org/viewvc/llvm-project?rev=63962&view=rev
Log:
Use .size and .type on ELF systems; this helps tools that map
addresses to symbols.
Modified:
llvm/trunk/lib/Target/X86/X86JITInfo.cpp
Modified: llvm/trunk/lib/Target/X86/X86JITInfo.cpp
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/lib/Target/X86/X86JITInfo.cpp?rev=63962&r1=63961&r2=63962&view=diff
==============================================================================
--- llvm/trunk/lib/Target/X86/X86JITInfo.cpp (original)
+++ llvm/trunk/lib/Target/X86/X86JITInfo.cpp Fri Feb 6 15:15:52 2009
@@ -59,6 +59,16 @@
#define ASMCALLSUFFIX
#endif
+// For ELF targets, use a .size and .type directive, to let tools
+// know the extent of functions defined in assembler.
+#if defined(__ELF__)
+# define SIZE(sym) ".size " #sym ", . - " #sym "\n"
+# define TYPE_FUNCTION(sym) ".type " #sym ", @function\n"
+#else
+# define SIZE(sym)
+# define TYPE_FUNCTION(sym)
+#endif
+
// Provide a convenient way for disabling usage of CFI directives.
// This is needed for old/broken assemblers (for example, gas on
// Darwin is pretty old and doesn't support these directives)
@@ -82,6 +92,7 @@
".text\n"
".align 8\n"
".globl " ASMPREFIX "X86CompilationCallback\n"
+ TYPE_FUNCTION(X86CompilationCallback)
ASMPREFIX "X86CompilationCallback:\n"
CFI(".cfi_startproc\n")
// Save RBP
@@ -160,6 +171,7 @@
CFI(".cfi_restore %rbp\n")
"ret\n"
CFI(".cfi_endproc\n")
+ SIZE(X86CompilationCallback)
);
# else
// No inline assembler support on this platform. The routine is in external
@@ -173,7 +185,8 @@
asm(
".text\n"
".align 8\n"
- ".globl " ASMPREFIX "X86CompilationCallback\n"
+ ".globl " ASMPREFIX "X86CompilationCallback\n"
+ TYPE_FUNCTION(X86CompilationCallback)
ASMPREFIX "X86CompilationCallback:\n"
CFI(".cfi_startproc\n")
"pushl %ebp\n"
@@ -213,6 +226,7 @@
CFI(".cfi_restore %ebp\n")
"ret\n"
CFI(".cfi_endproc\n")
+ SIZE(X86CompilationCallback)
);
// Same as X86CompilationCallback but also saves XMM argument registers.
@@ -220,7 +234,8 @@
asm(
".text\n"
".align 8\n"
- ".globl " ASMPREFIX "X86CompilationCallback_SSE\n"
+ ".globl " ASMPREFIX "X86CompilationCallback_SSE\n"
+ TYPE_FUNCTION(X86CompilationCallback_SSE)
ASMPREFIX "X86CompilationCallback_SSE:\n"
CFI(".cfi_startproc\n")
"pushl %ebp\n"
@@ -276,6 +291,7 @@
CFI(".cfi_restore %ebp\n")
"ret\n"
CFI(".cfi_endproc\n")
+ SIZE(X86CompilationCallback_SSE)
);
# else
void X86CompilationCallback2(intptr_t *StackPtr, intptr_t RetAddr);
@@ -312,7 +328,7 @@
#endif
}
-/// X86CompilationCallback - This is the target-specific function invoked by the
+/// X86CompilationCallback2 - This is the target-specific function invoked by the
/// function stub when we did not know the real target of a call. This function
/// must locate the start of the stub or call site and pass it into the JIT
/// compiler function.
More information about the llvm-commits
mailing list