src/share/vm/shark/llvmHeaders.hpp

changeset 2047
d2ede61b7a12
child 2314
f95d63e2154a
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/src/share/vm/shark/llvmHeaders.hpp	Wed Aug 11 05:51:21 2010 -0700
     1.3 @@ -0,0 +1,95 @@
     1.4 +/*
     1.5 + * Copyright (c) 1999, 2007, Oracle and/or its affiliates. All rights reserved.
     1.6 + * Copyright 2008, 2009, 2010 Red Hat, Inc.
     1.7 + * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     1.8 + *
     1.9 + * This code is free software; you can redistribute it and/or modify it
    1.10 + * under the terms of the GNU General Public License version 2 only, as
    1.11 + * published by the Free Software Foundation.
    1.12 + *
    1.13 + * This code is distributed in the hope that it will be useful, but WITHOUT
    1.14 + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    1.15 + * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    1.16 + * version 2 for more details (a copy is included in the LICENSE file that
    1.17 + * accompanied this code).
    1.18 + *
    1.19 + * You should have received a copy of the GNU General Public License version
    1.20 + * 2 along with this work; if not, write to the Free Software Foundation,
    1.21 + * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    1.22 + *
    1.23 + * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
    1.24 + * or visit www.oracle.com if you need additional information or have any
    1.25 + * questions.
    1.26 + *
    1.27 + */
    1.28 +
    1.29 +#ifdef assert
    1.30 +  #undef assert
    1.31 +#endif
    1.32 +
    1.33 +#ifdef DEBUG
    1.34 +  #define SHARK_DEBUG
    1.35 +  #undef DEBUG
    1.36 +#endif
    1.37 +
    1.38 +#include <llvm/Argument.h>
    1.39 +#include <llvm/Constants.h>
    1.40 +#include <llvm/DerivedTypes.h>
    1.41 +#include <llvm/ExecutionEngine/ExecutionEngine.h>
    1.42 +#include <llvm/Instructions.h>
    1.43 +#include <llvm/LLVMContext.h>
    1.44 +#include <llvm/Module.h>
    1.45 +#if SHARK_LLVM_VERSION < 27
    1.46 +#include <llvm/ModuleProvider.h>
    1.47 +#endif
    1.48 +#include <llvm/Support/IRBuilder.h>
    1.49 +#include <llvm/System/Threading.h>
    1.50 +#include <llvm/Target/TargetSelect.h>
    1.51 +#include <llvm/Type.h>
    1.52 +#include <llvm/ExecutionEngine/JITMemoryManager.h>
    1.53 +#include <llvm/Support/CommandLine.h>
    1.54 +#if SHARK_LLVM_VERSION >= 27
    1.55 +#include <llvm/ExecutionEngine/JIT.h>
    1.56 +#include <llvm/ADT/StringMap.h>
    1.57 +#include <llvm/Support/Debug.h>
    1.58 +#include <llvm/System/Host.h>
    1.59 +#endif
    1.60 +
    1.61 +#include <map>
    1.62 +
    1.63 +#ifdef assert
    1.64 +  #undef assert
    1.65 +#endif
    1.66 +
    1.67 +// from hotspot/src/share/vm/utilities/debug.hpp
    1.68 +#ifdef ASSERT
    1.69 +#ifndef USE_REPEATED_ASSERTS
    1.70 +#define assert(p, msg)                                                       \
    1.71 +do {                                                                         \
    1.72 +  if (!(p)) {                                                                \
    1.73 +    report_vm_error(__FILE__, __LINE__, "assert(" #p ") failed", msg);       \
    1.74 +    BREAKPOINT;                                                              \
    1.75 +  }                                                                          \
    1.76 +} while (0)
    1.77 +#else // #ifndef USE_REPEATED_ASSERTS
    1.78 +#define assert(p, msg)
    1.79 +do {                                                                         \
    1.80 +  for (int __i = 0; __i < AssertRepeat; __i++) {                             \
    1.81 +    if (!(p)) {                                                              \
    1.82 +      report_vm_error(__FILE__, __LINE__, "assert(" #p ") failed", msg);     \
    1.83 +      BREAKPOINT;                                                            \
    1.84 +    }                                                                        \
    1.85 +  }                                                                          \
    1.86 +} while (0)
    1.87 +#endif // #ifndef USE_REPEATED_ASSERTS
    1.88 +#else
    1.89 +  #define assert(p, msg)
    1.90 +#endif
    1.91 +
    1.92 +#ifdef DEBUG
    1.93 +  #undef DEBUG
    1.94 +#endif
    1.95 +#ifdef SHARK_DEBUG
    1.96 +  #define DEBUG
    1.97 +  #undef SHARK_DEBUG
    1.98 +#endif

mercurial