Displaying 1 result from an estimated 1 matches for "initiallocation".
2013 Feb 06
0
[LLVMdev] [llvm] r174463 - Initial support for DWARF CFI parsing and dumping in LLVM
...ntains is constructed with
>> + // an offset to the CIE (provided by parsing the FDE header). The CIE itself
>> + // is obtained lazily once it's actually required.
>> + FDE(DataExtractor D, uint64_t Offset, uint64_t Length, int64_t LinkedCIEOffset,
>> + uint64_t InitialLocation, uint64_t AddressRange)
>> + : FrameEntry(FK_FDE, D, Offset, Length), LinkedCIEOffset(LinkedCIEOffset),
>> + InitialLocation(InitialLocation), AddressRange(AddressRange),
>> + LinkedCIE(NULL)
>> + {}
>> +
>> + void dumpHeader(raw_ostream &OS) cons...