2004-09-11 12:59:30 +08:00
|
|
|
//===- Memory.cpp - Memory Handling Support ---------------------*- C++ -*-===//
|
2005-04-22 06:55:34 +08:00
|
|
|
//
|
2004-09-11 12:59:30 +08:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-30 04:36:04 +08:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-22 06:55:34 +08:00
|
|
|
//
|
2004-09-11 12:59:30 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// This file defines some helpful functions for allocating memory and dealing
|
|
|
|
// with memory mapped files
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2010-11-30 02:16:10 +08:00
|
|
|
#include "llvm/Support/Memory.h"
|
2004-12-27 14:15:57 +08:00
|
|
|
#include "llvm/Config/config.h"
|
2012-12-04 00:50:05 +08:00
|
|
|
#include "llvm/Support/Valgrind.h"
|
2004-09-11 12:59:30 +08:00
|
|
|
|
|
|
|
// Include the platform-specific parts of this class.
|
2004-12-27 14:15:57 +08:00
|
|
|
#ifdef LLVM_ON_UNIX
|
2005-01-10 07:29:00 +08:00
|
|
|
#include "Unix/Memory.inc"
|
2004-12-27 14:15:57 +08:00
|
|
|
#endif
|
|
|
|
#ifdef LLVM_ON_WIN32
|
2010-11-30 02:16:10 +08:00
|
|
|
#include "Windows/Memory.inc"
|
2004-12-27 14:15:57 +08:00
|
|
|
#endif
|