| /src/external/gpl3/gcc.old/dist/gcc/rtl-ssa/ |
| internals.h | 67 // - If register R has been defined in the current EBB, LAST_ACCESS[R + 1] 71 // LAST_ACCESS[R + 1] is the nearest dominating definition. 73 // - Otherwise, LAST_ACCESS[R + 1] is null. 77 // - If the current EBB has defined memory, LAST_ACCESS[0] is the last 80 // - Otherwise LAST_ACCESS[0] is the value of memory that is live on 83 // The exception is that while building instructions, LAST_ACCESS[I] 85 auto_vec<access_info *> last_access; member in class:rtl_ssa::function_info::build_info
|
| insns.cc | 447 access_info *access = bi.last_access[ref.regno + 1]; 501 bi.last_access[ref.regno + 1] = use; 608 def_info *def = safe_dyn_cast<def_info *> (bi.last_access[ref.regno + 1]); 649 // Restore the contents of bi.last_access, which we used as a cache 654 gcc_checking_assert (bi.last_access[regno + 1] == access); 655 bi.last_access[regno + 1] = as_a<use_info *> (access)->def ();
|
| blocks.cc | 45 last_access (num_regs + 1), 52 last_access.safe_grow_cleared (num_regs + 1); 1069 // Restore the register last_access information to the state it was 1081 bi.last_access[regno + 1] = def; 1267 gcc_assert (!bi.last_access[regno + 1]);
|
| /src/external/gpl3/gcc/dist/gcc/rtl-ssa/ |
| internals.h | 67 // - If register R has been defined in the current EBB, LAST_ACCESS[R + 1] 71 // LAST_ACCESS[R + 1] is the nearest dominating definition. 73 // - Otherwise, LAST_ACCESS[R + 1] is null. 77 // - If the current EBB has defined memory, LAST_ACCESS[0] is the last 80 // - Otherwise LAST_ACCESS[0] is the value of memory that is live on 83 // The exception is that while building instructions, LAST_ACCESS[I] 85 auto_vec<access_info *> last_access; member in class:rtl_ssa::function_info::build_info
|
| insns.cc | 460 access_info *access = bi.last_access[ref.regno + 1]; 514 bi.last_access[ref.regno + 1] = use; 628 def_info *def = safe_dyn_cast<def_info *> (bi.last_access[ref.regno + 1]); 669 // Restore the contents of bi.last_access, which we used as a cache 674 gcc_checking_assert (bi.last_access[regno + 1] == access); 675 bi.last_access[regno + 1] = as_a<use_info *> (access)->def ();
|
| blocks.cc | 45 last_access (num_regs + 1), 53 last_access.safe_grow_cleared (num_regs + 1); 1088 // Restore the register last_access information to the state it was 1100 bi.last_access[regno + 1] = def; 1296 gcc_assert (!bi.last_access[regno + 1]);
|
| /src/external/bsd/openldap/dist/contrib/slapd-modules/rbac/ |
| rbac.h | 280 long last_access; member in struct:rbac_session
|
| rbacsess.c | 399 sessp->last_access = 0;
|
| /src/external/gpl3/gcc/dist/gcc/c-family/ |
| c-omp.cc | 3788 unsigned last_access = i + 1; 3798 last_access = i + 2; 3800 = build_array_ref (loc, addr_tokens[last_access]->expr, 3808 addr_tokens[last_access]->expr); 3809 tree data_addr = omp_accessed_addr (addr_tokens, last_access, expr); 3842 unsigned last_access = i + 1; 3852 last_access = i + 2; 3854 = build_array_ref (loc, addr_tokens[last_access]->expr, 3863 = convert_from_reference (addr_tokens[last_access]->expr); 3868 tree data_addr = omp_accessed_addr (addr_tokens, last_access, expr) [all...] |
| /src/external/gpl3/gdb.old/dist/gdb/ |
| c-typeprint.c | 857 /* Output an access specifier to STREAM, if needed. LAST_ACCESS is the 862 accessibility last_access, 866 if (last_access == new_access)
|
| /src/external/gpl3/gdb/dist/gdb/ |
| c-typeprint.c | 856 /* Output an access specifier to STREAM, if needed. LAST_ACCESS is the 861 accessibility last_access, 865 if (last_access == new_access)
|
| /src/external/gpl3/gcc/dist/gcc/ |
| gimplify.cc | 11368 unsigned last_access = base_token + 1; 11370 while (last_access + 1 < addr_tokens.length () 11371 && addr_tokens[last_access + 1]->type == ACCESS_METHOD) 11372 last_access++; 11379 = addr_tokens[last_access]->u.access_kind; 11406 use_base = addr_tokens[last_access]->expr; 11411 = build_fold_indirect_ref (addr_tokens[last_access]->expr); 11420 && DECL_P (addr_tokens[last_access]->expr) 11434 tree sdecl = addr_tokens[last_access]->expr; 11459 && addr_tokens[last_access]->u.access_kind != ACCESS_REF 11365 unsigned last_access = base_token + 1; local [all...] |