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

1 2

  /external/llvm/lib/IR/
User.cpp 43 void User::allocHungoffUses(unsigned N, bool IsPhi) {
55 if (IsPhi)
63 void User::growHungoffUses(unsigned NewNumUses, bool IsPhi) {
73 allocHungoffUses(NewNumUses, IsPhi);
80 if (IsPhi) {
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/IR/
User.cpp 40 void User::allocHungoffUses(unsigned N, bool IsPhi) {
51 if (IsPhi)
59 void User::growHungoffUses(unsigned NewNumUses, bool IsPhi) {
69 allocHungoffUses(NewNumUses, IsPhi);
76 if (IsPhi) {
  /art/compiler/optimizing/
ssa_builder.cc 116 bool add_all_live_phis = instruction->IsPhi() && instruction->AsPhi()->IsDead();
119 if (user->IsPhi() && user->AsPhi()->IsLive()) {
133 if (input->IsPhi() && input->AsPhi()->IsDead()) {
206 if (equivalent->IsPhi()) {
395 if (equivalent->IsPhi()) {
438 if (str->IsPhi()) {
700 } else if (value->IsPhi()) {
710 } else if (value->IsPhi()) {
code_sinking.cc 180 DCHECK(!instruction->IsPhi()); // Makes no sense for Phi.
188 if (user->IsPhi()) {
199 DCHECK(!use.GetUser()->GetHolder()->IsPhi());
251 DCHECK(!insert_pos->IsPhi());
escape.cc 60 } else if (user->IsPhi() ||
ssa_phi_elimination.cc 56 if (!use.GetUser()->IsPhi()) {
198 } else if (input->IsPhi()) {
250 if (user->IsPhi() && !visited_phis_in_cycle.IsBitSet(user->GetId())) {
cha_guard_optimization.cc 162 DCHECK(receiver->IsPhi());
licm.cc 24 return instruction->IsPhi() && instruction->GetBlock() == block;
ssa_liveness_analysis.cc 133 DCHECK(!input->IsPhi());
387 if (user->IsPhi()) {
437 if (defined_by_->IsPhi()) {
496 if (definition->IsPhi()) {
graph_checker.cc 165 if (!current->IsPhi()) {
182 if (current->IsPhi()) {
369 instruction->IsPhi() ? "Phi" : "Instruction",
374 instruction->IsPhi() ? "Phi" : "Instruction",
388 const HInstructionList& list = input->IsPhi()
404 const HInstructionList& list = user->IsPhi()
460 if (!user->IsPhi() && !instruction->StrictlyDominates(user)) {
    [all...]
reference_type_propagation.cc 528 if (obj->GetReferenceTypeInfo().IsExact() && !obj->IsPhi()) {
    [all...]
superblock_cloner.cc 117 DCHECK(!copy_instr->IsPhi());
672 DCHECK(!orig_instr->IsPhi());
738 if (!orig_instr->IsPhi() && !orig_instr->IsSuspendCheck()) {
741 if (!copy_instr->IsPhi() && !copy_instr->IsSuspendCheck()) {
    [all...]
nodes.cc     [all...]
loop_optimization.cc     [all...]
register_allocation_resolver.cc 79 } else if (instruction->IsPhi() && instruction->AsPhi()->IsCatchPhi()) {
531 DCHECK(!user->IsPhi());
684 if (instruction->IsPhi()) {
induction_var_analysis.cc 149 use.GetUser()->IsPhi() &&
358 if (instruction->IsPhi()) {
442 if (instruction->IsPhi()) {
    [all...]
nodes_vector.h 169 } else if (instruction->IsPhi()) {
302 if (input->IsPhi()) {
    [all...]
  /external/llvm/include/llvm/IR/
User.h 82 /// \param IsPhi identifies callers which are phi nodes and which need
84 void allocHungoffUses(unsigned N, bool IsPhi = false);
88 void growHungoffUses(unsigned N, bool IsPhi = false);
  /external/swiftshader/third_party/llvm-subzero/include/llvm/IR/
User.h 88 /// \param IsPhi identifies callers which are phi nodes and which need
90 void allocHungoffUses(unsigned N, bool IsPhi = false);
94 void growHungoffUses(unsigned N, bool IsPhi = false);
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/
User.h 86 /// \param IsPhi identifies callers which are phi nodes and which need
88 void allocHungoffUses(unsigned N, bool IsPhi = false);
92 void growHungoffUses(unsigned N, bool IsPhi = false);
  /external/v8/src/compiler/
dead-code-elimination.cc 131 if (NodeProperties::IsPhi(use)) {
146 if (NodeProperties::IsPhi(use)) {
171 if (NodeProperties::IsPhi(use)) {
loop-analysis.cc 196 } else if (NodeProperties::IsPhi(node)) {
254 if (NodeProperties::IsPhi(use)) {
317 return node->opcode() == IrOpcode::kLoop || NodeProperties::IsPhi(node);
328 if (NodeProperties::IsPhi(use)) {
node-properties.h 74 static bool IsPhi(Node* node) {
  /external/llvm/lib/Target/Hexagon/
RDFLiveness.cpp 129 bool IsPhi = TA.Addr->getFlags() & NodeAttrs::PhiRef;
130 if (!IsPhi && !RAI.alias(RefRR, TA.Addr->getRegRef()))
203 bool IsPhi = DFG.IsCode<NodeAttrs::Phi>(TA);
215 if (FullChain || IsPhi || !RAI.covers(RRs, QR))
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/
RDFLiveness.cpp 163 bool IsPhi = TA.Addr->getFlags() & NodeAttrs::PhiRef;
164 if (!IsPhi && !PRI.alias(RefRR, TA.Addr->getRegRef(DFG)))
236 bool IsPhi = DFG.IsCode<NodeAttrs::Phi>(TA);
248 if (FullChain || IsPhi || !RRs.hasCoverOf(QR))
    [all...]

Completed in 1242 milliseconds

1 2