Home
last modified time | relevance | path

Searched refs:LLVMGetGlobalContext (Results 1 – 12 of 12) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
H A DBitReader.cpp26 return LLVMParseBitcodeInContext(LLVMGetGlobalContext(), MemBuf, OutModule, in LLVMParseBitcode()
32 return LLVMParseBitcodeInContext2(LLVMGetGlobalContext(), MemBuf, OutModule); in LLVMParseBitcode2()
126 return LLVMGetBitcodeModuleInContext(LLVMGetGlobalContext(), MemBuf, OutM, in LLVMGetBitcodeModule()
132 return LLVMGetBitcodeModuleInContext2(LLVMGetGlobalContext(), MemBuf, OutM); in LLVMGetBitcodeModule2()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/
H A DTarget.cpp27 extern "C" LLVMContextRef LLVMGetGlobalContext(void);
86 return wrap(unwrap(TD)->getIntPtrType(*unwrap(LLVMGetGlobalContext()))); in LLVMIntPtrType()
90 return wrap(unwrap(TD)->getIntPtrType(*unwrap(LLVMGetGlobalContext()), AS)); in LLVMIntPtrTypeForAS()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-c-test/
H A Dobject.c33 O = LLVMCreateBinary(MB, LLVMGetGlobalContext(), &outBinaryErr); in llvm_object_list_sections()
71 O = LLVMCreateBinary(MB, LLVMGetGlobalContext(), &outBinaryErr); in llvm_object_list_symbols()
H A Ddebuginfo.c125 LLVMDIBuilderCreateDebugLocation(LLVMGetGlobalContext(), 42, 0, in llvm_test_dibuilder()
161 LLVMDIBuilderCreateDebugLocation(LLVMGetGlobalContext(), 43, 0, in llvm_test_dibuilder()
H A Ddiagnostic.c48 LLVMContextRef C = LLVMGetGlobalContext(); in llvm_test_diagnostic_handler()
H A Dmodule.c39 LLVMContextRef C = LLVMGetGlobalContext(); in llvm_load_module()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DCore.cpp81 LLVMContextRef LLVMGetGlobalContext() { return wrap(&*GlobalContext); } in LLVMGetGlobalContext() function
126 return LLVMGetMDKindIDInContext(LLVMGetGlobalContext(), Name, SLen); in LLVMGetMDKindID()
591 return LLVMInt1TypeInContext(LLVMGetGlobalContext()); in LLVMInt1Type()
594 return LLVMInt8TypeInContext(LLVMGetGlobalContext()); in LLVMInt8Type()
597 return LLVMInt16TypeInContext(LLVMGetGlobalContext()); in LLVMInt16Type()
600 return LLVMInt32TypeInContext(LLVMGetGlobalContext()); in LLVMInt32Type()
603 return LLVMInt64TypeInContext(LLVMGetGlobalContext()); in LLVMInt64Type()
606 return LLVMInt128TypeInContext(LLVMGetGlobalContext()); in LLVMInt128Type()
609 return LLVMIntTypeInContext(LLVMGetGlobalContext(), NumBits); in LLVMIntType()
647 return LLVMHalfTypeInContext(LLVMGetGlobalContext()); in LLVMHalfType()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/bindings/python/llvm/
H A Dcore.py441 return Context(lib.LLVMGetGlobalContext())
502 library.LLVMGetGlobalContext.argtypes = []
503 library.LLVMGetGlobalContext.restype = c_object_p
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm-c/
H A DCore.h505 LLVMContextRef LLVMGetGlobalContext(void);
/netbsd-src/external/apache2/llvm/dist/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c214 return LLVMGetGlobalContext(); in llvm_global_context()
H A Dllvm.mli456 (** See the function [LLVMGetGlobalContext]. *)
/netbsd-src/external/apache2/llvm/dist/llvm/bindings/go/llvm/
H A Dir.go360 func GlobalContext() Context { return Context{C.LLVMGetGlobalContext()} }