Home
last modified time | relevance | path

Searched refs:CurCFIRecord (Results 1 – 2 of 2) sorted by relevance

/external/llvm-project/llvm/lib/ExecutionEngine/Orc/TargetProcess/
DRegisterEHFrames.cpp94 const char *CurCFIRecord = SectionStart; in walkAppleEHFrameSection() local
96 uint64_t Size = *reinterpret_cast<const uint32_t *>(CurCFIRecord); in walkAppleEHFrameSection()
98 while (CurCFIRecord != End && Size != 0) { in walkAppleEHFrameSection()
99 const char *OffsetField = CurCFIRecord + (Size == 0xffffffff ? 12 : 4); in walkAppleEHFrameSection()
101 Size = *reinterpret_cast<const uint64_t *>(CurCFIRecord + 4) + 12; in walkAppleEHFrameSection()
109 << (void *)CurCFIRecord << ": ["; in walkAppleEHFrameSection()
111 dbgs() << format(" 0x%02" PRIx8, *(CurCFIRecord + I)); in walkAppleEHFrameSection()
116 if (auto Err = HandleFDE(CurCFIRecord)) in walkAppleEHFrameSection()
119 CurCFIRecord += Size; in walkAppleEHFrameSection()
121 Size = *reinterpret_cast<const uint32_t *>(CurCFIRecord); in walkAppleEHFrameSection()
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/JITLink/
DEHFrameSupport.cpp701 const char *CurCFIRecord = SectionStart; in walkAppleEHFrameSection() local
703 uint64_t Size = *reinterpret_cast<const uint32_t *>(CurCFIRecord); in walkAppleEHFrameSection()
705 while (CurCFIRecord != End && Size != 0) { in walkAppleEHFrameSection()
706 const char *OffsetField = CurCFIRecord + (Size == 0xffffffff ? 12 : 4); in walkAppleEHFrameSection()
708 Size = *reinterpret_cast<const uint64_t *>(CurCFIRecord + 4) + 12; in walkAppleEHFrameSection()
716 << (void *)CurCFIRecord << ": ["; in walkAppleEHFrameSection()
718 dbgs() << format(" 0x%02" PRIx8, *(CurCFIRecord + I)); in walkAppleEHFrameSection()
723 if (auto Err = HandleFDE(CurCFIRecord)) in walkAppleEHFrameSection()
726 CurCFIRecord += Size; in walkAppleEHFrameSection()
728 Size = *reinterpret_cast<const uint32_t *>(CurCFIRecord); in walkAppleEHFrameSection()