Lines Matching refs:compile
36 section_re = re.compile("^debug_line\[0x[0-9a-f]+\]$", re.MULTILINE)
37 filename_re = re.compile('file_names\[ *(\d)+\]:\n\s*name: "(.*)"', re.MULTILINE)
38 line_re = re.compile('0x([0-9a-f]{16}) +(\d+) +\d+ +(\d+)' # addr, line, column, file
60 section_re = re.compile("\n(?! |\n)", re.MULTILINE) # New-line not followed by indent.
61 fda_re = re.compile(".* FDE .* pc=([0-9a-f]+)...([0-9a-f]+)")
82 section_re = re.compile("\n(?! |\n)", re.MULTILINE) # New-line not followed by indent.
83 sym_re = re.compile("([0-9a-f]+) <(.+)>:")
97 cfa_re = re.compile("0x([0-9a-f]+): CFA=([^\s:]+)")
106 inst_re = re.compile(r"([0-9a-f]+): +(?:[0-9a-f]{2} +)*(.*)")
130 rexprs.append((re.compile(rexpr), adjust_offset))
143 jmp_re = re.compile(r"cb\w* \w+, 0x(\w+)|(?:b|bl|b\w\w) 0x(\w+)")