reference, declaration → definition definition → references, declarations, derived classes, virtual overrides reference to multiple definitions → definitions unreferenced |
1144 LLVMTypeRef LLVMInt32Type(void);
19 LLVMValueRef values[] = { LLVMConstInt(LLVMInt32Type(), 0, 0) }; 31 LLVMValueRef values[] = { LLVMConstInt(LLVMInt32Type(), 0, 0) };unittests/ExecutionEngine/MCJIT/MCJITCAPITest.cpp
171 LLVMFunctionType(LLVMInt32Type(), nullptr,0, 0)); 177 LLVMBuildRet(builder, LLVMConstInt(LLVMInt32Type(), 42, 0)); 190 LLVMTypeRef stackmapParamTypes[] = { LLVMInt64Type(), LLVMInt32Type() }; 197 LLVMFunctionType(LLVMInt32Type(), nullptr, 0, 0)); 203 LLVMConstInt(LLVMInt64Type(), 0, 0), LLVMConstInt(LLVMInt32Type(), 5, 0), 204 LLVMConstInt(LLVMInt32Type(), 42, 0) 207 LLVMBuildRet(builder, LLVMConstInt(LLVMInt32Type(), 42, 0)); 221 LLVMValueRef GlobalVar = LLVMAddGlobal(Module, LLVMInt32Type(), "intVal"); 222 LLVMSetInitializer(GlobalVar, LLVMConstInt(LLVMInt32Type(), 42, 0)); 226 LLVMFunctionType(LLVMInt32Type(), nullptr, 0, 0)); 243 LLVMTypeRef ParamTypes[] = { LLVMInt32Type() }; 352 LLVMValueRef GlobalVar = LLVMAddGlobal(Module, LLVMInt32Type(), "simple_value"); 353 LLVMSetInitializer(GlobalVar, LLVMConstInt(LLVMInt32Type(), 42, 0)); 480 LLVMTypeRef FunctionType = LLVMFunctionType(LLVMInt32Type(), nullptr, 0, 0);