blob: 53d9c47e33c18292741f1e40890c8fe2d6299646 [file] [log] [blame]
Steve Blocka7e24c12009-10-30 11:49:00 +00001This license applies to all parts of V8 that are not externally
2maintained libraries. The externally maintained libraries used by V8
3are:
4
5 - PCRE test suite, located in
Ben Murdoch014dc512016-03-22 12:00:34 +00006 test/mjsunit/third_party/regexp-pcre/regexp-pcre.js. This is based on the
Steve Blocka7e24c12009-10-30 11:49:00 +00007 test suite from PCRE-7.3, which is copyrighted by the University
8 of Cambridge and Google, Inc. The copyright notice and license
9 are embedded in regexp-pcre.js.
10
Ben Murdoch014dc512016-03-22 12:00:34 +000011 - Layout tests, located in test/mjsunit/third_party/object-keys. These are
Steve Blocka7e24c12009-10-30 11:49:00 +000012 based on layout tests from webkit.org which are copyrighted by
13 Apple Computer, Inc. and released under a 3-clause BSD license.
14
Steve Blocka7e24c12009-10-30 11:49:00 +000015 - Strongtalk assembler, the basis of the files assembler-arm-inl.h,
16 assembler-arm.cc, assembler-arm.h, assembler-ia32-inl.h,
Ben Murdoch3ef787d2012-04-12 10:51:47 +010017 assembler-ia32.cc, assembler-ia32.h, assembler-x64-inl.h,
18 assembler-x64.cc, assembler-x64.h, assembler-mips-inl.h,
19 assembler-mips.cc, assembler-mips.h, assembler.cc and assembler.h.
Steve Blocka7e24c12009-10-30 11:49:00 +000020 This code is copyrighted by Sun Microsystems Inc. and released
21 under a 3-clause BSD license.
22
Rubin Xu9a27c7f2021-02-10 00:04:48 +000023 - Valgrind client API header, located at src/third_party/valgrind/valgrind.h
24 This is released under the BSD license.
Steve Blocka7e24c12009-10-30 11:49:00 +000025
Rubin Xu9a27c7f2021-02-10 00:04:48 +000026 - The Wasm C/C++ API headers, located at third_party/wasm-api/wasm.{h,hh}
27 This is released under the Apache license. The API's upstream prototype
28 implementation also formed the basis of V8's implementation in
29 src/wasm/c-api.cc.
Rubin Xu2894c6a2019-02-07 16:01:35 +000030
Steve Blocka7e24c12009-10-30 11:49:00 +000031These libraries have their own licenses; we recommend you read them,
32as their terms may differ from the terms below.
33
Ben Murdoch014dc512016-03-22 12:00:34 +000034Further license information can be found in LICENSE files located in
35sub-directories.
36
Ben Murdochb8a8cc12014-11-26 15:28:44 +000037Copyright 2014, the V8 project authors. All rights reserved.
Steve Blocka7e24c12009-10-30 11:49:00 +000038Redistribution and use in source and binary forms, with or without
39modification, are permitted provided that the following conditions are
40met:
41
42 * Redistributions of source code must retain the above copyright
43 notice, this list of conditions and the following disclaimer.
44 * Redistributions in binary form must reproduce the above
45 copyright notice, this list of conditions and the following
46 disclaimer in the documentation and/or other materials provided
47 with the distribution.
48 * Neither the name of Google Inc. nor the names of its
49 contributors may be used to endorse or promote products derived
50 from this software without specific prior written permission.
51
52THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
53"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
54LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
55A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
56OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
57SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
58LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
59DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
60THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
61(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
62OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.