Home
last modified time | relevance | path

Searched refs:this_reg (Results 1 – 11 of 11) sorted by relevance

/openbsd/src/gnu/usr.bin/gcc/gcc/fixinc/
Dgnu-regex.c1191 active_reg_t this_reg; \
1217 for (this_reg = lowest_active_reg; this_reg <= highest_active_reg; \
1218 this_reg++) \
1220 DEBUG_PRINT2 (" Pushing reg: %lu\n", this_reg); \
1223 DEBUG_PRINT2 (" start: %p\n", regstart[this_reg]); \
1224 PUSH_FAILURE_POINTER (regstart[this_reg]); \
1226 DEBUG_PRINT2 (" end: %p\n", regend[this_reg]); \
1227 PUSH_FAILURE_POINTER (regend[this_reg]); \
1230 reg_info[this_reg].word.pointer); \
1232 REG_MATCH_NULL_STRING_P (reg_info[this_reg])); \
[all …]
/openbsd/src/gnu/usr.bin/cvs/lib/
Dregex.c1292 int this_reg; \
1318 for (this_reg = lowest_active_reg; this_reg <= highest_active_reg; \
1319 this_reg++) \
1321 DEBUG_PRINT2 (" Pushing reg: %d\n", this_reg); \
1324 DEBUG_PRINT2 (" start: 0x%x\n", regstart[this_reg]); \
1325 PUSH_FAILURE_POINTER (regstart[this_reg]); \
1327 DEBUG_PRINT2 (" end: 0x%x\n", regend[this_reg]); \
1328 PUSH_FAILURE_POINTER (regend[this_reg]); \
1330 DEBUG_PRINT2 (" info: 0x%x\n ", reg_info[this_reg]); \
1332 REG_MATCH_NULL_STRING_P (reg_info[this_reg])); \
[all …]
/openbsd/src/gnu/lib/libiberty/src/
Dregex.c1598 active_reg_t this_reg; \
1624 for (this_reg = lowest_active_reg; this_reg <= highest_active_reg; \
1625 this_reg++) \
1627 DEBUG_PRINT2 (" Pushing reg: %lu\n", this_reg); \
1630 DEBUG_PRINT2 (" start: %p\n", regstart[this_reg]); \
1631 PUSH_FAILURE_POINTER (regstart[this_reg]); \
1633 DEBUG_PRINT2 (" end: %p\n", regend[this_reg]); \
1634 PUSH_FAILURE_POINTER (regend[this_reg]); \
1637 reg_info[this_reg].word.pointer); \
1639 REG_MATCH_NULL_STRING_P (reg_info[this_reg])); \
[all …]
/openbsd/src/gnu/usr.bin/gcc/gcc/
Dgcse.c2932 struct reg_set *this_reg; local
2934 for (this_reg = reg_set_table[regno]; this_reg; this_reg = this_reg ->next)
2935 if (BLOCK_NUM (this_reg->insn) != BLOCK_NUM (insn))
2936 SET_BIT (rd_kill[bb->index], INSN_CUID (this_reg->insn));
3370 struct reg_set *this_reg; local
3372 for (this_reg = *addr_this_reg; this_reg != 0; this_reg = this_reg->next)
3373 if (def_reaches_here_p (insn, this_reg->insn))
3377 if (GET_CODE (PATTERN (this_reg->insn)) == PARALLEL)
3381 && (GET_CODE (PATTERN (this_reg->insn)) == CLOBBER
3382 || ! rtx_equal_p (SET_SRC (PATTERN (this_reg->insn)),
[all …]
Dlocal-alloc.c2347 HARD_REG_SET this_reg; local
2349 CLEAR_HARD_REG_SET (this_reg);
2351 SET_HARD_REG_BIT (this_reg, regno + j);
2356 IOR_HARD_REG_SET (regs_live_at[birth], this_reg);
2362 AND_COMPL_HARD_REG_SET (regs_live_at[birth], this_reg);
Dglobal.c1261 HARD_REG_SET this_reg; local
1272 CLEAR_HARD_REG_SET (this_reg);
1276 SET_HARD_REG_BIT (this_reg, j);
1287 IOR_HARD_REG_SET (allocno[j].hard_reg_conflicts, this_reg);
/openbsd/src/gnu/gcc/gcc/
Dlocal-alloc.c2382 HARD_REG_SET this_reg; in post_mark_life() local
2384 CLEAR_HARD_REG_SET (this_reg); in post_mark_life()
2386 SET_HARD_REG_BIT (this_reg, regno + j); in post_mark_life()
2391 IOR_HARD_REG_SET (regs_live_at[birth], this_reg); in post_mark_life()
2397 AND_COMPL_HARD_REG_SET (regs_live_at[birth], this_reg); in post_mark_life()
Dglobal.c1347 HARD_REG_SET this_reg; in find_reg() local
1358 CLEAR_HARD_REG_SET (this_reg); in find_reg()
1362 SET_HARD_REG_BIT (this_reg, j); in find_reg()
1373 IOR_HARD_REG_SET (allocno[j].hard_reg_conflicts, this_reg); in find_reg()
/openbsd/src/gnu/usr.bin/gcc/gcc/config/rs6000/
Drs6000.c11406 const char *this_reg = local
11421 fprintf (file, "\tcal %s,%d(%s)\n", this_reg, (int) delta, this_reg);
11423 fprintf (file, "\taddi %s,%s,%d\n", this_reg, this_reg, (int) delta);
11432 asm_fprintf (file, "\t{cau|addis} %s,%s,%d\n", this_reg, this_reg,
11443 asm_fprintf (file, "\t{cau|addis} %s,%s,%d\n", this_reg, this_reg,
11447 fprintf (file, "\tcal %s,%d(%s)\n", this_reg, delta_low, this_reg);
11449 fprintf (file, "\taddi %s,%s,%d\n", this_reg, this_reg, delta_low);
/openbsd/src/gnu/usr.bin/gcc/gcc/config/i386/
Di386.c14631 rtx this_reg, tmp; local
14636 this_reg = this;
14641 xops[1] = this_reg = gen_rtx_REG (Pmode, 0);
14645 this_reg = NULL_RTX;
14651 xops[1] = this_reg ? this_reg : this;
14676 xops[0] = gen_rtx_MEM (Pmode, this_reg);
14693 xops[1] = this_reg;
14701 if (this_reg && this_reg != this)
14703 xops[0] = this_reg;
/openbsd/src/gnu/gcc/gcc/config/i386/
Di386.c17785 rtx this_reg, tmp; in x86_output_mi_thunk() local
17790 this_reg = this; in x86_output_mi_thunk()
17795 xops[1] = this_reg = gen_rtx_REG (Pmode, 0); in x86_output_mi_thunk()
17799 this_reg = NULL_RTX; in x86_output_mi_thunk()
17805 xops[1] = this_reg ? this_reg : this; in x86_output_mi_thunk()
17836 xops[0] = gen_rtx_MEM (Pmode, this_reg); in x86_output_mi_thunk()
17853 xops[1] = this_reg; in x86_output_mi_thunk()
17861 if (this_reg && this_reg != this) in x86_output_mi_thunk()
17863 xops[0] = this_reg; in x86_output_mi_thunk()