Lines Matching defs:bytecode
492 static uint8_t ToByte(Bytecode bytecode) { in ToByte()
499 Bytecode bytecode = static_cast<Bytecode>(value); in FromByte() local
524 static OperandScale PrefixBytecodeToOperandScale(Bytecode bytecode) { in PrefixBytecodeToOperandScale()
538 static AccumulatorUse GetAccumulatorUse(Bytecode bytecode) { in GetAccumulatorUse()
544 static bool ReadsAccumulator(Bytecode bytecode) { in ReadsAccumulator()
549 static bool WritesAccumulator(Bytecode bytecode) { in WritesAccumulator()
555 static constexpr bool IsAccumulatorLoadWithoutEffects(Bytecode bytecode) { in IsAccumulatorLoadWithoutEffects()
570 static constexpr bool IsCompareWithoutEffects(Bytecode bytecode) { in IsCompareWithoutEffects()
579 static constexpr bool IsRegisterLoadWithoutEffects(Bytecode bytecode) { in IsRegisterLoadWithoutEffects()
586 static constexpr bool IsConditionalJumpImmediate(Bytecode bytecode) { in IsConditionalJumpImmediate()
593 static constexpr bool IsConditionalJumpConstant(Bytecode bytecode) { in IsConditionalJumpConstant()
600 static constexpr bool IsConditionalJump(Bytecode bytecode) { in IsConditionalJump()
606 static constexpr bool IsUnconditionalJump(Bytecode bytecode) { in IsUnconditionalJump()
613 static constexpr bool IsJumpImmediate(Bytecode bytecode) { in IsJumpImmediate()
620 static constexpr bool IsJumpConstant(Bytecode bytecode) { in IsJumpConstant()
627 static constexpr bool IsJumpIfToBoolean(Bytecode bytecode) { in IsJumpIfToBoolean()
634 static constexpr bool IsJump(Bytecode bytecode) { in IsJump()
641 static constexpr bool IsForwardJump(Bytecode bytecode) { in IsForwardJump()
649 static constexpr bool IsJumpWithoutEffects(Bytecode bytecode) { in IsJumpWithoutEffects()
655 static constexpr bool IsSwitch(Bytecode bytecode) { in IsSwitch()
662 static constexpr bool IsWithoutExternalSideEffects(Bytecode bytecode) { in IsWithoutExternalSideEffects()
670 static constexpr bool IsLdarOrStar(Bytecode bytecode) { in IsLdarOrStar()
675 static constexpr bool IsCallOrConstruct(Bytecode bytecode) { in IsCallOrConstruct()
693 static constexpr bool IsCallRuntime(Bytecode bytecode) { in IsCallRuntime()
702 static constexpr bool IsOneShotBytecode(Bytecode bytecode) { in IsOneShotBytecode()
709 static constexpr bool IsPrefixScalingBytecode(Bytecode bytecode) { in IsPrefixScalingBytecode()
716 static constexpr bool Returns(Bytecode bytecode) { in Returns()
723 static int NumberOfOperands(Bytecode bytecode) { in NumberOfOperands()
729 static OperandType GetOperandType(Bytecode bytecode, int i) { in GetOperandType()
738 static const OperandType* GetOperandTypes(Bytecode bytecode) { in GetOperandTypes()
743 static bool OperandIsScalableSignedByte(Bytecode bytecode, in OperandIsScalableSignedByte()
750 static bool OperandIsScalableUnsignedByte(Bytecode bytecode, in OperandIsScalableUnsignedByte()
757 static bool OperandIsScalable(Bytecode bytecode, int operand_index) { in OperandIsScalable()
766 static OperandSize GetOperandSize(Bytecode bytecode, int i, in GetOperandSize()
773 static const OperandSize* GetOperandSizes(Bytecode bytecode, in GetOperandSizes()
791 static int Size(Bytecode bytecode, OperandScale operand_scale) { in Size()
810 static ConvertReceiverMode GetReceiverMode(Bytecode bytecode) { in GetReceiverMode()