Lines Matching refs:LLVMModuleRef

149 LLVMModuleRef LLVMModuleCreateWithName(const char *ModuleID) {  in LLVMModuleCreateWithName()
153 LLVMModuleRef LLVMModuleCreateWithNameInContext(const char *ModuleID, in LLVMModuleCreateWithNameInContext()
158 void LLVMDisposeModule(LLVMModuleRef M) { in LLVMDisposeModule()
163 const char * LLVMGetDataLayout(LLVMModuleRef M) { in LLVMGetDataLayout()
167 void LLVMSetDataLayout(LLVMModuleRef M, const char *Triple) { in LLVMSetDataLayout()
172 const char * LLVMGetTarget(LLVMModuleRef M) { in LLVMGetTarget()
176 void LLVMSetTarget(LLVMModuleRef M, const char *Triple) { in LLVMSetTarget()
180 void LLVMDumpModule(LLVMModuleRef M) { in LLVMDumpModule()
184 LLVMBool LLVMPrintModuleToFile(LLVMModuleRef M, const char *Filename, in LLVMPrintModuleToFile()
205 char *LLVMPrintModuleToString(LLVMModuleRef M) { in LLVMPrintModuleToString()
216 void LLVMSetModuleInlineAsm(LLVMModuleRef M, const char *Asm) { in LLVMSetModuleInlineAsm()
222 LLVMContextRef LLVMGetModuleContext(LLVMModuleRef M) { in LLVMGetModuleContext()
466 LLVMTypeRef LLVMGetTypeByName(LLVMModuleRef M, const char *Name) { in LLVMGetTypeByName()
786 unsigned LLVMGetNamedMetadataNumOperands(LLVMModuleRef M, const char* name) in LLVMGetNamedMetadataNumOperands()
794 void LLVMGetNamedMetadataOperands(LLVMModuleRef M, const char* name, LLVMValueRef *Dest) in LLVMGetNamedMetadataOperands()
804 void LLVMAddNamedMetadataOperand(LLVMModuleRef M, const char* name, in LLVMAddNamedMetadataOperand()
1328 LLVMModuleRef LLVMGetGlobalParent(LLVMValueRef Global) { in LLVMGetGlobalParent()
1497 LLVMValueRef LLVMAddGlobal(LLVMModuleRef M, LLVMTypeRef Ty, const char *Name) { in LLVMAddGlobal()
1502 LLVMValueRef LLVMAddGlobalInAddressSpace(LLVMModuleRef M, LLVMTypeRef Ty, in LLVMAddGlobalInAddressSpace()
1511 LLVMValueRef LLVMGetNamedGlobal(LLVMModuleRef M, const char *Name) { in LLVMGetNamedGlobal()
1515 LLVMValueRef LLVMGetFirstGlobal(LLVMModuleRef M) { in LLVMGetFirstGlobal()
1523 LLVMValueRef LLVMGetLastGlobal(LLVMModuleRef M) { in LLVMGetLastGlobal()
1628 LLVMValueRef LLVMAddAlias(LLVMModuleRef M, LLVMTypeRef Ty, LLVMValueRef Aliasee, in LLVMAddAlias()
1638 LLVMValueRef LLVMAddFunction(LLVMModuleRef M, const char *Name, in LLVMAddFunction()
1644 LLVMValueRef LLVMGetNamedFunction(LLVMModuleRef M, const char *Name) { in LLVMGetNamedFunction()
1648 LLVMValueRef LLVMGetFirstFunction(LLVMModuleRef M) { in LLVMGetFirstFunction()
1656 LLVMValueRef LLVMGetLastFunction(LLVMModuleRef M) { in LLVMGetLastFunction()
2770 LLVMCreateModuleProviderForExistingModule(LLVMModuleRef M) { in LLVMCreateModuleProviderForExistingModule()
2851 LLVMPassManagerRef LLVMCreateFunctionPassManagerForModule(LLVMModuleRef M) { in LLVMCreateFunctionPassManagerForModule()
2857 reinterpret_cast<LLVMModuleRef>(P)); in LLVMCreateFunctionPassManager()
2860 LLVMBool LLVMRunPassManager(LLVMPassManagerRef PM, LLVMModuleRef M) { in LLVMRunPassManager()