Home | History | Annotate | Download | only in llvm

Lines Matching refs:InlineAsm

25 #include <llvm/IR/InlineAsm.h>
34 using ::llvm::InlineAsm;
64 InlineAsm* func = InlineAsm::get(ori_func->getFunctionType(), "mov $0, r9", "=r", false);
78 InlineAsm* func = InlineAsm::get(func_ty, inline_asm, "=r", true);
93 InlineAsm* func = InlineAsm::get(func_ty, inline_asm, "r", true);
99 // Separate to two InlineAsm: The first one produces the return value, while the second,
107 InlineAsm* func = InlineAsm::get(ori_func->getFunctionType(), "mov $0, r9", "=r", true);
114 func = InlineAsm::get(func_ty, "mov r9, $0", "r", true);