// 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. #ifndef V8_COMMON_CHECKS_H_ #define V8_COMMON_CHECKS_H_ #include "include/v8-internal.h" #include "src/base/logging.h" #include "src/common/globals.h" #ifdef ENABLE_SLOW_DCHECKS #include "src/flags/flags.h" #endif #ifdef ENABLE_SLOW_DCHECKS #define SLOW_DCHECK … #define SLOW_DCHECK_IMPLIES … #else #define SLOW_DCHECK(condition) … #define SLOW_DCHECK_IMPLIES(v1, v2) … #endif #define DCHECK_TAG_ALIGNED(address) … #define DCHECK_SIZE_TAG_ALIGNED(size) … #endif // V8_COMMON_CHECKS_H_