* This software is part of the SBCL system. See the README file for
* more information.
*
* This software is derived from the CMU CL system, which was
* written at Carnegie Mellon University and released into the
* public domain. The software is in the public domain and is
* provided with absolutely no warranty. See the COPYING and CREDITS
* files for more information.
*/
#include <stdio.h>
#include "sbcl.h"
#include "runtime.h"
#include "globals.h"
#include "validate.h"
#include "os.h"
#include "arch.h"
#include "lispregs.h"
#include "signal.h"
#include "alloc.h"
#include "interrupt.h"
#include "interr.h"
#include "breakpoint.h"
#include "thread.h"
#include "getallocptr.h"
#include "unaligned.h"
#include "search.h"
#include "genesis/static-symbols.h"
#include "genesis/symbol.h"
#include "forwarding-ptr.h"
#include "core.h"
#define INT3_INST 0xCC
#define INTO_INST 0xCE
#define UD2_INST 0x0b0f
#define BREAKPOINT_WIDTH 1
int avx_supported = 0, avx2_supported = 0;
static void cpuid(unsigned info, unsigned subinfo,
unsigned *eax, unsigned *ebx, unsigned *ecx, unsigned *edx)
{
#ifdef _MSC_VER
int regs[4];
__cpuid(regs, info);
*eax = regs[0];
*ebx = regs[1];
*ecx = regs[2];
*edx = regs[3];
#else
__asm__("cpuid;"
:"=a" (*eax), "=b" (*ebx), "=c" (*ecx), "=d" (*edx)
:"a" (info), "c" (subinfo)
subinfo to ecx */
);
#endif
}
static void xgetbv(unsigned *eax, unsigned *edx)
{
__asm__("xgetbv;"
:"=a" (*eax), "=d" (*edx)
: "c" (0));
}
#define VECTOR_FILL_T "VECTOR-FILL/T"
void set_alloc_tramp_vectors(int ymm_enable)
{
struct code* code = (struct code*)asm_routines_start;
lispobj* instructions = (lispobj*)code + code_header_words(code);
int index;
get_asm_routine_by_name("FPR-SAVE", &index);
if (index)
instructions[index] =
(lispobj)get_asm_routine_by_name(ymm_enable ? "SAVE-YMM" : "SAVE-XMM", 0);
get_asm_routine_by_name("FPR-RESTORE", &index);
if (index)
instructions[index] =
(lispobj)get_asm_routine_by_name(ymm_enable ? "RESTORE-YMM" : "RESTORE-XMM", 0);
}
void tune_asm_routines_for_microarch(void)
{
unsigned int eax, ebx, ecx, edx;
unsigned int cpuid_fn1_ecx = 0;
cpuid(0, 0, &eax, &ebx, &ecx, &edx);
if (eax >= 1) {
unsigned avx_mask = 0x18000000;
cpuid(1, 0, &eax, &ebx, &ecx, &edx);
cpuid_fn1_ecx = ecx;
if ((ecx & avx_mask) == avx_mask) {
xgetbv(&eax, &edx);
if ((eax & 0x06) == 0x06) {
avx_supported = 1;
cpuid(7, 0, &eax, &ebx, &ecx, &edx);
if (ebx & 0x20) {
avx2_supported = 1;
}
}
}
}
set_alloc_tramp_vectors(avx_supported);
int our_cpu_feature_bits = 0;
if (avx2_supported) our_cpu_feature_bits |= 1;
if (cpuid_fn1_ecx & (1<<23)) our_cpu_feature_bits |= 2;
SetSymbolValue(CPU_FEATURE_BITS, make_fixnum(our_cpu_feature_bits), 0);
#ifndef _MSC_VER
cpuid(0, 0, &eax, &ebx, &ecx, &edx);
if (eax >= 7) {
cpuid(7, 0, &eax, &ebx, &ecx, &edx);
if (ebx & (1<<9))
asm_routine_poke(VECTOR_FILL_T, 0x12, 0x7C);
}
#endif
}
microarchitecture on startup. As it happens, FILL-VECTOR/T is fine
either way, but in general this might not be true for code using
instructions that don't exist on some cpu family members */
void untune_asm_routines_for_microarch(void)
{
asm_routine_poke(VECTOR_FILL_T, 0x12, 0xEB);
SetSymbolValue(CPU_FEATURE_BITS, 0, 0);
set_alloc_tramp_vectors(0);
}
#ifndef _WIN64
os_vm_address_t
arch_get_bad_addr(int __attribute__((unused)) sig,
siginfo_t *code,
os_context_t __attribute__((unused)) *context)
{
return (os_vm_address_t)code->si_addr;
}
#endif
* hacking signal contexts
*
* (This depends both on architecture, which determines what we might
* want to get to, and on OS, which determines how we get to it.)
*/
os_context_register_t *
context_eflags_addr(os_context_t *context)
{
#if defined __linux__
* <sys/ucontext.h> file to define symbolic names for offsets into
* gregs[], but it's conditional on __USE_GNU and not defined, so
* we need to do this nasty absolute index magic number thing
* instead. */
return (os_context_register_t*)&context->uc_mcontext.gregs[17];
#elif defined LISP_FEATURE_SUNOS
return &context->uc_mcontext.gregs[REG_RFL];
#elif defined LISP_FEATURE_FREEBSD || defined(__DragonFly__)
return &context->uc_mcontext.mc_rflags;
#elif defined __HAIKU__
return &context->uc_mcontext.rflags;
#elif defined LISP_FEATURE_DARWIN
return CONTEXT_ADDR_FROM_STEM(rflags);
#elif defined __OpenBSD__
return &context->sc_rflags;
#elif defined __NetBSD__
return CONTEXT_ADDR_FROM_STEM(RFLAGS);
#elif defined _WIN64
return (os_context_register_t*)&context->win32_context->EFlags;
#else
#error unsupported OS
#endif
}
void arch_skip_instruction(os_context_t *context)
{
* points to the interrupt code (a Lisp value) so we just move
* past it. Skip the code; after that, if the code is an
* error-trap or cerror-trap then skip the data bytes that follow. */
long code;
code = *(char*)(*os_context_pc_addr(context))++;
switch (code)
{
case trap_Error:
case trap_Cerror:
skip_internal_error(context);
break;
case trap_UninitializedLoad:
*os_context_pc_addr(context) += 1;
break;
case trap_Breakpoint:
case trap_FunEndBreakpoint:
break;
#ifdef LISP_FEATURE_SB_SAFEPOINT
case trap_GlobalSafepoint:
case trap_CspSafepoint:
#endif
case trap_PendingInterrupt:
case trap_Halt:
case trap_SingleStepAround:
case trap_SingleStepBefore:
case trap_InvalidArgCount:
break;
default:
fprintf(stderr,"[arch_skip_inst invalid code %ld\n]\n",code);
break;
}
FSHOW((stderr,
"/[arch_skip_inst resuming at %x]\n",
*os_context_pc_addr(context)));
}
unsigned char *
arch_internal_error_arguments(os_context_t *context)
{
return 1 + (unsigned char *)(*os_context_pc_addr(context));
}
boolean
arch_pseudo_atomic_atomic(os_context_t __attribute__((unused)) *context)
{
return get_pseudo_atomic_atomic(get_sb_vm_thread());
}
void
arch_set_pseudo_atomic_interrupted(os_context_t __attribute__((unused)) *context)
{
struct thread *thread = get_sb_vm_thread();
set_pseudo_atomic_interrupted(thread);
}
void
arch_clear_pseudo_atomic_interrupted(os_context_t __attribute__((unused)) *context)
{
struct thread *thread = get_sb_vm_thread();
clear_pseudo_atomic_interrupted(thread);
}
* This stuff seems to get called for TRACE and debug activity.
*/
unsigned int
arch_install_breakpoint(void *pc)
{
unsigned int result = *(unsigned int*)pc;
#ifdef LISP_FEATURE_INT4_BREAKPOINTS
*(char*)pc = INTO_INST;
#else
*(char*)pc = INT3_INST;
#endif
*((char*)pc+1) = trap_Breakpoint;
return result;
}
void
arch_remove_breakpoint(void *pc, unsigned int orig_inst)
{
*((char *)pc) = orig_inst & 0xff;
*((char *)pc + 1) = (orig_inst & 0xff00) >> 8;
}
* PC location. */
unsigned int *single_stepping = NULL;
#ifdef CANNOT_GET_TO_SINGLE_STEP_FLAG
unsigned int single_step_save1;
unsigned int single_step_save2;
unsigned int single_step_save3;
#endif
void
arch_do_displaced_inst(os_context_t *context, unsigned int orig_inst)
{
unsigned int *pc = (unsigned int*)(*os_context_pc_addr(context));
arch_remove_breakpoint(pc, orig_inst);
#ifdef CANNOT_GET_TO_SINGLE_STEP_FLAG
* pushf; or [esp],0x100; popf. */
single_step_save1 = *(pc-3);
single_step_save2 = *(pc-2);
single_step_save3 = *(pc-1);
*(pc-3) = 0x9c909090;
*(pc-2) = 0x00240c81;
*(pc-1) = 0x9d000001;
#else
*context_eflags_addr(context) |= 0x100;
#endif
single_stepping = pc;
#ifdef CANNOT_GET_TO_SINGLE_STEP_FLAG
*os_context_pc_addr(context) = (os_context_register_t)((char *)pc - 9);
#endif
}
void
arch_handle_breakpoint(os_context_t *context)
{
*os_context_pc_addr(context) -= BREAKPOINT_WIDTH;
handle_breakpoint(context);
}
void
arch_handle_fun_end_breakpoint(os_context_t *context)
{
*os_context_pc_addr(context) -= BREAKPOINT_WIDTH;
*os_context_pc_addr(context) =
(uword_t)handle_fun_end_breakpoint(context);
}
void
arch_handle_single_step_trap(os_context_t *context, int trap)
{
arch_skip_instruction(context);
* 0 as the register_offset. */
handle_single_step_trap(context, trap, 0);
}
void
restore_breakpoint_from_single_step(os_context_t * context)
{
#ifdef CANNOT_GET_TO_SINGLE_STEP_FLAG
*(single_stepping-3) = single_step_save1;
*(single_stepping-2) = single_step_save2;
*(single_stepping-1) = single_step_save3;
#else
*context_eflags_addr(context) &= ~0x100;
#endif
if (((char *)*os_context_pc_addr(context) >
(char *)single_stepping) &&
((char *)*os_context_pc_addr(context) <=
(char *)single_stepping + BREAKPOINT_WIDTH)) {
fprintf(stderr, "warning: couldn't reinstall breakpoint\n");
} else {
arch_install_breakpoint(single_stepping);
}
single_stepping = NULL;
return;
}
void
sigtrap_handler(int __attribute__((unused)) signal,
siginfo_t __attribute__((unused)) *info,
os_context_t *context)
{
unsigned int trap;
if (single_stepping) {
restore_breakpoint_from_single_step(context);
return;
}
* approximation. */
access_control_stack_pointer(get_sb_vm_thread()) =
(lispobj *)*os_context_sp_addr(context);
* 'kind' value (eg trap_Cerror). For error-trap and Cerror-trap a
* number of bytes will follow, the first is the length of the byte
* arguments to follow. */
trap = *(unsigned char *)(*os_context_pc_addr(context));
#ifdef LISP_FEATURE_IMMOBILE_SPACE
if (trap == trap_UndefinedFunction) {
lispobj* fdefn = (lispobj*)(*os_context_pc_addr(context) & ~LOWTAG_MASK);
if (fdefn && widetag_of(fdefn) == FDEFN_WIDETAG) {
*os_context_pc_addr(context) = (uword_t)((struct fdefn*)fdefn)->raw_addr;
*os_context_register_addr(context,reg_RAX) =
make_lispobj(fdefn, OTHER_POINTER_LOWTAG);
return;
}
}
#endif
handle_trap(context, trap);
}
void
sigill_handler(int __attribute__((unused)) signal,
siginfo_t __attribute__((unused)) *siginfo,
os_context_t *context) {
unsigned char* pc = (void*)*os_context_pc_addr(context);
#ifndef LISP_FEATURE_MACH_EXCEPTION_HANDLER
if (*(unsigned short *)pc == UD2_INST) {
*os_context_pc_addr(context) += 2;
return sigtrap_handler(signal, siginfo, context);
}
if (*(unsigned char *)pc == INTO_INST) {
*os_context_pc_addr(context) += 1;
return sigtrap_handler(signal, siginfo, context);
}
#endif
fake_foreign_function_call(context);
#ifdef LISP_FEATURE_LINUX
extern void sb_dump_mcontext(char*,void*);
sb_dump_mcontext("SIGILL received", context);
#endif
lose("Unhandled SIGILL at %p.", pc);
}
#ifdef X86_64_SIGFPE_FIXUP
#define MXCSR_IE (0x01)
#define MXCSR_DE (0x02)
#define MXCSR_ZE (0x04)
#define MXCSR_OE (0x08)
#define MXCSR_UE (0x10)
#define MXCSR_PE (0x20)
static inline int
mxcsr_to_code(unsigned int mxcsr)
{
mxcsr &= ~(mxcsr >> 7) & 0x3F;
* Software Developerfs Manual" Volume 1: "Basic Architecture",
* 4.9.2 "Floating-Point Exception Priority". */
if (mxcsr & MXCSR_IE)
return FPE_FLTINV;
else if (mxcsr & MXCSR_ZE)
return FPE_FLTDIV;
else if (mxcsr & MXCSR_DE)
return FPE_FLTUND;
else if (mxcsr & MXCSR_OE)
return FPE_FLTOVF;
else if (mxcsr & MXCSR_UE)
return FPE_FLTUND;
else if (mxcsr & MXCSR_PE)
return FPE_FLTRES;
return 0;
}
static void
sigfpe_handler(int signal, siginfo_t *siginfo, os_context_t *context)
{
unsigned int *mxcsr = arch_os_context_mxcsr_addr(context);
#ifndef LISP_FEATURE_DARWIN
if (siginfo->si_code == 0)
#endif
{
siginfo->si_code = mxcsr_to_code(*mxcsr);
*mxcsr &= ~0x3F;
}
interrupt_handle_now(signal, siginfo, context);
}
#endif
void
arch_install_interrupt_handlers()
{
SHOW("entering arch_install_interrupt_handlers()");
* SIGILL as well as SIGTRAP. I couldn't see any reason to do
* things that way. So, I changed to separate handlers when
* debugging a problem on OpenBSD, where SBCL wasn't catching
* SIGILL properly, but was instead letting the process be
* terminated with an "Illegal instruction" output. If this change
* turns out to break something (maybe breakpoint handling on some
* OS I haven't tested on?) and we have to go back to the old CMU
* CL way, I hope there will at least be a comment to explain
* why.. -- WHN 2001-06-07 */
#if !defined(LISP_FEATURE_MACH_EXCEPTION_HANDLER) && !defined(LISP_FEATURE_WIN32)
ll_install_handler(SIGILL , sigill_handler);
ll_install_handler(SIGTRAP, sigtrap_handler);
#endif
#if defined(X86_64_SIGFPE_FIXUP) && !defined(LISP_FEATURE_WIN32)
ll_install_handler(SIGFPE, sigfpe_handler);
#endif
SHOW("returning from arch_install_interrupt_handlers()");
}
void
arch_write_linkage_table_entry(int index, void *target_addr, int datap)
{
char *reloc_addr = (char*)LINKAGE_TABLE_SPACE_START + index * LINKAGE_TABLE_ENTRY_SIZE;
if (datap) {
*(uword_t *)reloc_addr = (uword_t)target_addr;
return;
}
reloc_addr[0] = 0xFF;
reloc_addr[1] = 0x25;
UNALIGNED_STORE32((reloc_addr+2), 2);
reloc_addr[6] = 0x66; reloc_addr[7] = 0x90;
*(void**)(reloc_addr+8) = target_addr;
}
only uses the sse2 FPU, other code (such as libc) may use the x87 FPU.
*/
unsigned int
arch_get_fp_modes()
{
unsigned int temp;
unsigned int result;
* control+status flags */
asm ("fnstsw %0" : "=m" (temp));
result = temp;
result &= 0x3F;
asm ("stmxcsr %0" : "=m" (temp));
result |= temp;
return result ^ (0x3F << 7);
}
struct fpenv
{
unsigned short cw;
unsigned short unused1;
unsigned short sw;
unsigned short unused2;
unsigned int other_regs[5];
};
void
arch_set_fp_modes(unsigned int mxcsr)
{
struct fpenv f_env;
unsigned int temp;
mxcsr ^= 0x3F << 7;
asm ("fnstenv %0" : "=m" (f_env));
* get traps and rounding from mxcsr word */
f_env.cw = 0x300 | ((mxcsr >> 7) & 0x3F) | (((mxcsr >> 13) & 0x3) << 10);
f_env.sw &= ~0x3F;
f_env.sw |= (mxcsr & 0x3F);
asm ("fldenv %0" : : "m" (f_env));
temp = mxcsr;
asm ("ldmxcsr %0" : : "m" (temp));
}
lispobj fdefn_callee_lispobj(struct fdefn* fdefn) {
lispobj* raw_addr = (lispobj*)fdefn->raw_addr;
if (!raw_addr || points_to_asm_code_p((lispobj)raw_addr))
return 0;
lispobj word;
if (header_widetag(word = raw_addr[-2]) == SIMPLE_FUN_WIDETAG
|| (word == 1 &&
widetag_of(native_pointer(forwarding_pointer_value(raw_addr-2)))
== SIMPLE_FUN_WIDETAG))
return make_lispobj(raw_addr - 2, FUN_POINTER_LOWTAG);
int widetag;
if ((widetag = header_widetag(word = raw_addr[-4])) == CODE_HEADER_WIDETAG
|| (word == 1 &&
widetag_of(native_pointer(forwarding_pointer_value(raw_addr-4)))
== CODE_HEADER_WIDETAG))
return make_lispobj(raw_addr - 4, OTHER_POINTER_LOWTAG);
if (widetag == FUNCALLABLE_INSTANCE_WIDETAG
|| (word == 1 &&
widetag_of(native_pointer(forwarding_pointer_value(raw_addr-4)))
== FUNCALLABLE_INSTANCE_WIDETAG))
return make_lispobj(raw_addr - 4, FUN_POINTER_LOWTAG);
lose("Unknown object in fdefn raw addr: %p", raw_addr);
}
#include "genesis/vector.h"
#define LOCK_PREFIX 0xF0
#undef SHOW_PC_RECORDING
extern unsigned int alloc_profile_n_counters;
extern unsigned int max_alloc_point_counters;
#ifdef LISP_FEATURE_SB_THREAD
#ifdef LISP_FEATURE_WIN32
extern CRITICAL_SECTION alloc_profiler_lock;
#else
extern pthread_mutex_t alloc_profiler_lock;
#endif
#endif
static unsigned int claim_index(int qty)
{
static boolean warning_issued;
unsigned int index = alloc_profile_n_counters;
alloc_profile_n_counters += qty;
if (alloc_profile_n_counters <= max_alloc_point_counters)
return index;
if (!warning_issued) {
fprintf(stderr, "allocation profile buffer overflowed\n");
warning_issued = 1;
}
return 0;
}
static boolean NO_SANITIZE_MEMORY
instrumentp(uword_t* sp, uword_t** pc, uword_t* old_word)
{
int __attribute__((unused)) ret = thread_mutex_lock(&alloc_profiler_lock);
gc_assert(ret == 0);
uword_t next_pc = *sp;
uword_t return_pc = ALIGN_DOWN(next_pc, 8);
#if 0
if (!(return_pc >= instrument_from && return_pc < instrument_to))
return 0;
#endif
uword_t word = *(uword_t*)return_pc;
unsigned char opcode = word & 0xFF;
*sp = return_pc;
if (opcode == LOCK_PREFIX)
return 0;
*pc = (uword_t*)return_pc;
*old_word = word;
return 1;
}
static void record_pc(char* pc, unsigned int index, boolean sizedp)
{
lispobj *code = component_ptr_from_pc(pc);
if (!code) {
fprintf(stderr, "can't identify code @ %p\n", pc);
} else {
#ifdef SHOW_PC_RECORDING
fprintf(stderr, "%#lx (%#lx) -> %d%s\n",
(uword_t)pc, make_lispobj(code, OTHER_POINTER_LOWTAG),
index, sizedp?" (sized)":"");
#endif
}
#if 0
if (!code) {
int ret = thread_mutex_lock(&free_pages_lock);
gc_assert(ret == 0);
ensure_region_closed(code_region);
int ret = thread_mutex_unlock(&free_pages_lock);
gc_assert(ret == 0);
code = component_ptr_from_pc(pc);
}
#endif
struct vector* v = VECTOR(alloc_profile_data);
index <<= 1;
if (sizedp) {
v->data[index] = v->data[index+1] = NIL;
index += 2;
}
if (code) {
v->data[index] = make_lispobj(code, OTHER_POINTER_LOWTAG);
v->data[index+1] = make_fixnum((lispobj)pc - (lispobj)code);
} else {
gc_assert(!((uword_t)pc & LOWTAG_MASK));
v->data[index] = make_fixnum(-1);
v->data[index+1] = (lispobj)pc;
}
}
void AMD64_SYSV_ABI
allocation_tracker_counted(uword_t* sp)
{
uword_t *pc, word_at_pc;
if (instrumentp(sp, &pc, &word_at_pc)) {
unsigned int index = claim_index(1);
if (index == 0)
index = 2;
uword_t disp = index * 8;
int base_reg = word_at_pc >> 56;
uword_t new_inst = 0xF0 | ((0x48|(base_reg>>3)) << 8)
| (0xFF << 16) | ((0x80L+(base_reg&7)) << 24) | (disp << 32);
if (!__sync_bool_compare_and_swap(pc, word_at_pc, new_inst))
lose("alloc profiler failed to rewrite instruction @ %p", pc);
if (index != 2)
record_pc((char*)pc, index, 0);
}
int __attribute__((unused)) ret = thread_mutex_unlock(&alloc_profiler_lock);
gc_assert(ret == 0);
}
void AMD64_SYSV_ABI
allocation_tracker_sized(uword_t* sp)
{
uword_t *pc, word_at_pc;
if (instrumentp(sp, &pc, &word_at_pc)) {
int index = claim_index(2);
uword_t word_after_pc = pc[1];
int pair = word_at_pc >> 56;
int base_reg = pair & 0xf;
int size_reg = pair >> 4;
uword_t disp = index * 8;
uword_t new_inst1 = 0xF0 | ((0x48 | (base_reg>>3)) << 8)
| (0xFF << 16) | ((0x80L+(base_reg&7)) << 24) | (disp << 32);
int prefix = 0x48 | ((size_reg >> 3) << 2) | (base_reg >> 3);
int modrm = 0x80 | ((size_reg & 7) << 3) | (base_reg & 7);
disp = (1 + index) * 8;
uword_t new_inst2 =
0xF0 | (prefix << 8) | (0x01 << 16) | ((long)modrm << 24) | (disp << 32);
if (!__sync_bool_compare_and_swap(pc+1, word_after_pc, new_inst2) ||
!__sync_bool_compare_and_swap(pc, word_at_pc, new_inst1))
lose("alloc profiler failed to rewrite instructions @ %p", pc);
if (index != 0)
record_pc((char*)pc, index, 1);
}
int __attribute__((unused)) ret = thread_mutex_unlock(&alloc_profiler_lock);
gc_assert(ret == 0);
}