Home
last modified time | relevance | path

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

/art/compiler/utils/riscv64/
Dassembler_riscv64.cc7193 for (auto& branch : branches_) { in EmitBranches()
7202 Branch& this_branch = branches_.back(); in FinalizeLabeledBranch()
7213 uint32_t branch_id = branches_.size() - 1; in FinalizeLabeledBranch()
7239 branches_.emplace_back(buffer_.Size(), in Bcond()
7251 branches_.emplace_back( in Buncond()
7262 branches_.emplace_back(buffer_.Size(), Branch::kUnresolved, rd, literal_type); in LoadLiteral()
7267 CHECK_LT(branch_id, branches_.size()); in GetBranch()
7268 return &branches_[branch_id]; in GetBranch()
7272 CHECK_LT(branch_id, branches_.size()); in GetBranch()
7273 return &branches_[branch_id]; in GetBranch()
[all …]
Dassembler_riscv64.h224 branches_(allocator->Adapter(kArenaAllocAssembler)), in Riscv64Assembler()
241 for (auto& branch : branches_) { in ~Riscv64Assembler()
2707 ArenaVector<Branch> branches_; variable