deps: v8_inspector no longer depends on wtf
Remove wtf files as v8_inspector no longer needs them. Ref: https://github.com/nodejs/node/issues/7123 PR-URL: https://github.com/nodejs/node/pull/7751 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Michaël Zasso <mic.besace@gmail.com> Reviewed-By: Minwoo Jung <jmwsoft@gmail.com>
This commit is contained in:
parent
4ae24e185d
commit
257a866918
1
deps/v8_inspector/deps/wtf/README.md
vendored
1
deps/v8_inspector/deps/wtf/README.md
vendored
@ -1 +0,0 @@
|
||||
# wtf
|
40
deps/v8_inspector/deps/wtf/wtf/Assertions.h
vendored
40
deps/v8_inspector/deps/wtf/wtf/Assertions.h
vendored
@ -1,40 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2003, 2006, 2007 Apple Inc. All rights reserved.
|
||||
* Copyright (C) 2013 Google Inc. All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
|
||||
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
|
||||
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
||||
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
||||
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
|
||||
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#ifndef WTF_Assertions_h
|
||||
#define WTF_Assertions_h
|
||||
|
||||
#ifndef CHECK
|
||||
#define CHECK(condition) ((void) 0)
|
||||
#endif
|
||||
#define DCHECK(condition) ((void) 0)
|
||||
#define NOTREACHED()
|
||||
#define DCHECK_GE(i, j) DCHECK(i >= j)
|
||||
|
||||
template <typename T>
|
||||
inline void USE(T) { }
|
||||
|
||||
#endif /* WTF_Assertions_h */
|
54
deps/v8_inspector/deps/wtf/wtf/Compiler.h
vendored
54
deps/v8_inspector/deps/wtf/wtf/Compiler.h
vendored
@ -1,54 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2011, 2012 Apple Inc. All rights reserved.
|
||||
*
|
||||
* Redistribution and use in source and binary forms, with or without
|
||||
* modification, are permitted provided that the following conditions
|
||||
* are met:
|
||||
* 1. Redistributions of source code must retain the above copyright
|
||||
* notice, this list of conditions and the following disclaimer.
|
||||
* 2. Redistributions in binary form must reproduce the above copyright
|
||||
* notice, this list of conditions and the following disclaimer in the
|
||||
* documentation and/or other materials provided with the distribution.
|
||||
*
|
||||
* THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY
|
||||
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
||||
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
||||
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR
|
||||
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
|
||||
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
||||
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
|
||||
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
|
||||
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
||||
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
||||
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||
*/
|
||||
|
||||
#ifndef WTF_Compiler_h
|
||||
#define WTF_Compiler_h
|
||||
|
||||
/* COMPILER() - the compiler being used to build the project */
|
||||
#define COMPILER(WTF_FEATURE) (defined WTF_COMPILER_##WTF_FEATURE && WTF_COMPILER_##WTF_FEATURE)
|
||||
|
||||
/* ==== COMPILER() - the compiler being used to build the project ==== */
|
||||
|
||||
/* COMPILER(CLANG) - Clang */
|
||||
#if defined(__clang__)
|
||||
#define WTF_COMPILER_CLANG 1
|
||||
#endif
|
||||
|
||||
/* COMPILER(MSVC) - Microsoft Visual C++ (and Clang when compiling for Windows). */
|
||||
#if defined(_MSC_VER)
|
||||
#define WTF_COMPILER_MSVC 1
|
||||
#endif
|
||||
|
||||
/* COMPILER(GCC) - GNU Compiler Collection (and Clang when compiling for platforms other than Windows). */
|
||||
#if defined(__GNUC__)
|
||||
#define WTF_COMPILER_GCC 1
|
||||
#define GCC_VERSION (__GNUC__ * 10000 + __GNUC_MINOR__ * 100 + __GNUC_PATCHLEVEL__)
|
||||
#define GCC_VERSION_AT_LEAST(major, minor, patch) (GCC_VERSION >= (major * 10000 + minor * 100 + patch))
|
||||
#else
|
||||
/* Define this for !GCC compilers, just so we can write things like GCC_VERSION_AT_LEAST(4, 1, 0). */
|
||||
#define GCC_VERSION_AT_LEAST(major, minor, patch) 0
|
||||
#endif
|
||||
|
||||
#endif /* WTF_Compiler_h */
|
275
deps/v8_inspector/deps/wtf/wtf/PtrUtil.h
vendored
275
deps/v8_inspector/deps/wtf/wtf/PtrUtil.h
vendored
@ -1,275 +0,0 @@
|
||||
/*
|
||||
* Copyright (C) 2006, 2007, 2008, 2009, 2010 Apple Inc. All rights reserved.
|
||||
* Copyright (C) 2013 Intel Corporation. All rights reserved.
|
||||
*
|
||||
* This library is free software; you can redistribute it and/or
|
||||
* modify it under the terms of the GNU Library General Public
|
||||
* License as published by the Free Software Foundation; either
|
||||
* version 2 of the License, or (at your option) any later version.
|
||||
*
|
||||
* This library is distributed in the hope that it will be useful,
|
||||
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||||
* Library General Public License for more details.
|
||||
*
|
||||
* You should have received a copy of the GNU Library General Public License
|
||||
* along with this library; see the file COPYING.LIB. If not, write to
|
||||
* the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
|
||||
* Boston, MA 02110-1301, USA.
|
||||
*
|
||||
*/
|
||||
|
||||
#ifndef WTF_PtrUtil_h
|
||||
#define WTF_PtrUtil_h
|
||||
|
||||
#include "wtf/Assertions.h"
|
||||
#include <memory>
|
||||
|
||||
#if defined(__APPLE__) && !defined(_LIBCPP_VERSION)
|
||||
|
||||
namespace std {
|
||||
|
||||
template <typename T1, typename T2>
|
||||
struct is_convertible
|
||||
{
|
||||
private:
|
||||
struct True_ { char x[2]; };
|
||||
struct False_ { };
|
||||
|
||||
static True_ helper(T2 const &);
|
||||
static False_ helper(...);
|
||||
|
||||
public:
|
||||
static bool const value = (
|
||||
sizeof(True_) == sizeof(is_convertible::helper(T1()))
|
||||
);
|
||||
};
|
||||
|
||||
template <bool, class T = void>
|
||||
struct enable_if {};
|
||||
|
||||
template <class T>
|
||||
struct enable_if<true, T>
|
||||
{
|
||||
typedef T type;
|
||||
};
|
||||
|
||||
template<class T>
|
||||
struct remove_extent { typedef T type; };
|
||||
|
||||
template<class T>
|
||||
struct remove_extent<T[]> { typedef T type; };
|
||||
|
||||
template<class T, std::size_t N>
|
||||
struct remove_extent<T[N]> { typedef T type;};
|
||||
|
||||
typedef decltype(nullptr) nullptr_t;
|
||||
|
||||
template<class T, T v>
|
||||
struct integral_constant {
|
||||
static constexpr T value = v;
|
||||
typedef T value_type;
|
||||
typedef integral_constant type;
|
||||
constexpr operator value_type() const noexcept { return value; }
|
||||
constexpr value_type operator()() const noexcept { return value; } //since c++14
|
||||
};
|
||||
|
||||
typedef integral_constant<bool, true> true_type;
|
||||
typedef integral_constant<bool, false> false_type;
|
||||
|
||||
template<class T>
|
||||
struct is_array : false_type {};
|
||||
|
||||
template<class T>
|
||||
struct is_array<T[]> : true_type {};
|
||||
|
||||
template<class T, std::size_t N>
|
||||
struct is_array<T[N]> : true_type {};
|
||||
|
||||
template <typename T>
|
||||
struct OwnedPtrDeleter {
|
||||
static void deletePtr(T* ptr)
|
||||
{
|
||||
static_assert(sizeof(T) > 0, "type must be complete");
|
||||
delete ptr;
|
||||
}
|
||||
};
|
||||
|
||||
template <typename T>
|
||||
struct OwnedPtrDeleter<T[]> {
|
||||
static void deletePtr(T* ptr)
|
||||
{
|
||||
static_assert(sizeof(T) > 0, "type must be complete");
|
||||
delete[] ptr;
|
||||
}
|
||||
};
|
||||
|
||||
template <class T, int n>
|
||||
struct OwnedPtrDeleter<T[n]> {
|
||||
static_assert(sizeof(T) < 0, "do not use array with size as type");
|
||||
};
|
||||
|
||||
|
||||
template <typename T> class unique_ptr {
|
||||
public:
|
||||
typedef typename remove_extent<T>::type ValueType;
|
||||
typedef ValueType* PtrType;
|
||||
|
||||
unique_ptr() : m_ptr(nullptr) {}
|
||||
unique_ptr(std::nullptr_t) : m_ptr(nullptr) {}
|
||||
unique_ptr(unique_ptr&&);
|
||||
template <typename U, typename = typename enable_if<is_convertible<U*, T*>::value>::type> unique_ptr(unique_ptr<U>&&);
|
||||
|
||||
~unique_ptr()
|
||||
{
|
||||
OwnedPtrDeleter<T>::deletePtr(m_ptr);
|
||||
m_ptr = nullptr;
|
||||
}
|
||||
|
||||
PtrType get() const { return m_ptr; }
|
||||
|
||||
void reset(PtrType ptr = nullptr);
|
||||
PtrType release();
|
||||
|
||||
ValueType& operator*() const { DCHECK(m_ptr); return *m_ptr; }
|
||||
PtrType operator->() const { DCHECK(m_ptr); return m_ptr; }
|
||||
|
||||
ValueType& operator[](std::ptrdiff_t i) const;
|
||||
|
||||
bool operator!() const { return !m_ptr; }
|
||||
explicit operator bool() const { return m_ptr; }
|
||||
|
||||
unique_ptr& operator=(std::nullptr_t) { reset(); return *this; }
|
||||
|
||||
|
||||
unique_ptr& operator=(unique_ptr&&);
|
||||
template <typename U> unique_ptr& operator=(unique_ptr<U>&&);
|
||||
|
||||
void swap(unique_ptr& o) { std::swap(m_ptr, o.m_ptr); }
|
||||
|
||||
static T* hashTableDeletedValue() { return reinterpret_cast<T*>(-1); }
|
||||
|
||||
explicit unique_ptr(PtrType ptr) : m_ptr(ptr) {}
|
||||
|
||||
private:
|
||||
|
||||
// We should never have two unique_ptrs for the same underlying object
|
||||
// (otherwise we'll get double-destruction), so these equality operators
|
||||
// should never be needed.
|
||||
template <typename U> bool operator==(const unique_ptr<U>&) const
|
||||
{
|
||||
static_assert(!sizeof(U*), "unique_ptrs should never be equal");
|
||||
return false;
|
||||
}
|
||||
template <typename U> bool operator!=(const unique_ptr<U>&) const
|
||||
{
|
||||
static_assert(!sizeof(U*), "unique_ptrs should never be equal");
|
||||
return false;
|
||||
}
|
||||
|
||||
PtrType m_ptr;
|
||||
};
|
||||
|
||||
|
||||
template <typename T> inline void unique_ptr<T>::reset(PtrType ptr)
|
||||
{
|
||||
PtrType p = m_ptr;
|
||||
m_ptr = ptr;
|
||||
OwnedPtrDeleter<T>::deletePtr(p);
|
||||
}
|
||||
|
||||
template <typename T> inline typename unique_ptr<T>::PtrType unique_ptr<T>::release()
|
||||
{
|
||||
PtrType ptr = m_ptr;
|
||||
m_ptr = nullptr;
|
||||
return ptr;
|
||||
}
|
||||
|
||||
template <typename T> inline typename unique_ptr<T>::ValueType& unique_ptr<T>::operator[](std::ptrdiff_t i) const
|
||||
{
|
||||
static_assert(is_array<T>::value, "elements access is possible for arrays only");
|
||||
DCHECK(m_ptr);
|
||||
DCHECK(i >= 0);
|
||||
return m_ptr[i];
|
||||
}
|
||||
|
||||
template <typename T> inline unique_ptr<T>::unique_ptr(unique_ptr<T>&& o)
|
||||
: m_ptr(o.release())
|
||||
{
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
template <typename U, typename> inline unique_ptr<T>::unique_ptr(unique_ptr<U>&& o)
|
||||
: m_ptr(o.release())
|
||||
{
|
||||
static_assert(!is_array<T>::value, "pointers to array must never be converted");
|
||||
}
|
||||
|
||||
template <typename T> inline unique_ptr<T>& unique_ptr<T>::operator=(unique_ptr<T>&& o)
|
||||
{
|
||||
PtrType ptr = m_ptr;
|
||||
m_ptr = o.release();
|
||||
DCHECK(!ptr || m_ptr != ptr);
|
||||
OwnedPtrDeleter<T>::deletePtr(ptr);
|
||||
|
||||
return *this;
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
template <typename U> inline unique_ptr<T>& unique_ptr<T>::operator=(unique_ptr<U>&& o)
|
||||
{
|
||||
static_assert(!is_array<T>::value, "pointers to array must never be converted");
|
||||
PtrType ptr = m_ptr;
|
||||
m_ptr = o.release();
|
||||
DCHECK(!ptr || m_ptr != ptr);
|
||||
OwnedPtrDeleter<T>::deletePtr(ptr);
|
||||
|
||||
return *this;
|
||||
}
|
||||
|
||||
template <typename T> inline void swap(unique_ptr<T>& a, unique_ptr<T>& b)
|
||||
{
|
||||
a.swap(b);
|
||||
}
|
||||
|
||||
template <typename T, typename U> inline bool operator==(const unique_ptr<T>& a, U* b)
|
||||
{
|
||||
return a.get() == b;
|
||||
}
|
||||
|
||||
template <typename T, typename U> inline bool operator==(T* a, const unique_ptr<U>& b)
|
||||
{
|
||||
return a == b.get();
|
||||
}
|
||||
|
||||
template <typename T, typename U> inline bool operator!=(const unique_ptr<T>& a, U* b)
|
||||
{
|
||||
return a.get() != b;
|
||||
}
|
||||
|
||||
template <typename T, typename U> inline bool operator!=(T* a, const unique_ptr<U>& b)
|
||||
{
|
||||
return a != b.get();
|
||||
}
|
||||
|
||||
template <typename T> inline typename unique_ptr<T>::PtrType getPtr(const unique_ptr<T>& p)
|
||||
{
|
||||
return p.get();
|
||||
}
|
||||
|
||||
template <typename T>
|
||||
unique_ptr<T> move(unique_ptr<T>& ptr)
|
||||
{
|
||||
return unique_ptr<T>(ptr.release());
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
#endif
|
||||
|
||||
template <typename T>
|
||||
std::unique_ptr<T> wrapUnique(T* ptr) {
|
||||
return std::unique_ptr<T>(ptr);
|
||||
}
|
||||
|
||||
#endif // WTF_PtrUtil_h
|
Loading…
x
Reference in New Issue
Block a user