Searched refs:IsLiveIn (Results 1 – 6 of 6) sorted by relevance
/frameworks/libs/binary_translation/backend/include/berberis/backend/x86_64/ |
D | liveness_analyzer.h | 37 bool IsLiveIn(const MachineBasicBlock* bb, MachineReg reg) const { in IsLiveIn() function 56 if (IsLiveIn(bb, vreg)) { in GetNextLiveIn()
|
D | context_liveness_analyzer.h | 34 bool IsLiveIn(const MachineBasicBlock* bb, uint32_t offset) const;
|
/frameworks/libs/binary_translation/backend/x86_64/ |
D | liveness_analyzer_test.cc | 35 EXPECT_TRUE((!liveness->IsLiveIn(bb, not_live_in_vregs) && ... && true)); in ExpectNoLiveIns() 44 EXPECT_TRUE((!liveness->IsLiveIn(bb, not_live_in_vregs) && ... && true)); in ExpectSingleLiveIn() 45 EXPECT_TRUE(liveness->IsLiveIn(bb, vreg)); in ExpectSingleLiveIn() 54 EXPECT_TRUE(liveness->IsLiveIn(bb, vreg1)); in ExpectTwoLiveIns() 55 EXPECT_TRUE(liveness->IsLiveIn(bb, vreg2)); in ExpectTwoLiveIns()
|
D | context_liveness_analyzer_test.cc | 45 EXPECT_FALSE(analyzer->IsLiveIn(bb, offsetof(ProcessState, cpu.x[reg]))); in CheckBBLiveIn() 47 EXPECT_TRUE(analyzer->IsLiveIn(bb, offsetof(ProcessState, cpu.x[reg]))); in CheckBBLiveIn()
|
D | context_liveness_analyzer.cc | 46 bool ContextLivenessAnalyzer::IsLiveIn(const MachineBasicBlock* bb, uint32_t offset) const { in IsLiveIn() function in berberis::x86_64::ContextLivenessAnalyzer
|
D | machine_ir_opt.cc | 194 if (analyzer->IsLiveIn(dst, disp)) { in RemovePutIfDead()
|