mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 12:29:58 +00:00
Rename VMCore directory to IR.
Aside from moving the actual files, this patch only updates the build system and the source file comments under lib/... that are relevant. I'll be updating other docs and other files in smaller subsequnet commits. While I've tried to test this, but it is entirely possible that there will still be some build system fallout. Also, note that I've not changed the library name itself: libLLVMCore.a is still the library name. I'd be interested in others' opinions about whether we should rename this as well (I think we should, just not sure what it might break) llvm-svn: 171359
This commit is contained in:
parent
23d1063500
commit
1879729aa9
@ -9,9 +9,9 @@
|
||||
//
|
||||
// This file defines routines for folding instructions into constants.
|
||||
//
|
||||
// Also, to supplement the basic VMCore ConstantExpr simplifications,
|
||||
// Also, to supplement the basic IR ConstantExpr simplifications,
|
||||
// this file defines some additional folding routines that can make use of
|
||||
// DataLayout information. These functions cannot go in VMCore due to library
|
||||
// DataLayout information. These functions cannot go in IR due to library
|
||||
// dependency issues.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
@ -68,7 +68,7 @@ static Constant *FoldBitCast(Constant *C, Type *DestTy,
|
||||
unsigned FPWidth = SrcEltTy->getPrimitiveSizeInBits();
|
||||
Type *SrcIVTy =
|
||||
VectorType::get(IntegerType::get(C->getContext(), FPWidth), NumSrcElts);
|
||||
// Ask VMCore to do the conversion now that #elts line up.
|
||||
// Ask IR to do the conversion now that #elts line up.
|
||||
C = ConstantExpr::getBitCast(C, SrcIVTy);
|
||||
CDV = cast<ConstantDataVector>(C);
|
||||
}
|
||||
@ -104,7 +104,7 @@ static Constant *FoldBitCast(Constant *C, Type *DestTy,
|
||||
if (!isa<ConstantDataVector>(C) && !isa<ConstantVector>(C))
|
||||
return ConstantExpr::getBitCast(C, DestTy);
|
||||
|
||||
// If the element types match, VMCore can fold it.
|
||||
// If the element types match, IR can fold it.
|
||||
unsigned NumDstElt = DestVTy->getNumElements();
|
||||
unsigned NumSrcElt = C->getType()->getVectorNumElements();
|
||||
if (NumDstElt == NumSrcElt)
|
||||
@ -131,7 +131,7 @@ static Constant *FoldBitCast(Constant *C, Type *DestTy,
|
||||
// Recursively handle this integer conversion, if possible.
|
||||
C = FoldBitCast(C, DestIVTy, TD);
|
||||
|
||||
// Finally, VMCore can handle this now that #elts line up.
|
||||
// Finally, IR can handle this now that #elts line up.
|
||||
return ConstantExpr::getBitCast(C, DestTy);
|
||||
}
|
||||
|
||||
@ -141,9 +141,9 @@ static Constant *FoldBitCast(Constant *C, Type *DestTy,
|
||||
unsigned FPWidth = SrcEltTy->getPrimitiveSizeInBits();
|
||||
Type *SrcIVTy =
|
||||
VectorType::get(IntegerType::get(C->getContext(), FPWidth), NumSrcElt);
|
||||
// Ask VMCore to do the conversion now that #elts line up.
|
||||
// Ask IR to do the conversion now that #elts line up.
|
||||
C = ConstantExpr::getBitCast(C, SrcIVTy);
|
||||
// If VMCore wasn't able to fold it, bail out.
|
||||
// If IR wasn't able to fold it, bail out.
|
||||
if (!isa<ConstantVector>(C) && // FIXME: Remove ConstantVector.
|
||||
!isa<ConstantDataVector>(C))
|
||||
return C;
|
||||
|
@ -1,6 +1,6 @@
|
||||
# `Support' and `TableGen' libraries are added on the top-level CMakeLists.txt
|
||||
|
||||
add_subdirectory(VMCore)
|
||||
add_subdirectory(IR)
|
||||
add_subdirectory(CodeGen)
|
||||
add_subdirectory(Bitcode)
|
||||
add_subdirectory(Transforms)
|
||||
|
@ -7,7 +7,7 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// This file implements the BasicBlock class for the VMCore library.
|
||||
// This file implements the BasicBlock class for the IR library.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
@ -13,7 +13,7 @@
|
||||
//
|
||||
// The current constant folding implementation is implemented in two pieces: the
|
||||
// pieces that don't need DataLayout, and the pieces that do. This is to avoid
|
||||
// a dependence in VMCore on Target.
|
||||
// a dependence in IR on Target.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
@ -301,7 +301,7 @@ bool Constant::isConstantUsed() const {
|
||||
/// linker will never see them.
|
||||
/// GlobalRelocations: This entry may have arbitrary relocations.
|
||||
///
|
||||
/// FIXME: This really should not be in VMCore.
|
||||
/// FIXME: This really should not be in IR.
|
||||
Constant::PossibleRelocationsTy Constant::getRelocationInfo() const {
|
||||
if (const GlobalValue *GV = dyn_cast<GlobalValue>(this)) {
|
||||
if (GV->hasLocalLinkage() || GV->hasHiddenVisibility())
|
@ -7,7 +7,7 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// This file implements the Function class for the VMCore library.
|
||||
// This file implements the Function class for the IR library.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
@ -7,7 +7,7 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// This file implements the GlobalValue & GlobalVariable classes for the VMCore
|
||||
// This file implements the GlobalValue & GlobalVariable classes for the IR
|
||||
// library.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
@ -7,7 +7,7 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// This file implements the Instruction class for the VMCore library.
|
||||
// This file implements the Instruction class for the IR library.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
@ -1,4 +1,4 @@
|
||||
;===- ./lib/VMCore/LLVMBuild.txt -------------------------------*- Conf -*--===;
|
||||
;===- ./lib/IR/LLVMBuild.txt -----------------------------------*- Conf -*--===;
|
||||
;
|
||||
; The LLVM Compiler Infrastructure
|
||||
;
|
@ -1,4 +1,4 @@
|
||||
##===- lib/VMCore/Makefile ---------------------------------*- Makefile -*-===##
|
||||
##===- lib/IR/Makefile -------------------------------------*- Makefile -*-===##
|
||||
#
|
||||
# The LLVM Compiler Infrastructure
|
||||
#
|
@ -7,7 +7,7 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// This file implements the Module class for the VMCore library.
|
||||
// This file implements the Module class for the IR library.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
@ -1,4 +1,4 @@
|
||||
//===--- VMCore/PrintModulePass.cpp - Module/Function Printer -------------===//
|
||||
//===--- IR/PrintModulePass.cpp - Module/Function Printer -----------------===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
@ -1,4 +1,4 @@
|
||||
//===- llvm/VMCore/TargetTransformInfo.cpp ----------------------*- C++ -*-===//
|
||||
//===- llvm/IR/TargetTransformInfo.cpp --------------------------*- C++ -*-===//
|
||||
//
|
||||
// The LLVM Compiler Infrastructure
|
||||
//
|
@ -7,7 +7,7 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// This file implements the Type class for the VMCore library.
|
||||
// This file implements the Type class for the IR library.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
@ -7,7 +7,7 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// This file implements the TypeFinder class for the VMCore library.
|
||||
// This file implements the TypeFinder class for the IR library.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
@ -7,7 +7,7 @@
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
//
|
||||
// This file implements the ValueSymbolTable class for the VMCore library.
|
||||
// This file implements the ValueSymbolTable class for the IR library.
|
||||
//
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
@ -16,7 +16,7 @@
|
||||
;===------------------------------------------------------------------------===;
|
||||
|
||||
[common]
|
||||
subdirectories = Analysis Archive AsmParser Bitcode CodeGen DebugInfo ExecutionEngine Linker MC Object Option Support TableGen Target Transforms VMCore
|
||||
subdirectories = Analysis Archive AsmParser Bitcode CodeGen DebugInfo ExecutionEngine Linker IR MC Object Option Support TableGen Target Transforms
|
||||
|
||||
[component_0]
|
||||
type = Group
|
||||
|
@ -10,7 +10,7 @@ LEVEL = ..
|
||||
|
||||
include $(LEVEL)/Makefile.config
|
||||
|
||||
PARALLEL_DIRS := VMCore AsmParser Bitcode Archive Analysis Transforms CodeGen \
|
||||
PARALLEL_DIRS := IR AsmParser Bitcode Archive Analysis Transforms CodeGen \
|
||||
Target ExecutionEngine Linker MC Object Option DebugInfo
|
||||
|
||||
include $(LEVEL)/Makefile.common
|
||||
|
@ -98,7 +98,7 @@ if ($PEROBJ) {
|
||||
$libpath =~ s/^BitWriter/Bitcode\/Writer/;
|
||||
$libpath =~ s/^CppBackend/Target\/CppBackend/;
|
||||
$libpath =~ s/^MSIL/Target\/MSIL/;
|
||||
$libpath =~ s/^Core/VMCore/;
|
||||
$libpath =~ s/^Core/IR/;
|
||||
$libpath =~ s/^Instrumentation/Transforms\/Instrumentation/;
|
||||
$libpath =~ s/^Interpreter/ExecutionEngine\/Interpreter/;
|
||||
$libpath =~ s/^JIT/ExecutionEngine\/JIT/;
|
||||
|
@ -809,7 +809,7 @@ given by --build-root) at the same SUBPATH""",
|
||||
# Determine the LLVM source path, if not given.
|
||||
source_root = opts.source_root
|
||||
if source_root:
|
||||
if not os.path.exists(os.path.join(source_root, 'lib', 'VMCore',
|
||||
if not os.path.exists(os.path.join(source_root, 'lib', 'IR',
|
||||
'Function.cpp')):
|
||||
parser.error('invalid LLVM source root: %r' % source_root)
|
||||
else:
|
||||
@ -817,7 +817,7 @@ given by --build-root) at the same SUBPATH""",
|
||||
llvm_build_path = os.path.dirname(llvmbuild_path)
|
||||
utils_path = os.path.dirname(llvm_build_path)
|
||||
source_root = os.path.dirname(utils_path)
|
||||
if not os.path.exists(os.path.join(source_root, 'lib', 'VMCore',
|
||||
if not os.path.exists(os.path.join(source_root, 'lib', 'IR',
|
||||
'Function.cpp')):
|
||||
parser.error('unable to infer LLVM source root, please specify')
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user