Home
last modified time | relevance | path

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

/external/google-breakpad/src/common/dwarf/
Ddwarf2reader.cc916 class CallFrameInfo::SameValueRule: public CallFrameInfo::Rule { class in dwarf2reader::CallFrameInfo
918 SameValueRule() { } in SameValueRule() function in dwarf2reader::CallFrameInfo::SameValueRule
919 ~SameValueRule() { } in ~SameValueRule()
921 return handler->SameValueRule(address, reg); in Handle()
926 const SameValueRule *our_rhs = dynamic_cast<const SameValueRule *>(&rhs); in operator ==()
929 Rule *Copy() const { return new SameValueRule(*this); } in Copy()
1159 if (!handler->SameValueRule(address, old_it->first)) in HandleTransitionTo()
1178 if (!handler->SameValueRule(address, old_it->first)) in HandleTransitionTo()
1569 !DoRule(ops.register_number, new SameValueRule())) in DoInstruction()
1761 rule = new SameValueRule(); in DoRestore()
Ddwarf2reader.h750 class SameValueRule; variable
862 virtual bool SameValueRule(uint64 address, int reg) = 0;
Ddwarf2reader_cfi_unittest.cc105 MOCK_METHOD2(SameValueRule, bool(uint64 address, int reg));
155 EXPECT_CALL(handler, SameValueRule(_, _)).Times(0); in CFIFixture()
979 EXPECT_CALL(handler, SameValueRule(fde_start, 0x3865a760)) in TEST_F()
1222 SameValueRule(fde_start + (0x7 + 0xb) * code_factor, 0x2c)) in TEST_F()
1349 EXPECT_CALL(handler, SameValueRule(addr, 1)) in TEST_F()
1355 EXPECT_CALL(handler, SameValueRule(addr, 5)) in TEST_F()
1570 EXPECT_CALL(handler, SameValueRule(fde_start + code_factor, 0x7dedff5f)) in TEST_F()
1589 EXPECT_CALL(handler, SameValueRule(fde_start, 0xadbc9b3a)) in TEST_F()
1608 EXPECT_CALL(handler, SameValueRule(fde_start, 0x3d90dcb5)) in TEST_F()
1612 EXPECT_CALL(handler, SameValueRule(fde_start + 2 * code_factor, 0x3d90dcb5)) in TEST_F()
/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 address, int reg);
Ddwarf_cfi_to_module.cc218 bool DwarfCFIToModule::SameValueRule(uint64 address, int reg) { in SameValueRule() function in google_breakpad::DwarfCFIToModule