Module: OrigenTesters::IGXLBasedTester::Pattern::Atp

Included in:
OrigenTesters::IGXLBasedTester::Pattern
Defined in:
lib/origen_testers/igxl_based_tester/decompiler/atp.rb

Instance Method Summary collapse

Instance Method Details

#nodes_namespaceObject



7
8
9
# File 'lib/origen_testers/igxl_based_tester/decompiler/atp.rb', line 7

def nodes_namespace
  OrigenTesters::IGXLBasedTester::Decompiler::Atp
end

#parse_frontmatter(raw_frontmatter:, context:) ⇒ Object



11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# File 'lib/origen_testers/igxl_based_tester/decompiler/atp.rb', line 11

def parse_frontmatter(raw_frontmatter:, context:)
  in_header = true
  header = []
  comments = []
  variable_assignments = {}
  imports = {}
  raw_frontmatter.each_with_index do |l, i|
    if l =~ Regexp.new('^\s*//')
      if in_header
        # Header Comment
        header << l.chomp
      else
        # Other Comment
        comments << l.chomp
      end
    elsif !(l =~ Regexp.new(/=/)).nil?
      # Variable Assignment
      var, val = l.split('=').map(&:strip)
      variable_assignments[var] = val.gsub(';', '')
    elsif !(l =~ Regexp.new(/import/)).nil?
      # Import
      import, type, val = l.split(/\s+/)
      imports[val.gsub(';', '')] = type
    elsif l.strip.empty?
      # Just whitespace. Ignore this, but don't throw an error
    elsif !(l =~ Regexp.new(/vector/)).nil?
      # line break between vector keyword and pinlist, ignore
    else
      Origen.app!.fail!("Unable to parse pattern frontmatter, at line: #{i}")
    end
  end
  nodes_namespace::Frontmatter.new(context:              self,
                                   pattern_header:       header,
                                   variable_assignments: variable_assignments,
                                   imports:              imports,
                                   comments:             comments
                                  )
end

#parse_pinlist(raw_pinlist:, context:) ⇒ Object



50
51
52
53
54
55
# File 'lib/origen_testers/igxl_based_tester/decompiler/atp.rb', line 50

def parse_pinlist(raw_pinlist:, context:)
  raw_pinlist = raw_pinlist.join('')
  OrigenTesters::Decompiler::Nodes::Pinlist.new(context: self,
                                                pins:    raw_pinlist[raw_pinlist.index('$') + 1..raw_pinlist.index(')') - 1].split(/,\s*/)[1..-1]
                                               )
end

#parse_vector(raw_vector:, context:, meta:) ⇒ Object



57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
# File 'lib/origen_testers/igxl_based_tester/decompiler/atp.rb', line 57

def parse_vector(raw_vector:, context:, meta:)
  if raw_vector =~ Regexp.new('^\s*//')
    nodes_namespace::CommentBlock.new(context:  self,
                                      comments: raw_vector.split("\n")
                                     )
  elsif raw_vector =~ Regexp.new('^\s*start_label')
    nodes_namespace::StartLabel.new(context:     self,
                                    start_label: raw_vector[raw_vector.index('start_label') + 11..-1].strip[0..-2]
                                   )
  elsif raw_vector =~ Regexp.new('^\s*global')
    contents = raw_vector.strip['global'.size + 1..-2].strip.split(/\s+/)
    nodes_namespace::GlobalLabel.new(context:    self,
                                     label_type: contents[0],
                                     label_name: contents[1]
                                    )
  elsif raw_vector =~ Regexp.new(':(?!(.*>))')
    nodes_namespace::Label.new(context:    self,
                               # Strip any whitespace from the vector and grab contents up to
                               # the ':' symbol.
                               label_name: raw_vector.strip[0..-2]
                              )
  else

    opcode_plus_args = raw_vector[0..(raw_vector.index('>') - 1)].rstrip.split(/\s+/)
    timeset_plus_pins = raw_vector[(raw_vector.index('>') + 1)..(raw_vector.index(';') - 1)].strip.split(/\s+/)
    nodes_namespace::Vector.new(context:          self,
                                timeset:          timeset_plus_pins[0],
                                pin_states:       timeset_plus_pins[1..-1],
                                opcode:           (opcode_plus_args[0] && opcode_plus_args[0].empty?) ? nil : opcode_plus_args[0],
                                opcode_arguments: opcode_plus_args[1..-1],
                                comment:          begin
        if raw_vector =~ Regexp.new('//')
          raw_vector[raw_vector.index('//') + 2..-1].strip
        else
          ''
        end
      end
                               )
  end
end