OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:pushfp
(Results
1 - 2
of
2
) sorted by null
/dalvik/vm/compiler/codegen/arm/Thumb/
Factory.cpp
906
ArmLIR *
pushFP
= (ArmLIR *) dvmCompilerNew(sizeof(ArmLIR), true);
907
pushFP
->opcode = kThumbPush;
908
pushFP
->operands[0] = 1 << r5FP;
909
setupResourceMasks(
pushFP
);
910
dvmCompilerInsertLIRBefore((LIR *) origLIR, (LIR *)
pushFP
);
/dalvik/vm/compiler/codegen/mips/Mips32/
Factory.cpp
973
MipsLIR *
pushFP
= (MipsLIR *) dvmCompilerNew(sizeof(MipsLIR), true);
974
pushFP
->opcode = kThumbPush;
975
pushFP
->operands[0] = 1 << r5FP;
976
setupResourceMasks(
pushFP
);
977
dvmCompilerInsertLIRBefore((LIR *) origLIR, (LIR *)
pushFP
);
Completed in 157 milliseconds