aboutsummaryrefslogtreecommitdiffstats
path: root/ortho/gcc/ortho_ident.adb
blob: 56a851016b81e93a6cc00f07497fcc55c08a19d5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
package body Ortho_Ident is
   function Get_Identifier_With_Length (Str : Address; Size : Integer)
                                       return O_Ident;
   pragma Import (C, Get_Identifier_With_Length,
                  "get_identifier_with_length_c");

   function Compare_Identifier_String
     (Id : O_Ident; Str : Address; Size : Integer)
     return Boolean;
   pragma Import (C, Compare_Identifier_String);
   pragma Warnings (Off, Compare_Identifier_String);

   function Get_Identifier (Str : String) return O_Ident is
   begin
      return Get_Identifier_With_Length (Str'Address, Str'Length);
   end Get_Identifier;

   function Is_Equal (Id : O_Ident; Str : String) return Boolean is
   begin
      return Compare_Identifier_String (Id, Str'Address, Str'Length);
   end Is_Equal;

   function Get_String (Id : O_Ident) return String
   is
      procedure Get_Identifier_String
        (Id : O_Ident; Str_Ptr : Address; Len_Ptr : Address);
      pragma Import (C, Get_Identifier_String);

      Len : Natural;
      type Str_Acc is access String (Positive);
      Str : Str_Acc;
   begin
      Get_Identifier_String (Id, Str'Address, Len'Address);
      return Str (1 .. Len);
   end Get_String;

end Ortho_Ident;