mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-25 20:23:11 +01:00
[OpaquePtr] Support opaque pointers in intrinsic type check
This adds support for opaque pointers in intrinsic type checks of IIT kind Pointer and PtrToElt. This is less straight-forward than it might initially seem, because we should only accept opaque pointers here in --force-opaque-pointers mode. Otherwise, there would be more than one valid type signature for a given intrinsic name. Differential Revision: https://reviews.llvm.org/D105155
This commit is contained in:
parent
20d89b9242
commit
6203a57d08
@ -305,6 +305,9 @@ public:
|
|||||||
/// LLVMContext is used by compilation.
|
/// LLVMContext is used by compilation.
|
||||||
void setOptPassGate(OptPassGate&);
|
void setOptPassGate(OptPassGate&);
|
||||||
|
|
||||||
|
/// Whether typed pointers are supported. If false, all pointers are opaque.
|
||||||
|
bool supportsTypedPointers() const;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
// Module needs access to the add/removeModule methods.
|
// Module needs access to the add/removeModule methods.
|
||||||
friend class Module;
|
friend class Module;
|
||||||
|
@ -1404,9 +1404,21 @@ static bool matchIntrinsicType(
|
|||||||
}
|
}
|
||||||
case IITDescriptor::Pointer: {
|
case IITDescriptor::Pointer: {
|
||||||
PointerType *PT = dyn_cast<PointerType>(Ty);
|
PointerType *PT = dyn_cast<PointerType>(Ty);
|
||||||
return !PT || PT->getAddressSpace() != D.Pointer_AddressSpace ||
|
if (!PT || PT->getAddressSpace() != D.Pointer_AddressSpace)
|
||||||
matchIntrinsicType(PT->getElementType(), Infos, ArgTys,
|
return true;
|
||||||
|
if (!PT->isOpaque())
|
||||||
|
return matchIntrinsicType(PT->getElementType(), Infos, ArgTys,
|
||||||
DeferredChecks, IsDeferredCheck);
|
DeferredChecks, IsDeferredCheck);
|
||||||
|
// If typed pointers are supported, do not allow using opaque pointer in
|
||||||
|
// place of fixed pointer type. This would make the intrinsic signature
|
||||||
|
// non-unique.
|
||||||
|
if (Ty->getContext().supportsTypedPointers())
|
||||||
|
return true;
|
||||||
|
// Consume IIT descriptors relating to the pointer element type.
|
||||||
|
while (Infos.front().Kind == IITDescriptor::Pointer)
|
||||||
|
Infos = Infos.slice(1);
|
||||||
|
Infos = Infos.slice(1);
|
||||||
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
case IITDescriptor::Struct: {
|
case IITDescriptor::Struct: {
|
||||||
@ -1517,8 +1529,13 @@ static bool matchIntrinsicType(
|
|||||||
dyn_cast<VectorType> (ArgTys[D.getArgumentNumber()]);
|
dyn_cast<VectorType> (ArgTys[D.getArgumentNumber()]);
|
||||||
PointerType *ThisArgType = dyn_cast<PointerType>(Ty);
|
PointerType *ThisArgType = dyn_cast<PointerType>(Ty);
|
||||||
|
|
||||||
return (!ThisArgType || !ReferenceType ||
|
if (!ThisArgType || !ReferenceType)
|
||||||
ThisArgType->getElementType() != ReferenceType->getElementType());
|
return true;
|
||||||
|
if (!ThisArgType->isOpaque())
|
||||||
|
return ThisArgType->getElementType() != ReferenceType->getElementType();
|
||||||
|
// If typed pointers are supported, do not allow opaque pointer to ensure
|
||||||
|
// uniqueness.
|
||||||
|
return Ty->getContext().supportsTypedPointers();
|
||||||
}
|
}
|
||||||
case IITDescriptor::VecOfAnyPtrsToElt: {
|
case IITDescriptor::VecOfAnyPtrsToElt: {
|
||||||
unsigned RefArgNumber = D.getRefArgNumber();
|
unsigned RefArgNumber = D.getRefArgNumber();
|
||||||
|
@ -347,3 +347,7 @@ const DiagnosticHandler *LLVMContext::getDiagHandlerPtr() const {
|
|||||||
std::unique_ptr<DiagnosticHandler> LLVMContext::getDiagnosticHandler() {
|
std::unique_ptr<DiagnosticHandler> LLVMContext::getDiagnosticHandler() {
|
||||||
return std::move(pImpl->DiagHandler);
|
return std::move(pImpl->DiagHandler);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool LLVMContext::supportsTypedPointers() const {
|
||||||
|
return !pImpl->ForceOpaquePointers;
|
||||||
|
}
|
||||||
|
20
test/Assembler/remangle-intrinsic-opaque-ptr.ll
Normal file
20
test/Assembler/remangle-intrinsic-opaque-ptr.ll
Normal file
@ -0,0 +1,20 @@
|
|||||||
|
; RUN: not llvm-as < %s -disable-output 2>&1 | FileCheck %s --check-prefix=TYPED
|
||||||
|
; RUN: llvm-as --force-opaque-pointers < %s | llvm-dis --force-opaque-pointers | FileCheck %s --check-prefix=OPAQUE
|
||||||
|
|
||||||
|
; An opaque pointer type should not be accepted for an intrinsic that
|
||||||
|
; specifies a fixed pointer type, outside of --force-opaque-pointers mode.
|
||||||
|
|
||||||
|
define void @test() {
|
||||||
|
; TYPED: Intrinsic has incorrect return type!
|
||||||
|
; OPAQUE: call ptr @llvm.stacksave()
|
||||||
|
call ptr @llvm.stacksave()
|
||||||
|
|
||||||
|
; TYPED: Intrinsic has incorrect argument type!
|
||||||
|
; OPAQUE: call <2 x i64> @llvm.masked.expandload.v2i64(ptr null, <2 x i1> zeroinitializer, <2 x i64> zeroinitializer)
|
||||||
|
call <2 x i64> @llvm.masked.expandload.v2i64(ptr null, <2 x i1> zeroinitializer, <2 x i64> zeroinitializer)
|
||||||
|
|
||||||
|
ret void
|
||||||
|
}
|
||||||
|
|
||||||
|
declare ptr @llvm.stacksave()
|
||||||
|
declare <2 x i64> @llvm.masked.expandload.v2i64(ptr, <2 x i1>, <2 x i64>)
|
@ -48,3 +48,22 @@ define void @f3(i32 addrspace(1)* addrspace(2)* %p) {
|
|||||||
;
|
;
|
||||||
unreachable
|
unreachable
|
||||||
}
|
}
|
||||||
|
|
||||||
|
define void @remangle_intrinsic() {
|
||||||
|
; CHECK-LABEL: define {{[^@]+}}@remangle_intrinsic() {
|
||||||
|
; CHECK-NEXT: [[A:%.*]] = alloca ptr, align 8
|
||||||
|
; CHECK-NEXT: [[TMP1:%.*]] = call ptr @llvm.stacksave()
|
||||||
|
; CHECK-NEXT: call void @llvm.stackprotector(ptr null, ptr [[A]])
|
||||||
|
; CHECK-NEXT: [[TMP2:%.*]] = call <2 x i64> @llvm.masked.expandload.v2i64(ptr null, <2 x i1> zeroinitializer, <2 x i64> zeroinitializer)
|
||||||
|
; CHECK-NEXT: ret void
|
||||||
|
;
|
||||||
|
%a = alloca i8*
|
||||||
|
call i8* @llvm.stacksave()
|
||||||
|
call void @llvm.stackprotector(i8* null, i8** %a)
|
||||||
|
call <2 x i64> @llvm.masked.expandload.v2i64(i64* null, <2 x i1> zeroinitializer, <2 x i64> zeroinitializer)
|
||||||
|
ret void
|
||||||
|
}
|
||||||
|
|
||||||
|
declare i8* @llvm.stacksave()
|
||||||
|
declare void @llvm.stackprotector(i8*, i8**)
|
||||||
|
declare <2 x i64> @llvm.masked.expandload.v2i64(i64*, <2 x i1>, <2 x i64>)
|
||||||
|
Loading…
Reference in New Issue
Block a user