Home
last modified time | relevance | path

Searched refs:SameValueRule (Results 1 – 6 of 6) sorted by relevance

/external/google-breakpad/src/common/dwarf/
Ddwarf2reader.cc1347 class CallFrameInfo::SameValueRule: public CallFrameInfo::Rule { class in dwarf2reader::CallFrameInfo
1349 SameValueRule() { } in SameValueRule() function in dwarf2reader::CallFrameInfo::SameValueRule
1350 ~SameValueRule() { } in ~SameValueRule()
1352 return handler->SameValueRule(address, reg); in Handle()
1357 const SameValueRule *our_rhs = dynamic_cast<const SameValueRule *>(&rhs); in operator ==()
1360 Rule *Copy() const { return new SameValueRule(*this); } in Copy()
1590 if (!handler->SameValueRule(address, old_it->first)) in HandleTransitionTo()
1609 if (!handler->SameValueRule(address, old_it->first)) in HandleTransitionTo()
2001 !DoRule(ops.register_number, new SameValueRule())) in DoInstruction()
2193 rule = new SameValueRule(); in DoRestore()
Ddwarf2reader_cfi_unittest.cc106 MOCK_METHOD2(SameValueRule, bool(uint64_t address, int reg));
160 EXPECT_CALL(handler, SameValueRule(_, _)).Times(0); in CFIFixture()
1109 EXPECT_CALL(handler, SameValueRule(fde_start, 0x3865a760)) in TEST_F()
1352 SameValueRule(fde_start + (0x7 + 0xb) * code_factor, 0x2c)) in TEST_F()
1479 EXPECT_CALL(handler, SameValueRule(addr, 1)) in TEST_F()
1485 EXPECT_CALL(handler, SameValueRule(addr, 5)) in TEST_F()
1700 EXPECT_CALL(handler, SameValueRule(fde_start + code_factor, 0x7dedff5f)) in TEST_F()
1719 EXPECT_CALL(handler, SameValueRule(fde_start, 0xadbc9b3a)) in TEST_F()
1738 EXPECT_CALL(handler, SameValueRule(fde_start, 0x3d90dcb5)) in TEST_F()
1742 EXPECT_CALL(handler, SameValueRule(fde_start + 2 * code_factor, 0x3d90dcb5)) in TEST_F()
Ddwarf2reader.h1023 class SameValueRule; variable
1135 virtual bool SameValueRule(uint64_t address, int reg) = 0;
/external/google-breakpad/src/common/
Ddwarf_cfi_to_module_unittest.cc155 TEST_F(Rule, SameValueRule) { in TEST_F() argument
157 ASSERT_TRUE(handler.SameValueRule(entry_address, 6)); in TEST_F()
Ddwarf_cfi_to_module.h144 virtual bool SameValueRule(uint64_t address, int reg);
Ddwarf_cfi_to_module.cc218 bool DwarfCFIToModule::SameValueRule(uint64_t address, int reg) { in SameValueRule() function in google_breakpad::DwarfCFIToModule