search for: dumptype

Displaying 4 results from an estimated 4 matches for "dumptype".

Did you mean: dump_type
2013 Sep 19
4
Array being flattened
...;dailyweekly" which results in an "Invalid relationship:" error. Can anyone provide some guidance on how to get around this? I''ve been banging on this for a few days and my heads really starting to hurt. define amanda::disklist ( $configs, $diskdevice = undef, $dumptype, $ensure = present, $interface = undef, $order = 20, $spindle = undef ) { include amanda::params include amanda::virtual concat::fragment { "amanda::disklist/$title": target => "$amanda::params::configs_directory/$configs/disk...
2013 Feb 06
0
[LLVMdev] [llvm] r174463 - Initial support for DWARF CFI parsing and dumping in LLVM
...=174463&view=diff >> ============================================================================== >> --- llvm/trunk/include/llvm/DebugInfo/DIContext.h (original) >> +++ llvm/trunk/include/llvm/DebugInfo/DIContext.h Tue Feb 5 17:30:58 2013 >> @@ -101,6 +101,7 @@ enum DIDumpType { >> DIDT_Abbrev, >> DIDT_AbbrevDwo, >> DIDT_Aranges, >> + DIDT_Frames, >> DIDT_Info, >> DIDT_InfoDwo, >> DIDT_Line, >> >> Modified: llvm/trunk/include/llvm/Support/Dwarf.h >> URL: http://llvm.org/viewvc/llvm-proje...
2019 Apr 24
2
[DebugInfo] DWARF C API
...defined some C functions ``` LLVMDWARFContextRef LLVMCreateDWARFContext(LLVMBinaryRef Bin) { std::unique_ptr<DWARFContext> DICtx = DWARFContext::create(*unwrap(Bin)); return wrap(DICtx.release()); } void LLVMPrintDWARFContext(LLVMDWARFContextRef C) { DIDumpOptions DumpOpts; DumpOpts.DumpType = DIDT_DebugInfo; // I only care about the .debug_info section unwrap(C)->dump(outs(), DumpOpts); } ``` However, I got a segfault when trying to dump the LLVMDWARFContextRef using the second function. More precisely, it segfaulted when dumping the attribute of the DWARFDie. I tried to do this...
2019 Apr 24
2
[DebugInfo] DWARF C API
...LVMBinaryRef Bin) { > > std::unique_ptr<DWARFContext> DICtx = > DWARFContext::create(*unwrap(Bin)); > > return wrap(DICtx.release()); > > } > > > > void LLVMPrintDWARFContext(LLVMDWARFContextRef C) { > > DIDumpOptions DumpOpts; > > DumpOpts.DumpType = DIDT_DebugInfo; // I only care about the > .debug_info section > > unwrap(C)->dump(outs(), DumpOpts); > > } > > ``` > > However, I got a segfault when trying to dump the LLVMDWARFContextRef > using the second function. More precisely, it segfaulted when dumping...