Searched defs:creg (Results 1 - 3 of 3) sorted by relevance

/external/v8/src/mips/
H A Dconstants-mips.cc114 const char* FPURegisters::Name(int creg) { argument
116 if ((0 <= creg) && (creg < kNumFPURegisters)) {
117 result = names_[creg];
135 while (aliases_[i].creg != kInvalidRegister) {
137 return aliases_[i].creg;
H A Dconstants-mips.h158 int creg; member in struct:v8::internal::FPURegisters::RegisterAlias
/external/qemu/tcg/hppa/
H A Dtcg-target.c478 static void tcg_out_vshd(TCGContext *s, int ret, int hi, int lo, int creg) argument
480 tcg_out_mtctl_sar(s, creg);
554 static void tcg_out_shl(TCGContext *s, int ret, int arg, int creg) argument
556 tcg_out_arithi(s, TCG_REG_R20, creg, 31, INSN_SUBI);
567 static void tcg_out_shr(TCGContext *s, int ret, int arg, int creg) argument
569 tcg_out_vshd(s, ret, TCG_REG_R0, arg, creg);
578 static void tcg_out_sar(TCGContext *s, int ret, int arg, int creg) argument
580 tcg_out_arithi(s, TCG_REG_R20, creg, 31, INSN_SUBI);
591 static void tcg_out_rotl(TCGContext *s, int ret, int arg, int creg) argument
593 tcg_out_arithi(s, TCG_REG_R20, creg, 3
603 tcg_out_rotr(TCGContext *s, int ret, int arg, int creg) argument
[all...]

Completed in 71 milliseconds