Lines Matching refs:result
35 `llvm` and check the result is bit identical to what our assembler generated.
119 result = argparse.ArgumentParser(
122 result.add_argument('--llvm-mc', default='llvm-mc', help='Path to llvm-mc')
123 result.add_argument('--verbose', '-v', action='store_true')
124 return result.parse_args()
181 # The second part of the tuple is a string that describes what the result will
318 for pattern, result in llvm_mc_instruction_converters:
324 if isinstance(result, types.FunctionType):
325 # `result` is a function, call it produce the instruction.
326 llvm_instruction.append(result(match.groups()))
328 # `result` is a string, use it as the format string.
329 assert(isinstance(result, str))
330 llvm_instruction.append(result.format(*match.groups()))