Lines Matching refs:LLVMModuleRef
90 LLVMModuleRef LLVMModuleCreateWithName(const char *ModuleID) { in LLVMModuleCreateWithName()
94 LLVMModuleRef LLVMModuleCreateWithNameInContext(const char *ModuleID, in LLVMModuleCreateWithNameInContext()
99 void LLVMDisposeModule(LLVMModuleRef M) { in LLVMDisposeModule()
104 const char * LLVMGetDataLayout(LLVMModuleRef M) { in LLVMGetDataLayout()
108 void LLVMSetDataLayout(LLVMModuleRef M, const char *Triple) { in LLVMSetDataLayout()
113 const char * LLVMGetTarget(LLVMModuleRef M) { in LLVMGetTarget()
117 void LLVMSetTarget(LLVMModuleRef M, const char *Triple) { in LLVMSetTarget()
121 void LLVMDumpModule(LLVMModuleRef M) { in LLVMDumpModule()
125 LLVMBool LLVMPrintModuleToFile(LLVMModuleRef M, const char *Filename, in LLVMPrintModuleToFile()
145 void LLVMSetModuleInlineAsm(LLVMModuleRef M, const char *Asm) { in LLVMSetModuleInlineAsm()
151 LLVMContextRef LLVMGetModuleContext(LLVMModuleRef M) { in LLVMGetModuleContext()
377 LLVMTypeRef LLVMGetTypeByName(LLVMModuleRef M, const char *Name) { in LLVMGetTypeByName()
591 unsigned LLVMGetNamedMetadataNumOperands(LLVMModuleRef M, const char* name) in LLVMGetNamedMetadataNumOperands()
599 void LLVMGetNamedMetadataOperands(LLVMModuleRef M, const char* name, LLVMValueRef *Dest) in LLVMGetNamedMetadataOperands()
608 void LLVMAddNamedMetadataOperand(LLVMModuleRef M, const char* name, in LLVMAddNamedMetadataOperand()
1089 LLVMModuleRef LLVMGetGlobalParent(LLVMValueRef Global) { in LLVMGetGlobalParent()
1223 LLVMValueRef LLVMAddGlobal(LLVMModuleRef M, LLVMTypeRef Ty, const char *Name) { in LLVMAddGlobal()
1228 LLVMValueRef LLVMAddGlobalInAddressSpace(LLVMModuleRef M, LLVMTypeRef Ty, in LLVMAddGlobalInAddressSpace()
1236 LLVMValueRef LLVMGetNamedGlobal(LLVMModuleRef M, const char *Name) { in LLVMGetNamedGlobal()
1240 LLVMValueRef LLVMGetFirstGlobal(LLVMModuleRef M) { in LLVMGetFirstGlobal()
1248 LLVMValueRef LLVMGetLastGlobal(LLVMModuleRef M) { in LLVMGetLastGlobal()
1306 LLVMValueRef LLVMAddAlias(LLVMModuleRef M, LLVMTypeRef Ty, LLVMValueRef Aliasee, in LLVMAddAlias()
1314 LLVMValueRef LLVMAddFunction(LLVMModuleRef M, const char *Name, in LLVMAddFunction()
1320 LLVMValueRef LLVMGetNamedFunction(LLVMModuleRef M, const char *Name) { in LLVMGetNamedFunction()
1324 LLVMValueRef LLVMGetFirstFunction(LLVMModuleRef M) { in LLVMGetFirstFunction()
1332 LLVMValueRef LLVMGetLastFunction(LLVMModuleRef M) { in LLVMGetLastFunction()
2338 LLVMCreateModuleProviderForExistingModule(LLVMModuleRef M) { in LLVMCreateModuleProviderForExistingModule()
2417 LLVMPassManagerRef LLVMCreateFunctionPassManagerForModule(LLVMModuleRef M) { in LLVMCreateFunctionPassManagerForModule()
2423 reinterpret_cast<LLVMModuleRef>(P)); in LLVMCreateFunctionPassManager()
2426 LLVMBool LLVMRunPassManager(LLVMPassManagerRef PM, LLVMModuleRef M) { in LLVMRunPassManager()