OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:fpr_index
(Results
1 - 7
of
7
) sorted by null
/art/runtime/arch/arm/
quick_entrypoints_cc_arm.cc
34
uint32_t
fpr_index
= 0; // Index into float registers.
local
55
fpr_double_index = std::max(fpr_double_index, RoundUp(
fpr_index
, 2));
65
// If
fpr_index
is odd then its pointing at a hole next to an existing float argument. If we
66
// encounter a float argument then pick it up from that hole. In the case
fpr_index
is even,
70
if (
fpr_index
% 2 == 0) {
71
fpr_index
= std::max(fpr_double_index,
fpr_index
);
73
if (
fpr_index
< arraysize(fp_reg_args)) {
74
fp_reg_args[
fpr_index
++] = args[arg_index];
/external/google-breakpad/src/processor/
dump_context.cc
358
for (unsigned int
fpr_index
= 0;
359
fpr_index
< MD_FLOATINGSAVEAREA_PPC_FPR_COUNT;
360
++
fpr_index
) {
362
fpr_index
, context_ppc->float_save.fpregs[
fpr_index
]);
401
for (unsigned int
fpr_index
= 0;
402
fpr_index
< MD_FLOATINGSAVEAREA_PPC_FPR_COUNT;
403
++
fpr_index
) {
405
fpr_index
, context_ppc64->float_save.fpregs[
fpr_index
]);
[
all
...]
minidump.cc
613
for (unsigned int
fpr_index
= 0;
614
fpr_index
< MD_FLOATINGSAVEAREA_PPC_FPR_COUNT;
615
++
fpr_index
) {
616
Swap(&context_ppc64->float_save.fpregs[
fpr_index
]);
707
for (unsigned int
fpr_index
= 0;
708
fpr_index
< MD_FLOATINGSAVEAREA_ARM64_FPR_COUNT;
709
++
fpr_index
) {
713
Normalize128(&context_arm64->float_save.regs[
fpr_index
], false);
714
Swap(&context_arm64->float_save.regs[
fpr_index
]);
890
for (unsigned int
fpr_index
= 0
[
all
...]
/art/compiler/jni/quick/arm/
calling_convention_arm.cc
145
uint32_t
fpr_index
= 0; // S0 ~ S15.
local
153
fpr_double_index = (std::max(fpr_double_index * 2, RoundUp(
fpr_index
, 2))) / 2;
162
if (
fpr_index
% 2 == 0) {
163
fpr_index
= std::max(fpr_double_index * 2,
fpr_index
);
165
if (
fpr_index
< arraysize(kHFSArgumentRegisters)) {
167
ArmManagedRegister::FromSRegister(kHFSArgumentRegisters[
fpr_index
++]));
/art/compiler/jni/quick/mips/
calling_convention_mips.cc
98
uint32_t
fpr_index
= 0;
local
103
if (
fpr_index
< arraysize(kDArgumentRegisters)) {
105
MipsManagedRegister::FromDRegister(kDArgumentRegisters[
fpr_index
++]));
110
if (
fpr_index
< arraysize(kFArgumentRegisters)) {
112
MipsManagedRegister::FromFRegister(kFArgumentRegisters[
fpr_index
++]));
/external/valgrind/VEX/priv/
host_s390_defs.c
63
static Int
fpr_index
[16]; // FPR regno -> register index
variable
76
Int ix =
fpr_index
[regno];
393
/* Assign invalid values to the gpr/
fpr_index
*/
396
for (UInt i = 0; i < sizeof
fpr_index
/ sizeof
fpr_index
[0]; ++i)
397
fpr_index
[i] = -1;
411
fpr_index
[regno] = ru->size;
432
for (UInt i = 0; i < sizeof
fpr_index
/ sizeof
fpr_index
[0]; ++i)
433
vassert(
fpr_index
[i] >= 0)
[
all
...]
/art/runtime/entrypoints/quick/
quick_trampoline_entrypoints.cc
579
// terms of singles, may be behind
fpr_index
.
[
all
...]
Completed in 1547 milliseconds