| /src/external/gpl3/gcc/dist/gcc/rtl-ssa/ |
| changes.h | 56 ebb_info *ebb () const { return m_insn->ebb (); } function in class:rtl_ssa::insn_change
|
| movement.h | 112 ebb_info *ebb = insn->ebb (); local 113 if (!prev || prev->ebb () != ebb) 115 // REGNO is not defined or used in EBB before INSN, but it 119 // - If the register is not live on entry to EBB, the register is 120 // free from the start of EBB to the first definition in EBB. 124 // the instruction to later blocks in the EBB, but it's rarely 132 if (!bitmap_bit_p (DF_LR_IN (ebb->first_bb ()->cfg_bb ()), regno) 229 ebb_info *ebb = def->ebb (); local 320 ebb_info *ebb = use->ebb (); local [all...] |
| blocks.h | 69 // Return the EBB that contains this block. 70 ebb_info *ebb () const { return m_ebb; } function in class:rtl_ssa::bb_info 130 void set_ebb (ebb_info *ebb) { m_ebb = ebb; } 189 // Each EBB has a list of phi nodes and starts with an artificial phi 194 // Each EBB also maintains a list of ebb_call_clobbers_info structures 203 // Return the previous EBB in reverse postorder, or null if this EBB 207 // Return the next EBB in reverse postorder, or null if this EBB contain [all...] |
| insns.cc | 104 ebb_info *ebb = bb->ebb (); local 105 if (ebb && is_phi ()) 106 ebb->print_identifier (pp); 353 ebb_call_clobbers_info *ecc = insn->ebb ()->first_call_clobbers (); 430 if (value && value->ebb () != bi.current_ebb) 436 // VALUE is defined by a previous EBB and RESOURCE has multiple 437 // definitions. Create a degenerate phi in the current EBB 489 // If the previous definition occurs in the same EBB then it 491 if (value->ebb () == bi.current_ebb [all...] |
| blocks.cc | 140 if (ebb_info *ebb = this->ebb ()) 144 ebb->print_identifier (pp); 244 snprintf (tmp, sizeof (tmp), "ebb%d", index); 303 // Add a dummy use to mark that DEF is live out of BB's EBB at the end of BB. 346 // same EBB. The live-out value is the same as the live-in value. 355 if (bb == bb->ebb ()->last_bb () && all_uses_are_live_out_uses (phi)) 362 // Add PHI to EBB and enter it into the function's hash table. 364 function_info::append_phi (ebb_info *ebb, phi_info *phi) 366 phi_info *first_phi = ebb->first_phi () 778 ebb_info *ebb = bi.current_ebb; local 963 ebb_info *ebb = bi.current_ebb; local 1024 ebb_info *ebb = bb->ebb (); local 1254 auto *ebb = allocate<ebb_info> (bbs[0], bbs.last ()); local [all...] |
| accesses.cc | 1311 auto *ebb = set->ebb (); local 1312 gcc_checking_assert (ebb == insn->ebb ()); 1320 for (ebb_call_clobbers_info *call_group : ebb->call_clobbers ()) 1343 for (ebb_call_clobbers_info *call_group : bb->ebb ()->call_clobbers ()) 1384 if (def->ebb () == bb->ebb ()) 1404 insn_info *phi_insn = bb->ebb ()->phi_insn (); 1430 insn_info *use_insn = bb->ebb ()->first_bb ()->head_insn () [all...] |
| /src/external/gpl3/gcc.old/dist/gcc/rtl-ssa/ |
| changes.h | 54 ebb_info *ebb () const { return m_insn->ebb (); } function in class:rtl_ssa::insn_change
|
| movement.h | 107 ebb_info *ebb = insn->ebb (); local 108 if (!prev || prev->ebb () != ebb) 110 // REGNO is not defined or used in EBB before INSN, but it 114 // - If the register is not live on entry to EBB, the register is 115 // free from the start of EBB to the first definition in EBB. 119 // the instruction to later blocks in the EBB, but it's rarely 127 if (!bitmap_bit_p (DF_LR_IN (ebb->first_bb ()->cfg_bb ()), regno) 219 ebb_info *ebb = def->ebb (); local 309 ebb_info *ebb = use->ebb (); local [all...] |
| blocks.h | 69 // Return the EBB that contains this block. 70 ebb_info *ebb () const { return m_ebb; } function in class:rtl_ssa::bb_info 130 void set_ebb (ebb_info *ebb) { m_ebb = ebb; } 189 // Each EBB has a list of phi nodes and starts with an artificial phi 194 // Each EBB also maintains a list of ebb_call_clobbers_info structures 203 // Return the previous EBB in reverse postorder, or null if this EBB 207 // Return the next EBB in reverse postorder, or null if this EBB contain [all...] |
| insns.cc | 104 ebb_info *ebb = bb->ebb (); local 105 if (ebb && is_phi ()) 106 ebb->print_identifier (pp); 340 ebb_call_clobbers_info *ecc = insn->ebb ()->first_call_clobbers (); 417 if (value && value->ebb () != bi.current_ebb) 423 // VALUE is defined by a previous EBB and RESOURCE has multiple 424 // definitions. Create a degenerate phi in the current EBB 476 // If the previous definition occurs in the same EBB then it 478 if (value->ebb () == bi.current_ebb [all...] |
| blocks.cc | 152 if (ebb_info *ebb = this->ebb ()) 156 ebb->print_identifier (pp); 256 snprintf (tmp, sizeof (tmp), "ebb%d", index); 315 // Add a dummy use to mark that DEF is live out of BB's EBB at the end of BB. 358 // same EBB. The live-out value is the same as the live-in value. 367 if (bb == bb->ebb ()->last_bb () && all_uses_are_live_out_uses (phi)) 374 // Add PHI to EBB and enter it into the function's hash table. 376 function_info::append_phi (ebb_info *ebb, phi_info *phi) 378 phi_info *first_phi = ebb->first_phi () 772 ebb_info *ebb = bi.current_ebb; local 944 ebb_info *ebb = bi.current_ebb; local 1005 ebb_info *ebb = bb->ebb (); local 1235 auto *ebb = allocate<ebb_info> (bbs[0], bbs.last ()); local [all...] |
| /src/external/gpl3/binutils/dist/bfd/ |
| elf32-xtensa.c | 6431 bool ends_section; /* Is this the last ebb in a section? */ 6477 ebb_t ebb; 6516 init_ebb (ebb_t *ebb, 6525 memset (ebb, 0, sizeof (ebb_t)); 6526 ebb->sec = sec; 6527 ebb->contents = contents; 6528 ebb->content_length = content_length; 6529 ebb->ptbl = prop_table; 6530 ebb->pte_count = ptblsize; 6531 ebb->relocs = internal_relocs 6457 ebb_t ebb; member in struct:ebb_constraint_struct 7802 ebb_t *ebb; local 7929 const ebb_t *ebb = &ebb_table->ebb; local 8104 ebb_t *ebb = &ebb_table->ebb; local 9320 ebb_t *ebb; local [all...] |
| /src/external/gpl3/binutils.old/dist/bfd/ |
| elf32-xtensa.c | 6431 bool ends_section; /* Is this the last ebb in a section? */ 6477 ebb_t ebb; 6516 init_ebb (ebb_t *ebb, 6525 memset (ebb, 0, sizeof (ebb_t)); 6526 ebb->sec = sec; 6527 ebb->contents = contents; 6528 ebb->content_length = content_length; 6529 ebb->ptbl = prop_table; 6530 ebb->pte_count = ptblsize; 6531 ebb->relocs = internal_relocs 6457 ebb_t ebb; member in struct:ebb_constraint_struct 7802 ebb_t *ebb; local 7929 const ebb_t *ebb = &ebb_table->ebb; local 8104 ebb_t *ebb = &ebb_table->ebb; local 9320 ebb_t *ebb; local [all...] |
| /src/external/gpl3/gdb/dist/bfd/ |
| elf32-xtensa.c | 6429 bool ends_section; /* Is this the last ebb in a section? */ 6475 ebb_t ebb; 6514 init_ebb (ebb_t *ebb, 6523 memset (ebb, 0, sizeof (ebb_t)); 6524 ebb->sec = sec; 6525 ebb->contents = contents; 6526 ebb->content_length = content_length; 6527 ebb->ptbl = prop_table; 6528 ebb->pte_count = ptblsize; 6529 ebb->relocs = internal_relocs 6455 ebb_t ebb; member in struct:ebb_constraint_struct 7800 ebb_t *ebb; local 7927 const ebb_t *ebb = &ebb_table->ebb; local 8102 ebb_t *ebb = &ebb_table->ebb; local 9318 ebb_t *ebb; local [all...] |
| /src/external/gpl3/gdb.old/dist/bfd/ |
| elf32-xtensa.c | 6435 bool ends_section; /* Is this the last ebb in a section? */ 6481 ebb_t ebb; 6520 init_ebb (ebb_t *ebb, 6529 memset (ebb, 0, sizeof (ebb_t)); 6530 ebb->sec = sec; 6531 ebb->contents = contents; 6532 ebb->content_length = content_length; 6533 ebb->ptbl = prop_table; 6534 ebb->pte_count = ptblsize; 6535 ebb->relocs = internal_relocs 6461 ebb_t ebb; member in struct:ebb_constraint_struct 7806 ebb_t *ebb; local 7933 const ebb_t *ebb = &ebb_table->ebb; local 8108 ebb_t *ebb = &ebb_table->ebb; local 9324 ebb_t *ebb; local [all...] |