Skip to content

Commit ee8f711

Browse files
committed
clean up whitespace and cut long lines
1 parent 2a3e217 commit ee8f711

File tree

284 files changed

+12307
-12081
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

284 files changed

+12307
-12081
lines changed

.gitattributes

+27-9
Original file line numberDiff line numberDiff line change
@@ -9,16 +9,22 @@ boot/ocamldep binary
99
*.png binary
1010
*.tfm binary
1111

12-
.gitattributes ocaml-typo=missing-header
13-
.gitignore ocaml-typo=missing-header
14-
.merlin ocaml-typo=missing-header
15-
.ocp-indent ocaml-typo=missing-header
16-
Changes ocaml-typo=non-ascii,missing-header
17-
CONTRIBUTING.md ocaml-typo=missing-header
18-
INSTALL ocaml-typo=missing-header
19-
LICENSE ocaml-typo=non-printing,missing-header
12+
# No header for text files (would be too obtrusive).
13+
*.md ocaml-typo=missing-header
14+
README* ocaml-typo=missing-header
15+
*.adoc ocaml-typo=missing-header,long-line,unused-prop
16+
17+
/.gitattributes ocaml-typo=missing-header
18+
/.gitignore ocaml-typo=missing-header
19+
/.merlin ocaml-typo=missing-header
20+
/Changes ocaml-typo=non-ascii,missing-header
21+
/INSTALL ocaml-typo=missing-header
22+
/LICENSE ocaml-typo=non-printing,missing-header
23+
/appveyor.yml ocaml-typo=long-line,very-long-line
24+
2025

