여기에 jdk의 중단 점 코드가 있습니다.ARM에서 JDK의 BREAKPOINT가 주어진 특수 값을 정의하는 이유는 무엇입니까?
#ifdef ARM
#ifdef SOLARIS
#define BREAKPOINT __asm__ volatile (".long 0xe1200070")
#else
#define BREAKPOINT __asm__ volatile (".long 0xe7f001f0")
#endif
#else
extern "C" void breakpoint();
#define BREAKPOINT ::breakpoint()
#endif
나는 '.long 0xe1200070'와 '.long 0xe7f001f0'은 특별한 의미를 가지고 있는지 알고 싶어?