------------------------------------------------------------------------------ ------------------------------------------------------------------------------ -- This Ada package was automatically generated by the software engineering tool Platypus -- see http://dossen.univ-brest.fr/apl -- -- Any modification of this file will be lost. -- Please see the "platypus" directory instead : it contains the Cheddar's -- model and its meta-model. ------------------------------------------------------------------------------ ------------------------------------------------------------------------------ -- Cheddar is a free real time scheduling tool. -- This program provides services to automatically check temporal constraints -- of real time tasks. -- -- Copyright (C) 2002-2009 Frank Singhoff -- Cheddar is developed by the LAB-STICC Team, University of Brest -- -- This program is free software; you can redistribute it and/or modify -- it under the terms of the GNU General Public License as published by -- the Free Software Foundation; either version 2 of the License, or -- (at your option) any later version. -- -- This program is distributed in the hope that it will be useful, -- but WITHOUT ANY WARRANTY; without even the implied warranty of -- MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -- GNU General Public License for more details. -- -- You should have received a copy of the GNU General Public License -- along with this program; if not, write to the Free Software -- Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -- -- -- Contact : cheddar@listes.univ-brest.fr -- To post to this mailing list, you must be subscribed -- (see http//beru.univ-brest.fr/~singhoff/cheddar for details) -- ------------------------------------------------------------------------------ ------------------------------------------------------------------------------ with Text_io; use Text_io; with unbounded_strings; use unbounded_strings; with primitive_xml_strings; use primitive_xml_strings; Package Body Caches is function XML_String(obj : in Cache_Addressing_Type; level : in natural := 0) return Unbounded_String is begin return to_unbounded_string(Cache_Addressing_Type'image (obj) ); end XML_String; function XML_Ref_String (obj : in Cache_Addressing_Type; level : in natural := 0) return Unbounded_String is begin raise xml_ref_string_error; return to_unbounded_string(""); end XML_Ref_String; function XML_String(obj : in Cache_Type; level : in natural := 0) return Unbounded_String is begin return to_unbounded_string(Cache_Type'image (obj) ); end XML_String; function XML_Ref_String (obj : in Cache_Type; level : in natural := 0) return Unbounded_String is begin raise xml_ref_string_error; return to_unbounded_string(""); end XML_Ref_String; function XML_String(obj : in Cache_Coherence_Protocol_Type; level : in natural := 0) return Unbounded_String is begin return to_unbounded_string(Cache_Coherence_Protocol_Type'image (obj) ); end XML_String; function XML_Ref_String (obj : in Cache_Coherence_Protocol_Type; level : in natural := 0) return Unbounded_String is begin raise xml_ref_string_error; return to_unbounded_string(""); end XML_Ref_String; function XML_String(obj : in Cache_Replacement_Type; level : in natural := 0) return Unbounded_String is begin return to_unbounded_string(Cache_Replacement_Type'image (obj) ); end XML_String; function XML_Ref_String (obj : in Cache_Replacement_Type; level : in natural := 0) return Unbounded_String is begin raise xml_ref_string_error; return to_unbounded_string(""); end XML_Ref_String; function XML_String(obj : in Write_Policy_Type; level : in natural := 0) return Unbounded_String is begin return to_unbounded_string(Write_Policy_Type'image (obj) ); end XML_String; function XML_Ref_String (obj : in Write_Policy_Type; level : in natural := 0) return Unbounded_String is begin raise xml_ref_string_error; return to_unbounded_string(""); end XML_Ref_String; -- --------= Generic_Cache =-------- procedure Initialize(obj : in out Generic_Cache) is begin initialize(Named_Object(obj)); obj.number_of_block := 0; obj.block_size := 0; obj.associativity := 0; obj.cache_replacement := Random; obj.hit_time := 0.0; obj.miss_time := 0.0; obj.miss_rate := 0; obj.cache_coherence_protocol := Private_Cache_Protocol; obj.cache_category := Data_Cache_Type; end Initialize; function Copy ( obj : in Generic_Cache ) return Generic_Cache_Ptr is New_Generic_Cache : Generic_Cache_Ptr; begin New_Generic_Cache := new Generic_Cache'(obj); return (New_Generic_Cache); end Copy; function Copy ( obj : in Generic_Cache_Ptr ) return Generic_Cache_Ptr is begin return copy(obj.all); end Copy; procedure Put(obj : in Generic_Cache) is begin put(Named_Object(obj)); put("number_of_block: "); standards_io.natural_io.put(obj.number_of_block); put ( "; " ); put("block_size: "); standards_io.natural_io.put(obj.block_size); put ( "; " ); put("associativity: "); standards_io.natural_io.put(obj.associativity); put ( "; " ); put("cache_replacement: "); put(obj.cache_replacement); put ( "; " ); put("hit_time: "); standards_io.double_io.put(obj.hit_time); put ( "; " ); put("miss_time: "); standards_io.double_io.put(obj.miss_time); put ( "; " ); put("miss_rate: "); standards_io.natural_io.put(obj.miss_rate); put ( "; " ); put("cache_coherence_protocol: "); put(obj.cache_coherence_protocol); put ( "; " ); put("cache_category: "); put(obj.cache_category); put ( "; " ); end Put; procedure Put(obj : in Generic_Cache_Ptr) is begin Put(Obj.All); end Put; procedure Put_Name ( obj : in Generic_Cache_Ptr) is begin Put ( To_String ( Obj.Name ) ); end Put_Name; function Get_Name (obj : in Generic_Cache) return Unbounded_String is begin return obj.name; end Get_Name; function Get_Name (obj : in Generic_Cache_ptr) return Unbounded_String is begin return obj.name; end Get_Name; function type_of ( obj : in Generic_Cache ) return unbounded_string_list is list : unbounded_string_list; s : unbounded_string_ptr; begin Initialize(list); s := new unbounded_string; s.all := to_unbounded_string("OBJECTS.GENERIC_OBJECT"); Add (list, s); s := new unbounded_string; s.all := to_unbounded_string("OBJECTS.NAMED_OBJECT"); Add (list, s); s := new unbounded_string; s.all := to_unbounded_string("CACHES.GENERIC_CACHE"); Add (list, s); return list; end type_of; function type_of ( obj : in Generic_Cache_Ptr ) return unbounded_string_list is begin return type_of(obj.all); end type_of; procedure Build_Attributes_XML_String(obj : in Generic_Cache; level : in natural := 0; result : in out Unbounded_String) is begin Build_Attributes_XML_String(Named_Object(obj), level, result); if (XML_String(obj.number_of_block, level + 1) /= Empty_String) then result := result & unbounded_ht(level + 1) & "" & XML_String(obj.number_of_block, level + 1) & "" & Unbounded_Lf; end if; if (XML_String(obj.block_size, level + 1) /= Empty_String) then result := result & unbounded_ht(level + 1) & "" & XML_String(obj.block_size, level + 1) & "" & Unbounded_Lf; end if; if (XML_String(obj.associativity, level + 1) /= Empty_String) then result := result & unbounded_ht(level + 1) & "" & XML_String(obj.associativity, level + 1) & "" & Unbounded_Lf; end if; if (XML_String(obj.cache_replacement, level + 1) /= Empty_String) then result := result & unbounded_ht(level + 1) & "" & XML_String(obj.cache_replacement, level + 1) & "" & Unbounded_Lf; end if; if (XML_String(obj.hit_time, level + 1) /= Empty_String) then result := result & unbounded_ht(level + 1) & "" & XML_String(obj.hit_time, level + 1) & "" & Unbounded_Lf; end if; if (XML_String(obj.miss_time, level + 1) /= Empty_String) then result := result & unbounded_ht(level + 1) & "" & XML_String(obj.miss_time, level + 1) & "" & Unbounded_Lf; end if; if (XML_String(obj.miss_rate, level + 1) /= Empty_String) then result := result & unbounded_ht(level + 1) & "" & XML_String(obj.miss_rate, level + 1) & "" & Unbounded_Lf; end if; if (XML_String(obj.cache_coherence_protocol, level + 1) /= Empty_String) then result := result & unbounded_ht(level + 1) & "" & XML_String(obj.cache_coherence_protocol, level + 1) & "" & Unbounded_Lf; end if; if (XML_String(obj.cache_category, level + 1) /= Empty_String) then result := result & unbounded_ht(level + 1) & "" & XML_String(obj.cache_category, level + 1) & "" & Unbounded_Lf; end if; end Build_Attributes_XML_String; function XML_String(obj : in Generic_Cache; level : in natural := 0) return Unbounded_String is result : Unbounded_String; begin result := "" & Unbounded_Lf; Build_Attributes_XML_String(obj, level, result); result := result & "" & Unbounded_Lf; return (result); end XML_String; function XML_String(obj : in Generic_Cache_Ptr; level : in natural := 0) return Unbounded_String is begin return XML_String(obj.all); end XML_String; function XML_Ref_String(obj : in Generic_Cache; level : in natural := 0) return Unbounded_String is result : Unbounded_String; begin result := "" & Unbounded_Lf; return (result); end XML_Ref_String; function XML_Ref_String(obj : in Generic_Cache_Ptr; level : in natural := 0) return Unbounded_String is begin return XML_Ref_String(obj.all); end XML_Ref_String; -- --------= Data_Cache =-------- procedure Initialize(obj : in out Data_Cache) is begin initialize(Generic_Cache(obj)); obj.write_policy := Copy_Back; obj.cache_category := Data_Cache_Type; end Initialize; function Copy ( obj : in Data_Cache ) return Generic_Cache_Ptr is New_Data_Cache : Data_Cache_Ptr; begin New_Data_Cache := new Data_Cache'(obj); return Generic_Cache_Ptr(New_Data_Cache); end Copy; function Copy ( obj : in Data_Cache_Ptr ) return Generic_Cache_Ptr is begin return copy(obj.all); end Copy; procedure Put(obj : in Data_Cache) is begin put(Generic_Cache(obj)); put("write_policy: "); put(obj.write_policy); put ( "; " ); end Put; procedure Put(obj : in Data_Cache_Ptr) is begin Put(Obj.All); end Put; procedure Put_Name ( obj : in Data_Cache_Ptr) is begin Put ( To_String ( Obj.Name ) ); end Put_Name; function Get_Name (obj : in Data_Cache) return Unbounded_String is begin return obj.name; end Get_Name; function Get_Name (obj : in Data_Cache_ptr) return Unbounded_String is begin return obj.name; end Get_Name; function type_of ( obj : in Data_Cache ) return unbounded_string_list is list : unbounded_string_list; s : unbounded_string_ptr; begin Initialize(list); s := new unbounded_string; s.all := to_unbounded_string("OBJECTS.GENERIC_OBJECT"); Add (list, s); s := new unbounded_string; s.all := to_unbounded_string("OBJECTS.NAMED_OBJECT"); Add (list, s); s := new unbounded_string; s.all := to_unbounded_string("CACHES.GENERIC_CACHE"); Add (list, s); s := new unbounded_string; s.all := to_unbounded_string("CACHES.DATA_CACHE"); Add (list, s); return list; end type_of; function type_of ( obj : in Data_Cache_Ptr ) return unbounded_string_list is begin return type_of(obj.all); end type_of; procedure Build_Attributes_XML_String(obj : in Data_Cache; level : in natural := 0; result : in out Unbounded_String) is begin Build_Attributes_XML_String(Generic_Cache(obj), level, result); if (XML_String(obj.write_policy, level + 1) /= Empty_String) then result := result & unbounded_ht(level + 1) & "" & XML_String(obj.write_policy, level + 1) & "" & Unbounded_Lf; end if; end Build_Attributes_XML_String; function XML_String(obj : in Data_Cache; level : in natural := 0) return Unbounded_String is result : Unbounded_String; begin result := "" & Unbounded_Lf; Build_Attributes_XML_String(obj, level, result); result := result & "" & Unbounded_Lf; return (result); end XML_String; function XML_String(obj : in Data_Cache_Ptr; level : in natural := 0) return Unbounded_String is begin return XML_String(obj.all); end XML_String; function XML_Ref_String(obj : in Data_Cache; level : in natural := 0) return Unbounded_String is result : Unbounded_String; begin result := "" & Unbounded_Lf; return (result); end XML_Ref_String; function XML_Ref_String(obj : in Data_Cache_Ptr; level : in natural := 0) return Unbounded_String is begin return XML_Ref_String(obj.all); end XML_Ref_String; -- --------= Instruction_Cache =-------- procedure Initialize(obj : in out Instruction_Cache) is begin initialize(Generic_Cache(obj)); obj.cache_category := Instruction_Cache_Type; end Initialize; function Copy ( obj : in Instruction_Cache ) return Generic_Cache_Ptr is New_Instruction_Cache : Instruction_Cache_Ptr; begin New_Instruction_Cache := new Instruction_Cache'(obj); return Generic_Cache_Ptr(New_Instruction_Cache); end Copy; function Copy ( obj : in Instruction_Cache_Ptr ) return Generic_Cache_Ptr is begin return copy(obj.all); end Copy; procedure Put(obj : in Instruction_Cache) is begin put(Generic_Cache(obj)); end Put; procedure Put(obj : in Instruction_Cache_Ptr) is begin Put(Obj.All); end Put; procedure Put_Name ( obj : in Instruction_Cache_Ptr) is begin Put ( To_String ( Obj.Name ) ); end Put_Name; function Get_Name (obj : in Instruction_Cache) return Unbounded_String is begin return obj.name; end Get_Name; function Get_Name (obj : in Instruction_Cache_ptr) return Unbounded_String is begin return obj.name; end Get_Name; function type_of ( obj : in Instruction_Cache ) return unbounded_string_list is list : unbounded_string_list; s : unbounded_string_ptr; begin Initialize(list); s := new unbounded_string; s.all := to_unbounded_string("OBJECTS.GENERIC_OBJECT"); Add (list, s); s := new unbounded_string; s.all := to_unbounded_string("OBJECTS.NAMED_OBJECT"); Add (list, s); s := new unbounded_string; s.all := to_unbounded_string("CACHES.GENERIC_CACHE"); Add (list, s); s := new unbounded_string; s.all := to_unbounded_string("CACHES.INSTRUCTION_CACHE"); Add (list, s); return list; end type_of; function type_of ( obj : in Instruction_Cache_Ptr ) return unbounded_string_list is begin return type_of(obj.all); end type_of; procedure Build_Attributes_XML_String(obj : in Instruction_Cache; level : in natural := 0; result : in out Unbounded_String) is begin Build_Attributes_XML_String(Generic_Cache(obj), level, result); end Build_Attributes_XML_String; function XML_String(obj : in Instruction_Cache; level : in natural := 0) return Unbounded_String is result : Unbounded_String; begin result := "" & Unbounded_Lf; Build_Attributes_XML_String(obj, level, result); result := result & "" & Unbounded_Lf; return (result); end XML_String; function XML_String(obj : in Instruction_Cache_Ptr; level : in natural := 0) return Unbounded_String is begin return XML_String(obj.all); end XML_String; function XML_Ref_String(obj : in Instruction_Cache; level : in natural := 0) return Unbounded_String is result : Unbounded_String; begin result := "" & Unbounded_Lf; return (result); end XML_Ref_String; function XML_Ref_String(obj : in Instruction_Cache_Ptr; level : in natural := 0) return Unbounded_String is begin return XML_Ref_String(obj.all); end XML_Ref_String; -- --------= Data_Instruction_Cache =-------- procedure Initialize(obj : in out Data_Instruction_Cache) is begin initialize(Generic_Cache(obj)); obj.write_policy := Copy_Back; obj.cache_category := Data_Instruction_Cache_Type; end Initialize; function Copy ( obj : in Data_Instruction_Cache ) return Generic_Cache_Ptr is New_Data_Instruction_Cache : Data_Instruction_Cache_Ptr; begin New_Data_Instruction_Cache := new Data_Instruction_Cache'(obj); return Generic_Cache_Ptr(New_Data_Instruction_Cache); end Copy; function Copy ( obj : in Data_Instruction_Cache_Ptr ) return Generic_Cache_Ptr is begin return copy(obj.all); end Copy; procedure Put(obj : in Data_Instruction_Cache) is begin put(Generic_Cache(obj)); put("write_policy: "); put(obj.write_policy); put ( "; " ); end Put; procedure Put(obj : in Data_Instruction_Cache_Ptr) is begin Put(Obj.All); end Put; procedure Put_Name ( obj : in Data_Instruction_Cache_Ptr) is begin Put ( To_String ( Obj.Name ) ); end Put_Name; function Get_Name (obj : in Data_Instruction_Cache) return Unbounded_String is begin return obj.name; end Get_Name; function Get_Name (obj : in Data_Instruction_Cache_ptr) return Unbounded_String is begin return obj.name; end Get_Name; function type_of ( obj : in Data_Instruction_Cache ) return unbounded_string_list is list : unbounded_string_list; s : unbounded_string_ptr; begin Initialize(list); s := new unbounded_string; s.all := to_unbounded_string("OBJECTS.GENERIC_OBJECT"); Add (list, s); s := new unbounded_string; s.all := to_unbounded_string("OBJECTS.NAMED_OBJECT"); Add (list, s); s := new unbounded_string; s.all := to_unbounded_string("CACHES.GENERIC_CACHE"); Add (list, s); s := new unbounded_string; s.all := to_unbounded_string("CACHES.DATA_INSTRUCTION_CACHE"); Add (list, s); return list; end type_of; function type_of ( obj : in Data_Instruction_Cache_Ptr ) return unbounded_string_list is begin return type_of(obj.all); end type_of; procedure Build_Attributes_XML_String(obj : in Data_Instruction_Cache; level : in natural := 0; result : in out Unbounded_String) is begin Build_Attributes_XML_String(Generic_Cache(obj), level, result); if (XML_String(obj.write_policy, level + 1) /= Empty_String) then result := result & unbounded_ht(level + 1) & "" & XML_String(obj.write_policy, level + 1) & "" & Unbounded_Lf; end if; end Build_Attributes_XML_String; function XML_String(obj : in Data_Instruction_Cache; level : in natural := 0) return Unbounded_String is result : Unbounded_String; begin result := "" & Unbounded_Lf; Build_Attributes_XML_String(obj, level, result); result := result & "" & Unbounded_Lf; return (result); end XML_String; function XML_String(obj : in Data_Instruction_Cache_Ptr; level : in natural := 0) return Unbounded_String is begin return XML_String(obj.all); end XML_String; function XML_Ref_String(obj : in Data_Instruction_Cache; level : in natural := 0) return Unbounded_String is result : Unbounded_String; begin result := "" & Unbounded_Lf; return (result); end XML_Ref_String; function XML_Ref_String(obj : in Data_Instruction_Cache_Ptr; level : in natural := 0) return Unbounded_String is begin return XML_Ref_String(obj.all); end XML_Ref_String; -- --------= Cache_System =-------- procedure Initialize(obj : in out Cache_System) is begin initialize(Named_Object(obj)); end Initialize; function Copy ( obj : in Cache_System ) return Cache_System_Ptr is New_Cache_System : Cache_System_Ptr; begin New_Cache_System := new Cache_System'(obj); return (New_Cache_System); end Copy; function Copy ( obj : in Cache_System_Ptr ) return Cache_System_Ptr is begin return copy(obj.all); end Copy; procedure Put(obj : in Cache_System) is begin put(Named_Object(obj)); put("caches: "); put(obj.caches); put ( "; " ); end Put; procedure Put(obj : in Cache_System_Ptr) is begin Put(Obj.All); end Put; procedure Put_Name ( obj : in Cache_System_Ptr) is begin Put ( To_String ( Obj.Name ) ); end Put_Name; function Get_Name (obj : in Cache_System) return Unbounded_String is begin return obj.name; end Get_Name; function Get_Name (obj : in Cache_System_ptr) return Unbounded_String is begin return obj.name; end Get_Name; function type_of ( obj : in Cache_System ) return unbounded_string_list is list : unbounded_string_list; s : unbounded_string_ptr; begin Initialize(list); s := new unbounded_string; s.all := to_unbounded_string("OBJECTS.GENERIC_OBJECT"); Add (list, s); s := new unbounded_string; s.all := to_unbounded_string("OBJECTS.NAMED_OBJECT"); Add (list, s); s := new unbounded_string; s.all := to_unbounded_string("CACHES.CACHE_SYSTEM"); Add (list, s); return list; end type_of; function type_of ( obj : in Cache_System_Ptr ) return unbounded_string_list is begin return type_of(obj.all); end type_of; procedure Build_Attributes_XML_String(obj : in Cache_System; level : in natural := 0; result : in out Unbounded_String) is begin Build_Attributes_XML_String(Named_Object(obj), level, result); if (XML_String(obj.caches, level + 1) /= Empty_String) then result := result & unbounded_ht(level + 1) & "" & XML_String(obj.caches, level + 1) & "" & Unbounded_Lf; end if; end Build_Attributes_XML_String; function XML_String(obj : in Cache_System; level : in natural := 0) return Unbounded_String is result : Unbounded_String; begin result := "" & Unbounded_Lf; Build_Attributes_XML_String(obj, level, result); result := result & "" & Unbounded_Lf; return (result); end XML_String; function XML_String(obj : in Cache_System_Ptr; level : in natural := 0) return Unbounded_String is begin return XML_String(obj.all); end XML_String; function XML_Ref_String(obj : in Cache_System; level : in natural := 0) return Unbounded_String is result : Unbounded_String; begin result := "" & Unbounded_Lf; return (result); end XML_Ref_String; function XML_Ref_String(obj : in Cache_System_Ptr; level : in natural := 0) return Unbounded_String is begin return XML_Ref_String(obj.all); end XML_Ref_String; End Caches;