HomeSort by: relevance | last modified time | path
    Searched refs:EA (Results 1 - 25 of 49) sorted by relevancy

1 2

  /src/external/gpl3/binutils/dist/gprofng/src/
ABS.h 59 #define ABS_GET_RT_CODE(EA) ((EA) & 0x0FLL)
60 #define ABS_GET_PP_CODE(EA) (((EA) & 0xF0LL) / 0xF)
DataObject.cc 172 DataObject::find_dbeEA (Vaddr EA)
181 if (EA < dbeEA->eaddr)
183 else if (EA > dbeEA->eaddr)
190 dbeEA = new DbeEA (this, EA);
DataObject.h 73 DbeEA *find_dbeEA (Vaddr EA);
  /src/external/gpl3/binutils.old/dist/gprofng/src/
ABS.h 59 #define ABS_GET_RT_CODE(EA) ((EA) & 0x0FLL)
60 #define ABS_GET_PP_CODE(EA) (((EA) & 0xF0LL) / 0xF)
DataObject.cc 172 DataObject::find_dbeEA (Vaddr EA)
181 if (EA < dbeEA->eaddr)
183 else if (EA > dbeEA->eaddr)
190 dbeEA = new DbeEA (this, EA);
DataObject.h 73 DbeEA *find_dbeEA (Vaddr EA);
  /src/external/gpl3/gcc/dist/libsanitizer/hwasan/
