From 84adefa331c4159d432d22840663c38f155cd4c1 Mon Sep 17 00:00:00 2001 From: Erlang/OTP Date: Fri, 20 Nov 2009 14:54:40 +0000 Subject: The R13B03 release. --- lib/hipe/doc/Makefile | 29 ++++ lib/hipe/doc/html/.gitignore | 0 lib/hipe/doc/overview.edoc | 9 ++ lib/hipe/doc/pdf/.gitignore | 0 lib/hipe/doc/src/Makefile | 113 +++++++++++++ lib/hipe/doc/src/book.xml | 38 +++++ lib/hipe/doc/src/fascicules.xml | 12 ++ lib/hipe/doc/src/make.dep | 13 ++ lib/hipe/doc/src/notes.xml | 350 ++++++++++++++++++++++++++++++++++++++++ lib/hipe/doc/src/part_notes.xml | 35 ++++ 10 files changed, 599 insertions(+) create mode 100644 lib/hipe/doc/Makefile create mode 100644 lib/hipe/doc/html/.gitignore create mode 100644 lib/hipe/doc/overview.edoc create mode 100644 lib/hipe/doc/pdf/.gitignore create mode 100644 lib/hipe/doc/src/Makefile create mode 100644 lib/hipe/doc/src/book.xml create mode 100644 lib/hipe/doc/src/fascicules.xml create mode 100644 lib/hipe/doc/src/make.dep create mode 100644 lib/hipe/doc/src/notes.xml create mode 100644 lib/hipe/doc/src/part_notes.xml (limited to 'lib/hipe/doc') diff --git a/lib/hipe/doc/Makefile b/lib/hipe/doc/Makefile new file mode 100644 index 0000000000..340f909aa6 --- /dev/null +++ b/lib/hipe/doc/Makefile @@ -0,0 +1,29 @@ +# ``The contents of this file are subject to the Erlang Public License, +# Version 1.1, (the "License"); you may not use this file except in +# compliance with the License. You should have received a copy of the +# Erlang Public License along with this software. If not, it can be +# retrieved via the world wide web at http://www.erlang.org/. +# +# Software distributed under the License is distributed on an "AS IS" +# basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See +# the License for the specific language governing rights and limitations +# under the License. +# +SHELL=/bin/sh + +include $(ERL_TOP)/make/target.mk +include $(ERL_TOP)/make/$(TARGET)/otp.mk + +clean: + -rm -f *.html edoc-info stylesheet.css + +# ---------------------------------------------------- +# Special Build Targets +# ---------------------------------------------------- + + + +# ---------------------------------------------------- +# Release Target +# ---------------------------------------------------- +include $(ERL_TOP)/make/otp_release_targets.mk diff --git a/lib/hipe/doc/html/.gitignore b/lib/hipe/doc/html/.gitignore new file mode 100644 index 0000000000..e69de29bb2 diff --git a/lib/hipe/doc/overview.edoc b/lib/hipe/doc/overview.edoc new file mode 100644 index 0000000000..0016478a8a --- /dev/null +++ b/lib/hipe/doc/overview.edoc @@ -0,0 +1,9 @@ + + HiPE overview page + +@title The HiPE Compiler + +@author The HiPE group [http://www.it.uu.se/research/group/hipe/] + +@doc This is the online documentation for the HiPE native code compiler. +The user interface is provided by the module {@link hipe}. diff --git a/lib/hipe/doc/pdf/.gitignore b/lib/hipe/doc/pdf/.gitignore new file mode 100644 index 0000000000..e69de29bb2 diff --git a/lib/hipe/doc/src/Makefile b/lib/hipe/doc/src/Makefile new file mode 100644 index 0000000000..3b63e57549 --- /dev/null +++ b/lib/hipe/doc/src/Makefile @@ -0,0 +1,113 @@ +# ``The contents of this file are subject to the Erlang Public License, +# Version 1.1, (the "License"); you may not use this file except in +# compliance with the License. You should have received a copy of the +# Erlang Public License along with this software. If not, it can be +# retrieved via the world wide web at http://www.erlang.org/. +# +# Software distributed under the License is distributed on an "AS IS" +# basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See +# the License for the specific language governing rights and limitations +# under the License. +# +# The Initial Developer of the Original Code is Ericsson Utvecklings AB. +# Portions created by Ericsson are Copyright 1999, Ericsson Utvecklings +# AB. All Rights Reserved.'' +# +# $Id$ +# +include $(ERL_TOP)/make/target.mk +include $(ERL_TOP)/make/$(TARGET)/otp.mk + +# ---------------------------------------------------- +# Application version +# ---------------------------------------------------- +include ../../vsn.mk +VSN=$(HIPE_VSN) +APPLICATION=hipe + +# ---------------------------------------------------- +# Release directory specification +# ---------------------------------------------------- +RELSYSDIR = $(RELEASE_PATH)/lib/$(APPLICATION)-$(VSN) + +# ---------------------------------------------------- +# Target Specs +# ---------------------------------------------------- +XML_APPLICATION_FILES = +XML_REF3_FILES = + +XML_PART_FILES = part_notes.xml +XML_CHAPTER_FILES = notes.xml + +BOOK_FILES = book.xml + +XML_FILES = \ + $(BOOK_FILES) $(XML_CHAPTER_FILES) \ + $(XML_PART_FILES) $(XML_REF3_FILES) $(XML_APPLICATION_FILES) + +GIF_FILES = + +# ---------------------------------------------------- + +HTML_FILES = $(XML_APPLICATION_FILES:%.xml=$(HTMLDIR)/%.html) \ + $(XML_PART_FILES:%.xml=$(HTMLDIR)/%.html) + +INFO_FILE = ../../info +EXTRA_FILES = \ + $(DEFAULT_GIF_FILES) \ + $(DEFAULT_HTML_FILES) \ + $(XML_REF3_FILES:%.xml=$(HTMLDIR)/%.html) \ + $(XML_CHAPTER_FILES:%.xml=$(HTMLDIR)/%.html) + +MAN3_FILES = $(XML_REF3_FILES:%.xml=$(MAN3DIR)/%.3) + +HTML_REF_MAN_FILE = $(HTMLDIR)/index.html + +TOP_PDF_FILE = $(PDFDIR)/$(APPLICATION)-$(VSN).pdf + +# ---------------------------------------------------- +# FLAGS +# ---------------------------------------------------- +XML_FLAGS += + +# ---------------------------------------------------- +# Targets +# ---------------------------------------------------- +$(HTMLDIR)/%.gif: %.gif + $(INSTALL_DATA) $< $@ + +docs: pdf html man + +$(TOP_PDF_FILE): $(XML_FILES) + +pdf: $(TOP_PDF_FILE) + +html: gifs $(HTML_REF_MAN_FILE) + +man: $(MAN3_FILES) + +gifs: $(GIF_FILES:%=$(HTMLDIR)/%) + +debug opt: + +clean clean_docs: + rm -rf $(HTMLDIR)/* + rm -f $(MAN3DIR)/* + rm -f $(TOP_PDF_FILE) $(TOP_PDF_FILE:%.pdf=%.fo) + rm -f errs core *~ + +# ---------------------------------------------------- +# Release Target +# ---------------------------------------------------- +include $(ERL_TOP)/make/otp_release_targets.mk + +release_docs_spec: docs + $(INSTALL_DIR) $(RELSYSDIR)/doc/pdf + $(INSTALL_DATA) $(TOP_PDF_FILE) $(RELSYSDIR)/doc/pdf + $(INSTALL_DIR) $(RELSYSDIR)/doc/html + $(INSTALL_DATA) $(HTMLDIR)/* \ + $(RELSYSDIR)/doc/html + $(INSTALL_DATA) $(INFO_FILE) $(RELSYSDIR) + + +release_spec: diff --git a/lib/hipe/doc/src/book.xml b/lib/hipe/doc/src/book.xml new file mode 100644 index 0000000000..236dfc69a1 --- /dev/null +++ b/lib/hipe/doc/src/book.xml @@ -0,0 +1,38 @@ + + + + +
+ + 20062009 + Ericsson AB. All Rights Reserved. + + + The contents of this file are subject to the Erlang Public License, + Version 1.1, (the "License"); you may not use this file except in + compliance with the License. You should have received a copy of the + Erlang Public License along with this software. If not, it can be + retrieved online at http://www.erlang.org/. + + Software distributed under the License is distributed on an "AS IS" + basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See + the License for the specific language governing rights and limitations + under the License. + + + + HiPE + + + + +
+ + + + HiPE + + + +
+ diff --git a/lib/hipe/doc/src/fascicules.xml b/lib/hipe/doc/src/fascicules.xml new file mode 100644 index 0000000000..28acc14624 --- /dev/null +++ b/lib/hipe/doc/src/fascicules.xml @@ -0,0 +1,12 @@ + + + + + + Release Notes + + + Off-Print + + + diff --git a/lib/hipe/doc/src/make.dep b/lib/hipe/doc/src/make.dep new file mode 100644 index 0000000000..d5f5844c21 --- /dev/null +++ b/lib/hipe/doc/src/make.dep @@ -0,0 +1,13 @@ +# ---------------------------------------------------- +# >>>> Do not edit this file <<<< +# This file was automaticly generated by +# /home/otp/bin/docdepend +# ---------------------------------------------------- + + +# ---------------------------------------------------- +# TeX files that the DVI file depend on +# ---------------------------------------------------- + +book.dvi: book.tex + diff --git a/lib/hipe/doc/src/notes.xml b/lib/hipe/doc/src/notes.xml new file mode 100644 index 0000000000..8bb9320756 --- /dev/null +++ b/lib/hipe/doc/src/notes.xml @@ -0,0 +1,350 @@ + + + + +
+ + 20062009 + Ericsson AB. All Rights Reserved. + + + The contents of this file are subject to the Erlang Public License, + Version 1.1, (the "License"); you may not use this file except in + compliance with the License. You should have received a copy of the + Erlang Public License along with this software. If not, it can be + retrieved online at http://www.erlang.org/. + + Software distributed under the License is distributed on an "AS IS" + basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See + the License for the specific language governing rights and limitations + under the License. + + + + HiPE Release Notes + otp_appnotes + nil + nil + nil + notes.xml +
+

