You've already forked libadalang
mirror of
https://github.com/AdaCore/libadalang.git
synced 2026-02-12 12:28:54 -08:00
83 lines
2.3 KiB
Plaintext
83 lines
2.3 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,
|
|
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
|
|
);
|