Remove v8stdint.h, it doesn't serve a purpose anymore.

Basically a follow-up to https://codereview.chromium.org/667573005/.

LOG=y
R=bmeurer@chromium.org

Review URL: https://codereview.chromium.org/670673002

git-svn-id: https://v8.googlecode.com/svn/branches/bleeding_edge@24755 ce2b1a6d-e550-0410-aec6-3dcde31c8c00
This commit is contained in:
svenpanne@chromium.org 2014-10-21 08:25:14 +00:00
parent 38ce3a03cb
commit 3de17c6950
25 changed files with 33 additions and 39 deletions

View File

@ -15,7 +15,11 @@
#ifndef V8_H_
#define V8_H_
#include "v8stdint.h"
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include "v8config.h"
// We reserve the V8_* prefix for macros defined in V8 public API and
// assume there are no name conflicts with the embedder's code.

View File

@ -1,16 +0,0 @@
// Copyright 2012 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// Load definitions of standard types.
#ifndef V8STDINT_H_
#define V8STDINT_H_
#include <stddef.h>
#include <stdint.h>
#include <stdio.h>
#include "v8config.h"
#endif // V8STDINT_H_

View File

@ -5,7 +5,7 @@
#ifndef V8_ASSERT_SCOPE_H_
#define V8_ASSERT_SCOPE_H_
#include "include/v8stdint.h"
#include <stdint.h>
#include "src/base/macros.h"
namespace v8 {

View File

@ -25,7 +25,7 @@
#ifndef V8_BASE_ATOMICOPS_H_
#define V8_BASE_ATOMICOPS_H_
#include "include/v8stdint.h"
#include <stdint.h>
#include "src/base/build_config.h"
#if defined(_WIN32) && defined(V8_HOST_ARCH_64_BIT)

View File

@ -5,7 +5,7 @@
#ifndef V8_BASE_BITS_H_
#define V8_BASE_BITS_H_
#include "include/v8stdint.h"
#include <stdint.h>
#include "src/base/macros.h"
#if V8_CC_MSVC
#include <intrin.h>

View File

@ -5,12 +5,14 @@
#ifndef V8_BASE_FUNCTIONAL_H_
#define V8_BASE_FUNCTIONAL_H_
#include <stddef.h>
#include <stdint.h>
#include <cstddef>
#include <cstring>
#include <functional>
#include <utility>
#include "include/v8stdint.h"
#include "src/base/macros.h"
namespace v8 {

View File

@ -5,9 +5,9 @@
#ifndef V8_BASE_LOGGING_H_
#define V8_BASE_LOGGING_H_
#include <stdint.h>
#include <string.h>
#include "include/v8stdint.h"
#include "src/base/build_config.h"
extern "C" void V8_Fatal(const char* file, int line, const char* format, ...);

View File

@ -5,9 +5,11 @@
#ifndef V8_BASE_MACROS_H_
#define V8_BASE_MACROS_H_
#include <stddef.h>
#include <stdint.h>
#include <cstring>
#include "include/v8stdint.h"
#include "src/base/build_config.h"
#include "src/base/compiler-specific.h"
#include "src/base/logging.h"

View File

@ -52,6 +52,8 @@
#ifndef V8_BASE_ONCE_H_
#define V8_BASE_ONCE_H_
#include <stddef.h>
#include "src/base/atomicops.h"
namespace v8 {

View File

@ -5,7 +5,7 @@
#ifndef V8_BASE_SYS_INFO_H_
#define V8_BASE_SYS_INFO_H_
#include "include/v8stdint.h"
#include <stdint.h>
#include "src/base/compiler-specific.h"
namespace v8 {

View File

@ -4,7 +4,6 @@
#include <cmath>
#include "include/v8stdint.h"
#include "src/base/logging.h"
#include "src/utils.h"

View File

@ -4,9 +4,9 @@
#include <limits.h>
#include <stdarg.h>
#include <stdint.h>
#include <cmath>
#include "include/v8stdint.h"
#include "src/base/logging.h"
#include "src/cached-powers.h"
#include "src/globals.h"

View File

@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "include/v8stdint.h"
#include <stdint.h>
#include "src/base/logging.h"
#include "src/diy-fp.h"
#include "src/globals.h"

View File

@ -4,7 +4,6 @@
#include <cmath>
#include "include/v8stdint.h"
#include "src/base/logging.h"
#include "src/utils.h"

View File

@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "include/v8stdint.h"
#include <stdint.h>
#include "src/base/logging.h"
#include "src/utils.h"

View File

@ -2,9 +2,10 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include <stdint.h>
#include <cmath>
#include "include/v8stdint.h"
#include "src/base/logging.h"
#include "src/utils.h"

View File

@ -5,7 +5,8 @@
#ifndef V8_GLOBALS_H_
#define V8_GLOBALS_H_
#include "include/v8stdint.h"
#include <stddef.h>
#include <stdint.h>
#include "src/base/build_config.h"
#include "src/base/logging.h"

View File

@ -2,7 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "include/v8stdint.h"
#include "src/base/logging.h"
#include "src/compiler.h"
#include "src/globals.h"

View File

@ -4,8 +4,6 @@
#include <cmath>
#include "include/v8stdint.h"
#include "src/allocation.h"
#include "src/base/logging.h"
#include "src/conversions-inl.h"

View File

@ -4,11 +4,12 @@
// Features shared by parsing and pre-parsing scanners.
#include <stdint.h>
#include <cmath>
#include "src/v8.h"
#include "include/v8stdint.h"
#include "src/ast-value-factory.h"
#include "src/char-predicates-inl.h"
#include "src/conversions-inl.h"

View File

@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "include/v8stdint.h"
#include <stdint.h>
#include "src/token.h"
namespace v8 {

View File

@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "include/v8stdint.h"
#include <stdint.h>
#include "src/base/build_config.h"
#include "src/base/platform/platform.h"
#include "test/cctest/cctest.h"

View File

@ -6,6 +6,8 @@
#include "src/base/division-by-constant.h"
#include <stdint.h>
#include <ostream> // NOLINT
#include "testing/gtest-support.h"

View File

@ -2,7 +2,7 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
#include "include/v8stdint.h"
#include <stdint.h>
#include "src/base/flags.h"
#include "testing/gtest/include/gtest/gtest.h"

View File

@ -5,7 +5,7 @@
#ifndef V8_TESTING_GTEST_SUPPORT_H_
#define V8_TESTING_GTEST_SUPPORT_H_
#include "include/v8stdint.h"
#include <stddef.h>
#include "testing/gtest/include/gtest/gtest.h"
namespace testing {