hwasan_checks.h 27 constexpr unsigned SigTrapEncoding(ErrorAction EA, AccessType AT,
29 return 0x20 * (EA == ErrorAction::Recover) +
34 constexpr unsigned SigTrapEncoding(ErrorAction EA, AccessType AT) {
35 return SigTrapEncoding(EA, AT, 0xf);
38 template <ErrorAction EA, AccessType AT, size_t LogSize>
51 .recover = EA == ErrorAction::Recover,
60 asm("brk %1\n\t" ::"r"(x0), "n"(0x900 + SigTrapEncoding(EA, AT, LogSize)));
69 "nopl %c0(%%rax)\n" ::"n"(0x40 + SigTrapEncoding(EA, AT, LogSize)),
79 "I"(0x40 + SigTrapEncoding(EA, AT, LogSize)));
88 template <ErrorAction EA, AccessType AT
    [all...]
  /src/external/gpl3/gcc.old/dist/libsanitizer/hwasan/
hwasan_checks.h 83 template <ErrorAction EA, AccessType AT, unsigned LogSize>
90 SigTrap<0x20 * (EA == ErrorAction::Recover) +
92 if (EA == ErrorAction::Abort)
97 template <ErrorAction EA, AccessType AT>
108 SigTrap<0x20 * (EA == ErrorAction::Recover) +
110 if (EA == ErrorAction::Abort)
118 SigTrap<0x20 * (EA == ErrorAction::Recover) +
120 if (EA == ErrorAction::Abort)
  /src/external/gpl3/gdb/dist/sim/ppc/
powerpc.igen 1730 unsigned_word EA;
1733 EA = b + EXTS(D);
1734 *rT = MEM(unsigned, EA, 1);
1744 unsigned_word EA;
1747 EA = b + *rB;
1748 *rT = MEM(unsigned, EA, 1);
1756 unsigned_word EA;
1760 EA = *rA + EXTS(D);
1761 *rT = MEM(unsigned, EA, 1);
1762 *rA = EA;
    [all...]
idecode_fields.h 46 #define real_addr(EA, IS_READ) vm_real_data_addr(cpu_data_map(processor), \
47 EA, \
idecode_expression.h 37 fields in the instruction (OE, EA, Rc) the compiler has sufficient
303 #define MEM(SIGN, EA, NR_BYTES) \
304 ((SIGN##_##NR_BYTES) vm_data_map_read_##NR_BYTES(cpu_data_map(processor), EA, \
307 #define STORE(EA, NR_BYTES, VAL) \
309 vm_data_map_write_##NR_BYTES(cpu_data_map(processor), EA, VAL, \
  /src/external/gpl3/gdb.old/dist/sim/ppc/
powerpc.igen 1730 unsigned_word EA;
1733 EA = b + EXTS(D);
1734 *rT = MEM(unsigned, EA, 1);
1744 unsigned_word EA;
1747 EA = b + *rB;
1748 *rT = MEM(unsigned, EA, 1);
1756 unsigned_word EA;
1760 EA = *rA + EXTS(D);
1761 *rT = MEM(unsigned, EA, 1);
1762 *rA = EA;
    [all...]
idecode_fields.h 46 #define real_addr(EA, IS_READ) vm_real_data_addr(cpu_data_map(processor), \
47 EA, \
idecode_expression.h 37 fields in the instruction (OE, EA, Rc) the compiler has sufficient
303 #define MEM(SIGN, EA, NR_BYTES) \
304 ((SIGN##_##NR_BYTES) vm_data_map_read_##NR_BYTES(cpu_data_map(processor), EA, \
307 #define STORE(EA, NR_BYTES, VAL) \
309 vm_data_map_write_##NR_BYTES(cpu_data_map(processor), EA, VAL, \
  /src/external/gpl3/gdb/dist/sim/mn10300/
mn10300-sim.h 184 #define IMEM8(EA) \
185 (sim_core_read_aligned_1(STATE_CPU (SD, 0), EA, exec_map, (EA)))
187 #define IMEM8_IMMED(EA, N) \
188 (sim_core_read_aligned_1(STATE_CPU (SD, 0), EA, exec_map, (EA) + (N)))
  /src/external/gpl3/gdb.old/dist/sim/mn10300/
mn10300-sim.h 184 #define IMEM8(EA) \
185 (sim_core_read_aligned_1(STATE_CPU (SD, 0), EA, exec_map, (EA)))
187 #define IMEM8_IMMED(EA, N) \
188 (sim_core_read_aligned_1(STATE_CPU (SD, 0), EA, exec_map, (EA) + (N)))
  /src/usr.sbin/gspa/gspa/
gsp_act.c 49 (op->type == EA && op->mode >= M_INDEX) )
112 o->type = EA;
126 o->type = EA;
gsp_ass.h 93 char mode; /* EA mode */
105 #define EA 4 /* effective address */
gsp_inst.c 97 #define EAREG (REG|EA)
98 #define EXAREG (REG|EXPR|EA)
434 || ((op)->type == EA && (op)->mode != M_ABSOLUTE))
436 || ((op)->type == EA && (op)->mode >= M_INDEX))
  /src/external/apache2/llvm/dist/llvm/tools/llvm-xray/
xray-graph.cpp 249 auto &EA = G[EI];
250 EA.Timings.push_back(D);
251 updateStat(EA.S, D);
259 auto &EA = G[EI];
260 EA.Timings.push_back(D);
261 updateStat(EA.S, D);
  /src/external/mpl/dhcp/dist/contrib/ms2isc/
ms2isc.pl 486 my ($SA, $EA, @ER);
488 $EA = unpack("L", $EndAddress);
498 $InclusionRanges[1] = $EA;
508 ($ER[$i+1] != $EA)) {
510 $InclusionRanges[$#InclusionRanges+1] = $EA;
  /src/external/gpl3/gdb/dist/sim/v850/
v850-sim.h 378 #define IMEM16(EA) \
379 sim_core_read_aligned_2 (CPU, PC, exec_map, (EA))
381 #define IMEM16_IMMED(EA,N) \
383 PC, exec_map, (EA) + (N) * 2)
  /src/external/gpl3/gdb.old/dist/sim/v850/
v850-sim.h 378 #define IMEM16(EA) \
379 sim_core_read_aligned_2 (CPU, PC, exec_map, (EA))
381 #define IMEM16_IMMED(EA,N) \
383 PC, exec_map, (EA) + (N) * 2)
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaConcept.cpp 979 const Expr *EA = A.ConstraintExpr, *EB = B.ConstraintExpr;
980 if (EA == EB)
986 EA->Profile(IDA, Context, /*Cannonical=*/true);
991 AmbiguousAtomic1 = EA;
  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
X86RecognizableInstr.h 69 MAP(EA, 106) \

Completed in 43 milliseconds

1 2