Lines Matching refs:LLVMModuleRef
96 LLVMModuleRef LLVMModuleCreateWithName(const char *ModuleID) { in LLVMModuleCreateWithName()
100 LLVMModuleRef LLVMModuleCreateWithNameInContext(const char *ModuleID, in LLVMModuleCreateWithNameInContext()
105 void LLVMDisposeModule(LLVMModuleRef M) { in LLVMDisposeModule()
110 const char * LLVMGetDataLayout(LLVMModuleRef M) { in LLVMGetDataLayout()
114 void LLVMSetDataLayout(LLVMModuleRef M, const char *Triple) { in LLVMSetDataLayout()
119 const char * LLVMGetTarget(LLVMModuleRef M) { in LLVMGetTarget()
123 void LLVMSetTarget(LLVMModuleRef M, const char *Triple) { in LLVMSetTarget()
127 void LLVMDumpModule(LLVMModuleRef M) { in LLVMDumpModule()
131 LLVMBool LLVMPrintModuleToFile(LLVMModuleRef M, const char *Filename, in LLVMPrintModuleToFile()
151 void LLVMSetModuleInlineAsm(LLVMModuleRef M, const char *Asm) { in LLVMSetModuleInlineAsm()
157 LLVMContextRef LLVMGetModuleContext(LLVMModuleRef M) { in LLVMGetModuleContext()
383 LLVMTypeRef LLVMGetTypeByName(LLVMModuleRef M, const char *Name) { in LLVMGetTypeByName()
597 unsigned LLVMGetNamedMetadataNumOperands(LLVMModuleRef M, const char* name) in LLVMGetNamedMetadataNumOperands()
605 void LLVMGetNamedMetadataOperands(LLVMModuleRef M, const char* name, LLVMValueRef *Dest) in LLVMGetNamedMetadataOperands()
614 void LLVMAddNamedMetadataOperand(LLVMModuleRef M, const char* name, in LLVMAddNamedMetadataOperand()
1095 LLVMModuleRef LLVMGetGlobalParent(LLVMValueRef Global) { in LLVMGetGlobalParent()
1229 LLVMValueRef LLVMAddGlobal(LLVMModuleRef M, LLVMTypeRef Ty, const char *Name) { in LLVMAddGlobal()
1234 LLVMValueRef LLVMAddGlobalInAddressSpace(LLVMModuleRef M, LLVMTypeRef Ty, in LLVMAddGlobalInAddressSpace()
1242 LLVMValueRef LLVMGetNamedGlobal(LLVMModuleRef M, const char *Name) { in LLVMGetNamedGlobal()
1246 LLVMValueRef LLVMGetFirstGlobal(LLVMModuleRef M) { in LLVMGetFirstGlobal()
1254 LLVMValueRef LLVMGetLastGlobal(LLVMModuleRef M) { in LLVMGetLastGlobal()
1359 LLVMValueRef LLVMAddAlias(LLVMModuleRef M, LLVMTypeRef Ty, LLVMValueRef Aliasee, in LLVMAddAlias()
1367 LLVMValueRef LLVMAddFunction(LLVMModuleRef M, const char *Name, in LLVMAddFunction()
1373 LLVMValueRef LLVMGetNamedFunction(LLVMModuleRef M, const char *Name) { in LLVMGetNamedFunction()
1377 LLVMValueRef LLVMGetFirstFunction(LLVMModuleRef M) { in LLVMGetFirstFunction()
1385 LLVMValueRef LLVMGetLastFunction(LLVMModuleRef M) { in LLVMGetLastFunction()
2439 LLVMCreateModuleProviderForExistingModule(LLVMModuleRef M) { in LLVMCreateModuleProviderForExistingModule()
2525 LLVMPassManagerRef LLVMCreateFunctionPassManagerForModule(LLVMModuleRef M) { in LLVMCreateFunctionPassManagerForModule()
2531 reinterpret_cast<LLVMModuleRef>(P)); in LLVMCreateFunctionPassManager()
2534 LLVMBool LLVMRunPassManager(LLVMPassManagerRef PM, LLVMModuleRef M) { in LLVMRunPassManager()