mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 11:42:57 +01:00
R600: Clean up datalayout strings so they better match hardware capabilities
llvm-svn: 176439
This commit is contained in:
parent
d8829e76b3
commit
6cdfe5698a
@ -115,10 +115,18 @@ bool AMDGPUDevice::usesSoftware(AMDGPUDeviceInfo::Caps Mode) const {
|
|||||||
|
|
||||||
std::string
|
std::string
|
||||||
AMDGPUDevice::getDataLayout() const {
|
AMDGPUDevice::getDataLayout() const {
|
||||||
return std::string("e-p:32:32:32-i1:8:8-i8:8:8-i16:16:16"
|
std::string DataLayout = std::string(
|
||||||
"-i32:32:32-i64:64:64-f32:32:32-f64:64:64-f80:32:32"
|
"e"
|
||||||
"-v16:16:16-v24:32:32-v32:32:32-v48:64:64-v64:64:64"
|
"-p:32:32:32"
|
||||||
"-v96:128:128-v128:128:128-v192:256:256-v256:256:256"
|
"-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32"
|
||||||
"-v512:512:512-v1024:1024:1024-v2048:2048:2048"
|
"-v16:16:16-v24:32:32-v32:32:32-v48:64:64-v64:64:64-v96:128:128-v128:128:128"
|
||||||
"-n8:16:32:64");
|
"-v192:256:256-v256:256:256-v512:512:512-v1024:1024:1024-v2048:2048:2048"
|
||||||
|
"-n32:64"
|
||||||
|
);
|
||||||
|
|
||||||
|
if (usesHardware(AMDGPUDeviceInfo::DoubleOps)) {
|
||||||
|
DataLayout.append("-f64:64:64");
|
||||||
|
}
|
||||||
|
|
||||||
|
return DataLayout;
|
||||||
}
|
}
|
||||||
|
@ -36,10 +36,13 @@ AMDGPUSIDevice::getGeneration() const {
|
|||||||
|
|
||||||
std::string
|
std::string
|
||||||
AMDGPUSIDevice::getDataLayout() const {
|
AMDGPUSIDevice::getDataLayout() const {
|
||||||
return std::string("e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16"
|
return std::string(
|
||||||
"-i32:32:32-i64:64:64-f32:32:32-f64:64:64-f80:32:32"
|
"e"
|
||||||
"-v16:16:16-v24:32:32-v32:32:32-v48:64:64-v64:64:64"
|
"-p:64:64:64"
|
||||||
"-v96:128:128-v128:128:128-v192:256:256-v256:256:256"
|
"-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64"
|
||||||
"-v512:512:512-v1024:1024:1024-v2048:2048:2048"
|
"-v16:16:16-v24:32:32-v32:32:32-v48:64:64-v64:64:64-v96:128:128"
|
||||||
"-n8:16:32:64");
|
"-v128:128:128-v192:256:256-v256:256:256-v512:512:512-v1024:1024:1024"
|
||||||
|
"-v2048:2048:2048"
|
||||||
|
"-n32:64"
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user