亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频

? 歡迎來到蟲蟲下載站! | ?? 資源下載 ?? 資源專輯 ?? 關于我們
? 蟲蟲下載站

?? ghdldrv.adb

?? vhdl集成電路設計軟件.需要用gcc-4.0.2版本編譯.
?? ADB
?? 第 1 頁 / 共 4 頁
字號:
         El : Iir;         Dep : Iir_Design_Unit;         Stamp : Time_Stamp_Id;         Dep_File : Iir_Design_File;      begin         Depends := Get_Dependence_List (Unit);         Stamp := Get_Analysis_Time_Stamp (Design_File);         if Depends /= Null_Iir_List then            for I in Natural loop               El := Get_Nth_Element (Depends, I);               exit when El = Null_Iir;               Dep := Libraries.Find_Design_Unit (El);               if Dep = Null_Iir then                  if Flag_Verbose then                     Disp_Library_Unit (Unit);                     Put (" depends on an unknown unit ");                     Disp_Library_Unit (El);                     New_Line;                  end if;                  return True;               end if;               Dep_File := Get_Design_File (Dep);               if Dep /= Std_Package.Std_Standard_Unit                 and then Files_Map.Is_Gt (Get_Analysis_Time_Stamp (Dep_File),                                           Stamp)               then                  if Flag_Verbose then                     Disp_Library_Unit (Get_Library_Unit (Unit));                     Put (" depends on: ");                     Disp_Library_Unit (Get_Library_Unit (Dep));                     Put (" (more recently analyzed)");                     New_Line;                  end if;                  return True;               end if;            end loop;         end if;      end;      return False;   end Is_Unit_Outdated;   procedure Add_Argument (Inst : in out Instance; Arg : String_Access)   is   begin      Increment_Last (Inst);      Inst.Table (Last (Inst)) := Arg;   end Add_Argument;   --  Convert option "-Wx,OPTIONS" to arguments for tool X.   procedure Add_Arguments (Inst : in out Instance; Opt : String) is   begin      Add_Argument (Inst, new String'(Opt (Opt'First + 4 .. Opt'Last)));   end Add_Arguments;   procedure Tool_Not_Found (Name : String) is   begin      Error ("installation problem: " & Name & " not found");      raise Option_Error;   end Tool_Not_Found;   procedure Set_Tools_Name   is   begin      --  Set tools name.      if Compiler_Cmd = null then         case Compile_Kind is            when Compile_Debug =>               Compiler_Cmd := new String'(Default_Pathes.Compiler_Debug);            when Compile_Gcc =>               Compiler_Cmd := new String'(Default_Pathes.Compiler_Gcc);            when Compile_Mcode =>               Compiler_Cmd := new String'(Default_Pathes.Compiler_Mcode);         end case;      end if;      if Post_Processor_Cmd = null then         Post_Processor_Cmd := new String'(Default_Pathes.Post_Processor);      end if;   end Set_Tools_Name;   procedure Locate_Tools   is   begin      Compiler_Path := Locate_Exec_On_Path (Compiler_Cmd.all);      if Compiler_Path = null then         Tool_Not_Found (Compiler_Cmd.all);      end if;      if Compile_Kind >= Compile_Debug then         Post_Processor_Path := Locate_Exec_On_Path (Post_Processor_Cmd.all);         if Post_Processor_Path = null then            Tool_Not_Found (Post_Processor_Cmd.all);         end if;      end if;      if Compile_Kind >= Compile_Gcc then         Assembler_Path := Locate_Exec_On_Path (Assembler_Cmd);         if Assembler_Path = null and not Flag_Asm then            Tool_Not_Found (Assembler_Cmd);         end if;      end if;      Linker_Path := Locate_Exec_On_Path (Linker_Cmd);      if Linker_Path = null then         Tool_Not_Found (Linker_Cmd);      end if;      Dash_O := new String'("-o");      Dash_S := new String'("-S");      Dash_Quiet := new String'("-quiet");   end Locate_Tools;   procedure Setup_Compiler (Load : Boolean)   is      use Libraries;   begin      Set_Tools_Name;      Locate_Tools;      Setup_Libraries (Load);      for I in 2 .. Get_Nbr_Pathes loop         Add_Argument (Compiler_Args,                       new String'("-P" & Image (Get_Path (I))));      end loop;   end Setup_Compiler;   type Command_Comp is abstract new Command_Lib with null record;   --  Setup GHDL.   procedure Init (Cmd : in out Command_Comp);   --  Handle:   --  all ghdl flags.   --  some GCC flags.   procedure Decode_Option (Cmd : in out Command_Comp;                            Option : String;                            Arg : String;                            Res : out Option_Res);   procedure Disp_Long_Help (Cmd : Command_Comp);   procedure Init (Cmd : in out Command_Comp)   is   begin      --  Init options.      Flag_Not_Quiet := False;      Flag_Disp_Commands := False;      Flag_Asm := False;      Compile_Kind := Compile_Gcc;      Flag_Expect_Failure := False;      Output_File := null;      --  Initialize argument tables.      Init (Compiler_Args);      Init (Postproc_Args);      Init (Assembler_Args);      Init (Linker_Args);      Init (Command_Lib (Cmd));   end Init;   procedure Decode_Option (Cmd : in out Command_Comp;                            Option : String;                            Arg : String;                            Res : out Option_Res)   is      Str : String_Access;   begin      Res := Option_Bad;      if Option = "-v" and then Flag_Verbose = False then         --  Note: this is also decoded for command_lib, but we set         --  Flag_Disp_Commands too.         Flag_Verbose := True;         --Flags.Verbose := True;         Flag_Disp_Commands := True;         Res := Option_Ok;      elsif Option'Length > 8 and then Option (1 .. 8) = "--GHDL1=" then         Compiler_Cmd := new String'(Option (9 .. Option'Last));         Res := Option_Ok;      elsif Option = "-S" then         Flag_Asm := True;         Res := Option_Ok;      elsif Option = "--post" then         Compile_Kind := Compile_Debug;         Res := Option_Ok;      elsif Option = "--mcode" then         Compile_Kind := Compile_Mcode;         Res := Option_Ok;      elsif Option = "-o" then         if Arg'Length = 0 then            Res := Option_Arg_Req;         else            Output_File := new String'(Arg);            Res := Option_Arg;         end if;      elsif Option'Length > 4        and then Option (2) = 'W' and then Option (4) = ','      then         if Option (3) = 'c' then            Add_Arguments (Compiler_Args, Option);         elsif Option (3) = 'a' then            Add_Arguments (Assembler_Args, Option);         elsif Option (3) = 'p' then            Add_Arguments (Postproc_Args, Option);         elsif Option (3) = 'l' then            Add_Arguments (Linker_Args, Option);         else            Error              ("unknown tool name in '-W" & Option (3) & ",' option");            raise Option_Error;         end if;         Res := Option_Ok;      elsif Option'Length >= 2 and then Option (2) = 'g' then         --  Debugging option.         Str := new String'(Option);         Add_Argument (Compiler_Args, Str);         Add_Argument (Linker_Args, Str);         Res := Option_Ok;      elsif Option = "-Q" then         Flag_Not_Quiet := True;         Res := Option_Ok;      elsif Option = "--expect-failure" then         Add_Argument (Compiler_Args, new String'(Option));         Flag_Expect_Failure := True;         Res := Option_Ok;      elsif Flags.Parse_Option (Option) then         Add_Argument (Compiler_Args, new String'(Option));         Res := Option_Ok;      elsif Option'Length >= 2        and then (Option (2) = 'O' or Option (2) = 'f')      then         --  Optimization option.         --  This is put after Flags.Parse_Option, since it may catch -fxxx         --  options.         Add_Argument (Compiler_Args, new String'(Option));         Res := Option_Ok;      else         Decode_Option (Command_Lib (Cmd), Option, Arg, Res);      end if;   end Decode_Option;   procedure Disp_Long_Help (Cmd : Command_Comp)   is      use Ada.Text_IO;   begin      Disp_Long_Help (Command_Lib (Cmd));      Put_Line (" -v             Be verbose");      Put_Line (" --GHDL1=PATH   Set the path of the ghdl1 compiler");      Put_Line (" -S             Do not assemble");      Put_Line (" -o FILE        Set the name of the output file");      Put_Line (" -WX,OPTION     Pass OPTION to X, where X is one of");      Put_Line ("                 c: compiler, a: assembler, l: linker");      Put_Line (" -g[XX]         Pass debugging option to the compiler");      Put_Line (" -O[XX]/-f[XX]  Pass optimization option to the compiler");      Put_Line (" -Q             Do not add -quiet option to compiler");      Put_Line (" --expect-failure  Expect analysis/elaboration failure");   end Disp_Long_Help;   --  Command dispconfig.   type Command_Dispconfig is new Command_Comp with null record;   function Decode_Command (Cmd : Command_Dispconfig; Name : String)                           return Boolean;   function Get_Short_Help (Cmd : Command_Dispconfig) return String;   procedure Perform_Action (Cmd : in out Command_Dispconfig;                             Args : Argument_List);   function Decode_Command (Cmd : Command_Dispconfig; Name : String)                           return Boolean   is      pragma Unreferenced (Cmd);   begin      return Name = "--dispconfig";   end Decode_Command;   function Get_Short_Help (Cmd : Command_Dispconfig) return String   is      pragma Unreferenced (Cmd);   begin      return "--dispconfig       Disp tools path";   end Get_Short_Help;   procedure Perform_Action (Cmd : in out Command_Dispconfig;                             Args : Argument_List)   is      use Ada.Text_IO;      use Libraries;      pragma Unreferenced (Cmd);   begin      if Args'Length /= 0 then         Error ("--dispconfig does not accept any argument");         raise Option_Error;      end if;      Set_Tools_Name;      Put ("compiler command: ");      Put_Line (Compiler_Cmd.all);      if Compile_Kind >= Compile_Debug then         Put ("post-processor command: ");         Put_Line (Post_Processor_Cmd.all);      end if;      if Compile_Kind >= Compile_Gcc then         Put ("assembler command: ");         Put_Line (Assembler_Cmd);      end if;      Put ("linker command: ");      Put_Line (Linker_Cmd);      Setup_Libraries (False);      Put ("library directory: ");      Put_Line (Prefix_Path.all);      Locate_Tools;      Put ("compiler path: ");      Put_Line (Compiler_Path.all);      if Compile_Kind >= Compile_Debug then         Put ("post-processor path: ");         Put_Line (Post_Processor_Path.all);      end if;      if Compile_Kind >= Compile_Gcc then         Put ("assembler path: ");         Put_Line (Assembler_Path.all);      end if;      Put ("linker path: ");      Put_Line (Linker_Path.all);      Put_Line ("default library pathes:");      for I in 2 .. Get_Nbr_Pathes loop         Put (' ');         Put_Line (Image (Get_Path (I)));      end loop;   end Perform_Action;   --  Command Analyze.   type Command_Analyze is new Command_Comp with null record;   function Decode_Command (Cmd : Command_Analyze; Name : String)                           return Boolean;   function Get_Short_Help (Cmd : Command_Analyze) return String;   procedure Perform_Action (Cmd : in out Command_Analyze;                             Args : Argument_List);   function Decode_Command (Cmd : Command_Analyze; Name : String)                           return Boolean   is      pragma Unreferenced (Cmd);   begin      return Name = "-a";   end Decode_Command;   function Get_Short_Help (Cmd : Command_Analyze) return String   is      pragma Unreferenced (Cmd);   begin      return "-a [OPTS] FILEs    Analyze FILEs";   end Get_Short_Help;   procedure Perform_Action (Cmd : in out Command_Analyze;                             Args : Argument_List)   is      pragma Unreferenced (Cmd);      Nil_Opt : Argument_List (2 .. 1);   begin      if Args'Length = 0 then         Error ("no file to analyze");         raise Option_Error;      end if;      Setup_Compiler (False);      for I in Args'Range loop         Do_Compile (Nil_Opt, Args (I).all);      end loop;   end Perform_Action;   --  Elaboration.   Base_Name : String_Access;   Elab_Name : String_Access;   Filelist_Name : String_Access;   Unit_Name : String_Access;   procedure Set_Elab_Units (Cmd_Name : String;                             Args : Argument_List;                             Run_Arg : out Natural)   is   begin      Extract_Elab_Unit (Cmd_Name, Args, Run_Arg);      if Sec_Name = null then         Base_Name := Prim_Name;         Unit_Name := Prim_Name;      else         Base_Name := new String'(Prim_Name.all & '-' & Sec_Name.all);         Unit_Name := new String'(Prim_Name.all & '(' & Sec_Name.all & ')');      end if;      Elab_Name := new String'(Elab_Prefix & Base_Name.all);      Filelist_Name := null;      if Output_File = null then         Output_File := new String'(Base_Name.all);      end if;   end Set_Elab_Units;   procedure Set_Elab_Units (Cmd_Name : String; Args : Argument_List)   is      Next_Arg : Natural;   begin      Set_Elab_Units (Cmd_Name, Args, Next_Arg);      if Next_Arg <= Args'Last then         Error ("too many unit names for command '" & Cmd_Name & "'");         raise Option_Error;      end if;   end Set_Elab_Units;   procedure Bind   is      Comp_List : Argument_List (1 .. 4);   begin      Filelist_Name := new String'(Elab_Name.all & List_Suffix);      Comp_List (1) := new String'("--elab");      Comp_List (2) := Unit_Name;      Comp_List (3) := new String'("-l");      Comp_List (4) := Filelist_Name;      Do_Compile (Comp_List, Elab_Name.all);      Free (Comp_List (3));      Free (Comp_List (1));   end Bind;   procedure Bind_Anaelab (Files : Argument_List)   is      Comp_List : Argument_List (1 .. 2 * Files'Length + 2);      Flag_C : String_Access;      Index : Natural;   begin      Comp_List (1) := new String'("--anaelab");      Comp_List (2) := Unit_Name;      Flag_C := new String'("-c");

?? 快捷鍵說明

復制代碼 Ctrl + C
搜索代碼 Ctrl + F
全屏模式 F11
切換主題 Ctrl + Shift + D
顯示快捷鍵 ?
增大字號 Ctrl + =
減小字號 Ctrl + -
亚洲欧美第一页_禁久久精品乱码_粉嫩av一区二区三区免费野_久草精品视频
亚洲va欧美va国产va天堂影院| 欧美福利视频一区| 中文字幕中文字幕一区二区| 福利电影一区二区三区| 久久久久免费观看| 风间由美一区二区三区在线观看 | 一区二区三区日本| 欧美三级三级三级爽爽爽| 日韩精品一二三四| 2023国产精品自拍| 成人激情小说网站| 亚洲一区二区三区视频在线 | 91麻豆自制传媒国产之光| 亚洲一区在线观看网站| 欧美一区二区三区在| 国产激情视频一区二区三区欧美| 国产目拍亚洲精品99久久精品 | 欧美日韩和欧美的一区二区| 日本中文字幕一区| 国产欧美精品一区| 欧美色综合网站| 久色婷婷小香蕉久久| 欧美国产激情二区三区| 色综合久久久久综合体| 久久av资源网| 亚洲黄色av一区| 欧美成人午夜电影| 一本一道波多野结衣一区二区| 日本v片在线高清不卡在线观看| 欧美精品一区二区三区蜜臀| 色婷婷亚洲婷婷| 精品综合久久久久久8888| 日韩一区在线免费观看| 日韩天堂在线观看| 色婷婷av一区二区三区软件 | 99精品国产一区二区三区不卡| 亚洲一区二区欧美| 欧美国产欧美亚州国产日韩mv天天看完整 | 欧美日韩精品免费| 国产成人免费视频一区| 婷婷夜色潮精品综合在线| 欧美国产精品一区二区三区| 在线91免费看| 97久久精品人人做人人爽50路| 日韩av高清在线观看| 亚洲日本va午夜在线影院| 欧美成人精品高清在线播放| 色菇凉天天综合网| 国产成人精品午夜视频免费| 青青青伊人色综合久久| 亚洲一区视频在线| 亚洲色图丝袜美腿| 中文字幕久久午夜不卡| 欧美精品一区男女天堂| 69成人精品免费视频| 在线观看日韩精品| 99久久婷婷国产精品综合| 国产乱妇无码大片在线观看| 免费高清在线一区| 亚洲国产精品久久久久秋霞影院 | 一区二区三区中文在线| 中文字幕五月欧美| 国产精品免费久久久久| 久久丝袜美腿综合| 欧美一区二区三区播放老司机| 欧美午夜不卡在线观看免费| 色综合视频在线观看| av亚洲精华国产精华精| 粉嫩久久99精品久久久久久夜 | 91丨porny丨最新| 白白色亚洲国产精品| 国产99久久久国产精品潘金| 国产一区二区91| 国产精品亚洲一区二区三区在线 | 毛片av一区二区| 午夜精品久久久久影视| 亚洲成人高清在线| 日韩福利视频导航| 欧美bbbbb| 狠狠色2019综合网| 国产iv一区二区三区| 成人黄色综合网站| 99视频有精品| 欧美专区亚洲专区| 欧美乱妇一区二区三区不卡视频| 欧美美女喷水视频| 精品毛片乱码1区2区3区| 精品国产网站在线观看| 国产色产综合色产在线视频 | 欧美日韩国产影片| 7777精品久久久大香线蕉| 日韩三级视频在线看| 久久亚洲精品国产精品紫薇| 欧美激情一区二区三区四区| 综合色中文字幕| 亚洲国产一区二区在线播放| 日本亚洲电影天堂| 国产剧情av麻豆香蕉精品| fc2成人免费人成在线观看播放 | 亚洲制服丝袜av| 天堂va蜜桃一区二区三区漫画版| 麻豆91在线观看| va亚洲va日韩不卡在线观看| 精品视频1区2区3区| 精品区一区二区| 国产精品久久久久aaaa| 夜夜精品视频一区二区| 免费观看在线综合| 99麻豆久久久国产精品免费| 欧美性做爰猛烈叫床潮| 欧美精品一区二区三区蜜桃视频| 中文字幕欧美区| 日日摸夜夜添夜夜添亚洲女人| 国产毛片精品一区| 91福利在线看| 国产欧美精品国产国产专区| 亚洲精品精品亚洲| 激情久久久久久久久久久久久久久久| 国产69精品久久777的优势| 精品视频在线免费观看| 国产欧美日韩一区二区三区在线观看| 亚洲永久免费av| 国产剧情av麻豆香蕉精品| 欧美日韩一区二区在线观看 | 性做久久久久久免费观看| 久久精品99国产国产精| 色噜噜狠狠成人网p站| 精品成人一区二区三区四区| 亚洲一区在线视频| 成人免费视频app| 日韩西西人体444www| 亚洲精品成人天堂一二三| 国产一区二区三区久久久| 欧美性受极品xxxx喷水| 欧美激情一区二区三区| 麻豆精品视频在线| 在线视频你懂得一区| 国产欧美精品一区二区色综合| 爽好久久久欧美精品| 色婷婷av一区二区三区之一色屋| 久久毛片高清国产| 蜜桃精品视频在线| 欧美剧情电影在线观看完整版免费励志电影| 国产亚洲欧美一区在线观看| 青草国产精品久久久久久| 在线一区二区三区四区五区| 国产精品久久一卡二卡| 国产真实精品久久二三区| 在线电影院国产精品| 亚洲精品v日韩精品| av欧美精品.com| 国产精品乱人伦| 国产99久久精品| 国产精品三级av在线播放| 国产一区二区三区高清播放| 欧美大黄免费观看| 日本成人在线电影网| 7777精品伊人久久久大香线蕉的 | 久久久精品国产免大香伊| 老司机一区二区| 日韩三级av在线播放| 日韩电影在线一区二区三区| 在线视频一区二区免费| 亚洲国产精品久久一线不卡| 精品视频一区 二区 三区| 天天综合天天综合色| 欧美美女一区二区三区| 轻轻草成人在线| 精品国产免费一区二区三区四区| 美女视频黄久久| 26uuu久久综合| 国产精品系列在线观看| 久久久国际精品| 成人av免费在线播放| 一色屋精品亚洲香蕉网站| 色综合天天综合网国产成人综合天| 国产精品福利一区| 色狠狠综合天天综合综合| 午夜精品福利视频网站| 91精品国产麻豆国产自产在线 | 日韩一区二区精品| 久久福利资源站| 国产农村妇女精品| 色狠狠一区二区| 日韩综合一区二区| 欧美精品一区二区三区视频| 成人做爰69片免费看网站| 一区二区三区波多野结衣在线观看| 在线看国产日韩| 毛片不卡一区二区| 欧美国产视频在线| 精品视频999| 国产福利91精品一区| 亚洲欧美偷拍卡通变态| 欧美一区二区三区性视频| 国产美女精品人人做人人爽| 亚洲麻豆国产自偷在线| 日韩一区二区三区在线观看| 国产精品99久久久久久久vr| 亚洲欧美日韩国产一区二区三区|