Lines Matching full:mod
53 def has_modifier?(mod) argument
54 @modifiers.any? { |x| x[0] == mod}
131 @modifiers.each do |mod|
132 ss += ".#{modifier_to_s(mod)}"
210 index = @modifiers.detect {|mod| mod[0] == :TypeId}[1][0]
224 intrinsic_id = @modifiers.detect {|mod| mod[0] == :IntrinsicId}[1][0]
243 def modifier_to_s(mod) argument
244 "#{mod[0]}(#{mod[1].join(', ')})"
275 @modifiers.each do |mod|
278 mod[0] = 'SetOperandsType' if mod[0] == :SrcType
279 mod[0] = 'SetCc' if mod[0] == :CC
280 prefix = 'Set' unless mod[0].to_s.start_with?('Set')
282 Output.println("#{local_var_name}->#{prefix}#{modifier_to_s(mod)};")