This document describes the changes made to HiPE.

+ +
Hipe 3.7.4 + +
Improvements and New Features + + +

+ The documentation is now built with open source tools + (xsltproc and fop) that exists on most platforms. One + visible change is that the frames are removed.

+

+ Own Id: OTP-8201

+
+ +

+ Misc updates.

+

+ Own Id: OTP-8301

+
+
+
+ +
+ +
Hipe 3.7.3 + +
Improvements and New Features + + +

+ Various small bugs (one involving the handling of large + binaries) were corrected and some additions to its + functionality and/or code cleanups were done.

+

+ Own Id: OTP-8189

+
+
+
+ +
+ +
Hipe 3.7.2 + +
Improvements and New Features + + +

+ Miscellanous updates.

+

+ Own Id: OTP-8038

+
+
+
+ +
+ +
Hipe 3.7.1 + +
Improvements and New Features + + +

+ Minor updates and bug fixes.

+

+ Own Id: OTP-7958

+
+
+
+ +
+ + +
Hipe 3.7 + +
Improvements and New Features + + +

+ Miscellaneous updates.

+

+ Own Id: OTP-7877

+
+
+
+ +
+ +
Hipe 3.6.9 + +
Improvements and New Features + + +

The --disable-hipe option for the + configure will now completely disable the hipe + run-time in the emulator, as is the expected + behaviour.

