HomeSort by relevance Sort by last modified time
    Searched refs:GetUses (Results 1 - 25 of 46) sorted by null

1 2

  /prebuilts/ndk/r16/sources/third_party/shaderc/third_party/spirv-tools/source/opt/
def_use_manager.h 76 UseList* GetUses(uint32_t id);
77 const UseList* GetUses(uint32_t id) const;
block_merge_pass.cpp 33 const analysis::UseList* uses = def_use_mgr_->GetUses(labId);
49 analysis::UseList* uses = def_use_mgr_->GetUses(id);
eliminate_dead_constant_pass.cpp 39 if (analysis::UseList* uses = def_use.GetUses(const_id)) {
95 if (analysis::UseList* uses = def_use.GetUses(dc->result_id())) {
mem_pass.cpp 162 analysis::UseList* uses = def_use_mgr_->GetUses(id);
180 analysis::UseList* uses = def_use_mgr_->GetUses(id);
201 analysis::UseList* uses = def_use_mgr_->GetUses(varId);
242 analysis::UseList* uses = def_use_mgr_->GetUses(ptr_id);
def_use_manager.cpp 75 UseList* DefUseManager::GetUses(uint32_t id) {
81 const UseList* DefUseManager::GetUses(uint32_t id) const {
89 const auto* uses = GetUses(id);
local_single_block_elim_pass.cpp 33 analysis::UseList* uses = def_use_mgr_->GetUses(ptrId);
common_uniform_elim_pass.cpp 148 analysis::UseList* uses = def_use_mgr_->GetUses(id);
160 analysis::UseList* uses = def_use_mgr_->GetUses(id);
174 analysis::UseList* uses = def_use_mgr_->GetUses(id);
set_spec_constant_default_value_pass.cpp 140 *def_use_mgr->GetUses(decoration_group_defining_inst.result_id())) {
  /art/tools/veridex/
precise_hidden_api_finder.cc 74 AddUsesAt(collector.GetUses(), MethodReference(&resolver->GetDexFile(), it.GetMemberIndex()));
90 AddUsesAt(substitutor.GetUses(),
flow_analysis.h 195 const std::vector<ReflectAccessInfo>& GetUses() const {
215 const std::vector<ReflectAccessInfo>& GetUses() const {
  /art/compiler/optimizing/
code_sinking.cc 183 for (const HUseListNode<HInstruction*>& use : instruction->GetUses()) {
225 for (const HUseListNode<HInstruction*>& use : instruction->GetUses()) {
324 for (const HUseListNode<HInstruction*>& use : instruction->GetUses()) {
389 for (const HUseListNode<HInstruction*>& use : instruction->GetUses()) {
escape.cc 47 for (const HUseListNode<HInstruction*>& use : reference->GetUses()) {
nodes_test.cc 91 ASSERT_TRUE(parameter1->GetUses().HasExactlyOneElement());
112 ASSERT_TRUE(parameter->GetUses().HasExactlyOneElement());
128 ASSERT_TRUE(parameter1->GetUses().HasExactlyOneElement());
prepare_for_register_allocation.cc 92 for (const HUseListNode<HInstruction*>& use : check->GetUses()) {
114 const HUseList<HInstruction*>& uses = check->GetUses();
167 HInstruction* user = condition->GetUses().front().GetUser();
ssa_phi_elimination.cc 54 for (const HUseListNode<HInstruction*>& use : phi->GetUses()) {
104 for (const HUseListNode<HInstruction*>& use : phi->GetUses()) {
247 for (const HUseListNode<HInstruction*>& use : current->GetUses()) {
pretty_printer.h 60 for (const HUseListNode<HInstruction*>& use : instruction->GetUses()) {
instruction_simplifier_arm.cc 145 if (bitfield_op->GetUses().empty()) {
162 const HUseList<HInstruction*>& uses = bitfield_op->GetUses();
instruction_simplifier_arm64.cc 149 if (bitfield_op->GetUses().empty()) {
166 const HUseList<HInstruction*>& uses = bitfield_op->GetUses();
ssa_liveness_analysis.h 289 DCHECK(GetUses().empty()) << "A temporary can only have one user";
558 for (const UsePosition& use : GetUses()) {
595 for (const UsePosition& use : GetUses()) {
607 const UsePositionList& GetUses() const {
747 for (const UsePosition& use : GetUses()) {
    [all...]
instruction_simplifier_mips.cc 80 for (const HUseListNode<HInstruction*>& use : index->GetUses()) {
instruction_simplifier_shared.cc 111 HInstruction* use = mul->GetUses().front().GetUser();
300 for (const HUseListNode<HInstruction*>& use : index->GetUses()) {
graph_checker.cc 373 for (const HUseListNode<HInstruction*>& use : instruction->GetUses()) {
414 if ((input_record.GetBeforeUseNode() == input->GetUses().end()) ||
415 (input_record.GetUseNode() == input->GetUses().end()) ||
416 !input->GetUses().ContainsNode(*input_record.GetUseNode()) ||
429 for (const HUseListNode<HInstruction*>& use : instruction->GetUses()) {
    [all...]
register_allocator_graph_color.cc 183 auto matching_use_range = FindMatchingUseRange(interval->GetUses().begin(),
184 interval->GetUses().end(),
    [all...]
loop_optimization.cc 395 !instr->GetUses().empty() ||
    [all...]
ssa_liveness_analysis.cc 214 for (const HUseListNode<HInstruction*>& use : current->GetUses()) {
361 for (const UsePosition& use : GetUses()) {

Completed in 252 milliseconds

1 2