You've already forked linux-packaging-mono
Imported Upstream version 5.18.0.207
Former-commit-id: 3b152f462918d427ce18620a2cbe4f8b79650449
This commit is contained in:
parent
8e12397d70
commit
eb85e2fc17
@ -1,49 +0,0 @@
|
||||
//===----------- JITSymbol.cpp - JITSymbol class implementation -----------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
||||
// This file is distributed under the University of Illinois Open Source
|
||||
// License. See LICENSE.TXT for details.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// JITSymbol class implementation plus helper functions.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "llvm/ExecutionEngine/JITSymbol.h"
|
||||
#include "llvm/IR/GlobalValue.h"
|
||||
#include "llvm/Object/SymbolicFile.h"
|
||||
|
||||
using namespace llvm;
|
||||
|
||||
JITSymbolFlags llvm::JITSymbolFlags::fromGlobalValue(const GlobalValue &GV) {
|
||||
JITSymbolFlags Flags = JITSymbolFlags::None;
|
||||
if (GV.hasWeakLinkage() || GV.hasLinkOnceLinkage())
|
||||
Flags |= JITSymbolFlags::Weak;
|
||||
if (GV.hasCommonLinkage())
|
||||
Flags |= JITSymbolFlags::Common;
|
||||
if (!GV.hasLocalLinkage() && !GV.hasHiddenVisibility())
|
||||
Flags |= JITSymbolFlags::Exported;
|
||||
return Flags;
|
||||
}
|
||||
|
||||
JITSymbolFlags
|
||||
llvm::JITSymbolFlags::fromObjectSymbol(const object::BasicSymbolRef &Symbol) {
|
||||
JITSymbolFlags Flags = JITSymbolFlags::None;
|
||||
if (Symbol.getFlags() & object::BasicSymbolRef::SF_Weak)
|
||||
Flags |= JITSymbolFlags::Weak;
|
||||
if (Symbol.getFlags() & object::BasicSymbolRef::SF_Common)
|
||||
Flags |= JITSymbolFlags::Common;
|
||||
if (Symbol.getFlags() & object::BasicSymbolRef::SF_Exported)
|
||||
Flags |= JITSymbolFlags::Exported;
|
||||
return Flags;
|
||||
}
|
||||
|
||||
ARMJITSymbolFlags llvm::ARMJITSymbolFlags::fromObjectSymbol(
|
||||
const object::BasicSymbolRef &Symbol) {
|
||||
ARMJITSymbolFlags Flags;
|
||||
if (Symbol.getFlags() & object::BasicSymbolRef::SF_Thumb)
|
||||
Flags |= ARMJITSymbolFlags::Thumb;
|
||||
return Flags;
|
||||
}
|
Reference in New Issue
Block a user