Merge pull request #2929 from cfallin/bb-offsets

Provide BB layout info externally in terms of code offsets.
This commit is contained in:
Chris Fallin
2021-05-24 14:27:53 -07:00
committed by GitHub
10 changed files with 108 additions and 7 deletions

View File

@@ -245,6 +245,21 @@ pub(crate) fn define() -> SettingGroup {
true,
);
settings.add_bool(
"machine_code_cfg_info",
"Generate CFG metadata for machine code.",
r#"
This increases metadata size and compile time, but allows for the
embedder to more easily post-process or analyze the generated
machine code. It provides code offsets for the start of each
basic block in the generated machine code, and a list of CFG
edges (with blocks identified by start offsets) between them.
This is useful for, e.g., machine-code analyses that verify certain
properties of the generated code.
"#,
false,
);
// BaldrMonkey requires that not-yet-relocated function addresses be encoded
// as all-ones bitpatterns.
settings.add_bool(

View File

@@ -258,6 +258,24 @@ impl Context {
}
}
/// If available, return information about the code layout in the
/// final machine code: the offsets (in bytes) of each basic-block
/// start, and all basic-block edges.
pub fn get_code_bb_layout(&self) -> Option<(Vec<usize>, Vec<(usize, usize)>)> {
if let Some(result) = self.mach_compile_result.as_ref() {
Some((
result.bb_starts.iter().map(|&off| off as usize).collect(),
result
.bb_edges
.iter()
.map(|&(from, to)| (from as usize, to as usize))
.collect(),
))
} else {
None
}
}
/// Creates unwind information for the function.
///
/// Returns `None` if the function has no unwind information.

View File

@@ -69,7 +69,7 @@ impl MachBackend for AArch64Backend {
let flags = self.flags();
let vcode = self.compile_vcode(func, flags.clone())?;
let buffer = vcode.emit();
let (buffer, bb_starts, bb_edges) = vcode.emit();
let frame_size = vcode.frame_size();
let stackslot_offsets = vcode.stackslot_offsets().clone();
@@ -87,6 +87,8 @@ impl MachBackend for AArch64Backend {
disasm,
value_labels_ranges: Default::default(),
stackslot_offsets,
bb_starts,
bb_edges,
})
}

View File

@@ -59,7 +59,7 @@ impl MachBackend for Arm32Backend {
) -> CodegenResult<MachCompileResult> {
let flags = self.flags();
let vcode = self.compile_vcode(func, flags.clone())?;
let buffer = vcode.emit();
let (buffer, bb_starts, bb_edges) = vcode.emit();
let frame_size = vcode.frame_size();
let stackslot_offsets = vcode.stackslot_offsets().clone();
@@ -77,6 +77,8 @@ impl MachBackend for Arm32Backend {
disasm,
value_labels_ranges: Default::default(),
stackslot_offsets,
bb_starts,
bb_edges,
})
}

View File

@@ -70,7 +70,7 @@ impl MachBackend for S390xBackend {
) -> CodegenResult<MachCompileResult> {
let flags = self.flags();
let vcode = self.compile_vcode(func, flags.clone())?;
let buffer = vcode.emit();
let (buffer, bb_starts, bb_edges) = vcode.emit();
let frame_size = vcode.frame_size();
let value_labels_ranges = vcode.value_labels_ranges();
let stackslot_offsets = vcode.stackslot_offsets().clone();
@@ -89,6 +89,8 @@ impl MachBackend for S390xBackend {
disasm,
value_labels_ranges,
stackslot_offsets,
bb_starts,
bb_edges,
})
}

View File

@@ -61,7 +61,7 @@ impl MachBackend for X64Backend {
let flags = self.flags();
let vcode = self.compile_vcode(func, flags.clone())?;
let buffer = vcode.emit();
let (buffer, bb_starts, bb_edges) = vcode.emit();
let buffer = buffer.finish();
let frame_size = vcode.frame_size();
let value_labels_ranges = vcode.value_labels_ranges();
@@ -79,6 +79,8 @@ impl MachBackend for X64Backend {
disasm,
value_labels_ranges,
stackslot_offsets,
bb_starts,
bb_edges,
})
}

View File

