diff options
Diffstat (limited to 'llvm/lib/ExecutionEngine/JITLink/MemoryFlags.cpp')
| -rw-r--r-- | llvm/lib/ExecutionEngine/JITLink/MemoryFlags.cpp | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/llvm/lib/ExecutionEngine/JITLink/MemoryFlags.cpp b/llvm/lib/ExecutionEngine/JITLink/MemoryFlags.cpp new file mode 100644 index 000000000000..b73a310b2910 --- /dev/null +++ b/llvm/lib/ExecutionEngine/JITLink/MemoryFlags.cpp @@ -0,0 +1,33 @@ +//===------------- MemoryFlags.cpp - Memory allocation flags --------------===// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// + +#include "llvm/ExecutionEngine/JITLink/MemoryFlags.h" + +#define DEBUG_TYPE "jitlink" + +namespace llvm { +namespace jitlink { + +raw_ostream &operator<<(raw_ostream &OS, MemProt MP) { + return OS << (((MP & MemProt::Read) != MemProt::None) ? 'R' : '-') + << (((MP & MemProt::Write) != MemProt::None) ? 'W' : '-') + << (((MP & MemProt::Exec) != MemProt::None) ? 'X' : '-'); +} + +raw_ostream &operator<<(raw_ostream &OS, MemDeallocPolicy MDP) { + return OS << (MDP == MemDeallocPolicy::Standard ? "standard" : "finalize"); +} + +raw_ostream &operator<<(raw_ostream &OS, AllocGroup AG) { + return OS << '(' << AG.getMemProt() << ", " << AG.getMemDeallocPolicy() + << ')'; +} + +} // end namespace jitlink +} // end namespace llvm |
