Searched refs:reg (Results 1 - 25 of 1023) sorted by relevance

1234567891011>>

/external/libunwind/src/mips/
H A Dregname.c40 unw_regname (unw_regnum_t reg) argument
42 if (reg < (unw_regnum_t) ARRAY_SIZE (regname))
43 return regname[reg];
44 else if (reg == UNW_MIPS_PC)
/external/llvm/test/MC/AsmParser/
H A Dmacro-irp.s3 .irp reg,%eax,%ebx
4 pushl \reg
/external/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_asm.h26 # define CFI_REL_OFFSET(reg, n) .cfi_rel_offset reg, n
27 # define CFI_DEF_CFA_REGISTER(reg) .cfi_def_cfa_register reg
28 # define CFI_RESTORE(reg) .cfi_restore reg
35 # define CFI_REL_OFFSET(reg, n)
36 # define CFI_DEF_CFA_REGISTER(reg)
37 # define CFI_RESTORE(reg)
/external/libunwind/src/arm/
H A Dregname.c84 unw_regname (unw_regnum_t reg) argument
86 if (reg < (unw_regnum_t) ARRAY_SIZE (regname))
87 return regname[reg];
/external/libunwind/src/hppa/
H A Dregname.c44 unw_regname (unw_regnum_t reg) argument
46 if (reg < (unw_regnum_t) ARRAY_SIZE (regname))
47 return regname[reg];
/external/libunwind/src/ia64/
H A Dregname.c183 unw_regname (unw_regnum_t reg) argument
185 if (reg < NREGS)
186 return regname_str + reg * regname_len;
H A Dregs.h31 rotate_gr (struct cursor *c, int reg) argument
39 if ((unsigned) (reg - 32) >= sor)
40 preg = reg;
43 preg = reg + rrb_gr; /* apply rotation */
48 Debug (15, "sor=%u rrb.gr=%u, r%d -> r%d\n", sor, rrb_gr, reg, preg);
56 rotate_fr (struct cursor *c, int reg) argument
62 if (reg < 32)
63 preg = reg; /* register not part of the rotating partition */
66 preg = reg + rrb_fr; /* apply rotation */
71 Debug (15, "rrb.fr=%u, f%d -> f%d\n", rrb_fr, reg, pre
[all...]
/external/libunwind/src/x86/
H A Dregname.c21 unw_regname (unw_regnum_t reg) argument
23 if (reg < (unw_regnum_t) ARRAY_SIZE (regname))
24 return regname[reg];
/external/libunwind/src/x86_64/
H A Dregname.c50 unw_regname (unw_regnum_t reg) argument
52 if (reg < (unw_regnum_t) ARRAY_SIZE (regname))
53 return regname[reg];
H A DGstash_frame.c37 rs->reg[DWARF_CFA_REG_COLUMN].where,
38 rs->reg[DWARF_CFA_REG_COLUMN].val,
39 rs->reg[DWARF_CFA_OFF_COLUMN].val,
41 rs->reg[RBP].where, rs->reg[RBP].val, DWARF_GET_LOC(d->loc[RBP]),
42 rs->reg[RSP].where, rs->reg[RSP].val, DWARF_GET_LOC(d->loc[RSP]));
50 && (rs->reg[DWARF_CFA_REG_COLUMN].where == DWARF_WHERE_REG)
51 && (rs->reg[DWARF_CFA_REG_COLUMN].val == RBP
52 || rs->reg[DWARF_CFA_REG_COLUM
[all...]
/external/valgrind/coregrind/m_gdbserver/
H A Dregdef.h25 struct reg struct
45 void set_register_cache (struct reg *regs, int n);
/external/libunwind/include/tdep-arm/
H A Ddwarf-config.h33 #define dwarf_to_unw_regnum(reg) (((reg) < 16) ? (reg) : 0)
/external/clang/test/Index/
H A Dget-cursor.c16 r_t reg; local
17 reg.field = 1;
/external/strace/
H A Dregs.h4 # include <sys/reg.h>
/external/libunwind/src/sh/
H A Dregname.c50 unw_regname (unw_regnum_t reg) argument
52 if (reg < (unw_regnum_t) ARRAY_SIZE (regname) && regname[reg] != NULL)
53 return regname[reg];
/external/mesa3d/src/gallium/auxiliary/tgsi/
H A Dtgsi_util.h45 const struct tgsi_src_register *reg,
51 const struct tgsi_full_src_register *reg,
56 struct tgsi_src_register *reg,
67 const struct tgsi_full_src_register *reg,
72 struct tgsi_full_src_register *reg,
H A Dtgsi_sanity.c66 scan_register_key(const scan_register *reg) argument
68 unsigned key = reg->file;
69 key |= (reg->indices[0] << 4);
70 key |= (reg->indices[1] << 18);
76 fill_scan_register1d(scan_register *reg, argument
79 reg->file = file;
80 reg->dimensions = 1;
81 reg->indices[0] = index;
82 reg->indices[1] = 0;
86 fill_scan_register2d(scan_register *reg, argument
96 scan_register_dst(scan_register *reg, struct tgsi_full_dst_register *dst) argument
114 scan_register_src(scan_register *reg, struct tgsi_full_src_register *src) argument
134 scan_register *reg = MALLOC(sizeof(scan_register)); local
143 scan_register *reg = MALLOC(sizeof(scan_register)); local
200 is_register_declared( struct sanity_check_ctx *ctx, const scan_register *reg) argument
219 scan_register *reg = (scan_register *)cso_hash_iter_data(iter); local
229 is_register_used( struct sanity_check_ctx *ctx, scan_register *reg) argument
241 is_ind_register_used( struct sanity_check_ctx *ctx, scan_register *reg) argument
266 check_register_usage( struct sanity_check_ctx *ctx, scan_register *reg, const char *name, boolean indirect_access ) argument
341 scan_register *reg = create_scan_register_dst(&inst->Dst[i]); local
352 scan_register *reg = create_scan_register_src(&inst->Src[i]); local
378 check_and_declare(struct sanity_check_ctx *ctx, scan_register *reg) argument
417 scan_register *reg = MALLOC(sizeof(scan_register)); local
422 scan_register *reg = MALLOC(sizeof(scan_register)); local
441 scan_register *reg; local
501 scan_register *reg = (scan_register *)cso_hash_iter_data(iter); local
523 scan_register *reg = (scan_register *)cso_hash_iter_data(iter); local
[all...]
/external/llvm/lib/Target/Sparc/
H A DSparcTargetStreamer.h22 /// Emit ".register <reg>, #ignore".
23 virtual void emitSparcRegisterIgnore(unsigned reg) = 0;
24 /// Emit ".register <reg>, #scratch".
25 virtual void emitSparcRegisterScratch(unsigned reg) = 0;
34 void emitSparcRegisterIgnore(unsigned reg) override;
35 void emitSparcRegisterScratch(unsigned reg) override;
44 void emitSparcRegisterIgnore(unsigned reg) override {}
45 void emitSparcRegisterScratch(unsigned reg) override {}
/external/mesa3d/src/gallium/drivers/r300/compiler/
H A Dradeon_swizzle.h48 int (*IsNative)(rc_opcode opcode, struct rc_src_register reg);
54 void (*Split)(struct rc_src_register reg, unsigned int mask, struct rc_swizzle_split * split);
/external/kernel-headers/original/uapi/linux/
H A Dadb.h10 #define ADB_WRITEREG(id, reg) (0x08 | (reg) | ((id) << 4))
11 #define ADB_READREG(id, reg) (0x0C | (reg) | ((id) << 4))
/external/libunwind/src/ppc/
H A DGget_save_loc.c30 unw_get_save_loc (unw_cursor_t *cursor, int reg, unw_save_loc_t *sloc) argument
/external/skia/tests/
H A DRTConfRegistryTest.cpp13 bool test_rt_conf_parse(SkRTConfRegistry* reg, const char* key, T* value) { argument
14 return reg->parse(key, value);
26 SkRTConfRegistry reg; local
30 test_rt_conf_parse(&reg, "nonexistent.item", &result);
/external/google-breakpad/src/common/
H A Ddwarf_cfi_to_module.cc178 unsigned reg = i; local
179 if (reg == return_address_)
183 if (reg < register_names_.size() && !register_names_[reg].empty())
184 return register_names_[reg];
186 reporter_->UnnamedRegister(entry_offset_, reg);
188 sprintf(buf, "unnamed_register%u", reg);
192 void DwarfCFIToModule::Record(Module::Address address, int reg, argument
206 entry_->initial_rules[RegisterName(reg)] = shared_rule;
209 entry_->rule_changes[address][RegisterName(reg)]
212 UndefinedRule(uint64 address, int reg) argument
218 SameValueRule(uint64 address, int reg) argument
225 OffsetRule(uint64 address, int reg, int base_register, long offset) argument
233 ValOffsetRule(uint64 address, int reg, int base_register, long offset) argument
241 RegisterRule(uint64 address, int reg, int base_register) argument
249 ExpressionRule(uint64 address, int reg, const string &expression) argument
256 ValExpressionRule(uint64 address, int reg, const string &expression) argument
269 UnnamedRegister(size_t offset, int reg) argument
276 UndefinedNotSupported(size_t offset, const string &reg) argument
285 ExpressionsNotSupported(size_t offset, const string &reg) argument
[all...]
/external/libunwind/include/tdep-aarch64/
H A Ddwarf-config.h37 #define dwarf_to_unw_regnum(reg) (((reg) <= UNW_AARCH64_V31) ? (reg) : 0)
/external/libunwind/include/tdep-hppa/
H A Ddwarf-config.h30 #define dwarf_to_unw_regnum(reg) \
31 (((reg) < DWARF_NUM_PRESERVED_REGS) ? (reg) : 0)

Completed in 1287 milliseconds

1234567891011>>