mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-22 18:54:02 +01:00
[Orc] Rename OrcTargetSupport to OrcArchitectureSupport to avoid confusion with
the upcoming remote-target support classes. llvm-svn: 257302
This commit is contained in:
parent
d9fb66564c
commit
ecc377c6e6
@ -240,8 +240,8 @@ private:
|
||||
virtual void anchor();
|
||||
};
|
||||
|
||||
/// @brief IndirectStubsManager implementation for a concrete target, e.g.
|
||||
/// OrcX86_64. (See OrcTargetSupport.h).
|
||||
/// @brief IndirectStubsManager implementation for the host architecture, e.g.
|
||||
/// OrcX86_64. (See OrcArchitectureSupport.h).
|
||||
template <typename TargetT>
|
||||
class LocalIndirectStubsManager : public IndirectStubsManager {
|
||||
public:
|
||||
|
@ -1,4 +1,4 @@
|
||||
//===-- OrcTargetSupport.h - Code to support specific targets --*- C++ -*-===//
|
||||
//===-- OrcArchitectureSupport.h - Architecture support code ---*- C++ -*-===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
@ -7,16 +7,16 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// Target specific code for Orc, e.g. callback assembly.
|
||||
// Architecture specific code for Orc, e.g. callback assembly.
|
||||
//
|
||||
// Target classes should be part of the JIT *target* process, not the host
|
||||
// Architecture classes should be part of the JIT *target* process, not the host
|
||||
// process (except where you're doing hosted JITing and the two are one and the
|
||||
// same).
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#ifndef LLVM_EXECUTIONENGINE_ORC_ORCTARGETSUPPORT_H
|
||||
#define LLVM_EXECUTIONENGINE_ORC_ORCTARGETSUPPORT_H
|
||||
#ifndef LLVM_EXECUTIONENGINE_ORC_ORCARCHITECTURESUPPORT_H
|
||||
#define LLVM_EXECUTIONENGINE_ORC_ORCARCHITECTURESUPPORT_H
|
||||
|
||||
#include "IndirectionUtils.h"
|
||||
#include "llvm/Support/Memory.h"
|
||||
@ -100,4 +100,4 @@ public:
|
||||
} // End namespace orc.
|
||||
} // End namespace llvm.
|
||||
|
||||
#endif // LLVM_EXECUTIONENGINE_ORC_ORCTARGETSUPPORT_H
|
||||
#endif // LLVM_EXECUTIONENGINE_ORC_ORCARCHITECTURESUPPORT_H
|
@ -2,11 +2,11 @@ add_llvm_library(LLVMOrcJIT
|
||||
ExecutionUtils.cpp
|
||||
IndirectionUtils.cpp
|
||||
NullResolver.cpp
|
||||
OrcArchitectureSupport.cpp
|
||||
OrcCBindings.cpp
|
||||
OrcCBindingsStack.cpp
|
||||
OrcError.cpp
|
||||
OrcMCJITReplacement.cpp
|
||||
OrcTargetSupport.cpp
|
||||
|
||||
ADDITIONAL_HEADER_DIRS
|
||||
${LLVM_MAIN_INCLUDE_DIR}/llvm/ExecutionEngine/Orc
|
||||
|
@ -1,4 +1,4 @@
|
||||
//===------- OrcTargetSupport.cpp - Target support utilities for Orc ------===//
|
||||
//===------ OrcArchSupport.cpp - Architecture specific support code -------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
@ -8,7 +8,7 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "llvm/ADT/Triple.h"
|
||||
#include "llvm/ExecutionEngine/Orc/OrcTargetSupport.h"
|
||||
#include "llvm/ExecutionEngine/Orc/OrcArchitectureSupport.h"
|
||||
#include "llvm/Support/Process.h"
|
||||
#include <array>
|
||||
|
@ -9,7 +9,7 @@
|
||||
|
||||
#include "OrcCBindingsStack.h"
|
||||
|
||||
#include "llvm/ExecutionEngine/Orc/OrcTargetSupport.h"
|
||||
#include "llvm/ExecutionEngine/Orc/OrcArchitectureSupport.h"
|
||||
#include "llvm/Support/Debug.h"
|
||||
#include "llvm/Support/DynamicLibrary.h"
|
||||
#include <cstdio>
|
||||
|
@ -8,7 +8,7 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "OrcLazyJIT.h"
|
||||
#include "llvm/ExecutionEngine/Orc/OrcTargetSupport.h"
|
||||
#include "llvm/ExecutionEngine/Orc/OrcArchitectureSupport.h"
|
||||
#include "llvm/Support/Debug.h"
|
||||
#include "llvm/Support/DynamicLibrary.h"
|
||||
#include <cstdio>
|
||||
|
Loading…
Reference in New Issue
Block a user