• Home
  • Raw
  • Download

Lines Matching defs:bytecode

329   static uint8_t ToByte(Bytecode bytecode) {  in ToByte()
336 Bytecode bytecode = static_cast<Bytecode>(value); in FromByte() local
362 static OperandScale PrefixBytecodeToOperandScale(Bytecode bytecode) { in PrefixBytecodeToOperandScale()
377 static AccumulatorUse GetAccumulatorUse(Bytecode bytecode) { in GetAccumulatorUse()
383 static bool ReadsAccumulator(Bytecode bytecode) { in ReadsAccumulator()
389 static bool WritesAccumulator(Bytecode bytecode) { in WritesAccumulator()
395 static bool WritesBooleanToAccumulator(Bytecode bytecode) { in WritesBooleanToAccumulator()
419 static CONSTEXPR bool IsAccumulatorLoadWithoutEffects(Bytecode bytecode) { in IsAccumulatorLoadWithoutEffects()
432 static CONSTEXPR bool IsRegisterLoadWithoutEffects(Bytecode bytecode) { in IsRegisterLoadWithoutEffects()
439 static CONSTEXPR bool IsConditionalJumpImmediate(Bytecode bytecode) { in IsConditionalJumpImmediate()
451 static CONSTEXPR bool IsConditionalJumpConstant(Bytecode bytecode) { in IsConditionalJumpConstant()
463 static CONSTEXPR bool IsConditionalJump(Bytecode bytecode) { in IsConditionalJump()
470 static CONSTEXPR bool IsJumpImmediate(Bytecode bytecode) { in IsJumpImmediate()
477 static CONSTEXPR bool IsJumpConstant(Bytecode bytecode) { in IsJumpConstant()
484 static CONSTEXPR bool IsJumpIfToBoolean(Bytecode bytecode) { in IsJumpIfToBoolean()
493 static CONSTEXPR bool IsJump(Bytecode bytecode) { in IsJump()
498 static CONSTEXPR bool IsJumpOrReturn(Bytecode bytecode) { in IsJumpOrReturn()
505 static CONSTEXPR bool IsJumpWithoutEffects(Bytecode bytecode) { in IsJumpWithoutEffects()
511 static CONSTEXPR bool IsWithoutExternalSideEffects(Bytecode bytecode) { in IsWithoutExternalSideEffects()
518 static CONSTEXPR bool IsLdarOrStar(Bytecode bytecode) { in IsLdarOrStar()
523 static CONSTEXPR bool PutsNameInAccumulator(Bytecode bytecode) { in PutsNameInAccumulator()
528 static CONSTEXPR bool IsCallOrNew(Bytecode bytecode) { in IsCallOrNew()
534 static CONSTEXPR bool IsCallRuntime(Bytecode bytecode) { in IsCallRuntime()
541 static CONSTEXPR bool IsPrefixScalingBytecode(Bytecode bytecode) { in IsPrefixScalingBytecode()
548 static CONSTEXPR size_t ReturnCount(Bytecode bytecode) { in ReturnCount()
553 static int NumberOfOperands(Bytecode bytecode) { in NumberOfOperands()
559 static OperandType GetOperandType(Bytecode bytecode, int i) { in GetOperandType()
568 static const OperandType* GetOperandTypes(Bytecode bytecode) { in GetOperandTypes()
573 static bool OperandIsScalableSignedByte(Bytecode bytecode, in OperandIsScalableSignedByte()
580 static bool OperandIsScalableUnsignedByte(Bytecode bytecode, in OperandIsScalableUnsignedByte()
587 static bool OperandIsScalable(Bytecode bytecode, int operand_index) { in OperandIsScalable()
596 static OperandSize GetOperandSize(Bytecode bytecode, int i, in GetOperandSize()
603 static const OperandSize* GetOperandSizes(Bytecode bytecode, in GetOperandSizes()
621 static int Size(Bytecode bytecode, OperandScale operand_scale) { in Size()