• Home
  • Raw
  • Download

Lines Matching refs:GetImmediate

812     uint64_t immediate = operand.GetImmediate();  in LogicalMacro()
925 Mov(rd, operand.GetImmediate()); in Mov()
1128 Mvn(rd, operand.GetImmediate()); in Mvn()
1160 if (operand.IsImmediate() && (operand.GetImmediate() < 0)) { in Ccmp()
1161 ConditionalCompareMacro(rn, -operand.GetImmediate(), nzcv, cond, CCMN); in Ccmp()
1173 if (operand.IsImmediate() && (operand.GetImmediate() < 0)) { in Ccmn()
1174 ConditionalCompareMacro(rn, -operand.GetImmediate(), nzcv, cond, CCMP); in Ccmn()
1194 IsImmConditionalCompare(operand.GetImmediate()))) { in ConditionalCompareMacro()
1409 if (operand.IsImmediate() && (operand.GetImmediate() < 0) && in Add()
1410 IsImmAddSub(-operand.GetImmediate())) { in Add()
1411 AddSubMacro(rd, rn, -operand.GetImmediate(), S, SUB); in Add()
1430 if (operand.IsImmediate() && (operand.GetImmediate() < 0) && in Sub()
1431 IsImmAddSub(-operand.GetImmediate())) { in Sub()
1432 AddSubMacro(rd, rn, -operand.GetImmediate(), S, ADD); in Sub()
1596 Mov(rd, -operand.GetImmediate()); in Neg()
1741 if ((operand.IsImmediate() && !IsImmAddSub(operand.GetImmediate())) || in AddSubMacro()
1761 MoveImmediateForShiftedOp(temp, operand.GetImmediate(), mode); in AddSubMacro()
2239 VIXL_ASSERT(offset.GetImmediate() >= 0); in Poke()
2249 VIXL_ASSERT(offset.GetImmediate() >= 0); in Peek()
2264 VIXL_ASSERT(size.GetImmediate() > 0); in Claim()
2266 VIXL_ASSERT((size.GetImmediate() % 16) == 0); in Claim()
2286 VIXL_ASSERT(size.GetImmediate() > 0); in Drop()
2288 VIXL_ASSERT((size.GetImmediate() % 16) == 0); in Drop()