2126
asmcomp/*/emit.mlp ocaml-typo=tab,long-line,unused-prop
27+
asmcomp/power/NOTES.md ocaml-typo=missing-header,long-line
2228

2329
asmrun/i386.S ocaml-typo=long-line
2430

@@ -27,10 +33,11 @@ config/gnu ocaml-typo=prune
2733
emacs/*.el ocaml-typo=long-line,unused-prop
2834
emacs/COPYING ocaml-typo=tab,non-printing,missing-header
2935
emacs/ocamltags.in ocaml-typo=non-printing
30-
emacs/README* ocaml-typo=missing-header
3136

3237
experimental ocaml-typo=prune
3338

39+
manual ocaml-typo=prune
40+
3441
ocamlbuild/* ocaml-typo=long-line
3542
ocamlbuild/AUTHORS ocaml-typo=missing-header
3643
ocamlbuild/ChangeLog ocaml-typo=tab,missing-header
@@ -43,6 +50,17 @@ otherlibs/win32unix/readlink.c ocaml-typo=long-line
4350
otherlibs/win32unix/stat.c ocaml-typo=long-line
4451
otherlibs/win32unix/symlink.c ocaml-typo=long-line
4552

53+
stdlib/sharpbang ocaml-typo=white-at-eol,missing-lf
54+
55+
# FIXME remove headers in testsuite and remove unused-prop in next line:
56+
testsuite/** ocaml-typo=missing-header,unused-prop
57+
testsuite/tests/lib-bigarray-2/bigarrf.f ocaml-typo=missing-header,tab
58+
testsuite/tests/misc-unsafe/almabench.ml ocaml-typo=missing-header,long-line
59+
60+
tools/magic ocaml-typo=missing-header
61+
62+
yacc/*.[ch] ocaml-typo=long-line,very-long-line,unused-prop
63+
4664
# Line-ending specifications, for Windows interoperability
4765
*.sh text eol=lf
4866
*.sh.in text eol=lf

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -274,6 +274,8 @@
274274
/testsuite/tests/unboxed-primitive-args/main.ml
275275
/testsuite/tests/unboxed-primitive-args/stubs.c
276276

277+
/testsuite/tests/unwind/unwind_test
278+
277279
/testsuite/tests/warnings/w55.opt.opt_result
278280
/testsuite/tests/warnings/w58.opt.opt_result
279281

.gitmodules

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
[submodule "flexdll"]
2-
path = flexdll
3-
url = https://github.com/alainfrisch/flexdll.git
2+
path = flexdll
3+
url = https://github.com/alainfrisch/flexdll.git

INSTALL.adoc

+3-3
Original file line numberDiff line numberDiff line change
@@ -234,9 +234,9 @@ or:
234234
make opt > log.opt 2>&1 # in sh
235235
make opt >& log.opt # in csh
236236

237-
5. anchor:step-5[] Compile fast versions of the OCaml compilers, by compiling them
238-
with the native-code compiler (you have only compiled them to bytecode
239-
so far). Just do:
237+
5. anchor:step-5[] Compile fast versions of the OCaml compilers, by
238+
compiling them with the native-code compiler (you have only compiled
239+
them to bytecode so far). Just do:
240240

241241
make opt.opt
242242
+

Makefile

+6-3
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,8 @@ partialclean::
367367
rm -f compilerlibs/ocamlopttoplevel.cmxa
368368

369369
ocamlnat: compilerlibs/ocamlcommon.cmxa compilerlibs/ocamloptcomp.cmxa \
370-
otherlibs/dynlink/dynlink.cmxa compilerlibs/ocamlopttoplevel.cmxa $(OPTTOPLEVELSTART:.cmo=.cmx)
370+
otherlibs/dynlink/dynlink.cmxa compilerlibs/ocamlopttoplevel.cmxa \
371+
$(OPTTOPLEVELSTART:.cmo=.cmx)
371372
$(CAMLOPT) $(LINKFLAGS) -linkall -o ocamlnat \
372373
otherlibs/dynlink/dynlink.cmxa compilerlibs/ocamlcommon.cmxa \
373374
compilerlibs/ocamloptcomp.cmxa compilerlibs/ocamlopttoplevel.cmxa \
@@ -480,7 +481,8 @@ ocamlopt.opt: compilerlibs/ocamlcommon.cmxa compilerlibs/ocamloptcomp.cmxa \
480481
partialclean::
481482
rm -f ocamlopt.opt
482483

483-
$(COMMON:.cmo=.cmx) $(BYTECOMP:.cmo=.cmx) $(MIDDLE_END:.cmo=.cmx) $(ASMCOMP:.cmo=.cmx): ocamlopt
484+
$(COMMON:.cmo=.cmx) $(BYTECOMP:.cmo=.cmx) $(MIDDLE_END:.cmo=.cmx) \
485+
$(ASMCOMP:.cmo=.cmx): ocamlopt
484486

485487
# The numeric opcodes
486488

@@ -747,7 +749,8 @@ clean::
747749
$(CAMLOPT) $(COMPFLAGS) -c $<
748750

749751
partialclean::
750-
for d in utils parsing typing bytecomp asmcomp middle_end middle_end/base_types driver toplevel tools; \
752+
for d in utils parsing typing bytecomp asmcomp middle_end \
753+
middle_end/base_types driver toplevel tools; \
751754
do rm -f $$d/*.cm[ioxt] $$d/*.cmti $$d/*.annot $$d/*.[so] $$d/*~; done
752755
rm -f *~
753756

Makefile.nt

+49-33
Original file line numberDiff line numberDiff line change
@@ -16,48 +16,55 @@ include Makefile.shared
1616

1717
# For users who don't read the INSTALL file
1818
defaultentry:
19-
@echo "Please refer to the installation instructions in file README.win32.adoc."
19+
@echo "Please refer to the instructions in file README.win32.adoc."
2020

2121
FLEXDLL_SUBMODULE_PRESENT:=$(wildcard flexdll/Makefile)
22-
BOOT_FLEXLINK_CMD=$(if $(FLEXDLL_SUBMODULE_PRESENT),FLEXLINK_CMD="../boot/ocamlrun ../flexdll/flexlink.exe")
23-
CAMLOPT:=$(if $(FLEXDLL_SUBMODULE_PRESENT),OCAML_FLEXLINK="boot/ocamlrun flexdll/flexlink.exe") $(CAMLOPT)
22+
ifeq "$(FLEXDLL_SUBMODULE_PRESENT)" ""
23+
BOOT_FLEXLINK_CMD=
24+
else
25+
BOOT_FLEXLINK_CMD=FLEXLINK_CMD="../boot/ocamlrun ../flexdll/flexlink.exe"
26+
CAMLOPT:=OCAML_FLEXLINK="boot/ocamlrun flexdll/flexlink.exe" $(CAMLOPT)
27+
endif
2428

2529
# FlexDLL sources missing error messages
2630
# Different git mechanism displayed depending on whether this source tree came
2731
# from a git clone or a source tarball.
2832

29-
# Displayed in all cases
30-
flexdll-common-err:
31-
@echo In order to bootstrap FlexDLL, you need to place the sources in flexdll
33+
flexdll/Makefile:
34+
@echo In order to bootstrap FlexDLL, you need to place the sources in
35+
@echo flexdll.
3236
@echo This can either be done by downloading a source tarball from
3337
@echo \ http://alain.frisch.fr/flexdll.html
34-
35-
flexdll/Makefile: $(if $(wildcard flexdll/Makefile),,$(if $(wildcard .git),flexdll-common-err,flexdll-repo))
36-
@echo or by checking out the flexdll submodule with
37-
@echo \ git submodule update --init
38-
@false
39-
40-
flexdll-repo: flexdll-common-err
41-
@echo or by cloning the git repository
42-
@echo \ git clone https://github.com/alainfrisch/flexdll.git
43-
@echo
38+
@if [ -d .git ]; then \
39+
echo or by checking out the flexdll submodule with; \
40+
echo \ git submodule update --init; \
41+
else \
42+
echo or by cloning the git repository; \
43+
echo \ git clone https://github.com/alainfrisch/flexdll.git; \
44+
fi
4445
@false
4546

4647
# Bootstrapping FlexDLL - leaves a bytecode image of flexlink.exe in flexdll/
4748
flexdll: flexdll/Makefile
48-
cd byterun ; $(MAKEREC) BOOTSTRAPPING_FLEXLINK=yes ocamlrun$(EXE)
49+
cd byterun && $(MAKEREC) BOOTSTRAPPING_FLEXLINK=yes ocamlrun$(EXE)
4950
cp byterun/ocamlrun.exe boot/ocamlrun.exe
50-
cd stdlib ; $(MAKEREC) COMPILER=../boot/ocamlc stdlib.cma std_exit.cmo
51-
cd stdlib ; cp stdlib.cma std_exit.cmo *.cmi ../boot
52-
cd flexdll ; $(MAKECMD) MSVC_DETECT=0 TOOLCHAIN=$(TOOLCHAIN) TOOLPREF=$(TOOLPREF) CHAINS=$(FLEXDLL_CHAIN) NATDYNLINK=false OCAMLOPT="../boot/ocamlrun ../boot/ocamlc -I ../boot" flexlink.exe support
53-
cd byterun ; $(MAKEREC) clean
51+
cd stdlib && $(MAKEREC) COMPILER=../boot/ocamlc stdlib.cma std_exit.cmo
52+
cd stdlib && cp stdlib.cma std_exit.cmo *.cmi ../boot
53+
cd flexdll && \
54+
$(MAKECMD) MSVC_DETECT=0 TOOLCHAIN=$(TOOLCHAIN) TOOLPREF=$(TOOLPREF) \
55+
CHAINS=$(FLEXDLL_CHAIN) NATDYNLINK=false \
56+
OCAMLOPT="../boot/ocamlrun ../boot/ocamlc -I ../boot" \
57+
flexlink.exe support
58+
cd byterun && $(MAKEREC) clean
5459
$(MAKEREC) partialclean
5560

5661
flexlink.opt:
57-
cd flexdll ; \
58-
mv flexlink.exe flexlink ; \
59-
$(MAKECMD) OCAML_FLEXLINK="../boot/ocamlrun ./flexlink" MSVC_DETECT=0 TOOLCHAIN=$(TOOLCHAIN) TOOLPREF=$(TOOLPREF) OCAMLOPT="../ocamlopt.opt -I ../stdlib" flexlink.exe ; \
60-
mv flexlink.exe flexlink.opt ; \
62+
cd flexdll && \
63+
mv flexlink.exe flexlink && \
64+
$(MAKECMD) OCAML_FLEXLINK="../boot/ocamlrun ./flexlink" MSVC_DETECT=0 \
65+
TOOLCHAIN=$(TOOLCHAIN) TOOLPREF=$(TOOLPREF) \
66+
OCAMLOPT="../ocamlopt.opt -I ../stdlib" flexlink.exe && \
67+
mv flexlink.exe flexlink.opt && \
6168
mv flexlink flexlink.exe
6269

6370
# Recompile the system using the bootstrap compiler
@@ -150,7 +157,7 @@ compare:
150157
&& $(CAMLRUN) tools/cmpbyt boot/ocamldep tools/ocamldep; \
151158
then echo "Fixpoint reached, bootstrap succeeded."; \
152159
else echo "Fixpoint not reached, try one more bootstrapping cycle."; \
153-
fi
160+
fi
154161

155162
# Remove old bootstrap compilers
156163
cleanboot:
@@ -229,28 +236,36 @@ installbyt:
229236

230237
install-flexdll:
231238
# The $(if ...) installs the correct .manifest file for MSVC and MSVC64
232-
# (GNU make doesn't have ifeq as a function, hence slightly convoluted use of filter-out)
233-
cp flexdll/flexlink.exe $(if $(filter-out mingw,$(TOOLCHAIN)),flexdll/default$(filter-out _i386,_$(ARCH)).manifest) $(INSTALL_BINDIR)/
239+
# (GNU make doesn't have ifeq as a function, hence slightly convoluted use of
240+
# filter-out)
241+
cp flexdll/flexlink.exe \
242+
$(if $(filter-out mingw,$(TOOLCHAIN)),\
243+
flexdll/default$(filter-out _i386,_$(ARCH)).manifest) \
244+
$(INSTALL_BINDIR)/
234245
cp flexdll/flexdll_*.$(O) $(INSTALL_LIBDIR)
235246

236247
# Installation of the native-code compiler
237248
installopt:
238-
cd asmrun ; $(MAKEREC) install
249+
cd asmrun && $(MAKEREC) install
239250
cp ocamlopt "$(INSTALL_BINDIR)/ocamlopt.exe"
240-
cd stdlib ; $(MAKEREC) installopt
251+
cd stdlib && $(MAKEREC) installopt
241252
cp middle_end/*.cmi middle_end/*.cmt middle_end/*.cmti \
242253
"$(INSTALL_COMPLIBDIR)"
243254
cp middle_end/base_types/*.cmi middle_end/base_types/*.cmt \
244255
middle_end/base_types/*.cmti "$(INSTALL_COMPLIBDIR)"
245256
cp asmcomp/*.cmi asmcomp/*.cmt asmcomp/*.cmti "$(INSTALL_COMPLIBDIR)"
246257
cp compilerlibs/ocamloptcomp.cma $(OPTSTART) "$(INSTALL_COMPLIBDIR)"
247-
if test -n "$(WITH_OCAMLDOC)"; then (cd ocamldoc; $(MAKEREC) installopt); fi
258+
if test -n "$(WITH_OCAMLDOC)"; then \
259+
(cd ocamldoc && $(MAKEREC) installopt); \
260+
fi
248261
for i in $(OTHERLIBRARIES); do \
249262
$(MAKEREC) -C otherlibs/$$i installopt || exit $$?; \
250263
done
251264
if test -f ocamlopt.opt ; then $(MAKEREC) installoptopt; fi
252265
cd tools; $(MAKEREC) installopt
253-
if test -f ocamlopt.opt -a -f flexdll/flexlink.opt ; then cp -f flexdll/flexlink.opt $(INSTALL_BINDIR)/flexlink.exe ; fi
266+
if test -f ocamlopt.opt -a -f flexdll/flexlink.opt ; then \
267+
cp -f flexdll/flexlink.opt $(INSTALL_BINDIR)/flexlink.exe ; \
268+
fi
254269

255270
installoptopt:
256271
cp ocamlc.opt "$(INSTALL_BINDIR)/ocamlc.opt$(EXE)"
@@ -441,7 +456,8 @@ ocamlopt.opt: compilerlibs/ocamlcommon.cmxa compilerlibs/ocamloptcomp.cmxa \
441456
partialclean::
442457
rm -f ocamlopt.opt
443458

444-
$(COMMON:.cmo=.cmx) $(BYTECOMP:.cmo=.cmx) $(MIDDLE_END:.cmo=.cmx) $(ASMCOMP:.cmo=.cmx): ocamlopt
459+
$(COMMON:.cmo=.cmx) $(BYTECOMP:.cmo=.cmx) $(MIDDLE_END:.cmo=.cmx) \
460+
$(ASMCOMP:.cmo=.cmx): ocamlopt
445461

446462
# The numeric opcodes
447463

Makefile.shared

+2-3
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ include stdlib/StdlibModules
1919

2020
CAMLC=$(CAMLRUN) boot/ocamlc -g -nostdlib -I boot
2121
CAMLOPT=$(CAMLRUN) ./ocamlopt -g -nostdlib -I stdlib -I otherlibs/dynlink
22-
COMPFLAGS=-strict-sequence -principal -w +33..39+48+50 -warn-error A -bin-annot \
23-
-safe-string -strict-formats $(INCLUDES)
22+
COMPFLAGS=-strict-sequence -principal -w +33..39+48+50 -warn-error A \
23+
-bin-annot -safe-string -strict-formats $(INCLUDES)
2424
LINKFLAGS=
2525

2626
YACCFLAGS=-v
@@ -234,4 +234,3 @@ partialclean::
234234

235235
alldepend::
236236
cd tools; $(MAKEREC) depend
237-

README.adoc

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ renaming of standard library functions.
6060
config/:: autoconfiguration stuff
6161
debugger/:: source-level replay debugger
6262
driver/:: driver code for the compilers
63-
emacs/:: OCaml editing mode and debugger interface for GNU Emacs
63+
emacs/:: editing mode and debugger interface for GNU Emacs
6464
lex/:: lexer generator
6565
maccaml/:: the Macintosh GUI
6666
ocamldoc/:: documentation generator

README.win32.adoc

+10-8
Original file line numberDiff line numberDiff line change
@@ -87,15 +87,16 @@ for Windows.
8787
You will need the following software components to perform the recompilation:
8888

8989
- Windows NT, 2000, XP, Vista, or 7 (32 or 64 bits).
90-
- Items <<tps1,[1]>> and <<tps2,[2]>> from the list of recommended software above.
90+
- Items <<tps1,[1]>> and <<tps2,[2]>> from the list of recommended software
91+
above.
9192
- The Cygwin port of GNU tools, available from http://www.cygwin.com/
9293
Install at least the following packages (and their dependencies):
9394
diffutils, dos2unix, gcc-core, make, ncurses.
9495

9596
First, you need to set up your cygwin environment for using the MS
96-
tools. The following assumes that you have installed <<tps1,[1]>>, <<tps2,[2]>>, and [3]
97-
in their default directories. If this is not the case, you will need
98-
to adjust the paths accordingly.
97+
tools. The following assumes that you have installed <<tps1,[1]>>,
98+
<<tps2,[2]>>, and [3] in their default directories. If this is not
99+
the case, you will need to adjust the paths accordingly.
99100

100101
. Open a Windows Command Prompt and enter the following command:
101102

@@ -408,14 +409,15 @@ for Windows.
408409

409410
You will need the following software components to perform the recompilation:
410411
- Windows XP 64, Windows Server 64, or Windows 7 64.
411-
- Items <<tps-native1,[1]>> and <<tps-native2,[2]>> from the list of recommended software above.
412+
- Items <<tps-native1,[1]>> and <<tps-native2,[2]>> from the list of
413+
recommended software above.
412414
- The Cygwin port of GNU tools, available from http://www.cygwin.com/
413415
Install at least the following packages: diffutils, make, ncurses.
414416

415417
First, you need to set up your cygwin environment for using the MS
416-
tools. The following assumes that you have installed <<tps-native1,[1]>> and <<tps-native2,[2]>>
417-
in their default directories. If this is not the case, you will need
418-
to adjust the paths accordingly.
418+
tools. The following assumes that you have installed <<tps-native1,[1]>>
419+
and <<tps-native2,[2]>> in their default directories. If this is not
420+
the case, you will need to adjust the paths accordingly.
419421

420422
. Open a Windows Command Prompt and enter the following commands:
421423

asmcomp/amd64/NOTES.md

-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,3 @@ Debian architecture name: `amd64`
1919
_OS X ABI Function Call Guide: x86-64 Function Calling Conventions_
2020
* Windows 64 application binary interface:
2121
_x64 Software Conventions_ from MSDN
22-

asmcomp/arm/NOTES.md

-1
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,3 @@ Debian architecture names: `armel` and `armhf`.
1818
_ARM Architecture Reference Manual, ARMv8_, restricted to the AArch32 subset.
1919
* Application binary interface:
2020
_Procedure Call Standard for the ARM Architecture_
21-

asmcomp/i386/NOTES.md

-5
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,3 @@ Debian architecture name: `i386`
2020
Intel386 Architecture Processor Supplement_
2121
* MacOS X application binary interface:
2222
_OS X ABI Function Call Guide: IA-32 Function Calling Conventions_
23-
24-
25-
26-
27-

asmcomp/power/NOTES.md

+4-5
Original file line numberDiff line numberDiff line change
@@ -10,18 +10,17 @@ No longer supported: AIX and MacOS X.
1010
# Reference documents
1111

1212
* Instruction set architecture:
13-
_PowerPC User Instruction Set Architecture_,
13+
_PowerPC User Instruction Set Architecture_,
1414
book 1 of _PowerPC Architecture Book_
15-
(http://www.ibm.com/developerworks/systems/library/es-archguide-v2.html).
15+
(http://www.ibm.com/developerworks/systems/library/es-archguide-v2.html).
1616
* ELF ABI 32 bits:
17-
_System V Application Binary Interface, PowerPC Processor Supplement_
17+
_System V Application Binary Interface, PowerPC Processor Supplement_
1818
* ELF ABI 64 bits version 1:
19-
_64-bit PowerPC ELF Application Binary Interface Supplement_
19+
_64-bit PowerPC ELF Application Binary Interface Supplement_
2020
(http://refspecs.linuxfoundation.org/ELF/ppc64/PPC-elf64abi.html)
2121
* ELF ABI 64 bits version 2:
2222
_Power Architecture 64-bit ELF V2 ABI Specification,
2323
OpenPOWER ABI for Linux Supplement_
2424
(http://openpowerfoundation.org/technical/technical-resources/technical-specifications/)
2525
* _The PowerPC Compiler Writer's Guide_, Warthman Associates, 1996.
2626
(PDF available from various sources on the Web.)
27-

asmcomp/s390x/NOTES.md

+1-4
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,11 @@ running Linux (Debian architecture: `s390x`).
66
# Reference documents
77

88
* Instruction set architecture:
9-
_z/Architecture Principles of Operation_,
9+
_z/Architecture Principles of Operation_,
1010
SA22-7832-07, eight edition (Feb 2009).
1111
This is the version that corresponds to z10.
1212
Newer versions of this manual include additional instructions
1313
that are not in z10.
1414
* ELF ABI:
1515
_zSeries ELF Application Binary Interface Supplement_
1616
(http://refspecs.linuxfoundation.org/ELF/zSeries/index.html)
17-
18-
19-

asmcomp/sparc/NOTES.md

-4
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,3 @@ Status of this port: nearly abandoned
1515
* ELF application binary interface:
1616
_System V Application Binary Interface,
1717
SPARC Processor Supplement_
18-
19-
20-
21-

0 commit comments

Comments
 (0)