Home
last modified time | relevance | path

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

/frameworks/libs/binary_translation/backend/include/berberis/backend/x86_64/
Dliveness_analyzer.h37 bool IsLiveIn(const MachineBasicBlock* bb, MachineReg reg) const { in IsLiveIn() function
56 if (IsLiveIn(bb, vreg)) { in GetNextLiveIn()
Dcontext_liveness_analyzer.h34 bool IsLiveIn(const MachineBasicBlock* bb, uint32_t offset) const;
/frameworks/libs/binary_translation/backend/x86_64/
Dliveness_analyzer_test.cc35 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()
Dcontext_liveness_analyzer_test.cc45 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()
Dcontext_liveness_analyzer.cc46 bool ContextLivenessAnalyzer::IsLiveIn(const MachineBasicBlock* bb, uint32_t offset) const { in IsLiveIn() function in berberis::x86_64::ContextLivenessAnalyzer
Dmachine_ir_opt.cc194 if (analyzer->IsLiveIn(dst, disp)) { in RemovePutIfDead()