]> gitweb.factorcode.org Git - factor.git/blob - vm/cpu-arm.64.hpp
icache: something like this might flush the icache
[factor.git] / vm / cpu-arm.64.hpp
1 namespace factor {
2
3 #define FACTOR_CPU_STRING "arm.64"
4
5 // register cell ds asm("r5");
6 // register cell rs asm("r6");
7 inline static void flush_icache(cell start, cell len) {
8   //__asm("ic ialluis");
9   //__asm volatile ("dmb sy" ::: "memory");
10
11   //dsb(nsh);
12   //isb();
13 }
14
15 }