Files

96 lines
2.7 KiB
Plaintext

## vim: ft=makojava
<%
nat = c_api.get_name
%>
// --- Project manager functions
/** Function to load a GPR project */
@CompilerDirectives.TruffleBoundary
@CFunction
public static native void ${nat("gpr_project_load")}(
CCharPointer projectFile,
Pointer scenarioVariable,
CCharPointer target,
CCharPointer runtime,
CCharPointer configFile,
int adaOnly,
Pointer project,
Pointer errors
);
/** Function to load an implicit GPR project */
@CompilerDirectives.TruffleBoundary
@CFunction
public static native void ${nat("gpr_project_load_implicit")}(
CCharPointer target,
CCharPointer runtime,
CCharPointer configFile,
Pointer project,
Pointer errors
);
/** Free the given project */
@CompilerDirectives.TruffleBoundary
@CFunction
public static native void ${nat("gpr_project_free")}(
ProjectManagerNative project
);
/** Get the unit provider for the given project */
@CompilerDirectives.TruffleBoundary
@CFunction
public static native UnitProviderNative ${nat("gpr_project_create_unit_provider")}(
ProjectManagerNative project,
CCharPointer subProject
);
/** Get the source file array for the given project */
@CompilerDirectives.TruffleBoundary
@CFunction
public static native StringArrayNative ${nat("gpr_project_source_files")}(
ProjectManagerNative project,
int mode,
CCharPointerPointer projectsData,
int projectsLength
);
${java_doc("libadalang.gpr_project_initialize_context", 4)}
@CompilerDirectives.TruffleBoundary
@CFunction
public static native void ${nat("gpr_project_initialize_context")}(
ProjectManagerNative project,
AnalysisContextNative context,
CCharPointer subproject,
EventHandlerNative eventHandler,
int withTrivia,
int tabStop
);
/** Free the given source file array */
@CompilerDirectives.TruffleBoundary
@CFunction
public static native void ${nat("free_string_array")}(
StringArrayNative sourceFileArray
);
/** Create an auto provider reference */
@CompilerDirectives.TruffleBoundary
@CFunction
public static native UnitProviderNative ${nat("create_auto_provider")}(
CCharPointerPointer sourceFiles,
CCharPointer charset
);
// --- Config pragmas
@CompilerDirectives.TruffleBoundary
@CFunction
public static native void ${nat("set_config_pragmas_mapping")}(
AnalysisContextNative context,
AnalysisUnitNative globalPragmas,
Pointer localPragmas
);