@@ -1,7 +1,7 @@ /* - * Copyright (c) 2008-2023 Jonathan Schleifer + * Copyright (c) 2008-2024 Jonathan Schleifer * * All rights reserved. * * This file is part of ObjFW. It may be distributed under the terms of the * Q Public License 1.0, which can be found in the file LICENSE.QPL included in @@ -14,19 +14,27 @@ */ #include "config.h" #include "platform.h" + +#ifdef HAVE_CET_H +# include +#else +# define _CET_ENDBR +#endif .globl objc_msg_lookup .globl objc_msg_lookup_stret .globl objc_msg_lookup_super .globl objc_msg_lookup_super_stret .section .text .macro GENERATE_LOOKUP name notFound \name: + _CET_ENDBR + movl 4(%esp), %edx testl %edx, %edx jz returnNilMethod testb $1, %dl @@ -76,10 +84,12 @@ .size \name, .-\name .endm .macro GENERATE_LOOKUP_SUPER name lookup \name: + _CET_ENDBR + movl 4(%esp), %edx movl (%edx), %eax testl %eax, %eax jz returnNilMethod