Lines Matching refs:fde
68 DwarfFde fde{}; in TEST_F() local
69 fde.pc_end = 0x2000; in TEST_F()
70 fde.cie = nullptr; in TEST_F()
72 EXPECT_CALL(*section_, GetFdeFromPc(0x1000)).WillOnce(::testing::Return(&fde)); in TEST_F()
80 DwarfFde fde{}; in TEST_F() local
81 fde.pc_end = 0x2000; in TEST_F()
82 fde.cie = &cie; in TEST_F()
84 EXPECT_CALL(*section_, GetFdeFromPc(0x1000)).WillOnce(::testing::Return(&fde)); in TEST_F()
85 EXPECT_CALL(*section_, GetCfaLocationInfo(0x1000, &fde, ::testing::_)) in TEST_F()
94 DwarfFde fde{}; in TEST_F() local
95 fde.pc_end = 0x2000; in TEST_F()
96 fde.cie = &cie; in TEST_F()
98 EXPECT_CALL(*section_, GetFdeFromPc(0x1000)).WillOnce(::testing::Return(&fde)); in TEST_F()
99 EXPECT_CALL(*section_, GetCfaLocationInfo(0x1000, &fde, ::testing::_)) in TEST_F()
110 static bool MockGetCfaLocationInfo(::testing::Unused, const DwarfFde* fde, in MockGetCfaLocationInfo() argument
112 loc_regs->pc_start = fde->pc_start; in MockGetCfaLocationInfo()
113 loc_regs->pc_end = fde->pc_end; in MockGetCfaLocationInfo()
119 DwarfFde fde{}; in TEST_F() local
120 fde.pc_start = 0x500; in TEST_F()
121 fde.pc_end = 0x2000; in TEST_F()
122 fde.cie = &cie; in TEST_F()
124 EXPECT_CALL(*section_, GetFdeFromPc(0x1000)).WillOnce(::testing::Return(&fde)); in TEST_F()
125 EXPECT_CALL(*section_, GetCfaLocationInfo(0x1000, &fde, ::testing::_)) in TEST_F()