Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/Bitcode/Reader/
H A DBitReader.cpp25 return LLVMParseBitcodeInContext(LLVMGetGlobalContext(), MemBuf, OutModule, in LLVMParseBitcode()
31 return LLVMParseBitcodeInContext2(LLVMGetGlobalContext(), MemBuf, OutModule); in LLVMParseBitcode2()
125 return LLVMGetBitcodeModuleInContext(LLVMGetGlobalContext(), MemBuf, OutM, in LLVMGetBitcodeModule()
131 return LLVMGetBitcodeModuleInContext2(LLVMGetGlobalContext(), MemBuf, OutM); in LLVMGetBitcodeModule2()
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/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.c124 LLVMDIBuilderCreateDebugLocation(LLVMGetGlobalContext(), 42, 0, in llvm_test_dibuilder()
160 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()
/llvm-project-15.0.7/llvm/lib/IR/
H A DCore.cpp602 return LLVMInt1TypeInContext(LLVMGetGlobalContext()); in LLVMInt1Type()
605 return LLVMInt8TypeInContext(LLVMGetGlobalContext()); in LLVMInt8Type()
608 return LLVMInt16TypeInContext(LLVMGetGlobalContext()); in LLVMInt16Type()
611 return LLVMInt32TypeInContext(LLVMGetGlobalContext()); in LLVMInt32Type()
614 return LLVMInt64TypeInContext(LLVMGetGlobalContext()); in LLVMInt64Type()
617 return LLVMInt128TypeInContext(LLVMGetGlobalContext()); in LLVMInt128Type()
658 return LLVMHalfTypeInContext(LLVMGetGlobalContext()); in LLVMHalfType()
664 return LLVMFloatTypeInContext(LLVMGetGlobalContext()); in LLVMFloatType()
673 return LLVMFP128TypeInContext(LLVMGetGlobalContext()); in LLVMFP128Type()
856 return LLVMVoidTypeInContext(LLVMGetGlobalContext()); in LLVMVoidType()
[all …]
/llvm-project-15.0.7/llvm/bindings/python/llvm/
H A Dcore.py441 return Context(lib.LLVMGetGlobalContext())
502 library.LLVMGetGlobalContext.argtypes = []
503 library.LLVMGetGlobalContext.restype = c_object_p
/llvm-project-15.0.7/llvm/unittests/ExecutionEngine/MCJIT/
H A DMCJITCAPITest.cpp467 LLVMContextRef C = LLVMGetGlobalContext(); in TEST_F()
/llvm-project-15.0.7/llvm/include/llvm-c/
H A DCore.h513 LLVMContextRef LLVMGetGlobalContext(void);
/llvm-project-15.0.7/llvm/bindings/ocaml/llvm/
H A Dllvm_ocaml.c214 return LLVMGetGlobalContext(); in llvm_global_context()
H A Dllvm.mli456 (** See the function [LLVMGetGlobalContext]. *)
/llvm-project-15.0.7/llvm/bindings/go/llvm/
H A Dir.go360 func GlobalContext() Context { return Context{C.LLVMGetGlobalContext()} }