115fc6badSTaylor Simpson /*
2*0d57cd61STaylor Simpson * Copyright(c) 2022-2023 Qualcomm Innovation Center, Inc. All Rights Reserved.
315fc6badSTaylor Simpson *
415fc6badSTaylor Simpson * This program is free software; you can redistribute it and/or modify
515fc6badSTaylor Simpson * it under the terms of the GNU General Public License as published by
615fc6badSTaylor Simpson * the Free Software Foundation; either version 2 of the License, or
715fc6badSTaylor Simpson * (at your option) any later version.
815fc6badSTaylor Simpson *
915fc6badSTaylor Simpson * This program is distributed in the hope that it will be useful,
1015fc6badSTaylor Simpson * but WITHOUT ANY WARRANTY; without even the implied warranty of
1115fc6badSTaylor Simpson * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
1215fc6badSTaylor Simpson * GNU General Public License for more details.
1315fc6badSTaylor Simpson *
1415fc6badSTaylor Simpson * You should have received a copy of the GNU General Public License
1515fc6badSTaylor Simpson * along with this program; if not, see <http://www.gnu.org/licenses/>.
1615fc6badSTaylor Simpson */
1715fc6badSTaylor Simpson
1815fc6badSTaylor Simpson /*
1915fc6badSTaylor Simpson * Test the VLIW semantics of exceptions with mem_noshuf
2015fc6badSTaylor Simpson *
2115fc6badSTaylor Simpson * When a packet has the :mem_noshuf attribute, the semantics dictate
2215fc6badSTaylor Simpson * That the load will get the data from the store if the addresses overlap.
2315fc6badSTaylor Simpson * To accomplish this, we perform the store first. However, we have to
2415fc6badSTaylor Simpson * handle the case where the store raises an exception. In that case, the
2515fc6badSTaylor Simpson * store should not alter the machine state.
2615fc6badSTaylor Simpson *
2715fc6badSTaylor Simpson * We test this with a mem_noshuf packet with a store to a global variable,
2815fc6badSTaylor Simpson * "should_not_change" and a load from NULL. After the SIGSEGV is caught,
2915fc6badSTaylor Simpson * we check * that the "should_not_change" value is the same.
3015fc6badSTaylor Simpson *
3115fc6badSTaylor Simpson * We also check that a predicated load where the predicate is false doesn't
3215fc6badSTaylor Simpson * raise an exception and allows the store to happen.
3315fc6badSTaylor Simpson */
3415fc6badSTaylor Simpson
3515fc6badSTaylor Simpson #include <stdlib.h>
3615fc6badSTaylor Simpson #include <stdio.h>
37*0d57cd61STaylor Simpson #include <stdint.h>
38*0d57cd61STaylor Simpson #include <stdbool.h>
3915fc6badSTaylor Simpson #include <unistd.h>
4015fc6badSTaylor Simpson #include <sys/types.h>
4115fc6badSTaylor Simpson #include <fcntl.h>
4215fc6badSTaylor Simpson #include <setjmp.h>
4315fc6badSTaylor Simpson #include <signal.h>
4415fc6badSTaylor Simpson
4515fc6badSTaylor Simpson int err;
46*0d57cd61STaylor Simpson
47*0d57cd61STaylor Simpson #include "hex_test.h"
48*0d57cd61STaylor Simpson
49*0d57cd61STaylor Simpson bool segv_caught;
5015fc6badSTaylor Simpson
5115fc6badSTaylor Simpson #define SHOULD_NOT_CHANGE_VAL 5
52*0d57cd61STaylor Simpson int32_t should_not_change = SHOULD_NOT_CHANGE_VAL;
5315fc6badSTaylor Simpson
5415fc6badSTaylor Simpson #define OK_TO_CHANGE_VAL 13
55*0d57cd61STaylor Simpson int32_t ok_to_change = OK_TO_CHANGE_VAL;
5615fc6badSTaylor Simpson
5715fc6badSTaylor Simpson jmp_buf jmp_env;
5815fc6badSTaylor Simpson
sig_segv(int sig,siginfo_t * info,void * puc)5915fc6badSTaylor Simpson static void sig_segv(int sig, siginfo_t *info, void *puc)
6015fc6badSTaylor Simpson {
61*0d57cd61STaylor Simpson check32(sig, SIGSEGV);
62*0d57cd61STaylor Simpson segv_caught = true;
6315fc6badSTaylor Simpson longjmp(jmp_env, 1);
6415fc6badSTaylor Simpson }
6515fc6badSTaylor Simpson
main()6615fc6badSTaylor Simpson int main()
6715fc6badSTaylor Simpson {
6815fc6badSTaylor Simpson struct sigaction act;
69*0d57cd61STaylor Simpson int32_t dummy32;
70*0d57cd61STaylor Simpson int64_t dummy64;
7115fc6badSTaylor Simpson void *p;
7215fc6badSTaylor Simpson
7315fc6badSTaylor Simpson /* SIGSEGV test */
7415fc6badSTaylor Simpson act.sa_sigaction = sig_segv;
7515fc6badSTaylor Simpson sigemptyset(&act.sa_mask);
7615fc6badSTaylor Simpson act.sa_flags = SA_SIGINFO;
7715fc6badSTaylor Simpson chk_error(sigaction(SIGSEGV, &act, NULL));
7815fc6badSTaylor Simpson if (setjmp(jmp_env) == 0) {
7915fc6badSTaylor Simpson asm volatile("r18 = ##should_not_change\n\t"
8015fc6badSTaylor Simpson "r19 = #0\n\t"
8115fc6badSTaylor Simpson "{\n\t"
8215fc6badSTaylor Simpson " memw(r18) = #7\n\t"
8315fc6badSTaylor Simpson " %0 = memw(r19)\n\t"
8415fc6badSTaylor Simpson "}:mem_noshuf\n\t"
8515fc6badSTaylor Simpson : "=r"(dummy32) : : "r18", "r19", "memory");
8615fc6badSTaylor Simpson }
8715fc6badSTaylor Simpson
8815fc6badSTaylor Simpson act.sa_handler = SIG_DFL;
8915fc6badSTaylor Simpson sigemptyset(&act.sa_mask);
9015fc6badSTaylor Simpson act.sa_flags = 0;
9115fc6badSTaylor Simpson chk_error(sigaction(SIGSEGV, &act, NULL));
9215fc6badSTaylor Simpson
93*0d57cd61STaylor Simpson check32(segv_caught, true);
94*0d57cd61STaylor Simpson check32(should_not_change, SHOULD_NOT_CHANGE_VAL);
9515fc6badSTaylor Simpson
9615fc6badSTaylor Simpson /*
9715fc6badSTaylor Simpson * Check that a predicated load where the predicate is false doesn't
9815fc6badSTaylor Simpson * raise an exception and allows the store to happen.
9915fc6badSTaylor Simpson */
10015fc6badSTaylor Simpson asm volatile("r18 = ##ok_to_change\n\t"
10115fc6badSTaylor Simpson "r19 = #0\n\t"
10215fc6badSTaylor Simpson "p0 = cmp.gt(r0, r0)\n\t"
10315fc6badSTaylor Simpson "{\n\t"
10415fc6badSTaylor Simpson " memw(r18) = #7\n\t"
10515fc6badSTaylor Simpson " if (p0) %0 = memw(r19)\n\t"
10615fc6badSTaylor Simpson "}:mem_noshuf\n\t"
10715fc6badSTaylor Simpson : "=r"(dummy32) : : "r18", "r19", "p0", "memory");
10815fc6badSTaylor Simpson
109*0d57cd61STaylor Simpson check32(ok_to_change, 7);
11015fc6badSTaylor Simpson
11115fc6badSTaylor Simpson /*
11215fc6badSTaylor Simpson * Also check that the post-increment doesn't happen when the
11315fc6badSTaylor Simpson * predicate is false.
11415fc6badSTaylor Simpson */
11515fc6badSTaylor Simpson ok_to_change = OK_TO_CHANGE_VAL;
11615fc6badSTaylor Simpson p = NULL;
11715fc6badSTaylor Simpson asm volatile("r18 = ##ok_to_change\n\t"
11815fc6badSTaylor Simpson "p0 = cmp.gt(r0, r0)\n\t"
11915fc6badSTaylor Simpson "{\n\t"
12015fc6badSTaylor Simpson " memw(r18) = #9\n\t"
12115fc6badSTaylor Simpson " if (p0) %1 = memd(%0 ++ #8)\n\t"
12215fc6badSTaylor Simpson "}:mem_noshuf\n\t"
12315fc6badSTaylor Simpson : "+r"(p), "=r"(dummy64) : : "r18", "p0", "memory");
12415fc6badSTaylor Simpson
125*0d57cd61STaylor Simpson check32(ok_to_change, 9);
126*0d57cd61STaylor Simpson check32((int)p, (int)NULL);
12715fc6badSTaylor Simpson
12815fc6badSTaylor Simpson puts(err ? "FAIL" : "PASS");
12915fc6badSTaylor Simpson return err ? EXIT_FAILURE : EXIT_SUCCESS;
13015fc6badSTaylor Simpson }
131