This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
c66e78fb8c939d64a14f22b43d863374f5ef2f37
[metaconfig.git] / U / compline / d_safebcpy.U
1 ?RCS: $Id: d_safebcpy.U,v 3.0.1.4 1997/02/28 15:40:58 ram Exp $
2 ?RCS:
3 ?RCS: Copyright (c) 1991-1993, Raphael Manfredi
4 ?RCS:
5 ?RCS: You may redistribute only under the terms of the Artistic Licence,
6 ?RCS: as specified in the README file that comes with the distribution.
7 ?RCS: You may reuse parts of this distribution only within the terms of
8 ?RCS: that same Artistic Licence; a copy of which may be found at the root
9 ?RCS: of the source tree for dist 3.0.
10 ?RCS:
11 ?RCS: $Log: d_safebcpy.U,v $
12 ?RCS: Revision 3.0.1.4  1997/02/28  15:40:58  ram
13 ?RCS: patch61: improved overlapping copy check
14 ?RCS: patch61: comfort them if they have memmove
15 ?RCS: patch61: added ?F: metalint hint
16 ?RCS:
17 ?RCS: Revision 3.0.1.3  1995/07/25  13:58:40  ram
18 ?RCS: patch56: re-arranged compile line to include ldflags before objects
19 ?RCS:
20 ?RCS: Revision 3.0.1.2  1995/01/11  15:29:23  ram
21 ?RCS: patch45: added 'ldflags' to the test compile line (ADO)
22 ?RCS:
23 ?RCS: Revision 3.0.1.1  1994/05/06  14:49:03  ram
24 ?RCS: patch23: ensure string is not optimized in read-only memory (ADO)
25 ?RCS:
26 ?RCS: Revision 3.0  1993/08/18  12:06:58  ram
27 ?RCS: Baseline for dist 3.0 netwide release.
28 ?RCS:
29 ?MAKE:d_safebcpy: cat d_bcopy Compile rm_try run \
30         d_memmove i_memory i_stdlib i_string i_unistd Oldconfig Setvar
31 ?MAKE:  -pick add $@ %<
32 ?S:d_safebcpy:
33 ?S:     This variable conditionally defines the HAS_SAFE_BCOPY symbol if
34 ?S:     the bcopy() routine can do overlapping copies.  Normally, you
35 ?S:     should probably use memmove().
36 ?S:.
37 ?C:HAS_SAFE_BCOPY (SAFE_BCOPY):
38 ?C:     This symbol, if defined, indicates that the bcopy routine is available
39 ?C:     to copy potentially overlapping memory blocks. Normally, you should
40 ?C:     probably use memmove() or memcpy(). If neither is defined, roll your
41 ?C:     own version.
42 ?C:.
43 ?H:#$d_safebcpy HAS_SAFE_BCOPY  /**/
44 ?H:.
45 ?F:!try
46 ?LINT: set d_safebcpy
47 : can bcopy handle overlapping blocks?
48 echo " "
49 ?X: assume the worst.
50 val="$undef"
51 case "$d_memmove" in
52 "$define") echo "I'll use memmove() instead of bcopy() for overlapping copies." ;;
53 *)      case "$d_bcopy" in
54         "$define")
55                 echo "Checking to see if bcopy() can do overlapping copies..." >&4
56                 $cat >try.c <<EOCP
57 #$i_memory I_MEMORY
58 #$i_stdlib I_STDLIB
59 #$i_string I_STRING
60 #$i_unistd I_UNISTD
61 EOCP
62         $cat >>try.c <<'EOCP'
63 #include <stdio.h>
64 #ifdef I_MEMORY
65 #  include <memory.h>
66 #endif
67 #ifdef I_STDLIB
68 #  include <stdlib.h>
69 #endif
70 #ifdef I_STRING
71 #  include <string.h>
72 #else
73 #  include <strings.h>
74 #endif
75 #ifdef I_UNISTD
76 #  include <unistd.h>  /* Needed for NetBSD */
77 #endif
78 int main()
79 {
80 char buf[128], abc[128];
81 char *b;
82 int len;
83 int off;
84 int align;
85
86 /* Copy "abcde..." string to char abc[] so that gcc doesn't
87    try to store the string in read-only memory. */
88 bcopy("abcdefghijklmnopqrstuvwxyz0123456789", abc, 36);
89
90 for (align = 7; align >= 0; align--) {
91         for (len = 36; len; len--) {
92                 b = buf+align;
93                 bcopy(abc, b, len);
94                 for (off = 1; off <= len; off++) {
95                         bcopy(b, b+off, len);
96                         bcopy(b+off, b, len);
97                         if (bcmp(b, abc, len))
98                                 exit(1);
99                 }
100         }
101 }
102 exit(0);
103 }
104 EOCP
105                 set try
106                 if eval $compile_ok; then
107                         if $run ./try 2>/dev/null; then
108                                 echo "Yes, it can."
109                                 val="$define"
110                         else
111                                 echo "It can't, sorry."
112                         fi
113                 else
114                         echo "(I can't compile the test program, so we'll assume not...)"
115                 fi
116                 ;;
117         esac
118         $rm_try
119         ;;
120 esac
121 set d_safebcpy
122 eval $setvar
123