Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
R
riscv-gcc-1
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
lvzhengyang
riscv-gcc-1
Commits
5ed34b64
Commit
5ed34b64
authored
May 12, 1992
by
Tom Wood
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
*** empty log message ***
From-SVN: r963
parent
52a73899
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
19 additions
and
1 deletions
+19
-1
gcc/config/m68k/tower-as.h
+19
-1
No files found.
gcc/config/m68k/tower-as.h
View file @
5ed34b64
...
...
@@ -155,8 +155,26 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */
#undef TARGET_VERSION
#define TARGET_VERSION fprintf (stderr, " (68k, Motorola/SGS/Tower32 syntax)");
#undef BLOCK_PROFILER
#undef FUNCTION_BLOCK_PROFILER
#define FUNCTION_BLOCK_PROFILER(FILE, LABELNO) \
do { \
char label1[20], label2[20]; \
ASM_GENERATE_INTERNAL_LABEL (label1, "LPBX", 0); \
ASM_GENERATE_INTERNAL_LABEL (label2, "LPI", LABELNO); \
fprintf (FILE, "\ttst.l %s\n\tbne %s\n\tpea %s\n\tjsr __bb_init_func\n\taddq.l &4,%%sp\n", \
label1, label2, label1); \
ASM_OUTPUT_INTERNAL_LABEL (FILE, "LPI", LABELNO); \
putc ('\n', FILE); \
} while (0)
#undef BLOCK_PROFILER
#define BLOCK_PROFILER(FILE, BLOCKNO) \
do { \
char label[20]; \
ASM_GENERATE_INTERNAL_LABEL (label, "LPBX", 2); \
fprintf (FILE, "\taddq.l &1,%s+%d\n", label, 4 * BLOCKNO); \
} while (0)
#undef FUNCTION_PROFILER
#define FUNCTION_PROFILER(FILE, LABEL_NO) \
fprintf (FILE, "\tmov.l &LP%%%d,%%a0\n\tjsr mcount%%\n", (LABEL_NO))
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment