1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
/* Instruction cache flushing for powerpc64, not the AIX ABI */
/*
* Copyright 1997-2024 Bruno Haible <bruno@clisp.org>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
void __TR_clear_cache_3 (char* first_addr)
{
/* Taken from egcs-1.1.2/gcc/config/rs6000/tramp.asm. */
/* The number of asm statements here depends on the value of TRAMP_LENGTH-3*8
for __powerpc64_elfv2__. */
asm volatile ("icbi 0,%0; dcbf 0,%0" : : "r" (first_addr));
asm volatile ("icbi 0,%0; dcbf 0,%0" : : "r" (first_addr+4));
asm volatile ("icbi 0,%0; dcbf 0,%0" : : "r" (first_addr+8));
asm volatile ("icbi 0,%0; dcbf 0,%0" : : "r" (first_addr+12));
asm volatile ("icbi 0,%0; dcbf 0,%0" : : "r" (first_addr+16));
asm volatile ("icbi 0,%0; dcbf 0,%0" : : "r" (first_addr+20));
asm volatile ("sync; isync");
}
|