+

+ Own Id: OTP-7631

+
+
+
+ +
+ +
Hipe 3.6.8 + +
Improvements and New Features + + +

+ Minor updates.

+

+ Own Id: OTP-7522

+
+
+
+ +
+ + +
Hipe 3.6.7 + +
Improvements and New Features + + +

+ Minor changes.

+

+ Own Id: OTP-7388

+
+
+
+ +
+ +
Hipe 3.6.6 + +
Fixed Bugs and Malfunctions + + +

A fix for an #include problem which caused the FP + exception test to fail unnecessarily on + debian/glibc-2.7/x86 systems.

+

Added SIGFPE loop detection to the FP exception test. + This prevents the test from looping indefinitely, which + could happen when the CPU is supported (so we can enable + FP exceptions on it) but the OS isn't (so we can't write + a proper SIGFPE handler). x86 on an unsupported OS is + known to have had this problem.

+

+ Own Id: OTP-7254

+
+
+
+ + +
Improvements and New Features + + +

+ HiPE now also supports little-endian ARM processors.

+

+ Own Id: OTP-7255

+
+
+
+ +
+ +
Hipe 3.6.5 + +
Fixed Bugs and Malfunctions + + +

+ HIPE: Corrected the choice of interface to the send/3 and + setnode/3 BIFs for native-compiled code. Using the + incorrect interface could, in unusual circumstances, lead + to random runtime errors.

