OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:creg
(Results
1 - 6
of
6
) sorted by null
/external/v8/src/mips/
constants-mips.cc
114
const char* FPURegisters::Name(int
creg
) {
116
if ((0 <=
creg
) && (
creg
< kNumFPURegisters)) {
117
result = names_[
creg
];
135
while (aliases_[i].
creg
!= kInvalidRegister) {
137
return aliases_[i].
creg
;
assembler-mips.h
213
bool is(FPURegister
creg
) const { return code_ ==
creg
.code_; }
274
bool is(FPUControlRegister
creg
) const { return code_ ==
creg
.code_; }
[
all
...]
constants-mips.h
119
int
creg
;
member in struct:v8::internal::FPURegisters::RegisterAlias
/external/libffi/src/frv/
ffi.c
172
register ffi_closure *
creg
__asm__ ("gr7");
173
ffi_closure *closure =
creg
;
/external/qemu/tcg/hppa/
tcg-target.c
478
static void tcg_out_vshd(TCGContext *s, int ret, int hi, int lo, int
creg
)
480
tcg_out_mtctl_sar(s,
creg
);
554
static void tcg_out_shl(TCGContext *s, int ret, int arg, int
creg
)
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
)
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
)
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
)
593
tcg_out_arithi(s, TCG_REG_R20,
creg
, 32, INSN_SUBI)
[
all
...]
/external/v8/src/arm/
assembler-arm.h
313
bool is(CRegister
creg
) const { return code_ ==
creg
.code_; }
[
all
...]
Completed in 95 milliseconds