Lines Matching refs:instructions
91 # Methods for YAML instructions
106 # Unique (and not very long) identifier for all instructions
430 # * non-prefixed instructions handlers
433 # * prefixed instructions handlers, in the order of prefixes
436 handlers = Panda.instructions.reject(&:prefix) +
441 Panda.instructions.select(&:prefix).stable_sort_by { |i| Panda.prefixes_hash[i.prefix.name].opcode_idx }
447 (Panda.instructions.reject(&:prefix).map(&:opcode_idx).max + 1)..(Panda.prefixes.map(&:opcode_idx).min - 1)
460 # Offset in dispatch table for handlers of instructions for given prefix name
470 prefix_instructions_num = Panda.instructions.select { |i| i.prefix && (i.prefix.name == p.name) }.size
562 cached def instructions
567 @instructions = tmp.sort_by(&:opcode_idx)
615 props.delete(:instructions)
628 g.instructions.each do |i|