Lines Matching defs:bytecode

419   static uint8_t ToByte(Bytecode bytecode) {  in ToByte()
426 Bytecode bytecode = static_cast<Bytecode>(value); in FromByte() local
452 static OperandScale PrefixBytecodeToOperandScale(Bytecode bytecode) { in PrefixBytecodeToOperandScale()
467 static AccumulatorUse GetAccumulatorUse(Bytecode bytecode) { in GetAccumulatorUse()
473 static bool ReadsAccumulator(Bytecode bytecode) { in ReadsAccumulator()
478 static bool WritesAccumulator(Bytecode bytecode) { in WritesAccumulator()
483 static bool WritesBooleanToAccumulator(Bytecode bytecode) { in WritesBooleanToAccumulator()
510 static constexpr bool IsAccumulatorLoadWithoutEffects(Bytecode bytecode) { in IsAccumulatorLoadWithoutEffects()
525 static constexpr bool IsRegisterLoadWithoutEffects(Bytecode bytecode) { in IsRegisterLoadWithoutEffects()
532 static constexpr bool IsConditionalJumpImmediate(Bytecode bytecode) { in IsConditionalJumpImmediate()
539 static constexpr bool IsConditionalJumpConstant(Bytecode bytecode) { in IsConditionalJumpConstant()
546 static constexpr bool IsConditionalJump(Bytecode bytecode) { in IsConditionalJump()
552 static constexpr bool IsUnconditionalJump(Bytecode bytecode) { in IsUnconditionalJump()
559 static constexpr bool IsJumpImmediate(Bytecode bytecode) { in IsJumpImmediate()
566 static constexpr bool IsJumpConstant(Bytecode bytecode) { in IsJumpConstant()
573 static constexpr bool IsJumpIfToBoolean(Bytecode bytecode) { in IsJumpIfToBoolean()
580 static constexpr bool IsJump(Bytecode bytecode) { in IsJump()
587 static constexpr bool IsForwardJump(Bytecode bytecode) { in IsForwardJump()
592 static constexpr bool IsJumpOrReturn(Bytecode bytecode) { in IsJumpOrReturn()
599 static constexpr bool IsJumpWithoutEffects(Bytecode bytecode) { in IsJumpWithoutEffects()
605 static constexpr bool IsWithoutExternalSideEffects(Bytecode bytecode) { in IsWithoutExternalSideEffects()
612 static constexpr bool IsLdarOrStar(Bytecode bytecode) { in IsLdarOrStar()
617 static constexpr bool PutsNameInAccumulator(Bytecode bytecode) { in PutsNameInAccumulator()
622 static constexpr bool IsCallOrConstruct(Bytecode bytecode) { in IsCallOrConstruct()
633 static constexpr bool IsCallRuntime(Bytecode bytecode) { in IsCallRuntime()
640 static constexpr bool IsPrefixScalingBytecode(Bytecode bytecode) { in IsPrefixScalingBytecode()
647 static constexpr size_t ReturnCount(Bytecode bytecode) { in ReturnCount()
652 static int NumberOfOperands(Bytecode bytecode) { in NumberOfOperands()
658 static OperandType GetOperandType(Bytecode bytecode, int i) { in GetOperandType()
667 static const OperandType* GetOperandTypes(Bytecode bytecode) { in GetOperandTypes()
672 static bool OperandIsScalableSignedByte(Bytecode bytecode, in OperandIsScalableSignedByte()
679 static bool OperandIsScalableUnsignedByte(Bytecode bytecode, in OperandIsScalableUnsignedByte()
686 static bool OperandIsScalable(Bytecode bytecode, int operand_index) { in OperandIsScalable()
695 static OperandSize GetOperandSize(Bytecode bytecode, int i, in GetOperandSize()
702 static const OperandSize* GetOperandSizes(Bytecode bytecode, in GetOperandSizes()
720 static int Size(Bytecode bytecode, OperandScale operand_scale) { in Size()