All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.lwjgl.llvm.LLVMTargetPowerPC Maven / Gradle / Ivy

There is a newer version: 3.3.6
Show newest version
/*
 * Copyright LWJGL. All rights reserved.
 * License terms: https://www.lwjgl.org/license
 * MACHINE GENERATED FILE, DO NOT EDIT
 */
package org.lwjgl.llvm;

import org.lwjgl.system.*;

import static org.lwjgl.system.APIUtil.*;
import static org.lwjgl.system.JNI.*;

public class LLVMTargetPowerPC {

    /** Contains the function pointers loaded from {@code LLVMCore.getLibrary()}. */
    public static final class Functions {

        private Functions() {}

        /** Function address. */
        public static final long
            InitializePowerPCTargetInfo   = apiGetFunctionAddress(LLVMCore.getLibrary(), "LLVMInitializePowerPCTargetInfo"),
            InitializePowerPCTarget       = apiGetFunctionAddress(LLVMCore.getLibrary(), "LLVMInitializePowerPCTarget"),
            InitializePowerPCTargetMC     = apiGetFunctionAddress(LLVMCore.getLibrary(), "LLVMInitializePowerPCTargetMC"),
            InitializePowerPCAsmPrinter   = apiGetFunctionAddress(LLVMCore.getLibrary(), "LLVMInitializePowerPCAsmPrinter"),
            InitializePowerPCAsmParser    = apiGetFunctionAddress(LLVMCore.getLibrary(), "LLVMInitializePowerPCAsmParser"),
            InitializePowerPCDisassembler = apiGetFunctionAddress(LLVMCore.getLibrary(), "LLVMInitializePowerPCDisassembler");

    }

    protected LLVMTargetPowerPC() {
        throw new UnsupportedOperationException();
    }

    // --- [ LLVMInitializePowerPCTargetInfo ] ---

    public static void LLVMInitializePowerPCTargetInfo() {
        long __functionAddress = Functions.InitializePowerPCTargetInfo;
        invokeV(__functionAddress);
    }

    // --- [ LLVMInitializePowerPCTarget ] ---

    public static void LLVMInitializePowerPCTarget() {
        long __functionAddress = Functions.InitializePowerPCTarget;
        invokeV(__functionAddress);
    }

    // --- [ LLVMInitializePowerPCTargetMC ] ---

    public static void LLVMInitializePowerPCTargetMC() {
        long __functionAddress = Functions.InitializePowerPCTargetMC;
        invokeV(__functionAddress);
    }

    // --- [ LLVMInitializePowerPCAsmPrinter ] ---

    public static void LLVMInitializePowerPCAsmPrinter() {
        long __functionAddress = Functions.InitializePowerPCAsmPrinter;
        invokeV(__functionAddress);
    }

    // --- [ LLVMInitializePowerPCAsmParser ] ---

    public static void LLVMInitializePowerPCAsmParser() {
        long __functionAddress = Functions.InitializePowerPCAsmParser;
        invokeV(__functionAddress);
    }

    // --- [ LLVMInitializePowerPCDisassembler ] ---

    public static void LLVMInitializePowerPCDisassembler() {
        long __functionAddress = Functions.InitializePowerPCDisassembler;
        invokeV(__functionAddress);
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy