Lines Matching refs:compile
45 SCRUB_LEADING_WHITESPACE_RE = re.compile(r'^(\s+)')
46 SCRUB_WHITESPACE_RE = re.compile(r'(?!^(| \w))[ \t]+', flags=re.M)
47 SCRUB_TRAILING_WHITESPACE_RE = re.compile(r'[ \t]+$', flags=re.M)
49 re.compile(
52 SCRUB_X86_SP_RE = re.compile(r'\d+\(%(esp|rsp)\)')
53 SCRUB_X86_RIP_RE = re.compile(r'[.\w]+\(%rip\)')
54 SCRUB_X86_LCP_RE = re.compile(r'\.LCPI[0-9]+_[0-9]+')
55 SCRUB_KILL_COMMENT_RE = re.compile(r'^ *#+ +kill:.*\n')
56 SCRUB_IR_COMMENT_RE = re.compile(r'\s*;.*')
58 RUN_LINE_RE = re.compile('^\s*;\s*RUN:\s*(.*)$')
59 IR_FUNCTION_RE = re.compile('^\s*define\s+(?:internal\s+)?[^@]*@([\w-]+)\s*\(')
60 LLC_FUNCTION_RE = re.compile(
65 OPT_FUNCTION_RE = re.compile(
69 CHECK_PREFIX_RE = re.compile('--check-prefix=(\S+)')
70 CHECK_RE = re.compile(r'^\s*;\s*([^:]+?)(?:-NEXT|-NOT|-DAG|-LABEL)?:')
71 IR_VALUE_DEF_RE = re.compile(r'\s+%(.*) =')