@@ -546,7 +546,7 @@ impl<I: VCodeInst> MachBuffer<I> {
}
/// Resolve a label to an offset, if known. May return `UNKNOWN_LABEL_OFFSET`.
fn resolve_label_offset(&self, mut label: MachLabel) -> CodeOffset {
pub(crate) fn resolve_label_offset(&self, mut label: MachLabel) -> CodeOffset {
let mut iters = 0;
while self.label_aliases[label.0 as usize] != UNKNOWN_LABEL {
label = self.label_aliases[label.0 as usize];

View File

@@ -340,6 +340,18 @@ pub struct MachCompileResult {
pub value_labels_ranges: ValueLabelsRanges,
/// Debug info: stackslots to stack pointer offsets.
pub stackslot_offsets: PrimaryMap<StackSlot, u32>,
/// Basic-block layout info: block start offsets.
///
/// This info is generated only if the `machine_code_cfg_info`
/// flag is set.
pub bb_starts: Vec<CodeOffset>,
/// Basic-block layout info: block edges. Each edge is `(from,
/// to)`, where `from` and `to` are basic-block start offsets of
/// the respective blocks.
///
/// This info is generated only if the `machine_code_cfg_info`
/// flag is set.
pub bb_edges: Vec<(CodeOffset, CodeOffset)>,
}
impl MachCompileResult {

View File

@@ -473,13 +473,21 @@ impl<I: VCodeInst> VCode<I> {
/// Emit the instructions to a `MachBuffer`, containing fixed-up code and external
/// reloc/trap/etc. records ready for use.
pub fn emit(&self) -> MachBuffer<I>
pub fn emit(
&self,
) -> (
MachBuffer<I>,
Vec<CodeOffset>,
Vec<(CodeOffset, CodeOffset)>,
)
where
I: MachInstEmit,
{
let _tt = timing::vcode_emit();
let mut buffer = MachBuffer::new();
let mut state = I::State::new(&*self.abi);
let cfg_metadata = self.flags().machine_code_cfg_info();
let mut bb_starts: Vec<Option<CodeOffset>> = vec![];
// The first M MachLabels are reserved for block indices, the next N MachLabels for
// constants.
@@ -491,6 +499,7 @@ impl<I: VCodeInst> VCode<I> {
let mut safepoint_idx = 0;
let mut cur_srcloc = None;
let mut last_offset = None;
for block in 0..self.num_blocks() {
let block = block as BlockIndex;
let new_offset = I::align_basic_block(buffer.cur_offset());
@@ -504,6 +513,23 @@ impl<I: VCodeInst> VCode<I> {
let (start, end) = self.block_ranges[block as usize];
buffer.bind_label(MachLabel::from_block(block));
label_insn_iix[block as usize] = start;
if cfg_metadata {
// Track BB starts. If we have backed up due to MachBuffer
// branch opts, note that the removed blocks were removed.
let cur_offset = buffer.cur_offset();
if last_offset.is_some() && cur_offset <= last_offset.unwrap() {
for i in (0..bb_starts.len()).rev() {
if bb_starts[i].is_some() && cur_offset > bb_starts[i].unwrap() {
break;
}
bb_starts[i] = None;
}
}
bb_starts.push(Some(cur_offset));
last_offset = Some(cur_offset);
}
for iix in start..end {
let srcloc = self.srclocs[iix as usize];
if cur_srcloc != Some(srcloc) {
@@ -580,7 +606,28 @@ impl<I: VCodeInst> VCode<I> {
*self.insts_layout.borrow_mut() = (inst_ends, label_insn_iix, buffer.cur_offset());
}
buffer
// Create `bb_edges` and final (filtered) `bb_starts`.
let mut final_bb_starts = vec![];
let mut bb_edges = vec![];
if cfg_metadata {
for block in 0..self.num_blocks() {
if bb_starts[block].is_none() {
// Block was deleted by MachBuffer; skip.
continue;
}
let from = bb_starts[block].unwrap();
final_bb_starts.push(from);
// Resolve each `succ` label and add edges.
let succs = self.block_succs(BlockIx::new(block as u32));
for succ in succs.iter() {
let to = buffer.resolve_label_offset(MachLabel::from_block(succ.get()));
bb_edges.push((from, to));
}
}
}
(buffer, final_bb_starts, bb_edges)
}
/// Generates value-label ranges.

View File

@@ -511,6 +511,7 @@ enable_atomics = true
enable_safepoints = false
enable_llvm_abi_extensions = false
unwind_info = true
machine_code_cfg_info = false
emit_all_ones_funcaddrs = false
enable_probestack = true
probestack_func_adjusts_sp = false