mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-12-14 15:19:33 +00:00
add a new targetdata ctor to create a target data appropriate to the module
llvm-svn: 5903
This commit is contained in:
parent
55a4aea29b
commit
c06795629d
@ -11,6 +11,7 @@
|
||||
//===----------------------------------------------------------------------===//
|
||||
|
||||
#include "llvm/Target/TargetData.h"
|
||||
#include "llvm/Module.h"
|
||||
#include "llvm/DerivedTypes.h"
|
||||
#include "llvm/Constants.h"
|
||||
|
||||
@ -103,6 +104,23 @@ TargetData::TargetData(const std::string &TargetName,
|
||||
ByteAlignment = ByteAl;
|
||||
}
|
||||
|
||||
TargetData::TargetData(const std::string &ToolName, const Module *M)
|
||||
: AID(AnnotationManager::getID("TargetData::" + ToolName)) {
|
||||
AnnotationManager::registerAnnotationFactory(AID, TypeAnFactory, this);
|
||||
|
||||
LittleEndian = M->isLittleEndian();
|
||||
SubWordDataSize = 1;
|
||||
IntegerRegSize = 8;
|
||||
PointerSize = M->has32BitPointers() ? 32 : 64;
|
||||
PointerAlignment = PointerSize;
|
||||
DoubleAlignment = 8;
|
||||
FloatAlignment = 4;
|
||||
LongAlignment = 8;
|
||||
IntAlignment = 4;
|
||||
ShortAlignment = 2;
|
||||
ByteAlignment = 1;
|
||||
}
|
||||
|
||||
TargetData::~TargetData() {
|
||||
AnnotationManager::registerAnnotationFactory(AID, 0); // Deregister factory
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user