+

+ Own Id: OTP-7067

+
+
+
+ + +
Improvements and New Features + + +

+ The HiPE compiler's SPARC backend has been rewritten, + improving its correctness and long-term maintainability.

+

+ Own Id: OTP-7133

+
+
+
+ +
+ +
+ Hipe 3.6.3 + +
+ Improvements and New Features + + +

Minor Makefile changes.

+

Own Id: OTP-6689

+
+ +

Miscellanous updates.

+

Own Id: OTP-6738

+
+
+
+
+ +
+ Hipe 3.6.2 + +
+ Improvements and New Features + + +

Miscellanous improvements.

+

Own Id: OTP-6577

+
+
+
+
+ +
+ Hipe 3.6.1.1 + +
+ Fixed Bugs and Malfunctions + + +

Dialyzer could fail to analyze certain beam files that + used try/catch.

+

Own Id: OTP-6449 Aux Id: seq10563

+
+
+
+
+ +
+ Hipe 3.6.1 + +
+ Improvements and New Features + + +

HiPE runtime system:

+

* added notes about supported systems to README

+

* support 32-bit x86 on FreeBSD

+

* autoenable HiPE on FreeBSD (32-bit x86) and Solaris + (64-bit x86)

+

* updated x86 runtime system to support glibc-2.5

+

* work around probable gcc-4.1.1 bug affecting the x86 + runtime system

+

HiPE compiler:

+

* improved performance of integer multiplications on + all platforms

+

* corrected a code optimisation error in R11B-2 that + broke some bsl/bsr operations on all platforms

+

* corrected a type error in the ARM backend which + could cause the compiler to crash

+

* corrected an error in the SPARC backend's naive + register allocator which could throw the compiler into an + infinite loop

+

Own Id: OTP-6423

+
+
+
+
+ +
+ Hipe 3.6.0 + +
+ Improvements and New Features + + +

Support for native code on Solaris 10/AMD64.

+

Support for native code on FreeBSD/AMD64.

+

Native code now handles external funs (). Native code can now also apply so-called + tuple-funs (). (Tuple funs are NOT + recommended for new code; they are deprecated and will be + removed in some future release.)

+

Own Id: OTP-6305

+
+
+
+
+ +
+ Hipe 3.5.6 + +
+ Improvements and New Features + + +

Improved compilation of receives for the SMP runtime + system.

+

Improved code quality in HiPE compiler on ARM.

+

Fix bug in handling of re-raised exceptions in + try-catch.

+

(HiPE loader) When native code is incompatible with + the current runtime system, fall back to loading the BEAM + code.

+

Own Id: OTP-6127

+
+
+
+
+
+ diff --git a/lib/hipe/doc/src/part_notes.xml b/lib/hipe/doc/src/part_notes.xml new file mode 100644 index 0000000000..8a3e82027b --- /dev/null +++ b/lib/hipe/doc/src/part_notes.xml @@ -0,0 +1,35 @@ + + + + +
+ + 20062009 + Ericsson AB. All Rights Reserved. + + + The contents of this file are subject to the Erlang Public License, + Version 1.1, (the "License"); you may not use this file except in + compliance with the License. You should have received a copy of the + Erlang Public License along with this software. If not, it can be + retrieved online at http://www.erlang.org/. + + Software distributed under the License is distributed on an "AS IS" + basis, WITHOUT WARRANTY OF ANY KIND, either express or implied. See + the License for the specific language governing rights and limitations + under the License. + + + + HiPE Release Notes + + + + +
+ +

HiPE - High Performance Erlang.

+
+ +
+ -- cgit v1.2.3