Home
last modified time | relevance | path

Searched refs:LLVMInt32Type (Results 1 – 11 of 11) sorted by relevance

/llvm-project-15.0.7/llvm/unittests/ExecutionEngine/MCJIT/
H A DMCJITCAPITest.cpp171 LLVMFunctionType(LLVMInt32Type(), nullptr,0, 0)); in buildSimpleFunction()
177 LLVMBuildRet(builder, LLVMConstInt(LLVMInt32Type(), 42, 0)); in buildSimpleFunction()
190 LLVMTypeRef stackmapParamTypes[] = { LLVMInt64Type(), LLVMInt32Type() }; in buildFunctionThatUsesStackmap()
204 LLVMConstInt(LLVMInt64Type(), 0, 0), LLVMConstInt(LLVMInt32Type(), 5, 0), in buildFunctionThatUsesStackmap()
205 LLVMConstInt(LLVMInt32Type(), 42, 0) in buildFunctionThatUsesStackmap()
208 LLVMBuildRet(builder, LLVMConstInt(LLVMInt32Type(), 42, 0)); in buildFunctionThatUsesStackmap()
223 LLVMSetInitializer(GlobalVar, LLVMConstInt(LLVMInt32Type(), 42, 0)); in buildModuleWithCodeAndData()
235 LLVMBuildLoad2(Builder, LLVMInt32Type(), GlobalVar, "intVal"); in buildModuleWithCodeAndData()
245 LLVMTypeRef ParamTypes[] = { LLVMInt32Type() }; in buildModuleWithCodeAndData()
354 LLVMSetInitializer(GlobalVar, LLVMConstInt(LLVMInt32Type(), 42, 0)); in TEST_F()
[all …]
/llvm-project-15.0.7/llvm/examples/OrcV2Examples/OrcV2CBindingsReflectProcessSymbols/
H A DOrcV2CBindingsReflectProcessSymbols.c60 LLVMTypeRef I32BinOpParamTypes[] = {LLVMInt32Type(), LLVMInt32Type()}; in createDemoModule()
62 LLVMFunctionType(LLVMInt32Type(), I32BinOpParamTypes, 2, 0); in createDemoModule()
66 LLVMTypeRef MulAddParamTypes[] = {LLVMInt32Type(), LLVMInt32Type(), in createDemoModule()
67 LLVMInt32Type()}; in createDemoModule()
69 LLVMFunctionType(LLVMInt32Type(), MulAddParamTypes, 3, 0); in createDemoModule()
/llvm-project-15.0.7/llvm/examples/OrcV2Examples/OrcV2CBindingsBasicUsage/
H A DOrcV2CBindingsBasicUsage.c37 LLVMTypeRef ParamTypes[] = {LLVMInt32Type(), LLVMInt32Type()}; in createDemoModule()
39 LLVMFunctionType(LLVMInt32Type(), ParamTypes, 2, 0); in createDemoModule()
/llvm-project-15.0.7/llvm/examples/OrcV2Examples/OrcV2CBindingsDumpObjects/
H A DOrcV2CBindingsDumpObjects.c38 LLVMTypeRef ParamTypes[] = {LLVMInt32Type(), LLVMInt32Type()}; in createDemoModule()
40 LLVMFunctionType(LLVMInt32Type(), ParamTypes, 2, 0); in createDemoModule()
/llvm-project-15.0.7/llvm/tools/llvm-c-test/
H A Dmetadata.c19 LLVMValueRef values[] = { LLVMConstInt(LLVMInt32Type(), 0, 0) }; in llvm_add_named_metadata_operand()
31 LLVMValueRef values[] = { LLVMConstInt(LLVMInt32Type(), 0, 0) }; in llvm_set_metadata()
/llvm-project-15.0.7/llvm/examples/OrcV2Examples/OrcV2CBindingsAddObjectFile/
H A DOrcV2CBindingsAddObjectFile.c32 LLVMTypeRef ParamTypes[] = {LLVMInt32Type(), LLVMInt32Type()}; in createDemoModule()
34 LLVMFunctionType(LLVMInt32Type(), ParamTypes, 2, 0); in createDemoModule()
/llvm-project-15.0.7/llvm/examples/OrcV2Examples/OrcV2CBindingsRemovableCode/
H A DOrcV2CBindingsRemovableCode.c37 LLVMTypeRef ParamTypes[] = {LLVMInt32Type(), LLVMInt32Type()}; in createDemoModule()
39 LLVMFunctionType(LLVMInt32Type(), ParamTypes, 2, 0); in createDemoModule()
/llvm-project-15.0.7/llvm/examples/OrcV2Examples/OrcV2CBindingsIRTransforms/
H A DOrcV2CBindingsIRTransforms.c39 LLVMTypeRef ParamTypes[] = {LLVMInt32Type(), LLVMInt32Type()}; in createDemoModule()
41 LLVMFunctionType(LLVMInt32Type(), ParamTypes, 2, 0); in createDemoModule()
/llvm-project-15.0.7/llvm/include/llvm-c/
H A DCore.h1178 LLVMTypeRef LLVMInt32Type(void);
/llvm-project-15.0.7/llvm/bindings/go/llvm/
H A Dir.go558 func Int32Type() (t Type) { t.C = C.LLVMInt32Type(); return }
/llvm-project-15.0.7/llvm/lib/IR/
H A DCore.cpp610 LLVMTypeRef LLVMInt32Type(void) { in LLVMInt32Type() function