mirror of https://github.com/m-labs/artiq.git
244 lines
7.6 KiB
Rust
244 lines
7.6 KiB
Rust
|
#![allow(non_upper_case_globals, dead_code)]
|
||
|
|
||
|
use core::{ptr, mem};
|
||
|
use cslice::CSlice;
|
||
|
|
||
|
const DW_EH_PE_omit: u8 = 0xFF;
|
||
|
const DW_EH_PE_absptr: u8 = 0x00;
|
||
|
|
||
|
const DW_EH_PE_uleb128: u8 = 0x01;
|
||
|
const DW_EH_PE_udata2: u8 = 0x02;
|
||
|
const DW_EH_PE_udata4: u8 = 0x03;
|
||
|
const DW_EH_PE_udata8: u8 = 0x04;
|
||
|
const DW_EH_PE_sleb128: u8 = 0x09;
|
||
|
const DW_EH_PE_sdata2: u8 = 0x0A;
|
||
|
const DW_EH_PE_sdata4: u8 = 0x0B;
|
||
|
const DW_EH_PE_sdata8: u8 = 0x0C;
|
||
|
|
||
|
const DW_EH_PE_pcrel: u8 = 0x10;
|
||
|
const DW_EH_PE_textrel: u8 = 0x20;
|
||
|
const DW_EH_PE_datarel: u8 = 0x30;
|
||
|
const DW_EH_PE_funcrel: u8 = 0x40;
|
||
|
const DW_EH_PE_aligned: u8 = 0x50;
|
||
|
|
||
|
const DW_EH_PE_indirect: u8 = 0x80;
|
||
|
|
||
|
#[derive(Clone)]
|
||
|
struct DwarfReader {
|
||
|
pub ptr: *const u8,
|
||
|
}
|
||
|
|
||
|
impl DwarfReader {
|
||
|
fn new(ptr: *const u8) -> DwarfReader {
|
||
|
DwarfReader { ptr: ptr }
|
||
|
}
|
||
|
|
||
|
// DWARF streams are packed, so e.g. a u32 would not necessarily be aligned
|
||
|
// on a 4-byte boundary. This may cause problems on platforms with strict
|
||
|
// alignment requirements. By wrapping data in a "packed" struct, we are
|
||
|
// telling the backend to generate "misalignment-safe" code.
|
||
|
unsafe fn read<T: Copy>(&mut self) -> T {
|
||
|
let result = ptr::read_unaligned(self.ptr as *const T);
|
||
|
self.ptr = self.ptr.offset(mem::size_of::<T>() as isize);
|
||
|
result
|
||
|
}
|
||
|
|
||
|
// ULEB128 and SLEB128 encodings are defined in Section 7.6 - "Variable
|
||
|
// Length Data".
|
||
|
unsafe fn read_uleb128(&mut self) -> u64 {
|
||
|
let mut shift: usize = 0;
|
||
|
let mut result: u64 = 0;
|
||
|
let mut byte: u8;
|
||
|
loop {
|
||
|
byte = self.read::<u8>();
|
||
|
result |= ((byte & 0x7F) as u64) << shift;
|
||
|
shift += 7;
|
||
|
if byte & 0x80 == 0 {
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
result
|
||
|
}
|
||
|
|
||
|
unsafe fn read_sleb128(&mut self) -> i64 {
|
||
|
let mut shift: usize = 0;
|
||
|
let mut result: u64 = 0;
|
||
|
let mut byte: u8;
|
||
|
loop {
|
||
|
byte = self.read::<u8>();
|
||
|
result |= ((byte & 0x7F) as u64) << shift;
|
||
|
shift += 7;
|
||
|
if byte & 0x80 == 0 {
|
||
|
break;
|
||
|
}
|
||
|
}
|
||
|
// sign-extend
|
||
|
if shift < 8 * mem::size_of::<u64>() && (byte & 0x40) != 0 {
|
||
|
result |= (!0 as u64) << shift;
|
||
|
}
|
||
|
result as i64
|
||
|
}
|
||
|
|
||
|
unsafe fn read_encoded_pointer(&mut self, encoding: u8) -> usize {
|
||
|
fn round_up(unrounded: usize, align: usize) -> usize {
|
||
|
debug_assert!(align.is_power_of_two());
|
||
|
(unrounded + align - 1) & !(align - 1)
|
||
|
}
|
||
|
|
||
|
debug_assert!(encoding != DW_EH_PE_omit);
|
||
|
|
||
|
// DW_EH_PE_aligned implies it's an absolute pointer value
|
||
|
if encoding == DW_EH_PE_aligned {
|
||
|
self.ptr = round_up(self.ptr as usize, mem::size_of::<usize>()) as *const u8;
|
||
|
return self.read::<usize>()
|
||
|
}
|
||
|
|
||
|
let value_ptr = self.ptr;
|
||
|
let mut result = match encoding & 0x0F {
|
||
|
DW_EH_PE_absptr => self.read::<usize>(),
|
||
|
DW_EH_PE_uleb128 => self.read_uleb128() as usize,
|
||
|
DW_EH_PE_udata2 => self.read::<u16>() as usize,
|
||
|
DW_EH_PE_udata4 => self.read::<u32>() as usize,
|
||
|
DW_EH_PE_udata8 => self.read::<u64>() as usize,
|
||
|
DW_EH_PE_sleb128 => self.read_sleb128() as usize,
|
||
|
DW_EH_PE_sdata2 => self.read::<i16>() as usize,
|
||
|
DW_EH_PE_sdata4 => self.read::<i32>() as usize,
|
||
|
DW_EH_PE_sdata8 => self.read::<i64>() as usize,
|
||
|
_ => panic!(),
|
||
|
};
|
||
|
|
||
|
result += match encoding & 0x70 {
|
||
|
DW_EH_PE_absptr => 0,
|
||
|
// relative to address of the encoded value, despite the name
|
||
|
DW_EH_PE_pcrel => value_ptr as usize,
|
||
|
_ => panic!(),
|
||
|
};
|
||
|
|
||
|
if encoding & DW_EH_PE_indirect != 0 {
|
||
|
result = *(result as *const usize);
|
||
|
}
|
||
|
|
||
|
result
|
||
|
}
|
||
|
}
|
||
|
|
||
|
fn encoding_size(encoding: u8) -> usize {
|
||
|
if encoding == DW_EH_PE_omit {
|
||
|
return 0
|
||
|
}
|
||
|
|
||
|
match encoding & 0x0F {
|
||
|
DW_EH_PE_absptr => mem::size_of::<usize>(),
|
||
|
DW_EH_PE_udata2 => 2,
|
||
|
DW_EH_PE_udata4 => 4,
|
||
|
DW_EH_PE_udata8 => 8,
|
||
|
DW_EH_PE_sdata2 => 2,
|
||
|
DW_EH_PE_sdata4 => 4,
|
||
|
DW_EH_PE_sdata8 => 8,
|
||
|
_ => panic!()
|
||
|
}
|
||
|
}
|
||
|
|
||
|
pub enum EHAction {
|
||
|
None,
|
||
|
Cleanup(usize),
|
||
|
Catch(usize),
|
||
|
Terminate,
|
||
|
}
|
||
|
|
||
|
pub unsafe fn find_eh_action(lsda: *const u8, func_start: usize, ip: usize,
|
||
|
exn_name: CSlice<u8>) -> EHAction {
|
||
|
if lsda.is_null() {
|
||
|
return EHAction::None
|
||
|
}
|
||
|
|
||
|
let mut reader = DwarfReader::new(lsda);
|
||
|
|
||
|
let start_encoding = reader.read::<u8>();
|
||
|
// base address for landing pad offsets
|
||
|
let lpad_base = if start_encoding != DW_EH_PE_omit {
|
||
|
reader.read_encoded_pointer(start_encoding)
|
||
|
} else {
|
||
|
func_start
|
||
|
};
|
||
|
|
||
|
let ttype_encoding = reader.read::<u8>();
|
||
|
let ttype_encoding_size = encoding_size(ttype_encoding) as isize;
|
||
|
|
||
|
let class_info;
|
||
|
if ttype_encoding != DW_EH_PE_omit {
|
||
|
let class_info_offset = reader.read_uleb128();
|
||
|
class_info = reader.ptr.offset(class_info_offset as isize);
|
||
|
} else {
|
||
|
class_info = ptr::null();
|
||
|
}
|
||
|
assert!(!class_info.is_null());
|
||
|
|
||
|
let call_site_encoding = reader.read::<u8>();
|
||
|
let call_site_table_length = reader.read_uleb128();
|
||
|
let action_table = reader.ptr.offset(call_site_table_length as isize);
|
||
|
|
||
|
while reader.ptr < action_table {
|
||
|
let cs_start = reader.read_encoded_pointer(call_site_encoding);
|
||
|
let cs_len = reader.read_encoded_pointer(call_site_encoding);
|
||
|
let cs_lpad = reader.read_encoded_pointer(call_site_encoding);
|
||
|
let cs_action = reader.read_uleb128();
|
||
|
|
||
|
if ip < func_start + cs_start {
|
||
|
// Callsite table is sorted by cs_start, so if we've passed the ip, we
|
||
|
// may stop searching.
|
||
|
break
|
||
|
}
|
||
|
if ip > func_start + cs_start + cs_len {
|
||
|
continue
|
||
|
}
|
||
|
|
||
|
if cs_lpad == 0 {
|
||
|
return EHAction::None
|
||
|
}
|
||
|
|
||
|
let lpad = lpad_base + cs_lpad;
|
||
|
if cs_action == 0 {
|
||
|
return EHAction::Cleanup(lpad)
|
||
|
}
|
||
|
|
||
|
let action_entry = action_table.offset((cs_action - 1) as isize);
|
||
|
let mut action_reader = DwarfReader::new(action_entry);
|
||
|
loop {
|
||
|
let type_info_offset = action_reader.read_sleb128() as isize;
|
||
|
let action_offset = action_reader.clone().read_sleb128() as isize;
|
||
|
assert!(type_info_offset >= 0);
|
||
|
|
||
|
if type_info_offset > 0 {
|
||
|
let type_info_ptr_ptr = class_info.offset(-type_info_offset * ttype_encoding_size);
|
||
|
let type_info_ptr = DwarfReader::new(type_info_ptr_ptr)
|
||
|
.read_encoded_pointer(ttype_encoding);
|
||
|
let type_info = *(type_info_ptr as *const CSlice<u8>);
|
||
|
|
||
|
if type_info.as_ref() == exn_name.as_ref() {
|
||
|
return EHAction::Catch(lpad)
|
||
|
}
|
||
|
|
||
|
if type_info.len() == 0 {
|
||
|
// This is a catch-all clause. We don't compare type_info_ptr with null here
|
||
|
// because, in PIC mode, the OR1K LLVM backend emits a literal zero
|
||
|
// encoded with DW_EH_PE_pcrel, which of course doesn't result in
|
||
|
// a proper null pointer.
|
||
|
return EHAction::Catch(lpad)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
if action_offset == 0 {
|
||
|
break
|
||
|
} else {
|
||
|
action_reader.ptr = action_reader.ptr.offset(action_offset)
|
||
|
}
|
||
|
}
|
||
|
|
||
|
return EHAction::None
|
||
|
}
|
||
|
|
||
|
// the function has a personality but no landing pads; this is fine
|
||
|
EHAction::None
|
||
|
}
|