HomeSort by: relevance | last modified time | path
    Searched defs:pseudo (Results 1 - 17 of 17) sorted by relevancy

  /src/usr.sbin/gspa/gspa/
gsp_pseu.c 42 pseudo(int code, operand ops) function
  /src/external/bsd/elftoolchain/dist/libdwarf/
libdwarf_reloc.c 141 int pseudo; local
162 pseudo = 1;
164 pseudo = 0;
168 if (_dwarf_section_init(dbg, &drs->drs_ds, name, pseudo, error) !=
  /src/external/gpl3/gcc/dist/libgcc/config/arm/
unwind-arm.c 67 /* Holds value of pseudo registers eg. PAC. */
89 struct pseudo_regs pseudo; member in struct:__anon14224
189 *(_uw *) valuep = vrs->pseudo.pac;
224 vrs->pseudo.pac = *(_uw *) valuep;
272 vrs->pseudo.pac = *(ptr++);
  /src/external/gpl3/gcc/dist/gcc/cp/
rtti.cc 334 tree pseudo = TYPE_MAIN_VARIANT (get_tinfo_desc (TK_TYPE_INFO_TYPE)->type);
339 if (! TYPE_ALIAS_SET_KNOWN_P (pseudo))
340 TYPE_ALIAS_SET (pseudo) = get_alias_set (real);
342 gcc_assert (TYPE_ALIAS_SET (pseudo) == get_alias_set (real));
1250 /* Return the index of a pseudo type info type node used to describe
1356 /* First field is the pseudo type_info base class. */
1477 /* Generate the pseudo type name. */
1488 /* Create the pseudo type. */
1507 /* Return an identifying index for the pseudo type_info TYPE.
332 tree pseudo = TYPE_MAIN_VARIANT (get_tinfo_desc (TK_TYPE_INFO_TYPE)->type); local
  /src/external/gpl3/gcc.old/dist/gcc/cp/
rtti.cc 334 tree pseudo = TYPE_MAIN_VARIANT (get_tinfo_desc (TK_TYPE_INFO_TYPE)->type);
339 if (! TYPE_ALIAS_SET_KNOWN_P (pseudo))
340 TYPE_ALIAS_SET (pseudo) = get_alias_set (real);
342 gcc_assert (TYPE_ALIAS_SET (pseudo) == get_alias_set (real));
1246 /* Return the index of a pseudo type info type node used to describe
1352 /* First field is the pseudo type_info base class. */
1473 /* Generate the pseudo type name. */
1484 /* Create the pseudo type. */
1503 /* Return an identifying index for the pseudo type_info TYPE.
332 tree pseudo = TYPE_MAIN_VARIANT (get_tinfo_desc (TK_TYPE_INFO_TYPE)->type); local
  /src/external/gpl3/gcc/dist/gcc/config/pdp11/
pdp11.cc 699 const char *pseudo = "\t.ascii\t";
706 pseudo = "\t.asciz\t";
709 fputs (pseudo, file);
695 const char *pseudo = "\\t.ascii\\t"; local
  /src/external/gpl3/gcc.old/dist/gcc/config/pdp11/
pdp11.cc 699 const char *pseudo = "\t.ascii\t";
706 pseudo = "\t.asciz\t";
709 fputs (pseudo, file);
695 const char *pseudo = "\\t.ascii\\t"; local
  /src/external/gpl3/gcc/dist/gcc/
function.cc 31 but it can also be done in the reload pass when a pseudo-register does
1268 rtx pseudo;
1279 /* If a pseudo represents an initial hard reg (or expression), return
1292 if (rtx_equal_p (ivs->entries[i].pseudo, reg))
1298 /* Make sure that there's a pseudo register of mode MODE that stores the
1299 initial value of hard register REGNO. Return an rtx for such a pseudo. */
1329 ivs->entries[ivs->num_entries].pseudo = gen_reg_rtx (mode);
1331 return ivs->entries[ivs->num_entries++].pseudo;
1334 /* See if get_hard_reg_initial_val has been used to create a pseudo
1336 the associated pseudo if so, otherwise return NULL. *
1259 rtx pseudo; variable
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/config/tilegx/
tilegx.cc 5476 bool pseudo = !strcmp (code, "pseudo");
5492 strcpy (buf, pseudo ? "" : code);
5500 return pseudo ? "" : code;
5465 bool pseudo = !strcmp (code, "pseudo"); local
  /src/external/gpl3/gcc.old/dist/gcc/config/tilepro/
tilepro.cc 4875 bool pseudo = !strcmp (code, "pseudo");
4891 strcpy (buf, pseudo ? "" : code);
4899 return pseudo ? "" : code;
4864 bool pseudo = !strcmp (code, "pseudo"); local
  /src/external/gpl3/gcc.old/dist/gcc/
function.cc 31 but it can also be done in the reload pass when a pseudo-register does
1266 rtx pseudo;
1277 /* If a pseudo represents an initial hard reg (or expression), return
1290 if (rtx_equal_p (ivs->entries[i].pseudo, reg))
1296 /* Make sure that there's a pseudo register of mode MODE that stores the
1297 initial value of hard register REGNO. Return an rtx for such a pseudo. */
1327 ivs->entries[ivs->num_entries].pseudo = gen_reg_rtx (mode);
1329 return ivs->entries[ivs->num_entries++].pseudo;
1332 /* See if get_hard_reg_initial_val has been used to create a pseudo
1334 the associated pseudo if so, otherwise return NULL. *
1257 rtx pseudo; variable
    [all...]
  /src/external/gpl3/gdb/dist/gdb/
mep-tdep.c 639 #define IS_PSEUDO_REGNUM(n) (IN_SET (PSEUDO, (n)))
660 int pseudo;
727 /* Verify that the raw and pseudo ranges have matching sizes. */
737 gdb_assert (r->pseudo == MEP_FIRST_CSR_REGNUM + i);
741 /* Set up the initial raw<->pseudo mappings. */
748 /* Add the CSR raw<->pseudo mappings. */
753 mep_raw_to_pseudo[r->raw] = r->pseudo;
754 mep_pseudo_to_raw[r->pseudo] = r->raw;
757 /* Add the CR raw<->pseudo mappings. */
766 /* Truly, the raw->pseudo mapping depends on the current module
657 int pseudo; member in struct:mep_csr_register
780 int pseudo = MEP_FIRST_CCR_REGNUM + i; local
    [all...]
mips-tdep.c 662 range of user visible register numbers are the pseudo-registers.
667 configured to be 64-bits wide, while the pseudo registers are
669 sees - the pseudo registers - match the users expectations
708 int pseudo = regnum / gdbarch_num_regs (gdbarch); local
710 return pseudo;
719 return float_p && pseudo;
721 return vector_p && pseudo;
723 return (!vector_p && !float_p) && pseudo;
724 /* Save the pseudo registers. Need to make certain that any code
726 pseudo registers. *
744 int pseudo = regnum \/ gdbarch_num_regs (gdbarch); local
    [all...]
  /src/external/gpl3/gdb.old/dist/gdb/
mep-tdep.c 639 #define IS_PSEUDO_REGNUM(n) (IN_SET (PSEUDO, (n)))
660 int pseudo;
727 /* Verify that the raw and pseudo ranges have matching sizes. */
737 gdb_assert (r->pseudo == MEP_FIRST_CSR_REGNUM + i);
741 /* Set up the initial raw<->pseudo mappings. */
748 /* Add the CSR raw<->pseudo mappings. */
753 mep_raw_to_pseudo[r->raw] = r->pseudo;
754 mep_pseudo_to_raw[r->pseudo] = r->raw;
757 /* Add the CR raw<->pseudo mappings. */
766 /* Truly, the raw->pseudo mapping depends on the current module
657 int pseudo; member in struct:mep_csr_register
780 int pseudo = MEP_FIRST_CCR_REGNUM + i; local
    [all...]
mips-tdep.c 662 range of user visible register numbers are the pseudo-registers.
667 configured to be 64-bits wide, while the pseudo registers are
669 sees - the pseudo registers - match the users expectations
708 int pseudo = regnum / gdbarch_num_regs (gdbarch); local
710 return pseudo;
719 return float_p && pseudo;
721 return vector_p && pseudo;
723 return (!vector_p && !float_p) && pseudo;
724 /* Save the pseudo registers. Need to make certain that any code
726 pseudo registers. *
744 int pseudo = regnum \/ gdbarch_num_regs (gdbarch); local
    [all...]
  /src/external/gpl3/gcc/dist/gcc/config/nvptx/
nvptx.cc 1897 /* Construct the call insn, including a USE for each argument pseudo
3910 edges arrive at pseudo-node Ai and the outgoing edges leave at
3911 pseudo-node Ao. We have to remember which way we arrived at a
3916 /* Lowest numbered pseudo-node reached via a backedge from thsis
3967 const pseudo_node_t &pseudo = child->brackets[ix].back;
3969 child->node, pseudo.first ? pseudo.first->index : 0,
3970 pseudo.second);
3984 /* Remove brackets that terminate at PSEUDO. */
3987 bb_sese::remove (const pseudo_node_t &pseudo)
3962 const pseudo_node_t &pseudo = child->brackets[ix].back; local
    [all...]
  /src/external/gpl3/gcc.old/dist/gcc/config/nvptx/
nvptx.cc 1887 /* Construct the call insn, including a USE for each argument pseudo
3894 edges arrive at pseudo-node Ai and the outgoing edges leave at
3895 pseudo-node Ao. We have to remember which way we arrived at a
3900 /* Lowest numbered pseudo-node reached via a backedge from thsis
3951 const pseudo_node_t &pseudo = child->brackets[ix].back;
3953 child->node, pseudo.first ? pseudo.first->index : 0,
3954 pseudo.second);
3968 /* Remove brackets that terminate at PSEUDO. */
3971 bb_sese::remove (const pseudo_node_t &pseudo)
3946 const pseudo_node_t &pseudo = child->brackets[ix].back; local
    [all...]

Completed in 78 milliseconds