2009-06-02 17:52:33 +00:00
|
|
|
//===- Memory.cpp - Memory Handling Support ---------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines some helpful functions for allocating memory and dealing
|
|
|
|
// with memory mapped files
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2011-02-20 12:57:14 +00:00
|
|
|
#include "llvm/Support/Memory.h"
|
2009-06-02 17:52:33 +00:00
|
|
|
#include "llvm/Config/config.h"
|
2013-04-08 18:41:23 +00:00
|
|
|
#include "llvm/Support/Valgrind.h"
|
2009-06-02 17:52:33 +00:00
|
|
|
|
|
|
|
// Include the platform-specific parts of this class.
|
|
|
|
#ifdef LLVM_ON_UNIX
|
|
|
|
#include "Unix/Memory.inc"
|
|
|
|
#endif
|
|
|
|
#ifdef LLVM_ON_WIN32
|
2011-02-20 12:57:14 +00:00
|
|
|
#include "Windows/Memory.inc"
|
2009-06-02 17:52:33 +00:00
|
|
|
#endif
|