Searched refs:LLVMBool (Results 1 - 22 of 22) sorted by relevance

/freebsd-11.0-release/contrib/llvm/include/llvm-c/
H A DBitReader.h40 LLVMBool LLVMParseBitcode(LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutModule,
45 LLVMBool LLVMParseBitcode2(LLVMMemoryBufferRef MemBuf,
49 LLVMBool LLVMParseBitcodeInContext(LLVMContextRef ContextRef,
53 LLVMBool LLVMParseBitcodeInContext2(LLVMContextRef ContextRef,
61 LLVMBool LLVMGetBitcodeModuleInContext(LLVMContextRef ContextRef,
67 LLVMBool LLVMGetBitcodeModuleInContext2(LLVMContextRef ContextRef,
72 LLVMBool LLVMGetBitcodeModule(LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutM,
75 LLVMBool LLVMGetBitcodeModule2(LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutM);
H A DIRReader.h32 LLVMBool LLVMParseIRInContext(LLVMContextRef ContextRef,
H A DAnalysis.h45 LLVMBool LLVMVerifyModule(LLVMModuleRef M, LLVMVerifierFailureAction Action,
50 LLVMBool LLVMVerifyFunction(LLVMValueRef Fn, LLVMVerifierFailureAction Action);
H A DLinker.h41 LLVMBool LLVMLinkModules(LLVMModuleRef Dest, LLVMModuleRef Src,
49 LLVMBool LLVMLinkModules2(LLVMModuleRef Dest, LLVMModuleRef Src);
H A DTargetMachine.h72 LLVMBool LLVMGetTargetFromTriple(const char* Triple, LLVMTargetRef *T,
82 LLVMBool LLVMTargetHasJIT(LLVMTargetRef T);
85 LLVMBool LLVMTargetHasTargetMachine(LLVMTargetRef T);
88 LLVMBool LLVMTargetHasAsmBackend(LLVMTargetRef T);
123 LLVMBool VerboseAsm);
128 LLVMBool LLVMTargetMachineEmitToFile(LLVMTargetMachineRef T, LLVMModuleRef M,
132 LLVMBool LLVMTargetMachineEmitToMemoryBuffer(LLVMTargetMachineRef T, LLVMModuleRef M,
H A DExecutionEngine.h47 LLVMBool NoFramePointerElim;
48 LLVMBool EnableFastISel;
56 LLVMBool IsSigned);
65 LLVMBool IsSigned);
75 LLVMBool LLVMCreateExecutionEngineForModule(LLVMExecutionEngineRef *OutEE,
79 LLVMBool LLVMCreateInterpreterForModule(LLVMExecutionEngineRef *OutInterp,
83 LLVMBool LLVMCreateJITCompilerForModule(LLVMExecutionEngineRef *OutJIT,
108 LLVMBool LLVMCreateMCJITCompilerForModule(
131 LLVMBool LLVMRemoveModule(LLVMExecutionEngineRef EE, LLVMModuleRef M,
134 LLVMBool LLVMFindFunctio
[all...]
H A DSupport.h30 LLVMBool LLVMLoadLibraryPermanently(const char* Filename);
H A DObject.h49 LLVMBool LLVMIsSectionIteratorAtEnd(LLVMObjectFileRef ObjectFile,
58 LLVMBool LLVMIsSymbolIteratorAtEnd(LLVMObjectFileRef ObjectFile,
67 LLVMBool LLVMGetSectionContainsSymbol(LLVMSectionIteratorRef SI,
73 LLVMBool LLVMIsRelocationIteratorAtEnd(LLVMSectionIteratorRef Section,
H A DTypes.h29 typedef int LLVMBool; typedef
H A DTarget.h136 static inline LLVMBool LLVMInitializeNativeTarget(void) {
151 static inline LLVMBool LLVMInitializeNativeAsmParser(void) {
163 static inline LLVMBool LLVMInitializeNativeAsmPrinter(void) {
175 static inline LLVMBool LLVMInitializeNativeDisassembler(void) {
H A DCore.h522 LLVMBool LLVMPrintModuleToFile(LLVMModuleRef M, const char *Filename,
675 LLVMBool LLVMTypeIsSized(LLVMTypeRef Ty);
802 LLVMBool IsVarArg);
807 LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy);
855 unsigned ElementCount, LLVMBool Packed);
863 LLVMBool Packed);
885 unsigned ElementCount, LLVMBool Packed);
918 LLVMBool LLVMIsPackedStruct(LLVMTypeRef StructTy);
925 LLVMBool LLVMIsOpaqueStruct(LLVMTypeRef StructTy);
1205 LLVMBool LLVMIsConstan
[all...]
/freebsd-11.0-release/contrib/llvm/include/llvm-c/Transforms/
H A DPassManagerBuilder.h49 LLVMBool Value);
54 LLVMBool Value);
59 LLVMBool Value);
79 LLVMBool Internalize,
80 LLVMBool RunInliner);
/freebsd-11.0-release/contrib/llvm/lib/Bitcode/Reader/
H A DBitReader.cpp26 LLVMBool LLVMParseBitcode(LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutModule,
32 LLVMBool LLVMParseBitcode2(LLVMMemoryBufferRef MemBuf,
45 LLVMBool LLVMParseBitcodeInContext(LLVMContextRef ContextRef,
73 LLVMBool LLVMParseBitcodeInContext2(LLVMContextRef ContextRef,
92 LLVMBool LLVMGetBitcodeModuleInContext(LLVMContextRef ContextRef,
121 LLVMBool LLVMGetBitcodeModuleInContext2(LLVMContextRef ContextRef,
140 LLVMBool LLVMGetBitcodeModule(LLVMMemoryBufferRef MemBuf, LLVMModuleRef *OutM,
146 LLVMBool LLVMGetBitcodeModule2(LLVMMemoryBufferRef MemBuf,
/freebsd-11.0-release/contrib/llvm/lib/Analysis/
H A DAnalysis.cpp84 LLVMBool LLVMVerifyModule(LLVMModuleRef M, LLVMVerifierFailureAction Action,
90 LLVMBool Result = verifyModule(*unwrap(M), OutMessages ? &MsgsOS : DebugOS);
105 LLVMBool LLVMVerifyFunction(LLVMValueRef Fn, LLVMVerifierFailureAction Action) {
106 LLVMBool Result = verifyFunction(
/freebsd-11.0-release/contrib/llvm/lib/Target/
H A DTargetMachineC.cpp77 LLVMBool LLVMGetTargetFromTriple(const char* TripleStr, LLVMTargetRef *T,
101 LLVMBool LLVMTargetHasJIT(LLVMTargetRef T) {
105 LLVMBool LLVMTargetHasTargetMachine(LLVMTargetRef T) {
109 LLVMBool LLVMTargetHasAsmBackend(LLVMTargetRef T) {
184 LLVMBool VerboseAsm) {
188 static LLVMBool LLVMTargetMachineEmit(LLVMTargetMachineRef T, LLVMModuleRef M,
222 LLVMBool LLVMTargetMachineEmitToFile(LLVMTargetMachineRef T, LLVMModuleRef M,
235 LLVMBool LLVMTargetMachineEmitToMemoryBuffer(LLVMTargetMachineRef T,
/freebsd-11.0-release/contrib/llvm/lib/ExecutionEngine/
H A DExecutionEngineBindings.cpp41 LLVMBool IsSigned) {
73 LLVMBool IsSigned) {
102 LLVMBool LLVMCreateExecutionEngineForModule(LLVMExecutionEngineRef *OutEE,
117 LLVMBool LLVMCreateInterpreterForModule(LLVMExecutionEngineRef *OutInterp,
132 LLVMBool LLVMCreateJITCompilerForModule(LLVMExecutionEngineRef *OutJIT,
159 LLVMBool LLVMCreateMCJITCompilerForModule(
256 LLVMBool LLVMRemoveModule(LLVMExecutionEngineRef EE, LLVMModuleRef M,
264 LLVMBool LLVMFindFunction(LLVMExecutionEngineRef EE, const char *Name,
/freebsd-11.0-release/contrib/llvm/lib/Object/
H A DObject.cpp89 LLVMBool LLVMIsSectionIteratorAtEnd(LLVMObjectFileRef OF,
118 LLVMBool LLVMIsSymbolIteratorAtEnd(LLVMObjectFileRef OF,
151 LLVMBool LLVMGetSectionContainsSymbol(LLVMSectionIteratorRef SI,
166 LLVMBool LLVMIsRelocationIteratorAtEnd(LLVMSectionIteratorRef Section,
/freebsd-11.0-release/contrib/llvm/lib/IR/
H A DCore.cpp184 LLVMBool LLVMPrintModuleToFile(LLVMModuleRef M, const char *Filename,
271 LLVMBool LLVMTypeIsSized(LLVMTypeRef Ty)
401 LLVMBool IsVarArg) {
406 LLVMBool LLVMIsFunctionVarArg(LLVMTypeRef FunctionTy) {
428 unsigned ElementCount, LLVMBool Packed) {
434 unsigned ElementCount, LLVMBool Packed) {
453 unsigned ElementCount, LLVMBool Packed) {
474 LLVMBool LLVMIsPackedStruct(LLVMTypeRef StructTy) {
478 LLVMBool LLVMIsOpaqueStruct(LLVMTypeRef StructTy) {
707 LLVMBool LLVMIsConstan
[all...]
/freebsd-11.0-release/contrib/llvm/lib/Support/
H A DDynamicLibrary.cpp178 LLVMBool LLVMLoadLibraryPermanently(const char* Filename) {
/freebsd-11.0-release/contrib/llvm/lib/Transforms/IPO/
H A DPassManagerBuilder.cpp683 LLVMBool Value) {
690 LLVMBool Value) {
697 LLVMBool Value) {
726 LLVMBool Internalize,
727 LLVMBool RunInliner) {
/freebsd-11.0-release/contrib/llvm/lib/IRReader/
H A DIRReader.cpp102 LLVMBool LLVMParseIRInContext(LLVMContextRef ContextRef,
/freebsd-11.0-release/contrib/llvm/lib/Linker/
H A DLinkModules.cpp882 LLVMBool LLVMLinkModules(LLVMModuleRef Dest, LLVMModuleRef Src,
895 LLVMBool Result = L.linkInModuleForCAPI(*M);
904 LLVMBool LLVMLinkModules2(LLVMModuleRef Dest, LLVMModuleRef Src) {

Completed in 126 milliseconds