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

1 2 3

  /external/v8/test/unittests/compiler/
select-lowering-unittest.cc 47 IsPhi(
58 EXPECT_THAT(r.replacement(), IsPhi(MachineRepresentation::kWord32, p3, p4,
67 EXPECT_THAT(r.replacement(), IsPhi(MachineRepresentation::kWord32, s0, p0,
js-intrinsic-lowering-unittest.cc 151 IsPhi(
182 IsPhi(
213 IsPhi(
244 IsPhi(
276 IsPhi(
307 IsPhi(
435 IsPhi(
437 IsPhi(MachineRepresentation::kTagged,
loop-peeling-unittest.cc 187 r, IsReturn(IsPhi(MachineRepresentation::kTagged, c.phi, c.base,
226 IsReturn(IsPhi(MachineRepresentation::kTagged, c.phi, c.base,
302 EXPECT_THAT(back, IsPhi(MachineRepresentation::kTagged, c.phi, c.base,
305 EXPECT_THAT(phi, IsPhi(MachineRepresentation::kTagged, IsInt32Constant(11),
381 IsPhi(MachineRepresentation::kTagged,
382 IsPhi(MachineRepresentation::kTagged, IsInt32Constant(1),
388 r, IsReturn(IsPhi(MachineRepresentation::kTagged, phi, IsInt32Constant(0),
437 EXPECT_THAT(eval, IsPhi(MachineRepresentation::kTagged,
442 EXPECT_THAT(phi, IsPhi(MachineRepresentation::kTagged, eval,
448 r, IsReturn(IsPhi(MachineRepresentation::kTagged, phi, IsInt32Constant(0)
    [all...]
change-lowering-unittest.cc 374 IsPhi(MachineRepresentation::kTagged,
405 IsPhi(MachineRepresentation::kFloat64,
430 IsPhi(
453 IsPhi(
476 IsPhi(
531 IsPhi(MachineRepresentation::kFloat64,
556 IsPhi(
580 IsPhi(
604 IsPhi(
branch-elimination-unittest.cc 77 IsPhi(MachineRepresentation::kWord32, IsInt32Constant(1),
118 IsPhi(MachineRepresentation::kWord32, IsInt32Constant(2),
diamond-unittest.cc 127 EXPECT_THAT(phi, IsPhi(types[i], p1, p2, d.merge));
  /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/v8/src/compiler/
dead-code-elimination.cc 83 if (NodeProperties::IsPhi(use)) {
97 if (NodeProperties::IsPhi(use)) {
112 if (NodeProperties::IsPhi(use)) {
control-flow-optimizer.cc 141 if (!NodeProperties::IsPhi(use)) return false;
150 if (NodeProperties::IsPhi(edge.from())) {
186 if (NodeProperties::IsPhi(edge.from())) {
node-properties.h 71 static bool IsPhi(Node* node) {
register-allocator-verifier.cc 511 bool IsPhi(int virtual_register) {
563 if (IsPhi(succ_vreg)) {
641 if (IsPhi(first_pred_vreg)) {
645 CHECK(!IsPhi(first_pred_vreg));
700 if (!block_maps->IsPhi(virtual_register)) {
loop-analysis.cc 195 } else if (NodeProperties::IsPhi(node)) {
233 if (NodeProperties::IsPhi(use)) {
289 if (NodeProperties::IsPhi(use)) {
  /external/v8/src/crankshaft/
hydrogen-uint32-analysis.cc 81 if (use->IsPhi()) {
103 if (use->IsPhi() && !use->CheckFlag(HInstruction::kUint32)) {
149 if (operand->IsPhi()) {
hydrogen-mark-deoptimize.cc 35 if (input->IsPhi() && input->CheckFlag(HValue::kAllowUndefinedAsNaN)) {
hydrogen-redundant-phi.cc 56 updated |= value->IsPhi() && !value->CheckFlag(HValue::kIsDead);
hydrogen-representation-changes.cc 15 if (use_value->IsPhi()) {
165 if (input->IsPhi() &&
182 if (input->IsPhi() &&
hydrogen-infer-representation.cc 44 if (use->IsPhi()) {
  /art/compiler/optimizing/
ssa_builder.cc 110 bool add_all_live_phis = instruction->IsPhi() && instruction->AsPhi()->IsDead();
113 if (user->IsPhi() && user->AsPhi()->IsLive()) {
128 if (input->IsPhi() && input->AsPhi()->IsDead()) {
175 DCHECK(input->IsPhi() && input->GetType() == Primitive::kPrimVoid);
177 DCHECK((input->IsPhi() && input->GetType() == Primitive::kPrimVoid) ||
203 if (equivalent->IsPhi()) {
388 if (equivalent->IsPhi()) {
668 } else if (value->IsPhi()) {
678 } else if (value->IsPhi()) {
ssa_phi_elimination.cc 48 if (!use.GetUser()->IsPhi()) {
188 } else if (input->IsPhi()) {
240 if (user->IsPhi() && !visited_phis_in_cycle.IsBitSet(user->GetId())) {
graph_checker.cc 122 if (!current->IsPhi()) {
139 if (current->IsPhi()) {
326 instruction->IsPhi() ? "Phi" : "Instruction",
331 instruction->IsPhi() ? "Phi" : "Instruction",
341 const HInstructionList& list = input->IsPhi()
356 const HInstructionList& list = user->IsPhi()
410 if (!user->IsPhi() && !instruction->StrictlyDominates(user)) {
675 if (insn1->IsPhi() &&
    [all...]
licm.cc 23 return instruction->IsPhi() && instruction->GetBlock() == block;
reference_type_propagation.cc 399 if (obj->GetReferenceTypeInfo().IsExact() && !obj->IsPhi()) {
758 } else if (instr->IsPhi()) {
    [all...]
nodes.cc 791 DCHECK(!cursor->IsPhi());
792 DCHECK(!insn->IsPhi());
826 DCHECK(!cursor->IsPhi());
827 DCHECK(!instruction->IsPhi());
839 DCHECK(!cursor->IsPhi());
840 DCHECK(!instruction->IsPhi());
    [all...]
ssa_liveness_analysis.cc 203 DCHECK(!input->IsPhi());
420 if (user->IsPhi()) {
471 if (defined_by_->IsPhi()) {
  /external/llvm/include/llvm/IR/
User.h 80 /// \param IsPhi identifies callers which are phi nodes and which need
82 void allocHungoffUses(unsigned N, bool IsPhi = false);
86 void growHungoffUses(unsigned N, bool IsPhi = false);

Completed in 374 milliseconds

1 2 3