Searched refs:fieldLoc (Results 1 - 5 of 5) sorted by relevance

/dalvik/vm/compiler/codegen/mips/
H A DAssemble.cpp522 switch(encoder->fieldLoc[i].kind) {
526 if (encoder->fieldLoc[i].start == 0 && encoder->fieldLoc[i].end == 31) {
529 value = (operand << encoder->fieldLoc[i].start) &
530 ((1 << (encoder->fieldLoc[i].end + 1)) - 1);
537 value = ((operand & FP_REG_MASK) << encoder->fieldLoc[i].start) &
538 ((1 << (encoder->fieldLoc[i].end + 1)) - 1);
544 value = ((operand & FP_REG_MASK) << encoder->fieldLoc[i].start) &
545 ((1 << (encoder->fieldLoc[i].end + 1)) - 1);
H A DMipsLIR.h559 /* Instruction assembly fieldLoc kind */
574 } fieldLoc[4]; member in struct:MipsEncodingMap
/dalvik/vm/compiler/codegen/arm/
H A DAssemble.cpp1083 switch(encoder->fieldLoc[i].kind) {
1087 value = ((operand & 0xF0) >> 4) << encoder->fieldLoc[i].end;
1088 value |= (operand & 0x0F) << encoder->fieldLoc[i].start;
1124 value = (operand << encoder->fieldLoc[i].start) &
1125 ((1 << (encoder->fieldLoc[i].end + 1)) - 1);
1134 encoder->fieldLoc[i].end;
1137 encoder->fieldLoc[i].start;
1145 encoder->fieldLoc[i].end;
1148 encoder->fieldLoc[i].start;
H A DArmLIR.h711 /* Instruction assembly fieldLoc kind */
736 } fieldLoc[4]; member in struct:ArmEncodingMap
/dalvik/vm/compiler/codegen/arm/Thumb2/
H A DFactory.cpp410 if (EncodingMap[opcode].fieldLoc[2].kind == kFmtShift)

Completed in 22 milliseconds