Home
last modified time | relevance | path

Searched refs:FIRST_STACK_REG (Results 1 – 21 of 21) sorted by relevance

/openbsd-src/gnu/gcc/gcc/
H A Dreg-stack.c188 #define REG_STACK_SIZE (LAST_STACK_REG - FIRST_STACK_REG + 1)
240 FP_mode_reg[LAST_STACK_REG+1-FIRST_STACK_REG][(int) MAX_MACHINE_MODE];
243 (FP_mode_reg[(regno)-FIRST_STACK_REG][(int) (mode)])
380 temp_stack.reg[top] = FIRST_STACK_REG + temp_stack.top - top; in straighten_stack()
557 for (i = FIRST_STACK_REG; i < LAST_STACK_REG + 1; i++) in check_asm_stack_operands()
593 for (i = FIRST_STACK_REG; i < LAST_STACK_REG + 1; i++) in check_asm_stack_operands()
698 gcc_assert (regno >= FIRST_STACK_REG); in replace_reg()
745 return i >= 0 ? (FIRST_STACK_REG + regstack->top - i) : -1; in get_hard_regnum()
779 gcc_assert (hard_regno >= FIRST_STACK_REG); in emit_pop_insn()
782 FP_MODE_REG (FIRST_STACK_REG, DFmode)); in emit_pop_insn()
[all …]
H A Dsched-deps.c852 if (regno >= FIRST_STACK_REG && regno <= LAST_STACK_REG) in sched_analyze_1()
855 if (regno != FIRST_STACK_REG) in sched_analyze_1()
856 sched_analyze_reg (deps, FIRST_STACK_REG, mode, code, insn); in sched_analyze_1()
857 sched_analyze_reg (deps, FIRST_STACK_REG, mode, USE, insn); in sched_analyze_1()
972 if (regno >= FIRST_STACK_REG && regno <= LAST_STACK_REG) in sched_analyze_2()
975 if (regno != FIRST_STACK_REG) in sched_analyze_2()
976 sched_analyze_reg (deps, FIRST_STACK_REG, mode, USE, insn); in sched_analyze_2()
977 sched_analyze_reg (deps, FIRST_STACK_REG, mode, SET, insn); in sched_analyze_2()
H A Dstruct-equiv.c396 && (IN_RANGE (x_regno, FIRST_STACK_REG, LAST_STACK_REG) in rtx_equiv_p()
397 || IN_RANGE (y_regno, FIRST_STACK_REG, LAST_STACK_REG))) in rtx_equiv_p()
1007 for (rn = FIRST_STACK_REG; rn <= LAST_STACK_REG; rn++) in struct_equiv_init()
H A Dpostreload-gcse.c760 && (REGNO (dest) < FIRST_STACK_REG || REGNO (dest) > LAST_STACK_REG) in hash_scan_set()
778 && (REGNO (src) < FIRST_STACK_REG || REGNO (src) > LAST_STACK_REG) in hash_scan_set()
H A Dglobal.c781 for (ax = FIRST_STACK_REG; ax <= LAST_STACK_REG; ax++) in global_conflicts()
1288 || regno < FIRST_STACK_REG || regno > LAST_STACK_REG) in find_reg()
2422 for (i = FIRST_STACK_REG; i <= LAST_STACK_REG; i++) in modify_reg_pav()
H A Dflow.c2990 || !IN_RANGE (REGNO (reg), FIRST_STACK_REG, in mark_set_1()
3009 || !IN_RANGE (REGNO (reg), FIRST_STACK_REG, in mark_set_1()
3074 || !IN_RANGE (REGNO (reg), FIRST_STACK_REG, LAST_STACK_REG)) in mark_set_1()
3844 || !IN_RANGE (REGNO (reg), FIRST_STACK_REG, LAST_STACK_REG)) in mark_used_reg()
4581 FIRST_STACK_REG, LAST_STACK_REG)) in count_or_remove_death_notes_bb()
H A Drtl-factoring.c470 for (reg = FIRST_STACK_REG; reg <= LAST_STACK_REG; reg++) in collect_pattern_seqs()
H A Ddf-problems.c2507 for (i = FIRST_STACK_REG; i <= LAST_STACK_REG; i++) in df_urec_local_compute()
3205 && IN_RANGE (regno, FIRST_STACK_REG, LAST_STACK_REG)); in df_ignore_stack_reg()
/openbsd-src/gnu/usr.bin/gcc/gcc/
H A Dreg-stack.c182 #define REG_STACK_SIZE (LAST_STACK_REG - FIRST_STACK_REG + 1)
227 FP_mode_reg[LAST_STACK_REG+1-FIRST_STACK_REG][(int) MAX_MACHINE_MODE];
230 (FP_mode_reg[(regno)-FIRST_STACK_REG][(int) (mode)])
377 temp_stack.reg[top] = FIRST_STACK_REG + temp_stack.top - top;
431 for (i = FIRST_STACK_REG; i <= LAST_STACK_REG; i++)
458 for (i = FIRST_STACK_REG; i <= LAST_STACK_REG; i++)
695 for (i = FIRST_STACK_REG; i < LAST_STACK_REG + 1; i++)
731 for (i = FIRST_STACK_REG; i < LAST_STACK_REG + 1; i++)
846 if (regno < FIRST_STACK_REG || regno > LAST_STACK_REG
903 return i >= 0 ? (FIRST_STACK_REG + regstack->top - i) : -1;
[all …]
H A Dglobal.c719 for (ax = FIRST_STACK_REG; ax <= LAST_STACK_REG; ax++) in global_conflicts()
1220 || regno < FIRST_STACK_REG || regno > LAST_STACK_REG)
H A Dra-build.c2317 for (j = FIRST_STACK_REG; j <= LAST_STACK_REG; j++)
/openbsd-src/gnu/gcc/gcc/config/i386/
H A Dlynx.h55 : ((n) >= FIRST_STACK_REG && (n) <= LAST_STACK_REG) ? (n) + 8 \
H A Di386.h957 #define FIRST_STACK_REG FIRST_FLOAT_REG macro
1193 #define FP_REGNO_P(N) ((N) >= FIRST_STACK_REG && (N) <= LAST_STACK_REG)
1216 REGNO (XOP) >= FIRST_STACK_REG && \
1221 #define STACK_TOP_P(XOP) (REG_P (XOP) && REGNO (XOP) == FIRST_STACK_REG)
2224 ((SRC) < FIRST_STACK_REG || (SRC) > LAST_STACK_REG)
H A Di386-interix.h322 : ((n) >= FIRST_STACK_REG && (n) <= LAST_STACK_REG) ? (n)+8 \
H A Di386.c3376 return gen_rtx_REG (mode, FIRST_STACK_REG); in construct_container()
3388 return gen_rtx_REG (XFmode, FIRST_STACK_REG); in construct_container()
8807 int stack_top_dies = find_regno_note (insn, REG_DEAD, FIRST_STACK_REG) != 0; in output_fix_trunc()
8850 case FIRST_STACK_REG + 0: return ".word\t0xc0df"; in output_387_ffreep()
8851 case FIRST_STACK_REG + 1: return ".word\t0xc1df"; in output_387_ffreep()
8852 case FIRST_STACK_REG + 2: return ".word\t0xc2df"; in output_387_ffreep()
8853 case FIRST_STACK_REG + 3: return ".word\t0xc3df"; in output_387_ffreep()
8854 case FIRST_STACK_REG + 4: return ".word\t0xc4df"; in output_387_ffreep()
8855 case FIRST_STACK_REG + 5: return ".word\t0xc5df"; in output_387_ffreep()
8856 case FIRST_STACK_REG + 6: return ".word\t0xc6df"; in output_387_ffreep()
[all …]
/openbsd-src/gnu/usr.bin/gcc/gcc/config/i386/
H A Di386-interix.h308 : ((n) >= FIRST_STACK_REG && (n) <= LAST_STACK_REG) ? (n)+8 \
H A Di386.h1105 #define FIRST_STACK_REG FIRST_FLOAT_REG macro
1348 #define FP_REGNO_P(N) ((N) >= FIRST_STACK_REG && (N) <= LAST_STACK_REG)
1368 REGNO (XOP) >= FIRST_STACK_REG && \
1373 #define STACK_TOP_P(XOP) (REG_P (XOP) && REGNO (XOP) == FIRST_STACK_REG)
3511 ((SRC) < FIRST_STACK_REG || (SRC) > LAST_STACK_REG)
H A Di386.c2099 return gen_rtx_REG (mode, FIRST_STACK_REG);
2111 return gen_rtx_REG (TFmode, FIRST_STACK_REG);
2121 return gen_rtx_REG (TCmode, FIRST_STACK_REG);
7694 int stack_top_dies = find_regno_note (insn, REG_DEAD, FIRST_STACK_REG) != 0;
7756 stack_top_dies = find_regno_note (insn, REG_DEAD, FIRST_STACK_REG) != 0;
7761 && REGNO (cmp_op1) != FIRST_STACK_REG)
14527 for (i = FIRST_STACK_REG; i <= LAST_STACK_REG; i++) in x86_order_regs_for_local_alloc()
14538 for (i = FIRST_STACK_REG; i <= LAST_STACK_REG; i++) in x86_order_regs_for_local_alloc()
/openbsd-src/gnu/usr.bin/gcc/gcc/doc/
H A Dtm.texi2176 @findex FIRST_STACK_REG
2177 @item FIRST_STACK_REG
/openbsd-src/gnu/gcc/gcc/doc/
H A Dtm.texi2192 @defmac FIRST_STACK_REG
H A Dgccint.info20831 -- Macro: FIRST_STACK_REG
32418 * FIRST_STACK_REG: Stack Registers. (line 23)