Home
last modified time | relevance | path

Searched refs:entry_ (Results 1 – 7 of 7) sorted by relevance

/art/dex2oat/linker/
Dindex_bss_mapping_encoder.h35 entry_.index_and_mask = static_cast<uint32_t>(-1); in IndexBssMappingEncoder()
36 entry_.bss_offset = static_cast<uint32_t>(-1); in IndexBssMappingEncoder()
44 DCHECK_NE(index, entry_.GetIndex(index_bits_)); in TryMerge()
45 if (entry_.bss_offset + slot_size_ != bss_offset) { in TryMerge()
48 uint32_t diff = index - entry_.GetIndex(index_bits_); in TryMerge()
52 uint32_t mask = entry_.GetMask(index_bits_); in TryMerge()
59 entry_.index_and_mask = mask | index; in TryMerge()
60 entry_.bss_offset = bss_offset; in TryMerge()
66 entry_.index_and_mask = method_index; // Mask bits set to 0. in Reset()
67 entry_.bss_offset = bss_offset; in Reset()
[all …]
/art/compiler/optimizing/
Dssa_liveness_analysis_test.cc38 entry_ = new (GetAllocator()) HBasicBlock(graph_); in SetUp()
39 graph_->AddBlock(entry_); in SetUp()
40 graph_->SetEntryBlock(entry_); in SetUp()
54 HBasicBlock* entry_; member in art::SsaLivenessAnalysisTest
60 entry_->AddInstruction(arg); in TEST_F()
62 HBasicBlock* block = CreateSuccessor(entry_); in TEST_F()
90 entry_->AddInstruction(insn); in TEST_F()
93 HBasicBlock* block = CreateSuccessor(entry_); in TEST_F()
159 entry_->AddInstruction(insn); in TEST_F()
162 HBasicBlock* block = CreateSuccessor(entry_); in TEST_F()
Dlicm_test.cc33 : entry_(nullptr), in LICMTest()
50 entry_ = new (GetAllocator()) HBasicBlock(graph_); in BuildLoop()
57 graph_->AddBlock(entry_); in BuildLoop()
64 graph_->SetEntryBlock(entry_); in BuildLoop()
68 entry_->AddSuccessor(loop_preheader_); in BuildLoop()
80 entry_->AddInstruction(parameter_); in BuildLoop()
102 HBasicBlock* entry_; member in art::LICMTest
Dinduction_var_analysis_test.cc34 entry_(nullptr), in InductionVarAnalysisTest()
80 entry_ = new (GetAllocator()) HBasicBlock(graph_); in BuildLoopNest()
81 graph_->AddBlock(entry_); in BuildLoopNest()
87 entry_->AddSuccessor(loop_preheader_[0]); in BuildLoopNest()
90 graph_->SetEntryBlock(entry_); in BuildLoopNest()
96 entry_->AddInstruction(parameter_); in BuildLoopNest()
207 HBasicBlock* entry_; member in art::InductionVarAnalysisTest
242 ASSERT_EQ(entry_->GetLoopInformation(), nullptr); in TEST_F()
/art/compiler/utils/
Dassembler.h73 Label* Entry() { return &entry_; } in Entry()
79 Label entry_;
/art/compiler/utils/x86/
Djni_macro_assembler_x86.cc600 __ Bind(&entry_); in Emit()
/art/compiler/utils/x86_64/
Djni_macro_assembler_x86_64.cc661 __ Bind(&entry_); in Emit()