Lines Matching refs:compile
31 SCRUB_WHITESPACE_RE = re.compile(r'(?!^(| \w))[ \t]+', flags=re.M)
32 SCRUB_TRAILING_WHITESPACE_RE = re.compile(r'[ \t]+$', flags=re.M)
34 re.compile(
37 SCRUB_X86_SP_RE = re.compile(r'\d+\(%(esp|rsp)\)')
38 SCRUB_X86_RIP_RE = re.compile(r'[.\w]+\(%rip\)')
39 SCRUB_X86_LCP_RE = re.compile(r'\.LCPI[0-9]+_[0-9]+')
40 SCRUB_KILL_COMMENT_RE = re.compile(r'^ *#+ +kill:.*\n')
42 RUN_LINE_RE = re.compile('^\s*;\s*RUN:\s*(.*)$')
43 IR_FUNCTION_RE = re.compile('^\s*define\s+(?:internal\s+)?[^@]*@(\w+)\s*\(')
44 ASM_FUNCTION_RE = re.compile(
49 CHECK_PREFIX_RE = re.compile('--check-prefix=(\S+)')
50 CHECK_RE = re.compile(r'^\s*;\s*([^:]+?)(?:-NEXT|-NOT|-DAG|-LABEL)?:')