xref: /wasmtime-44.0.1/crates/cranelift/src/obj.rs (revision c7cab275)
1 //! Object file builder.
2 //!
3 //! Creates ELF image based on `Compilation` information. The ELF contains
4 //! functions and trampolines in the ".text" section. It also contains all
5 //! relocation records for the linking stage. If DWARF sections exist, their
6 //! content will be written as well.
7 //!
8 //! The object file has symbols for each function and trampoline, as well as
9 //! symbols that refer to libcalls.
10 //!
11 //! The function symbol names have format "_wasm_function_N", where N is
12 //! `FuncIndex`. The defined wasm function symbols refer to a JIT compiled
13 //! function body, the imported wasm function do not. The trampolines symbol
14 //! names have format "_trampoline_N", where N is `SignatureIndex`.
15 
16 use crate::CompiledFunction;
17 use cranelift_codegen::TextSectionBuilder;
18 use cranelift_codegen::isa::unwind::{UnwindInfo, systemv};
19 use cranelift_control::ControlPlane;
20 use gimli::RunTimeEndian;
21 use gimli::write::{Address, EhFrame, EndianVec, FrameTable, Writer};
22 use object::write::{Object, SectionId, StandardSegment, Symbol, SymbolId, SymbolSection};
23 use object::{Architecture, SectionFlags, SectionKind, SymbolFlags, SymbolKind, SymbolScope};
24 use std::ops::Range;
25 use wasmtime_environ::error::Result;
26 use wasmtime_environ::{Compiler, TripleExt};
27 use wasmtime_environ::{FuncKey, obj};
28 
29 const TEXT_SECTION_NAME: &[u8] = b".text";
30 
text_align(compiler: &dyn Compiler) -> u6431 fn text_align(compiler: &dyn Compiler) -> u64 {
32     // text pages will not be made executable with pulley, so the section
33     // doesn't need to be padded out to page alignment boundaries.
34     if compiler.triple().is_pulley() {
35         0x1
36     } else {
37         compiler.page_size_align()
38     }
39 }
40 
41 /// A helper structure used to assemble the final text section of an executable,
42 /// plus unwinding information and other related details.
43 ///
44 /// This builder relies on Cranelift-specific internals but assembles into a
45 /// generic `Object` which will get further appended to in a compiler-agnostic
46 /// fashion later.
47 pub struct ModuleTextBuilder<'a> {
48     /// The target that we're compiling for, used to query target-specific
49     /// information as necessary.
50     compiler: &'a dyn Compiler,
51 
52     /// The object file that we're generating code into.
53     obj: &'a mut Object<'static>,
54 
55     /// The WebAssembly module we're generating code for.
56     text_section: SectionId,
57 
58     unwind_info: UnwindInfoBuilder<'a>,
59 
60     /// In-progress text section that we're using cranelift's `MachBuffer` to
61     /// build to resolve relocations (calls) between functions.
62     text: Box<dyn TextSectionBuilder>,
63 
64     ctrl_plane: ControlPlane,
65 }
66 
67 impl<'a> ModuleTextBuilder<'a> {
68     /// Creates a new builder for the text section of an executable.
69     ///
70     /// The `.text` section will be appended to the specified `obj` along with
71     /// any unwinding or such information as necessary. The `num_funcs`
72     /// parameter indicates the number of times the `append_func` function will
73     /// be called. The `finish` function will panic if this contract is not met.
new( obj: &'a mut Object<'static>, compiler: &'a dyn Compiler, text: Box<dyn TextSectionBuilder>, ) -> Self74     pub fn new(
75         obj: &'a mut Object<'static>,
76         compiler: &'a dyn Compiler,
77         text: Box<dyn TextSectionBuilder>,
78     ) -> Self {
79         // Entire code (functions and trampolines) will be placed
80         // in the ".text" section.
81         let text_section = obj.add_section(
82             obj.segment_name(StandardSegment::Text).to_vec(),
83             TEXT_SECTION_NAME.to_vec(),
84             SectionKind::Text,
85         );
86 
87         // If this target is Pulley then flag the text section as not needing the
88         // executable bit in virtual memory which means that the runtime won't
89         // try to call `Mmap::make_executable`, which makes Pulley more
90         // portable.
91         if compiler.triple().is_pulley() {
92             let section = obj.section_mut(text_section);
93             assert!(matches!(section.flags, SectionFlags::None));
94             section.flags = SectionFlags::Elf {
95                 sh_flags: obj::SH_WASMTIME_NOT_EXECUTED,
96             };
97         }
98 
99         Self {
100             compiler,
101             obj,
102             text_section,
103             unwind_info: Default::default(),
104             text,
105             ctrl_plane: ControlPlane::default(),
106         }
107     }
108 
109     /// Appends the `func` specified named `name` to this object.
110     ///
111     /// The `resolve_reloc_target` closure is used to resolve a relocation
112     /// target to an adjacent function which has already been added or will be
113     /// added to this object. The argument is the relocation target specified
114     /// within `CompiledFunction` and the return value must be an index where
115     /// the target will be defined by the `n`th call to `append_func`.
116     ///
117     /// Returns the symbol associated with the function as well as the range
118     /// that the function resides within the text section.
append_func( &mut self, name: &str, compiled_func: &'a CompiledFunction, resolve_reloc_target: impl Fn(wasmtime_environ::FuncKey) -> usize, ) -> (SymbolId, Range<u64>)119     pub fn append_func(
120         &mut self,
121         name: &str,
122         compiled_func: &'a CompiledFunction,
123         resolve_reloc_target: impl Fn(wasmtime_environ::FuncKey) -> usize,
124     ) -> (SymbolId, Range<u64>) {
125         let body = compiled_func.buffer.data();
126         let alignment = compiled_func.alignment;
127         let body_len = body.len() as u64;
128         let off = self
129             .text
130             .append(true, &body, alignment, &mut self.ctrl_plane);
131 
132         let symbol_id = self.obj.add_symbol(Symbol {
133             name: name.as_bytes().to_vec(),
134             value: off,
135             size: body_len,
136             kind: SymbolKind::Text,
137             scope: SymbolScope::Compilation,
138             weak: false,
139             section: SymbolSection::Section(self.text_section),
140             flags: SymbolFlags::None,
141         });
142 
143         if let Some(info) = compiled_func.unwind_info() {
144             self.unwind_info.push(off, body_len, info);
145         }
146 
147         for r in compiled_func.relocations() {
148             let reloc_offset = off + u64::from(r.offset);
149 
150             // This relocation is used to fill in which hostcall id is
151             // desired within the `call_indirect_host` opcode of Pulley
152             // itself. The relocation target is the start of the instruction
153             // and the goal is to insert the static signature number, `n`,
154             // into the instruction.
155             //
156             // At this time the instruction looks like:
157             //
158             //      +------+------+------+------+
159             //      | OP   | OP_EXTENDED |  N   |
160             //      +------+------+------+------+
161             //
162             // This 4-byte encoding has `OP` indicating this is an "extended
163             // opcode" where `OP_EXTENDED` is a 16-bit extended opcode.
164             // The `N` byte is the index of the signature being called and
165             // is what's b eing filled in.
166             //
167             // See the `test_call_indirect_host_width` in
168             // `pulley/tests/all.rs` for this guarantee as well.
169             if let FuncKey::PulleyHostCall(host_call) = r.reloc_target {
170                 #[cfg(feature = "pulley")]
171                 {
172                     use pulley_interpreter::encode::Encode;
173                     assert_eq!(pulley_interpreter::CallIndirectHost::WIDTH, 4);
174                 }
175                 let n = host_call.index();
176                 let byte = u8::try_from(n).unwrap();
177                 self.text.write(reloc_offset + 3, &[byte]);
178                 continue;
179             }
180 
181             let target = resolve_reloc_target(r.reloc_target);
182             if self
183                 .text
184                 .resolve_reloc(reloc_offset, r.reloc, r.addend, target)
185             {
186                 continue;
187             }
188 
189             panic!("failed to resolve relocation: {r:?} -> {target}");
190         }
191 
192         (symbol_id, off..off + body_len)
193     }
194 
195     /// Forces "veneers" to be used for inter-function calls in the text
196     /// section which means that in-bounds optimized addresses are never used.
197     ///
198     /// This is only useful for debugging cranelift itself and typically this
199     /// option is disabled.
force_veneers(&mut self)200     pub fn force_veneers(&mut self) {
201         self.text.force_veneers();
202     }
203 
204     /// Appends the specified amount of bytes of padding into the text section.
205     ///
206     /// This is only useful when fuzzing and/or debugging cranelift itself and
207     /// for production scenarios `padding` is 0 and this function does nothing.
append_padding(&mut self, padding: usize)208     pub fn append_padding(&mut self, padding: usize) {
209         if padding == 0 {
210             return;
211         }
212         self.text
213             .append(false, &vec![0; padding], 1, &mut self.ctrl_plane);
214     }
215 
216     /// Indicates that the text section has been written completely and this
217     /// will finish appending it to the original object.
218     ///
219     /// Note that this will also write out the unwind information sections if
220     /// necessary.
finish(mut self, postprocess_text: impl FnOnce(&mut [u8]))221     pub fn finish(mut self, postprocess_text: impl FnOnce(&mut [u8])) {
222         // Finish up the text section now that we're done adding functions.
223         let mut text = self.text.finish(&mut self.ctrl_plane);
224 
225         postprocess_text(&mut text[..]);
226 
227         self.obj
228             .section_mut(self.text_section)
229             .set_data(text, text_align(self.compiler));
230 
231         // Append the unwind information for all our functions, if necessary.
232         self.unwind_info
233             .append_section(self.compiler, self.obj, self.text_section);
234     }
235 }
236 
237 /// Builder used to create unwind information for a set of functions added to a
238 /// text section.
239 #[derive(Default)]
240 struct UnwindInfoBuilder<'a> {
241     windows_xdata: Vec<u8>,
242     windows_pdata: Vec<RUNTIME_FUNCTION>,
243     systemv_unwind_info: Vec<(u64, &'a systemv::UnwindInfo)>,
244 }
245 
246 // This is a mirror of `RUNTIME_FUNCTION` in the Windows API, but defined here
247 // to ensure everything is always `u32` and to have it available on all
248 // platforms. Note that all of these specifiers here are relative to a "base
249 // address" which we define as the base of where the text section is eventually
250 // loaded.
251 #[expect(non_camel_case_types, reason = "matching Windows style, not Rust")]
252 struct RUNTIME_FUNCTION {
253     begin: u32,
254     end: u32,
255     unwind_address: u32,
256 }
257 
258 impl<'a> UnwindInfoBuilder<'a> {
259     /// Pushes the unwind information for a function into this builder.
260     ///
261     /// The function being described must be located at `function_offset` within
262     /// the text section itself, and the function's size is specified by
263     /// `function_len`.
264     ///
265     /// The `info` should come from Cranelift. and is handled here depending on
266     /// its flavor.
push(&mut self, function_offset: u64, function_len: u64, info: &'a UnwindInfo)267     fn push(&mut self, function_offset: u64, function_len: u64, info: &'a UnwindInfo) {
268         match info {
269             // Windows unwind information is stored in two locations:
270             //
271             // * First is the actual unwinding information which is stored
272             //   in the `.xdata` section. This is where `info`'s emitted
273             //   information will go into.
274             // * Second are pointers to connect all this unwind information,
275             //   stored in the `.pdata` section. The `.pdata` section is an
276             //   array of `RUNTIME_FUNCTION` structures.
277             //
278             // Due to how these will be loaded at runtime the `.pdata` isn't
279             // actually assembled byte-wise here. Instead that's deferred to
280             // happen later during `write_windows_unwind_info` which will apply
281             // a further offset to `unwind_address`.
282             //
283             // FIXME: in theory we could "intern" the `unwind_info` value
284             // here within the `.xdata` section. Most of our unwind
285             // information for functions is probably pretty similar in which
286             // case the `.xdata` could be quite small and `.pdata` could
287             // have multiple functions point to the same unwinding
288             // information.
289             UnwindInfo::WindowsX64(info) => {
290                 let unwind_size = info.emit_size();
291                 let mut unwind_info = vec![0; unwind_size];
292                 info.emit(&mut unwind_info);
293 
294                 // `.xdata` entries are always 4-byte aligned
295                 while self.windows_xdata.len() % 4 != 0 {
296                     self.windows_xdata.push(0x00);
297                 }
298                 let unwind_address = self.windows_xdata.len();
299                 self.windows_xdata.extend_from_slice(&unwind_info);
300 
301                 // Record a `RUNTIME_FUNCTION` which this will point to.
302                 self.windows_pdata.push(RUNTIME_FUNCTION {
303                     begin: u32::try_from(function_offset).unwrap(),
304                     end: u32::try_from(function_offset + function_len).unwrap(),
305                     unwind_address: u32::try_from(unwind_address).unwrap(),
306                 });
307             }
308 
309             // See https://learn.microsoft.com/en-us/cpp/build/arm64-exception-handling
310             UnwindInfo::WindowsArm64(info) => {
311                 let code_words = info.code_words();
312                 let mut unwind_codes = vec![0; (code_words * 4) as usize];
313                 info.emit(&mut unwind_codes);
314 
315                 // `.xdata` entries are always 4-byte aligned
316                 while self.windows_xdata.len() % 4 != 0 {
317                     self.windows_xdata.push(0x00);
318                 }
319 
320                 // First word:
321                 // 0-17:    Function Length
322                 // 18-19:   Version (must be 0)
323                 // 20:      X bit (is exception data present?)
324                 // 21:      E bit (has single packed epilogue?)
325                 // 22-26:   Epilogue count
326                 // 27-31:   Code words count
327                 let requires_extended_counts = code_words > (1 << 5);
328                 let encoded_function_len = function_len / 4;
329                 assert!(encoded_function_len < (1 << 18), "function too large");
330                 let mut word1 = u32::try_from(encoded_function_len).unwrap();
331                 if !requires_extended_counts {
332                     word1 |= u32::from(code_words) << 27;
333                 }
334                 let unwind_address = self.windows_xdata.len();
335                 self.windows_xdata.extend_from_slice(&word1.to_le_bytes());
336 
337                 if requires_extended_counts {
338                     // Extended counts word:
339                     // 0-15:    Epilogue count
340                     // 16-23:   Code words count
341                     let extended_counts_word = (code_words as u32) << 16;
342                     self.windows_xdata
343                         .extend_from_slice(&extended_counts_word.to_le_bytes());
344                 }
345 
346                 // Skip epilogue information: Per comment on [`UnwindInst`], we
347                 // do not emit information about epilogues.
348 
349                 // Emit the unwind codes.
350                 self.windows_xdata.extend_from_slice(&unwind_codes);
351 
352                 // Record a `RUNTIME_FUNCTION` which this will point to.
353                 // NOTE: `end` is not used, so leave it as 0.
354                 self.windows_pdata.push(RUNTIME_FUNCTION {
355                     begin: u32::try_from(function_offset).unwrap(),
356                     end: 0,
357                     unwind_address: u32::try_from(unwind_address).unwrap(),
358                 });
359             }
360 
361             // System-V is different enough that we just record the unwinding
362             // information to get processed at a later time.
363             UnwindInfo::SystemV(info) => {
364                 self.systemv_unwind_info.push((function_offset, info));
365             }
366 
367             _ => panic!("some unwind info isn't handled here"),
368         }
369     }
370 
371     /// Appends the unwind information section, if any, to the `obj` specified.
372     ///
373     /// This function must be called immediately after the text section was
374     /// added to a builder. The unwind information section must trail the text
375     /// section immediately.
376     ///
377     /// The `text_section`'s section identifier is passed into this function.
append_section( &self, compiler: &dyn Compiler, obj: &mut Object<'_>, text_section: SectionId, )378     fn append_section(
379         &self,
380         compiler: &dyn Compiler,
381         obj: &mut Object<'_>,
382         text_section: SectionId,
383     ) {
384         // This write will align the text section to a page boundary and then
385         // return the offset at that point. This gives us the full size of the
386         // text section at that point, after alignment.
387         let text_section_size = obj.append_section_data(text_section, &[], text_align(compiler));
388 
389         if self.windows_xdata.len() > 0 {
390             assert!(self.systemv_unwind_info.len() == 0);
391             // The `.xdata` section must come first to be just-after the `.text`
392             // section for the reasons documented in `write_windows_unwind_info`
393             // below.
394             let segment = obj.segment_name(StandardSegment::Data).to_vec();
395             let xdata_id = obj.add_section(segment, b".xdata".to_vec(), SectionKind::ReadOnlyData);
396             let segment = obj.segment_name(StandardSegment::Data).to_vec();
397             let pdata_id = obj.add_section(segment, b".pdata".to_vec(), SectionKind::ReadOnlyData);
398             self.write_windows_unwind_info(obj, xdata_id, pdata_id, text_section_size);
399         }
400 
401         if self.systemv_unwind_info.len() > 0 {
402             let segment = obj.segment_name(StandardSegment::Data).to_vec();
403             let section_id =
404                 obj.add_section(segment, b".eh_frame".to_vec(), SectionKind::ReadOnlyData);
405             self.write_systemv_unwind_info(compiler, obj, section_id, text_section_size)
406         }
407     }
408 
409     /// This function appends a nonstandard section to the object which is only
410     /// used during `CodeMemory::publish`.
411     ///
412     /// This custom section effectively stores a `[RUNTIME_FUNCTION; N]` into
413     /// the object file itself. This way registration of unwind info can simply
414     /// pass this slice to the OS itself and there's no need to recalculate
415     /// anything on the other end of loading a module from a precompiled object.
416     ///
417     /// Support for reading this is in `crates/jit/src/unwind/winx64.rs`.
write_windows_unwind_info( &self, obj: &mut Object<'_>, xdata_id: SectionId, pdata_id: SectionId, text_section_size: u64, )418     fn write_windows_unwind_info(
419         &self,
420         obj: &mut Object<'_>,
421         xdata_id: SectionId,
422         pdata_id: SectionId,
423         text_section_size: u64,
424     ) {
425         // Append the `.xdata` section, or the actual unwinding information
426         // codes and such which were built as we found unwind information for
427         // functions.
428         obj.append_section_data(xdata_id, &self.windows_xdata, 4);
429 
430         // Next append the `.pdata` section, or the array of `RUNTIME_FUNCTION`
431         // structures stored in the binary.
432         //
433         // This memory will be passed at runtime to `RtlAddFunctionTable` which
434         // takes a "base address" and the entries within `RUNTIME_FUNCTION` are
435         // all relative to this base address. The base address we pass is the
436         // address of the text section itself so all the pointers here must be
437         // text-section-relative. The `begin` and `end` fields for the function
438         // it describes are already text-section-relative, but the
439         // `unwind_address` field needs to be updated here since the value
440         // stored right now is `xdata`-section-relative. We know that the
441         // `xdata` section follows the `.text` section so the
442         // `text_section_size` is added in to calculate the final
443         // `.text`-section-relative address of the unwind information.
444         let xdata_rva = |address| {
445             let address = u64::from(address);
446             let address = address + text_section_size;
447             u32::try_from(address).unwrap()
448         };
449         let pdata = match obj.architecture() {
450             Architecture::X86_64 => {
451                 let mut pdata = Vec::with_capacity(self.windows_pdata.len() * 3 * 4);
452                 for info in self.windows_pdata.iter() {
453                     pdata.extend_from_slice(&info.begin.to_le_bytes());
454                     pdata.extend_from_slice(&info.end.to_le_bytes());
455                     pdata.extend_from_slice(&xdata_rva(info.unwind_address).to_le_bytes());
456                 }
457                 pdata
458             }
459 
460             Architecture::Aarch64 => {
461                 // Windows Arm64 .pdata also supports packed unwind data, but
462                 // we're not currently using that.
463                 let mut pdata = Vec::with_capacity(self.windows_pdata.len() * 2 * 4);
464                 for info in self.windows_pdata.iter() {
465                     pdata.extend_from_slice(&info.begin.to_le_bytes());
466                     pdata.extend_from_slice(&xdata_rva(info.unwind_address).to_le_bytes());
467                 }
468                 pdata
469             }
470 
471             _ => unimplemented!("unsupported architecture for windows unwind info"),
472         };
473         obj.append_section_data(pdata_id, &pdata, 4);
474     }
475 
476     /// This function appends a nonstandard section to the object which is only
477     /// used during `CodeMemory::publish`.
478     ///
479     /// This will generate a `.eh_frame` section, but not one that can be
480     /// naively loaded. The goal of this section is that we can create the
481     /// section once here and never again does it need to change. To describe
482     /// dynamically loaded functions though each individual FDE needs to talk
483     /// about the function's absolute address that it's referencing. Naturally
484     /// we don't actually know the function's absolute address when we're
485     /// creating an object here.
486     ///
487     /// To solve this problem the FDE address encoding mode is set to
488     /// `DW_EH_PE_pcrel`. This means that the actual effective address that the
489     /// FDE describes is a relative to the address of the FDE itself. By
490     /// leveraging this relative-ness we can assume that the relative distance
491     /// between the FDE and the function it describes is constant, which should
492     /// allow us to generate an FDE ahead-of-time here.
493     ///
494     /// For now this assumes that all the code of functions will start at a
495     /// page-aligned address when loaded into memory. The eh_frame encoded here
496     /// then assumes that the text section is itself page aligned to its size
497     /// and the eh_frame will follow just after the text section. This means
498     /// that the relative offsets we're using here is the FDE going backwards
499     /// into the text section itself.
500     ///
501     /// Note that the library we're using to create the FDEs, `gimli`, doesn't
502     /// actually encode addresses relative to the FDE itself. Instead the
503     /// addresses are encoded relative to the start of the `.eh_frame` section.
504     /// This makes it much easier for us where we provide the relative offset
505     /// from the start of `.eh_frame` to the function in the text section, which
506     /// given our layout basically means the offset of the function in the text
507     /// section from the end of the text section.
508     ///
509     /// A final note is that the reason we page-align the text section's size is
510     /// so the .eh_frame lives on a separate page from the text section itself.
511     /// This allows `.eh_frame` to have different virtual memory permissions,
512     /// such as being purely read-only instead of read/execute like the code
513     /// bits.
write_systemv_unwind_info( &self, compiler: &dyn Compiler, obj: &mut Object<'_>, section_id: SectionId, text_section_size: u64, )514     fn write_systemv_unwind_info(
515         &self,
516         compiler: &dyn Compiler,
517         obj: &mut Object<'_>,
518         section_id: SectionId,
519         text_section_size: u64,
520     ) {
521         let mut cie = match compiler.create_systemv_cie() {
522             Some(cie) => cie,
523             None => return,
524         };
525         let mut table = FrameTable::default();
526         cie.fde_address_encoding = gimli::constants::DW_EH_PE_pcrel;
527         let cie_id = table.add_cie(cie);
528 
529         for (text_section_off, unwind_info) in self.systemv_unwind_info.iter() {
530             let backwards_off = text_section_size - text_section_off;
531             let actual_offset = -i64::try_from(backwards_off).unwrap();
532             // Note that gimli wants an unsigned 64-bit integer here, but
533             // unwinders just use this constant for a relative addition with the
534             // address of the FDE, which means that the sign doesn't actually
535             // matter.
536             let fde = unwind_info.to_fde(Address::Constant(actual_offset.cast_unsigned()));
537             table.add_fde(cie_id, fde);
538         }
539         let endian = match compiler.triple().endianness().unwrap() {
540             target_lexicon::Endianness::Little => RunTimeEndian::Little,
541             target_lexicon::Endianness::Big => RunTimeEndian::Big,
542         };
543         let mut eh_frame = EhFrame(MyVec(EndianVec::new(endian)));
544         table.write_eh_frame(&mut eh_frame).unwrap();
545 
546         // Some unwinding implementations expect a terminating "empty" length so
547         // a 0 is written at the end of the table for those implementations.
548         let mut endian_vec = (eh_frame.0).0;
549         endian_vec.write_u32(0).unwrap();
550         obj.append_section_data(section_id, endian_vec.slice(), 1);
551 
552         use gimli::constants;
553         use gimli::write::Error;
554 
555         struct MyVec(EndianVec<RunTimeEndian>);
556 
557         impl Writer for MyVec {
558             type Endian = RunTimeEndian;
559 
560             fn endian(&self) -> RunTimeEndian {
561                 self.0.endian()
562             }
563 
564             fn len(&self) -> usize {
565                 self.0.len()
566             }
567 
568             fn write(&mut self, buf: &[u8]) -> Result<(), Error> {
569                 self.0.write(buf)
570             }
571 
572             fn write_at(&mut self, pos: usize, buf: &[u8]) -> Result<(), Error> {
573                 self.0.write_at(pos, buf)
574             }
575 
576             // FIXME(gimli-rs/gimli#576) this is the definition we want for
577             // `write_eh_pointer` but the default implementation, at the time
578             // of this writing, uses `offset - val` instead of `val - offset`.
579             // A PR has been merged to fix this but until that's published we
580             // can't use it.
581             fn write_eh_pointer(
582                 &mut self,
583                 address: Address,
584                 eh_pe: constants::DwEhPe,
585                 size: u8,
586             ) -> Result<(), Error> {
587                 let val = match address {
588                     Address::Constant(val) => val,
589                     Address::Symbol { .. } => unreachable!(),
590                 };
591                 assert_eq!(eh_pe.application(), constants::DW_EH_PE_pcrel);
592                 let offset = self.len() as u64;
593                 let val = val.wrapping_sub(offset);
594                 self.write_eh_pointer_data(val, eh_pe.format(), size)
595             }
596         }
597     }
598 }
599