Home
last modified time | relevance | path

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

/external/llvm-project/lldb/source/Symbol/
DUnwindPlan.cpp281 RegisterLocation reg_loc; in SetRegisterLocationToAtCFAPlusOffset() local
282 reg_loc.SetAtCFAPlusOffset(offset); in SetRegisterLocationToAtCFAPlusOffset()
283 m_register_locations[reg_num] = reg_loc; in SetRegisterLocationToAtCFAPlusOffset()
293 RegisterLocation reg_loc; in SetRegisterLocationToIsCFAPlusOffset() local
294 reg_loc.SetIsCFAPlusOffset(offset); in SetRegisterLocationToIsCFAPlusOffset()
295 m_register_locations[reg_num] = reg_loc; in SetRegisterLocationToIsCFAPlusOffset()
310 RegisterLocation reg_loc; in SetRegisterLocationToUndefined() local
311 reg_loc.SetUndefined(); in SetRegisterLocationToUndefined()
312 m_register_locations[reg_num] = reg_loc; in SetRegisterLocationToUndefined()
321 RegisterLocation reg_loc; in SetRegisterLocationToUnspecified() local
[all …]
/external/llvm-project/lldb/unittests/UnwindAssembly/x86/
DTestx86AssemblyInspectionEngine.cpp2615 UnwindPlan::Row::RegisterLocation reg_loc; in TEST_F() local
2617 plan.GetRowForFunctionOffset(27)->GetRegisterInfo(k_edi, reg_loc)); in TEST_F()
2618 EXPECT_TRUE(reg_loc.IsAtAFAPlusOffset()); in TEST_F()
2619 EXPECT_EQ(-4, reg_loc.GetOffset()); in TEST_F()