• Home
  • Raw
  • Download

Lines Matching defs:bytecode

579   static uint8_t ToByte(Bytecode bytecode) {  in ToByte()
586 Bytecode bytecode = static_cast<Bytecode>(value); in FromByte() local
611 static OperandScale PrefixBytecodeToOperandScale(Bytecode bytecode) { in PrefixBytecodeToOperandScale()
625 static ImplicitRegisterUse GetImplicitRegisterUse(Bytecode bytecode) { in GetImplicitRegisterUse()
631 static bool ReadsAccumulator(Bytecode bytecode) { in ReadsAccumulator()
636 static bool WritesAccumulator(Bytecode bytecode) { in WritesAccumulator()
643 static bool WritesImplicitRegister(Bytecode bytecode) { in WritesImplicitRegister()
650 static constexpr bool IsAccumulatorLoadWithoutEffects(Bytecode bytecode) { in IsAccumulatorLoadWithoutEffects()
658 static constexpr bool IsCompareWithoutEffects(Bytecode bytecode) { in IsCompareWithoutEffects()
664 static constexpr bool IsShortStar(Bytecode bytecode) { in IsShortStar()
669 static constexpr bool IsAnyStar(Bytecode bytecode) { in IsAnyStar()
675 static constexpr bool IsRegisterLoadWithoutEffects(Bytecode bytecode) { in IsRegisterLoadWithoutEffects()
682 static constexpr bool IsConditionalJumpImmediate(Bytecode bytecode) { in IsConditionalJumpImmediate()
689 static constexpr bool IsConditionalJumpConstant(Bytecode bytecode) { in IsConditionalJumpConstant()
696 static constexpr bool IsConditionalJump(Bytecode bytecode) { in IsConditionalJump()
702 static constexpr bool IsUnconditionalJump(Bytecode bytecode) { in IsUnconditionalJump()
709 static constexpr bool IsJumpImmediate(Bytecode bytecode) { in IsJumpImmediate()
716 static constexpr bool IsJumpConstant(Bytecode bytecode) { in IsJumpConstant()
723 static constexpr bool IsJumpIfToBoolean(Bytecode bytecode) { in IsJumpIfToBoolean()
730 static constexpr bool IsJump(Bytecode bytecode) { in IsJump()
737 static constexpr bool IsForwardJump(Bytecode bytecode) { in IsForwardJump()
745 static constexpr bool IsJumpWithoutEffects(Bytecode bytecode) { in IsJumpWithoutEffects()
751 static constexpr bool IsSwitch(Bytecode bytecode) { in IsSwitch()
758 static constexpr bool IsWithoutExternalSideEffects(Bytecode bytecode) { in IsWithoutExternalSideEffects()
766 static constexpr bool IsLdarOrStar(Bytecode bytecode) { in IsLdarOrStar()
771 static constexpr bool IsCallOrConstruct(Bytecode bytecode) { in IsCallOrConstruct()
788 static constexpr bool IsCallRuntime(Bytecode bytecode) { in IsCallRuntime()
795 static constexpr bool IsPrefixScalingBytecode(Bytecode bytecode) { in IsPrefixScalingBytecode()
802 static constexpr bool Returns(Bytecode bytecode) { in Returns()
809 static constexpr bool UnconditionallyThrows(Bytecode bytecode) { in UnconditionallyThrows()
816 static int NumberOfOperands(Bytecode bytecode) { in NumberOfOperands()
822 static OperandType GetOperandType(Bytecode bytecode, int i) { in GetOperandType()
831 static const OperandType* GetOperandTypes(Bytecode bytecode) { in GetOperandTypes()
836 static bool OperandIsScalableSignedByte(Bytecode bytecode, in OperandIsScalableSignedByte()
843 static bool OperandIsScalableUnsignedByte(Bytecode bytecode, in OperandIsScalableUnsignedByte()
850 static bool OperandIsScalable(Bytecode bytecode, int operand_index) { in OperandIsScalable()
859 static OperandSize GetOperandSize(Bytecode bytecode, int i, in GetOperandSize()
866 static const OperandSize* GetOperandSizes(Bytecode bytecode, in GetOperandSizes()
884 static int Size(Bytecode bytecode, OperandScale operand_scale) { in Size()
903 static ConvertReceiverMode GetReceiverMode(Bytecode bytecode) { in GetReceiverMode()