
org.lwjgl.llvm.LLVMBitWriter Maven / Gradle / Ivy
/*
* Copyright LWJGL. All rights reserved.
* License terms: https://www.lwjgl.org/license
* MACHINE GENERATED FILE, DO NOT EDIT
*/
package org.lwjgl.llvm;
import java.nio.*;
import org.lwjgl.system.*;
import static org.lwjgl.system.APIUtil.*;
import static org.lwjgl.system.Checks.*;
import static org.lwjgl.system.JNI.*;
import static org.lwjgl.system.MemoryStack.*;
import static org.lwjgl.system.MemoryUtil.*;
public class LLVMBitWriter {
protected LLVMBitWriter() {
throw new UnsupportedOperationException();
}
/** Contains the function pointers loaded from {@code LLVMCore.getLibrary()}. */
public static final class Functions {
private Functions() {}
/** Function address. */
public static final long
WriteBitcodeToFile = apiGetFunctionAddress(LLVMCore.getLibrary(), "LLVMWriteBitcodeToFile"),
WriteBitcodeToFD = apiGetFunctionAddress(LLVMCore.getLibrary(), "LLVMWriteBitcodeToFD"),
WriteBitcodeToFileHandle = apiGetFunctionAddress(LLVMCore.getLibrary(), "LLVMWriteBitcodeToFileHandle"),
WriteBitcodeToMemoryBuffer = apiGetFunctionAddress(LLVMCore.getLibrary(), "LLVMWriteBitcodeToMemoryBuffer");
}
// --- [ LLVMWriteBitcodeToFile ] ---
/** Unsafe version of: {@link #LLVMWriteBitcodeToFile WriteBitcodeToFile} */
public static int nLLVMWriteBitcodeToFile(long M, long Path) {
long __functionAddress = Functions.WriteBitcodeToFile;
if (CHECKS) {
check(M);
}
return invokePPI(M, Path, __functionAddress);
}
/** Writes a module to the specified path. Returns 0 on success. */
public static int LLVMWriteBitcodeToFile(@NativeType("LLVMModuleRef") long M, @NativeType("char const *") ByteBuffer Path) {
if (CHECKS) {
checkNT1(Path);
}
return nLLVMWriteBitcodeToFile(M, memAddress(Path));
}
/** Writes a module to the specified path. Returns 0 on success. */
public static int LLVMWriteBitcodeToFile(@NativeType("LLVMModuleRef") long M, @NativeType("char const *") CharSequence Path) {
MemoryStack stack = stackGet(); int stackPointer = stack.getPointer();
try {
stack.nUTF8(Path, true);
long PathEncoded = stack.getPointerAddress();
return nLLVMWriteBitcodeToFile(M, PathEncoded);
} finally {
stack.setPointer(stackPointer);
}
}
// --- [ LLVMWriteBitcodeToFD ] ---
/** Writes a module to an open file descriptor. Returns 0 on success. */
public static int LLVMWriteBitcodeToFD(@NativeType("LLVMModuleRef") long M, int FD, int ShouldClose, int Unbuffered) {
long __functionAddress = Functions.WriteBitcodeToFD;
if (CHECKS) {
check(M);
}
return invokePI(M, FD, ShouldClose, Unbuffered, __functionAddress);
}
// --- [ LLVMWriteBitcodeToFileHandle ] ---
/** Deprecated for {@link #LLVMWriteBitcodeToFD WriteBitcodeToFD}. Writes a module to an open file descriptor. Returns 0 on success. Closes the {@code Handle}. */
public static int LLVMWriteBitcodeToFileHandle(@NativeType("LLVMModuleRef") long M, int Handle) {
long __functionAddress = Functions.WriteBitcodeToFileHandle;
if (CHECKS) {
check(M);
}
return invokePI(M, Handle, __functionAddress);
}
// --- [ LLVMWriteBitcodeToMemoryBuffer ] ---
/** Writes a module to a new memory buffer and returns it. */
@NativeType("LLVMMemoryBufferRef")
public static long LLVMWriteBitcodeToMemoryBuffer(@NativeType("LLVMModuleRef") long M) {
long __functionAddress = Functions.WriteBitcodeToMemoryBuffer;
if (CHECKS) {
check(M);
}
return invokePP(M, __functionAddress);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy