Print this page
10366 ld(1) should support GNU-style linker sets
10367 ld(1) tests should be a real test suite
10368 want an ld(1) regression test for i386 LD tls transition (10267)
Split |
Close |
Expand all |
Collapse all |
--- old/usr/src/cmd/sgs/test/ld/x64/tls/ie/Makefile
+++ new/usr/src/test/elf-tests/tests/tls/x64/ie/Makefile.test
1 1 #
2 2 # This file and its contents are supplied under the terms of the
3 3 # Common Development and Distribution License ("CDDL"), version 1.0.
↓ open down ↓ |
3 lines elided |
↑ open up ↑ |
4 4 # You may only use this file in accordance with the terms of version
5 5 # 1.0 of the CDDL.
6 6 #
7 7 # A full copy of the text of the CDDL should have accompanied this
8 8 # source. A copy of the CDDL is also available via the Internet at
9 9 # http://www.illumos.org/license/CDDL.
10 10 #
11 11
12 12 # Copyright 2012, Richard Lowe.
13 13
14 -include $(SRC)/Makefile.master
14 +CC = gcc
15 +CFLAGS = -O1 -m64
15 16
16 -# We have to use GCC, and only GCC. The best way is to ask cw(1) which GCC to use.
17 -CC_CMD = $(ONBLD_TOOLS)/bin/$(MACH)/cw -_gcc -_compiler
18 -CC = $(CC_CMD:sh)
19 -CFLAGS = -O1 -m64
20 -
21 -LINK.c = env LD_ALTEXEC=$(PROTO)/usr/bin/amd64/ld $(CC) $(CFLAGS) -o $@ $^
17 +LINK.c = $(CC) $(CFLAGS) -o $@ $^
22 18 COMPILE.c = $(CC) $(CFLAGS) -c -o $@ $^
23 19 COMPILE.s = $(CC) $(CFLAGS) -c -o $@ $^
24 20
25 21 .KEEP_STATE:
26 22
27 23 install default: all
28 24
29 -.c.o:
25 +%.o: $(ELF_TESTS)/tests/tls/x64/ie/%.c
30 26 $(COMPILE.c)
31 -
32 -.s.o:
27 +%.o: $(ELF_TESTS)/tests/tls/x64/ie/%.s
33 28 $(COMPILE.s)
34 29
35 30 # A basic use of TLS that uses the movq m/r --> movq i/r variant
36 -PROGS += style2
31 +PROGS += style2
37 32 STYLE2OBJS = style2.o
38 33 style2: $(STYLE2OBJS)
39 34 $(LINK.c)
40 35
41 36 # A copy of style2 that uses %r13 in the TLS sequence, and thus excercises the
42 37 # REX transitions of the movq mem,reg -> movq imm,reg variant.
43 38 PROGS += style2-with-r13
44 39 STYLE2R13OBJS = style2-with-r13.o
45 40 style2-with-r13: $(STYLE2R13OBJS)
46 41 $(LINK.c)
47 42
48 43 # A copy of style2 that uses %r12 in the TLS sequence, so we can verify that
49 44 # it is _not_ special to this variant
50 45 PROGS += style2-with-r12
51 46 STYLE2R12OBJS = style2-with-r12.o
52 47 style2-with-r12: $(STYLE2R12OBJS)
53 48 $(LINK.c)
54 49
55 50 # A copy of style2 that has a R_AMD64_GOTTPOFF relocation with a bad insn sequence
56 51 STYLE2BADNESSOBJS = style2-with-badness.o
57 52 style2-with-badness: $(STYLE2BADNESSOBJS)
58 53 -$(LINK.c)
59 54
60 55 # A basic use of TLS that uses the addq mem/reg --> leaq mem,reg variant
61 56 PROGS += style1
62 57 STYLE1OBJS = style1-main.o style1-func.o
63 58 style1: $(STYLE1OBJS)
64 59 $(LINK.c)
65 60
66 61 # A copy of style1-func that uses %r13 in the TLS sequence and thus excercises
67 62 # the REX transitions. of the addq mem,reg --> leaq mem,reg variant
68 63 PROGS += style1-with-r13
69 64 STYLE1R13OBJS = style1-main.o style1-func-with-r13.o
70 65 style1-with-r13: $(STYLE1R13OBJS)
↓ open down ↓ |
24 lines elided |
↑ open up ↑ |
71 66 $(LINK.c)
72 67
73 68 # A copy of style1-func that uses %r12 to test the addq mem,reg --> addq imm,reg variant
74 69 PROGS += style1-with-r12
75 70 STYLE1R12OBJS = style1-main.o style1-func-with-r12.o
76 71 style1-with-r12: $(STYLE1R12OBJS)
77 72 $(LINK.c)
78 73
79 74 all: $(PROGS)
80 75
81 -clobber clean:
76 +clobber clean:
82 77 rm -f $(PROGS) $(STYLE1OBJS) $(STYLE1R13OBJS) $(STYLE1R12OBJS) \
83 78 $(STYLE2OBJS) $(STYLE2R13OBJS) $(STYLE2R12OBJS) $(STYLE2BADNESSOBJS)
84 79
85 80 fail: style2-with-badness FRC
86 81
87 82 FRC:
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX