mirror of
https://github.com/opnsense/src.git
synced 2026-06-12 10:10:24 -04:00
all of the features in the current working draft of the upcoming C++ standard, provisionally named C++1y. The code generator's performance is greatly increased, and the loop auto-vectorizer is now enabled at -Os and -O2 in addition to -O3. The PowerPC backend has made several major improvements to code generation quality and compile time, and the X86, SPARC, ARM32, Aarch64 and SystemZ backends have all seen major feature work. Release notes for llvm and clang can be found here: <http://llvm.org/releases/3.4/docs/ReleaseNotes.html> <http://llvm.org/releases/3.4/tools/clang/docs/ReleaseNotes.html> MFC after: 1 month
35 lines
999 B
C++
35 lines
999 B
C++
//= RemoteTargetExternal.inc - LLVM out-of-process JIT execution for Windows =//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file is distributed under the University of Illinois Open Source
|
|
// License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// Definition of the Windows-specific parts of the RemoteTargetExternal class
|
|
// which is meant to execute JITed code in a separate process from where it was
|
|
// built. To support this functionality on Windows, implement these functions.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
namespace llvm {
|
|
|
|
void RemoteTargetExternal::create() {
|
|
}
|
|
|
|
int RemoteTargetExternal::WriteBytes(const void *Data, size_t Size) {
|
|
return 0;
|
|
}
|
|
|
|
int RemoteTargetExternal::ReadBytes(void *Data, size_t Size) {
|
|
return 0;
|
|
}
|
|
|
|
void RemoteTargetExternal::Wait() {
|
|
}
|
|
|
|
RemoteTargetExternal::~RemoteTargetExternal() {
|
|
}
|
|
|
|
} // namespace llvm
|