max_stars_repo_path
stringlengths
4
261
max_stars_repo_name
stringlengths
6
106
max_stars_count
int64
0
38.8k
id
stringlengths
1
6
text
stringlengths
7
1.05M
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c8/c87b33a.ada
best08618/asylo
7
23286
-- C87B33A.ADA -- Grant of Unlimited Rights -- -- Under contracts F33600-87-D-0337, F33600-84-D-0280, MDA903-79-C-0687, -- F08630-91-C-0015, and DCA100-97-D-0025, the U.S. Government obtained -- unlimited rights in the software and documentation contained herein. -- Unlimited rights are defined in DFAR 252.227-7013(a)(19). By making -- this public release, the Government intends to confer upon all -- recipients unlimited rights equal to those held by the Government. -- These rights include rights to use, duplicate, release or disclose the -- released technical data and computer software in whole or in part, in -- any manner and for any purpose whatsoever, and to have or permit others -- to do so. -- -- DISCLAIMER -- -- ALL MATERIALS OR INFORMATION HEREIN RELEASED, MADE AVAILABLE OR -- DISCLOSED ARE AS IS. THE GOVERNMENT MAKES NO EXPRESS OR IMPLIED -- WARRANTY AS TO ANY MATTER WHATSOEVER, INCLUDING THE CONDITIONS OF THE -- SOFTWARE, DOCUMENTATION OR OTHER INFORMATION RELEASED, MADE AVAILABLE -- OR DISCLOSED, OR THE OWNERSHIP, MERCHANTABILITY, OR FITNESS FOR A -- PARTICULAR PURPOSE OF SAID MATERIAL. --* -- CHECK THAT OVERLOADING RESOLUTION USES THE RULE THAT: -- -- THE SHORT CIRCUIT CONTROL FORMS "AND THEN" AND "OR ELSE" ARE -- DEFINED AS BINARY BOOLEAN OPERATORS WHICH RETURN A BOOLEAN VALUE -- OF THE SAME TYPE AS THE OPERANDS. -- TRH 13 SEPT 82 WITH REPORT; USE REPORT; PROCEDURE C87B33A IS TYPE ON IS NEW BOOLEAN RANGE TRUE .. TRUE; TYPE OFF IS NEW BOOLEAN RANGE FALSE .. FALSE; TYPE YES IS NEW ON; TYPE NO IS NEW OFF; TYPE BIT IS NEW BOOLEAN; TYPE FLAG IS (PASS, FAIL); TYPE BOOLEAN IS (FALSE, TRUE); -- STANDARD BOOLEAN HIDDEN. GENERIC TYPE T IS PRIVATE; ARG : IN T; STAT : FLAG; FUNCTION F1 RETURN T; FUNCTION F1 RETURN T IS BEGIN IF STAT = FAIL THEN FAILED ("RESOLUTION INCORRECT FOR SHORT CIRCUIT " & "CONTROL FORMS 'AND THEN' AND 'OR ELSE' "); END IF; RETURN ARG; END F1; FUNCTION A IS NEW F1 (BOOLEAN, TRUE, FAIL); FUNCTION A IS NEW F1 (NO, FALSE, PASS); FUNCTION A IS NEW F1 (ON, TRUE, FAIL); FUNCTION A IS NEW F1 (YES, TRUE, FAIL); FUNCTION B IS NEW F1 (BOOLEAN, TRUE, FAIL); FUNCTION B IS NEW F1 (NO, FALSE, FAIL); FUNCTION B IS NEW F1 (OFF, FALSE, FAIL); FUNCTION B IS NEW F1 (BIT, TRUE, FAIL); FUNCTION C IS NEW F1 (BOOLEAN, FALSE, FAIL); FUNCTION C IS NEW F1 (YES, TRUE, PASS); FUNCTION C IS NEW F1 (ON, TRUE, FAIL); FUNCTION C IS NEW F1 (NO, FALSE, FAIL); FUNCTION D IS NEW F1 (BOOLEAN, FALSE, FAIL); FUNCTION D IS NEW F1 (OFF, FALSE, FAIL); FUNCTION D IS NEW F1 (YES, TRUE, FAIL); FUNCTION D IS NEW F1 (BIT, TRUE, FAIL); FUNCTION E IS NEW F1 (BOOLEAN, FALSE, FAIL); FUNCTION E IS NEW F1 (BIT, TRUE, PASS); FUNCTION E IS NEW F1 (YES, TRUE, FAIL); FUNCTION E IS NEW F1 (NO, FALSE, FAIL); FUNCTION F IS NEW F1 (BOOLEAN, FALSE, FAIL); FUNCTION F IS NEW F1 (BIT, TRUE, PASS); FUNCTION F IS NEW F1 (ON, TRUE, FAIL); FUNCTION F IS NEW F1 (OFF, FALSE, FAIL); FUNCTION G IS NEW F1 (BOOLEAN, TRUE, FAIL); FUNCTION G IS NEW F1 (BIT, FALSE, PASS); FUNCTION G IS NEW F1 (NO, FALSE, FAIL); FUNCTION G IS NEW F1 (YES, TRUE, FAIL); FUNCTION H IS NEW F1 (BOOLEAN, TRUE, FAIL); FUNCTION H IS NEW F1 (BIT, FALSE, PASS); FUNCTION H IS NEW F1 (OFF, FALSE, FAIL); FUNCTION H IS NEW F1 (ON, TRUE, FAIL); BEGIN TEST ("C87B33A","OVERLOADED OPERANDS FOR SHORT CIRCUIT CONTROL " & "FORMS 'AND THEN' AND 'OR ELSE' "); IF (A AND THEN B) THEN FAILED ("RESOLUTION INCORRECT FOR SHORT CIRCUIT FORMS - A&B"); END IF; IF NOT (C OR ELSE D) THEN FAILED ("RESOLUTION INCORRECT FOR SHORT CIRCUIT FORMS - C&D"); END IF; IF NOT (E AND THEN F AND THEN E AND THEN F AND THEN E AND THEN F) THEN FAILED ("RESOLUTION INCORRECT FOR SHORT CIRCUIT FORMS - E&F"); END IF; IF (G OR ELSE H OR ELSE G OR ELSE H OR ELSE G OR ELSE H) THEN FAILED ("RESOLUTION INCORRECT FOR SHORT CIRCUIT FORMS - G&H"); END IF; RESULT; END C87B33A;
src/ada-pulse/src/pulse-sample.ads
mstewartgallus/linted
0
14456
<reponame>mstewartgallus/linted -- Copyright 2016 <NAME> -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or -- implied. See the License for the specific language governing -- permissions and limitations under the License. with System; with Interfaces.C; use Interfaces.C; with Interfaces.C.Strings; with Libc.Stdint; with Libc.Stddef; package Pulse.Sample with Spark_Mode => Off is -- unsupported macro: PA_CHANNELS_MAX 32U -- unsupported macro: PA_RATE_MAX (48000U*4U) -- unsupported macro: PA_SAMPLE_S16NE PA_SAMPLE_S16LE -- unsupported macro: PA_SAMPLE_FLOAT32NE PA_SAMPLE_FLOAT32LE -- unsupported macro: PA_SAMPLE_S32NE PA_SAMPLE_S32LE -- unsupported macro: PA_SAMPLE_S24NE PA_SAMPLE_S24LE -- unsupported macro: PA_SAMPLE_S24_32NE PA_SAMPLE_S24_32LE -- unsupported macro: PA_SAMPLE_S16RE PA_SAMPLE_S16BE -- unsupported macro: PA_SAMPLE_FLOAT32RE PA_SAMPLE_FLOAT32BE -- unsupported macro: PA_SAMPLE_S32RE PA_SAMPLE_S32BE -- unsupported macro: PA_SAMPLE_S24RE PA_SAMPLE_S24BE -- unsupported macro: PA_SAMPLE_S24_32RE PA_SAMPLE_S24_32BE -- unsupported macro: PA_SAMPLE_FLOAT32 PA_SAMPLE_FLOAT32NE -- unsupported macro: PA_SAMPLE_U8 PA_SAMPLE_U8 -- unsupported macro: PA_SAMPLE_ALAW PA_SAMPLE_ALAW -- unsupported macro: PA_SAMPLE_ULAW PA_SAMPLE_ULAW -- unsupported macro: PA_SAMPLE_S16LE PA_SAMPLE_S16LE -- unsupported macro: PA_SAMPLE_S16BE PA_SAMPLE_S16BE -- unsupported macro: PA_SAMPLE_FLOAT32LE PA_SAMPLE_FLOAT32LE -- unsupported macro: PA_SAMPLE_FLOAT32BE PA_SAMPLE_FLOAT32BE -- unsupported macro: PA_SAMPLE_S32LE PA_SAMPLE_S32LE -- unsupported macro: PA_SAMPLE_S32BE PA_SAMPLE_S32BE -- unsupported macro: PA_SAMPLE_S24LE PA_SAMPLE_S24LE -- unsupported macro: PA_SAMPLE_S24BE PA_SAMPLE_S24BE -- unsupported macro: PA_SAMPLE_S24_32LE PA_SAMPLE_S24_32LE -- unsupported macro: PA_SAMPLE_S24_32BE PA_SAMPLE_S24_32BE -- unsupported macro: PA_SAMPLE_SPEC_SNPRINT_MAX 32 -- unsupported macro: PA_BYTES_SNPRINT_MAX 11 -- arg-macro: procedure pa_sample_format_is_ne (f) -- pa_sample_format_is_le(f) -- arg-macro: procedure pa_sample_format_is_re (f) -- pa_sample_format_is_be(f) subtype pa_sample_format is unsigned; PA_SAMPLE_U8 : constant pa_sample_format := 0; PA_SAMPLE_ALAW : constant pa_sample_format := 1; PA_SAMPLE_ULAW : constant pa_sample_format := 2; PA_SAMPLE_S16LE : constant pa_sample_format := 3; PA_SAMPLE_S16BE : constant pa_sample_format := 4; PA_SAMPLE_FLOAT32LE : constant pa_sample_format := 5; PA_SAMPLE_FLOAT32BE : constant pa_sample_format := 6; PA_SAMPLE_S32LE : constant pa_sample_format := 7; PA_SAMPLE_S32BE : constant pa_sample_format := 8; PA_SAMPLE_S24LE : constant pa_sample_format := 9; PA_SAMPLE_S24BE : constant pa_sample_format := 10; PA_SAMPLE_S24_32LE : constant pa_sample_format := 11; PA_SAMPLE_S24_32BE : constant pa_sample_format := 12; PA_SAMPLE_MAX : constant pa_sample_format := 13; PA_SAMPLE_INVALID : constant pa_sample_format := -1; -- /usr/include/pulse/sample.h:136 subtype pa_sample_format_t is pa_sample_format; type pa_sample_spec is record format : aliased pa_sample_format_t; -- /usr/include/pulse/sample.h:251 rate : aliased Libc.Stdint.uint32_t; -- /usr/include/pulse/sample.h:254 channels : aliased Libc.Stdint .uint8_t; -- /usr/include/pulse/sample.h:257 end record; subtype pa_usec_t is Libc.Stdint.uint64_t; -- /usr/include/pulse/sample.h:262 function pa_bytes_per_second (spec : pa_sample_spec) return Libc.Stddef.size_t; -- /usr/include/pulse/sample.h:265 pragma Import (C, pa_bytes_per_second, "pa_bytes_per_second"); function pa_frame_size (spec : pa_sample_spec) return Libc.Stddef.size_t; -- /usr/include/pulse/sample.h:268 pragma Import (C, pa_frame_size, "pa_frame_size"); function pa_sample_size (spec : pa_sample_spec) return Libc.Stddef.size_t; -- /usr/include/pulse/sample.h:271 pragma Import (C, pa_sample_size, "pa_sample_size"); function pa_sample_size_of_format (f : pa_sample_format_t) return Libc.Stddef.size_t; -- /usr/include/pulse/sample.h:275 pragma Import (C, pa_sample_size_of_format, "pa_sample_size_of_format"); function pa_bytes_to_usec (length : Libc.Stdint.uint64_t; spec : pa_sample_spec) return pa_usec_t; -- /usr/include/pulse/sample.h:280 pragma Import (C, pa_bytes_to_usec, "pa_bytes_to_usec"); function pa_usec_to_bytes (t : pa_usec_t; spec : pa_sample_spec) return Libc.Stddef.size_t; -- /usr/include/pulse/sample.h:285 pragma Import (C, pa_usec_to_bytes, "pa_usec_to_bytes"); procedure pa_sample_spec_init (spec : in out pa_sample_spec); -- /usr/include/pulse/sample.h:290 pragma Import (C, pa_sample_spec_init, "pa_sample_spec_init"); function pa_sample_spec_valid (spec : pa_sample_spec) return int; -- /usr/include/pulse/sample.h:293 pragma Import (C, pa_sample_spec_valid, "pa_sample_spec_valid"); function pa_sample_spec_equal (a : System.Address; b : System.Address) return int; -- /usr/include/pulse/sample.h:296 pragma Import (C, pa_sample_spec_equal, "pa_sample_spec_equal"); function pa_sample_format_to_string (f : pa_sample_format_t) return Interfaces.C.Strings.chars_ptr; -- /usr/include/pulse/sample.h:299 pragma Import (C, pa_sample_format_to_string, "pa_sample_format_to_string"); function pa_parse_sample_format (format : Interfaces.C.Strings.chars_ptr) return pa_sample_format_t; -- /usr/include/pulse/sample.h:302 pragma Import (C, pa_parse_sample_format, "pa_parse_sample_format"); function pa_sample_spec_snprint (s : Interfaces.C.Strings.chars_ptr; l : Libc.Stddef.size_t; spec : pa_sample_spec) return Interfaces.C.Strings.chars_ptr; -- /usr/include/pulse/sample.h:312 pragma Import (C, pa_sample_spec_snprint, "pa_sample_spec_snprint"); function pa_bytes_snprint (s : Interfaces.C.Strings.chars_ptr; l : Libc.Stddef.size_t; v : unsigned) return Interfaces.C.Strings.chars_ptr; -- /usr/include/pulse/sample.h:322 pragma Import (C, pa_bytes_snprint, "pa_bytes_snprint"); function pa_sample_format_is_le (f : pa_sample_format_t) return int; -- /usr/include/pulse/sample.h:326 pragma Import (C, pa_sample_format_is_le, "pa_sample_format_is_le"); function pa_sample_format_is_be (f : pa_sample_format_t) return int; -- /usr/include/pulse/sample.h:330 pragma Import (C, pa_sample_format_is_be, "pa_sample_format_is_be"); end Pulse.Sample;
src/wiki.adb
jquorning/ada-wiki
18
8212
----------------------------------------------------------------------- -- wiki -- Ada Wiki Engine -- Copyright (C) 2015, 2016, 2018, 2020 <NAME> -- Written by <NAME> (<EMAIL>) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Ada.Wide_Wide_Characters.Handling; package body Wiki is type Tag_Array is array (Html_Tag) of String_Access; HTML_TAG_NAME : aliased constant String := "html"; HEAD_TAG_NAME : aliased constant String := "head"; TITLE_TAG_NAME : aliased constant String := "title"; BASE_TAG_NAME : aliased constant String := "base"; LINK_TAG_NAME : aliased constant String := "link"; META_TAG_NAME : aliased constant String := "meta"; STYLE_TAG_NAME : aliased constant String := "style"; BODY_TAG_NAME : aliased constant String := "body"; ARTICLE_TAG_NAME : aliased constant String := "article"; SECTION_TAG_NAME : aliased constant String := "section"; NAV_TAG_NAME : aliased constant String := "nav"; ASIDE_TAG_NAME : aliased constant String := "aside"; H1_TAG_NAME : aliased constant String := "h1"; H2_TAG_NAME : aliased constant String := "h2"; H3_TAG_NAME : aliased constant String := "h3"; H4_TAG_NAME : aliased constant String := "h4"; H5_TAG_NAME : aliased constant String := "h5"; H6_TAG_NAME : aliased constant String := "h6"; HEADER_TAG_NAME : aliased constant String := "header"; FOOTER_TAG_NAME : aliased constant String := "footer"; ADDRESS_TAG_NAME : aliased constant String := "address"; P_TAG_NAME : aliased constant String := "p"; HR_TAG_NAME : aliased constant String := "hr"; PRE_TAG_NAME : aliased constant String := "pre"; BLOCKQUOTE_TAG_NAME : aliased constant String := "blockquote"; OL_TAG_NAME : aliased constant String := "ol"; UL_TAG_NAME : aliased constant String := "ul"; LI_TAG_NAME : aliased constant String := "li"; DL_TAG_NAME : aliased constant String := "dl"; DT_TAG_NAME : aliased constant String := "dt"; DD_TAG_NAME : aliased constant String := "dd"; FIGURE_TAG_NAME : aliased constant String := "figure"; FIGCAPTION_TAG_NAME : aliased constant String := "figcaption"; DIV_TAG_NAME : aliased constant String := "div"; MAIN_TAG_NAME : aliased constant String := "main"; A_TAG_NAME : aliased constant String := "a"; EM_TAG_NAME : aliased constant String := "em"; STRONG_TAG_NAME : aliased constant String := "strong"; SMALL_TAG_NAME : aliased constant String := "small"; S_TAG_NAME : aliased constant String := "s"; CITE_TAG_NAME : aliased constant String := "cite"; Q_TAG_NAME : aliased constant String := "q"; DFN_TAG_NAME : aliased constant String := "dfn"; ABBR_TAG_NAME : aliased constant String := "abbr"; DATA_TAG_NAME : aliased constant String := "data"; TIME_TAG_NAME : aliased constant String := "time"; CODE_TAG_NAME : aliased constant String := "code"; VAR_TAG_NAME : aliased constant String := "var"; SAMP_TAG_NAME : aliased constant String := "samp"; KBD_TAG_NAME : aliased constant String := "kbd"; SUB_TAG_NAME : aliased constant String := "sub"; SUP_TAG_NAME : aliased constant String := "sup"; I_TAG_NAME : aliased constant String := "i"; B_TAG_NAME : aliased constant String := "b"; U_TAG_NAME : aliased constant String := "u"; MARK_TAG_NAME : aliased constant String := "mark"; RUBY_TAG_NAME : aliased constant String := "ruby"; RB_TAG_NAME : aliased constant String := "rb"; RT_TAG_NAME : aliased constant String := "rt"; RTC_TAG_NAME : aliased constant String := "rtc"; RP_TAG_NAME : aliased constant String := "rp"; BDI_TAG_NAME : aliased constant String := "bdi"; BDO_TAG_NAME : aliased constant String := "bdo"; SPAN_TAG_NAME : aliased constant String := "span"; BR_TAG_NAME : aliased constant String := "br"; WBR_TAG_NAME : aliased constant String := "wbr"; INS_TAG_NAME : aliased constant String := "ins"; DEL_TAG_NAME : aliased constant String := "del"; IMG_TAG_NAME : aliased constant String := "img"; IFRAME_TAG_NAME : aliased constant String := "iframe"; EMBED_TAG_NAME : aliased constant String := "embed"; OBJECT_TAG_NAME : aliased constant String := "object"; PARAM_TAG_NAME : aliased constant String := "param"; VIDEO_TAG_NAME : aliased constant String := "video"; AUDIO_TAG_NAME : aliased constant String := "audio"; SOURCE_TAG_NAME : aliased constant String := "source"; TRACK_TAG_NAME : aliased constant String := "track"; MAP_TAG_NAME : aliased constant String := "map"; AREA_TAG_NAME : aliased constant String := "area"; TABLE_TAG_NAME : aliased constant String := "table"; CAPTION_TAG_NAME : aliased constant String := "caption"; COLGROUP_TAG_NAME : aliased constant String := "colgroup"; COL_TAG_NAME : aliased constant String := "col"; TBODY_TAG_NAME : aliased constant String := "tbody"; THEAD_TAG_NAME : aliased constant String := "thead"; TFOOT_TAG_NAME : aliased constant String := "tfoot"; TR_TAG_NAME : aliased constant String := "tr"; TD_TAG_NAME : aliased constant String := "td"; TH_TAG_NAME : aliased constant String := "th"; FORM_TAG_NAME : aliased constant String := "form"; LABEL_TAG_NAME : aliased constant String := "label"; INPUT_TAG_NAME : aliased constant String := "input"; BUTTON_TAG_NAME : aliased constant String := "button"; SELECT_TAG_NAME : aliased constant String := "select"; DATALIST_TAG_NAME : aliased constant String := "datalist"; OPTGROUP_TAG_NAME : aliased constant String := "optgroup"; OPTION_TAG_NAME : aliased constant String := "option"; TEXTAREA_TAG_NAME : aliased constant String := "textarea"; KEYGEN_TAG_NAME : aliased constant String := "keygen"; OUTPUT_TAG_NAME : aliased constant String := "output"; PROGRESS_TAG_NAME : aliased constant String := "progress"; METER_TAG_NAME : aliased constant String := "meter"; FIELDSET_TAG_NAME : aliased constant String := "fieldset"; LEGEND_TAG_NAME : aliased constant String := "legend"; SCRIPT_TAG_NAME : aliased constant String := "script"; NOSCRIPT_TAG_NAME : aliased constant String := "noscript"; TEMPLATE_TAG_NAME : aliased constant String := "template"; CANVAS_TAG_NAME : aliased constant String := "canvas"; TT_TAG_NAME : aliased constant String := "tt"; UNKNOWN_TAG_NAME : aliased constant String := "unknown"; Tag_Names : constant Tag_Array := ( ROOT_HTML_TAG => HTML_TAG_NAME'Access, HEAD_TAG => HEAD_TAG_NAME'Access, TITLE_TAG => TITLE_TAG_NAME'Access, BASE_TAG => BASE_TAG_NAME'Access, LINK_TAG => LINK_TAG_NAME'Access, META_TAG => META_TAG_NAME'Access, STYLE_TAG => STYLE_TAG_NAME'Access, BODY_TAG => BODY_TAG_NAME'Access, ARTICLE_TAG => ARTICLE_TAG_NAME'Access, SECTION_TAG => SECTION_TAG_NAME'Access, NAV_TAG => NAV_TAG_NAME'Access, ASIDE_TAG => ASIDE_TAG_NAME'Access, H1_TAG => H1_TAG_NAME'Access, H2_TAG => H2_TAG_NAME'Access, H3_TAG => H3_TAG_NAME'Access, H4_TAG => H4_TAG_NAME'Access, H5_TAG => H5_TAG_NAME'Access, H6_TAG => H6_TAG_NAME'Access, HEADER_TAG => HEADER_TAG_NAME'Access, FOOTER_TAG => FOOTER_TAG_NAME'Access, ADDRESS_TAG => ADDRESS_TAG_NAME'Access, P_TAG => P_TAG_NAME'Access, HR_TAG => HR_TAG_NAME'Access, PRE_TAG => PRE_TAG_NAME'Access, BLOCKQUOTE_TAG => BLOCKQUOTE_TAG_NAME'Access, OL_TAG => OL_TAG_NAME'Access, UL_TAG => UL_TAG_NAME'Access, LI_TAG => LI_TAG_NAME'Access, DL_TAG => DL_TAG_NAME'Access, DT_TAG => DT_TAG_NAME'Access, DD_TAG => DD_TAG_NAME'Access, FIGURE_TAG => FIGURE_TAG_NAME'Access, FIGCAPTION_TAG => FIGCAPTION_TAG_NAME'Access, DIV_TAG => DIV_TAG_NAME'Access, MAIN_TAG => MAIN_TAG_NAME'Access, A_TAG => A_TAG_NAME'Access, EM_TAG => EM_TAG_NAME'Access, STRONG_TAG => STRONG_TAG_NAME'Access, SMALL_TAG => SMALL_TAG_NAME'Access, S_TAG => S_TAG_NAME'Access, CITE_TAG => CITE_TAG_NAME'Access, Q_TAG => Q_TAG_NAME'Access, DFN_TAG => DFN_TAG_NAME'Access, ABBR_TAG => ABBR_TAG_NAME'Access, DATA_TAG => DATA_TAG_NAME'Access, TIME_TAG => TIME_TAG_NAME'Access, CODE_TAG => CODE_TAG_NAME'Access, VAR_TAG => VAR_TAG_NAME'Access, SAMP_TAG => SAMP_TAG_NAME'Access, KBD_TAG => KBD_TAG_NAME'Access, SUB_TAG => SUB_TAG_NAME'Access, SUP_TAG => SUP_TAG_NAME'Access, I_TAG => I_TAG_NAME'Access, B_TAG => B_TAG_NAME'Access, U_TAG => U_TAG_NAME'Access, MARK_TAG => MARK_TAG_NAME'Access, RUBY_TAG => RUBY_TAG_NAME'Access, RB_TAG => RB_TAG_NAME'Access, RT_TAG => RT_TAG_NAME'Access, RTC_TAG => RTC_TAG_NAME'Access, RP_TAG => RP_TAG_NAME'Access, BDI_TAG => BDI_TAG_NAME'Access, BDO_TAG => BDO_TAG_NAME'Access, SPAN_TAG => SPAN_TAG_NAME'Access, BR_TAG => BR_TAG_NAME'Access, WBR_TAG => WBR_TAG_NAME'Access, INS_TAG => INS_TAG_NAME'Access, DEL_TAG => DEL_TAG_NAME'Access, IMG_TAG => IMG_TAG_NAME'Access, IFRAME_TAG => IFRAME_TAG_NAME'Access, EMBED_TAG => EMBED_TAG_NAME'Access, OBJECT_TAG => OBJECT_TAG_NAME'Access, PARAM_TAG => PARAM_TAG_NAME'Access, VIDEO_TAG => VIDEO_TAG_NAME'Access, AUDIO_TAG => AUDIO_TAG_NAME'Access, SOURCE_TAG => SOURCE_TAG_NAME'Access, TRACK_TAG => TRACK_TAG_NAME'Access, MAP_TAG => MAP_TAG_NAME'Access, AREA_TAG => AREA_TAG_NAME'Access, TABLE_TAG => TABLE_TAG_NAME'Access, CAPTION_TAG => CAPTION_TAG_NAME'Access, COLGROUP_TAG => COLGROUP_TAG_NAME'Access, COL_TAG => COL_TAG_NAME'Access, TBODY_TAG => TBODY_TAG_NAME'Access, THEAD_TAG => THEAD_TAG_NAME'Access, TFOOT_TAG => TFOOT_TAG_NAME'Access, TR_TAG => TR_TAG_NAME'Access, TD_TAG => TD_TAG_NAME'Access, TH_TAG => TH_TAG_NAME'Access, FORM_TAG => FORM_TAG_NAME'Access, LABEL_TAG => LABEL_TAG_NAME'Access, INPUT_TAG => INPUT_TAG_NAME'Access, BUTTON_TAG => BUTTON_TAG_NAME'Access, SELECT_TAG => SELECT_TAG_NAME'Access, DATALIST_TAG => DATALIST_TAG_NAME'Access, OPTGROUP_TAG => OPTGROUP_TAG_NAME'Access, OPTION_TAG => OPTION_TAG_NAME'Access, TEXTAREA_TAG => TEXTAREA_TAG_NAME'Access, KEYGEN_TAG => KEYGEN_TAG_NAME'Access, OUTPUT_TAG => OUTPUT_TAG_NAME'Access, PROGRESS_TAG => PROGRESS_TAG_NAME'Access, METER_TAG => METER_TAG_NAME'Access, FIELDSET_TAG => FIELDSET_TAG_NAME'Access, LEGEND_TAG => LEGEND_TAG_NAME'Access, SCRIPT_TAG => SCRIPT_TAG_NAME'Access, NOSCRIPT_TAG => NOSCRIPT_TAG_NAME'Access, TEMPLATE_TAG => TEMPLATE_TAG_NAME'Access, CANVAS_TAG => CANVAS_TAG_NAME'Access, TT_TAG => TT_TAG_NAME'Access, UNKNOWN_TAG => UNKNOWN_TAG_NAME'Access ); -- ------------------------------ -- Get the HTML tag name. -- ------------------------------ function Get_Tag_Name (Tag : in Html_Tag) return String_Access is begin return Tag_Names (Tag); end Get_Tag_Name; -- ------------------------------ -- Find the tag from the tag name. -- ------------------------------ function Find_Tag (Name : in Wide_Wide_String) return Html_Tag is function Tag (Name : in Wide_Wide_String; Expect : in Wide_Wide_String; Tag : in Html_Tag) return Html_Tag; function Tag (Name : in Wide_Wide_String; Expect : in Wide_Wide_String; Tag : in Html_Tag) return Html_Tag is begin if Ada.Wide_Wide_Characters.Handling.To_Lower (Name) = Expect then return Tag; else return UNKNOWN_TAG; end if; end Tag; begin -- The list of possible tags is well known and will not change very often. -- The tag lookup is implemented to be efficient with 2 or 3 embedded cases that -- reduce the comparison to the minimum. The result is a large case statement that -- becomes unreadable. case Name'Length is when 0 => return UNKNOWN_TAG; when 1 => case Name (Name'First) is when 'a' | 'A' => return A_TAG; when 'b' | 'B' => return B_TAG; when 'i' | 'I' => return I_TAG; when 'p' | 'P' => return P_TAG; when 'q' | 'Q' => return Q_TAG; when 's' | 'S' => return S_TAG; when 'u' | 'U' => return U_TAG; when others => return UNKNOWN_TAG; end case; when 2 => case Name (Name'First) is when 'b' | 'B' => case Name (Name'Last) is when 'r' | 'R' => return BR_TAG; when others => return UNKNOWN_TAG; end case; when 'd' | 'D' => case Name (Name'Last) is when 'l' | 'L' => return DL_TAG; when 't' | 'T' => return DT_TAG; when 'd' | 'D' => return DD_TAG; when others => return UNKNOWN_TAG; end case; when 'e' | 'E' => case Name (Name'Last) is when 'm' | 'M' => return EM_TAG; when others => return UNKNOWN_TAG; end case; when 'h' | 'H' => case Name (Name'Last) is when '1' => return H1_TAG; when '2' => return H2_TAG; when '3' => return H3_TAG; when '4' => return H4_TAG; when '5' => return H5_TAG; when '6' => return H6_TAG; when 'r' | 'R' => return HR_TAG; when others => return UNKNOWN_TAG; end case; when 'l' | 'L' => case Name (Name'Last) is when 'i' | 'I' => return LI_TAG; when others => return UNKNOWN_TAG; end case; when 'o' | 'O' => case Name (Name'Last) is when 'l' | 'L' => return OL_TAG; when others => return UNKNOWN_TAG; end case; when 'r' | 'R' => case Name (Name'Last) is when 'b' | 'B' => return RB_TAG; when 'p' | 'P' => return RP_TAG; when 't' | 'T' => return RT_TAG; when others => return UNKNOWN_TAG; end case; when 't' | 'T' => case Name (Name'Last) is when 'r' | 'R' => return TR_TAG; when 'd' | 'D' => return TD_TAG; when 'h' | 'H' => return TH_TAG; when 't' | 'T' => return TT_TAG; when others => return UNKNOWN_TAG; end case; when 'u' | 'U' => case Name (Name'Last) is when 'l' | 'L' => return UL_TAG; when others => return UNKNOWN_TAG; end case; when others => return UNKNOWN_TAG; end case; when 3 => case Name (Name'First) is when 'b' | 'B' => case Name (Name'Last) is when 'i' | 'I' => return Tag (Name, "bdi", BDI_TAG); when 'o' | 'O' => return Tag (Name, "bdo", BDO_TAG); when others => return UNKNOWN_TAG; end case; when 'c' | 'C' => return Tag (Name, "col", COL_TAG); when 'd' | 'D' => case Name (Name'First + 1) is when 'i' | 'I' => return Tag (Name, "div", DIV_TAG); when 'f' | 'F' => return Tag (Name, "dfn", DFN_TAG); when 'e' | 'E' => return Tag (Name, "del", DEL_TAG); when others => return UNKNOWN_TAG; end case; when 'i' | 'I' => case Name (Name'Last) is when 'g' | 'G' => return Tag (Name, "img", IMG_TAG); when 's' | 'S' => return Tag (Name, "ins", INS_TAG); when others => return UNKNOWN_TAG; end case; when 'k' | 'K' => return Tag (Name, "kbd", KBD_TAG); when 'm' | 'M' => return Tag (Name, "map", MAP_TAG); when 'n' | 'N' => return Tag (Name, "nav", NAV_TAG); when 'p' | 'P' => return Tag (Name, "pre", PRE_TAG); when 'r' | 'R' => return Tag (Name, "rtc", RTC_TAG); when 's' | 'S' => case Name (Name'Last) is when 'b' | 'B' => return Tag (Name, "sub", SUB_TAG); when 'p' | 'P' => return Tag (Name, "sup", SUP_TAG); when others => return UNKNOWN_TAG; end case; when 'v' | 'V' => return Tag (Name, "var", VAR_TAG); when 'w' | 'W' => return Tag (Name, "wbr", WBR_TAG); when others => return UNKNOWN_TAG; end case; when 4 => case Name (Name'First) is when 'a' | 'A' => case Name (Name'First + 1) is when 'b' | 'B' => return Tag (Name, "abbr", ABBR_TAG); when 'r' | 'R' => return Tag (Name, "area", AREA_TAG); when others => return UNKNOWN_TAG; end case; when 'b' | 'B' => case Name (Name'First + 1) is when 'a' | 'A' => return Tag (Name, "base", BASE_TAG); when 'o' | 'O' => return Tag (Name, "body", BODY_TAG); when others => return UNKNOWN_TAG; end case; when 'c' | 'C' => case Name (Name'First + 1) is when 'i' | 'I' => return Tag (Name, "cite", CITE_TAG); when 'o' | 'O' => return Tag (Name, "code", CODE_TAG); when others => return UNKNOWN_TAG; end case; when 'd' | 'D' => return Tag (Name, "data", DATA_TAG); when 'f' | 'F' => return Tag (Name, "form", FORM_TAG); when 'h' | 'H' => case Name (Name'First + 1) is when 't' | 'T' => return Tag (Name, "html", ROOT_HTML_TAG); when 'e' | 'E' => return Tag (Name, "head", HEAD_TAG); when others => return UNKNOWN_TAG; end case; when 'l' | 'L' => return Tag (Name, "link", LINK_TAG); when 'm' | 'M' => case Name (Name'Last) is when 'a' | 'A' => return Tag (Name, "meta", META_TAG); when 'n' | 'N' => return Tag (Name, "main", MAIN_TAG); when 'k' | 'K' => return Tag (Name, "mark", MARK_TAG); when others => return UNKNOWN_TAG; end case; when 'r' | 'R' => return Tag (Name, "ruby", RUBY_TAG); when 's' | 'S' => case Name (Name'First + 1) is when 'p' | 'P' => return Tag (Name, "span", SPAN_TAG); when 'a' | 'A' => return Tag (Name, "samp", SAMP_TAG); when others => return UNKNOWN_TAG; end case; when 't' | 'T' => return Tag (Name, "time", TIME_TAG); when others => return UNKNOWN_TAG; end case; when 5 => case Name (Name'First) is when 'a' | 'A' => case Name (Name'First + 1) is when 's' | 'S' => return Tag (Name, "aside", ASIDE_TAG); when 'u' | 'U' => return Tag (Name, "audio", AUDIO_TAG); when others => return UNKNOWN_TAG; end case; when 'e' | 'E' => return Tag (Name, "embed", EMBED_TAG); when 'i' | 'I' => return Tag (Name, "input", INPUT_TAG); when 'l' | 'L' => return Tag (Name, "label", LABEL_TAG); when 'm' | 'M' => return Tag (Name, "meter", METER_TAG); when 'p' | 'P' => return Tag (Name, "param", PARAM_TAG); when 's' | 'S' => case Name (Name'First + 1) is when 't' | 'T' => return Tag (Name, "style", STYLE_TAG); when 'm' | 'M' => return Tag (Name, "small", SMALL_TAG); when others => return UNKNOWN_TAG; end case; when 't' | 'T' => case Name (Name'First + 1) is when 'i' | 'I' => return Tag (Name, "title", TITLE_TAG); when 'r' | 'R' => return Tag (Name, "track", TRACK_TAG); when 'a' | 'A' => return Tag (Name, "table", TABLE_TAG); when 'b' | 'B' => return Tag (Name, "tbody", TBODY_TAG); when 'h' | 'H' => return Tag (Name, "thead", THEAD_TAG); when 'f' | 'F' => return Tag (Name, "tfoot", TFOOT_TAG); when others => return UNKNOWN_TAG; end case; when 'v' | 'V' => return Tag (Name, "video", VIDEO_TAG); when others => return UNKNOWN_TAG; end case; when others => case Name (Name'First) is when 'a' | 'A' => case Name (Name'First + 1) is when 'r' | 'R' => return Tag (Name, "article", ARTICLE_TAG); when 'd' | 'D' => return Tag (Name, "address", ADDRESS_TAG); when others => return UNKNOWN_TAG; end case; when 'b' | 'B' => case Name (Name'First + 1) is when 'l' | 'L' => return Tag (Name, "blockquote", BLOCKQUOTE_TAG); when 'u' | 'U' => return Tag (Name, "button", BUTTON_TAG); when others => return UNKNOWN_TAG; end case; when 'c' | 'C' => case Name (Name'First + 2) is when 'p' | 'P' => return Tag (Name, "caption", CAPTION_TAG); when 'l' | 'L' => return Tag (Name, "colgroup", COLGROUP_TAG); when 'n' | 'N' => return Tag (Name, "canvas", CANVAS_TAG); when others => return UNKNOWN_TAG; end case; when 'd' | 'D' => return Tag (Name, "datalist", DATALIST_TAG); when 'f' | 'F' => case Name (Name'Last) is when 'r' | 'R' => return Tag (Name, "footer", FOOTER_TAG); when 'e' | 'E' => return Tag (Name, "figure", FIGURE_TAG); when 'n' | 'N' => return Tag (Name, "figcaption", FIGCAPTION_TAG); when 't' | 'T' => return Tag (Name, "fieldset", FIELDSET_TAG); when others => return UNKNOWN_TAG; end case; when 'h' | 'H' => return Tag (Name, "header", HEADER_TAG); when 'i' | 'I' => return Tag (Name, "iframe", IFRAME_TAG); when 'k' | 'K' => return Tag (Name, "keygen", KEYGEN_TAG); when 'l' | 'L' => return Tag (Name, "legend", LEGEND_TAG); when 'n' | 'N' => return Tag (Name, "noscript", NOSCRIPT_TAG); when 'o' | 'O' => case Name (Name'First + 3) is when 'e' | 'E' => return Tag (Name, "object", OBJECT_TAG); when 'g' | 'G' => return Tag (Name, "optgroup", OPTGROUP_TAG); when 'i' | 'I' => return Tag (Name, "option", OPTION_TAG); when 'p' | 'P' => return Tag (Name, "output", OUTPUT_TAG); when others => return UNKNOWN_TAG; end case; when 'p' | 'P' => return Tag (Name, "progress", PROGRESS_TAG); when 's' | 'S' => case Name (Name'First + 3) is when 't' | 'T' => return Tag (Name, "section", SECTION_TAG); when 'o' | 'O' => return Tag (Name, "strong", STRONG_TAG); when 'r' | 'R' => return Tag (Name, "source", SOURCE_TAG); when 'e' | 'E' => return Tag (Name, "select", SELECT_TAG); when 'i' | 'I' => return Tag (Name, "script", SCRIPT_TAG); when others => return UNKNOWN_TAG; end case; when 't' | 'T' => case Name (Name'Last) is when 'a' | 'A' => return Tag (Name, "textarea", TEXTAREA_TAG); when 'e' | 'E' => return Tag (Name, "template", TEMPLATE_TAG); when others => return UNKNOWN_TAG; end case; when others => return UNKNOWN_TAG; end case; end case; end Find_Tag; end Wiki;
Transynther/x86/_processed/AVXALIGN/_zr_/i7-8650U_0xd2.log_1650_1796.asm
ljhsiun2/medusa
9
243498
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r14 push %r9 push %rax push %rbx push %rcx push %rdi push %rsi lea addresses_A_ht+0x1bb56, %rbx nop nop add %rcx, %rcx movb (%rbx), %r14b nop nop nop nop cmp %r11, %r11 lea addresses_WC_ht+0x1ad86, %rax cmp $33691, %r9 mov $0x6162636465666768, %rcx movq %rcx, %xmm4 vmovups %ymm4, (%rax) nop nop nop nop add $37577, %rax lea addresses_WT_ht+0x7b36, %rsi lea addresses_UC_ht+0xdda2, %rdi add $40500, %r14 mov $37, %rcx rep movsb nop cmp $16337, %rbx lea addresses_A_ht+0x6dd5, %rax nop nop nop sub $13875, %r14 movb $0x61, (%rax) inc %rcx lea addresses_normal_ht+0x1d546, %rsi lea addresses_D_ht+0x156a0, %rdi nop nop nop nop dec %rax mov $100, %rcx rep movsb nop nop sub %r11, %r11 lea addresses_UC_ht+0x8f16, %rdi nop nop nop cmp %rbx, %rbx mov (%rdi), %r9d nop nop nop add %rdi, %rdi lea addresses_normal_ht+0x5f2e, %rcx nop nop sub $23660, %rsi mov $0x6162636465666768, %rbx movq %rbx, %xmm6 vmovups %ymm6, (%rcx) nop nop nop nop nop sub %r9, %r9 lea addresses_D_ht+0x17016, %rsi lea addresses_A_ht+0x4f26, %rdi nop nop nop nop nop xor $7854, %rax mov $30, %rcx rep movsb nop nop nop nop and $56226, %r9 lea addresses_UC_ht+0x17f2e, %rsi nop nop nop dec %rbx mov (%rsi), %r14d nop add %rcx, %rcx lea addresses_UC_ht+0xa1a6, %rax nop nop nop cmp %r9, %r9 movb (%rax), %cl nop nop nop nop inc %rsi lea addresses_WT_ht+0x1dc9e, %r11 clflush (%r11) nop sub %rcx, %rcx and $0xffffffffffffffc0, %r11 movntdqa (%r11), %xmm2 vpextrq $1, %xmm2, %rdi cmp %rax, %rax lea addresses_UC_ht+0x5736, %r11 nop nop nop nop nop add %r9, %r9 mov $0x6162636465666768, %rcx movq %rcx, (%r11) nop nop nop nop nop cmp %rcx, %rcx lea addresses_WT_ht+0x1e49a, %rsi nop sub $42177, %r14 movl $0x61626364, (%rsi) nop nop nop xor %r11, %r11 lea addresses_WT_ht+0x88ca, %rsi lea addresses_A_ht+0x528d, %rdi nop nop nop nop sub %rbx, %rbx mov $80, %rcx rep movsq nop nop nop inc %r11 lea addresses_WT_ht+0x12826, %rsi add $39186, %rbx mov $0x6162636465666768, %r14 movq %r14, %xmm4 movups %xmm4, (%rsi) nop nop nop and %rsi, %rsi pop %rsi pop %rdi pop %rcx pop %rbx pop %rax pop %r9 pop %r14 pop %r11 ret .global s_faulty_load s_faulty_load: push %r10 push %r14 push %r15 push %r8 push %rbp push %rdx push %rsi // Store lea addresses_WC+0xc97f, %rsi nop xor $49414, %r15 mov $0x5152535455565758, %rdx movq %rdx, (%rsi) nop add $23799, %r10 // Store lea addresses_D+0x106aa, %rdx xor %r14, %r14 movb $0x51, (%rdx) and $56259, %rbp // Store lea addresses_WT+0x1f74e, %rdx dec %r8 mov $0x5152535455565758, %rbp movq %rbp, (%rdx) nop nop add $16243, %r10 // Store lea addresses_UC+0x1d426, %r14 nop xor $19107, %rbp movw $0x5152, (%r14) nop nop sub %r10, %r10 // Store lea addresses_WC+0x6426, %rbp nop nop nop nop cmp $55931, %r10 mov $0x5152535455565758, %r14 movq %r14, %xmm3 movups %xmm3, (%rbp) sub $7973, %r14 // Store lea addresses_normal+0x1cfae, %r8 nop cmp %rdx, %rdx movl $0x51525354, (%r8) nop nop nop nop sub $24116, %r10 // Faulty Load lea addresses_WC+0x6426, %r8 nop nop nop cmp %r14, %r14 vmovaps (%r8), %ymm2 vextracti128 $1, %ymm2, %xmm2 vpextrq $0, %xmm2, %r10 lea oracles, %r8 and $0xff, %r10 shlq $12, %r10 mov (%r8,%r10,1), %r10 pop %rsi pop %rdx pop %rbp pop %r8 pop %r15 pop %r14 pop %r10 ret /* <gen_faulty_load> [REF] {'OP': 'LOAD', 'src': {'type': 'addresses_WC', 'size': 2, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_WC', 'size': 8, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_D', 'size': 1, 'AVXalign': False, 'NT': True, 'congruent': 2, 'same': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_WT', 'size': 8, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_UC', 'size': 2, 'AVXalign': False, 'NT': False, 'congruent': 11, 'same': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_WC', 'size': 16, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': True}} {'OP': 'STOR', 'dst': {'type': 'addresses_normal', 'size': 4, 'AVXalign': False, 'NT': False, 'congruent': 3, 'same': False}} [Faulty Load] {'OP': 'LOAD', 'src': {'type': 'addresses_WC', 'size': 32, 'AVXalign': True, 'NT': False, 'congruent': 0, 'same': True}} <gen_prepare_buffer> {'OP': 'LOAD', 'src': {'type': 'addresses_A_ht', 'size': 1, 'AVXalign': False, 'NT': False, 'congruent': 4, 'same': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_WC_ht', 'size': 32, 'AVXalign': False, 'NT': False, 'congruent': 5, 'same': False}} {'OP': 'REPM', 'src': {'type': 'addresses_WT_ht', 'congruent': 3, 'same': False}, 'dst': {'type': 'addresses_UC_ht', 'congruent': 1, 'same': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_A_ht', 'size': 1, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': False}} {'OP': 'REPM', 'src': {'type': 'addresses_normal_ht', 'congruent': 5, 'same': True}, 'dst': {'type': 'addresses_D_ht', 'congruent': 1, 'same': False}} {'OP': 'LOAD', 'src': {'type': 'addresses_UC_ht', 'size': 4, 'AVXalign': False, 'NT': False, 'congruent': 3, 'same': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_normal_ht', 'size': 32, 'AVXalign': False, 'NT': False, 'congruent': 2, 'same': False}} {'OP': 'REPM', 'src': {'type': 'addresses_D_ht', 'congruent': 1, 'same': False}, 'dst': {'type': 'addresses_A_ht', 'congruent': 8, 'same': False}} {'OP': 'LOAD', 'src': {'type': 'addresses_UC_ht', 'size': 4, 'AVXalign': True, 'NT': False, 'congruent': 1, 'same': True}} {'OP': 'LOAD', 'src': {'type': 'addresses_UC_ht', 'size': 1, 'AVXalign': False, 'NT': False, 'congruent': 4, 'same': True}} {'OP': 'LOAD', 'src': {'type': 'addresses_WT_ht', 'size': 16, 'AVXalign': False, 'NT': True, 'congruent': 1, 'same': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_UC_ht', 'size': 8, 'AVXalign': False, 'NT': False, 'congruent': 4, 'same': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_WT_ht', 'size': 4, 'AVXalign': True, 'NT': True, 'congruent': 2, 'same': False}} {'OP': 'REPM', 'src': {'type': 'addresses_WT_ht', 'congruent': 1, 'same': False}, 'dst': {'type': 'addresses_A_ht', 'congruent': 0, 'same': True}} {'OP': 'STOR', 'dst': {'type': 'addresses_WT_ht', 'size': 16, 'AVXalign': False, 'NT': False, 'congruent': 9, 'same': False}} {'00': 1650} 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 */
src/main_master_pico.adb
hgrodriguez/spi_two_devices
0
17394
--=========================================================================== -- -- This is the main master program for the Pico for the -- use cases: -- 1: Master Pico -> Slave Pico -- 2: Master Pico -> Slave ItsyBitsy -- --=========================================================================== -- -- Copyright 2022 (C) <NAME> -- -- SPDX-License-Identifier: BSD-3-Clause -- with HAL; with HAL.SPI; with RP.Clock; with RP.GPIO; with RP.SPI; with RP.Device; with Pico; with SPI_Master_Pico; procedure Main_Master_Pico is Data_Out_16 : HAL.SPI.SPI_Data_16b (1 .. 1); Status_Out : HAL.SPI.SPI_Status; Data_In_16 : HAL.SPI.SPI_Data_16b (1 .. 1) := (others => 0); Status_In : HAL.SPI.SPI_Status; Word : HAL.UInt16; use HAL; use HAL.SPI; use RP.SPI; begin RP.Clock.Initialize (Pico.XOSC_Frequency); RP.Device.Timer.Enable; Pico.LED.Configure (RP.GPIO.Output); SPI_Master_Pico.Initialize; loop -- construct the values for the transmission for Higher_Byte in HAL.UInt8'Range loop for Lower_Byte in HAL.UInt8'Range loop Word := Shift_Left (Value => HAL.UInt16 (Higher_Byte), Amount => 8) or HAL.UInt16 (Lower_Byte); Data_Out_16 (1) := Word; SPI_Master_Pico.SPI.Transmit (Data_Out_16, Status_Out); SPI_Master_Pico.SPI.Receive (Data_In_16, Status_In, 0); RP.Device.Timer.Delay_Milliseconds (100); Pico.LED.Toggle; end loop; end loop; end loop; end Main_Master_Pico;
programs/oeis/282/A282850.asm
neoneye/loda
22
20388
<reponame>neoneye/loda<gh_stars>10-100 ; A282850: 38-gonal numbers: a(n) = n*(18*n-17). ; 0,1,38,111,220,365,546,763,1016,1305,1630,1991,2388,2821,3290,3795,4336,4913,5526,6175,6860,7581,8338,9131,9960,10825,11726,12663,13636,14645,15690,16771,17888,19041,20230,21455,22716,24013,25346,26715,28120,29561 mov $1,$0 mul $1,18 sub $1,17 mul $0,$1
deps/openssl/asm/x86-win32-masm/rc4/rc4-586.asm
sgallagher/node
2
22158
<gh_stars>1-10 TITLE rc4-586.asm IF @Version LT 800 ECHO MASM version 8.00 or later is strongly recommended. ENDIF .586 .MODEL FLAT OPTION DOTNAME IF @Version LT 800 .text$ SEGMENT PAGE 'CODE' ELSE .text$ SEGMENT ALIGN(64) 'CODE' ENDIF ALIGN 16 _RC4 PROC PUBLIC $L_RC4_begin:: push ebp push ebx push esi push edi mov edi,DWORD PTR 20[esp] mov edx,DWORD PTR 24[esp] mov esi,DWORD PTR 28[esp] mov ebp,DWORD PTR 32[esp] xor eax,eax xor ebx,ebx cmp edx,0 je $L000abort mov al,BYTE PTR [edi] mov bl,BYTE PTR 4[edi] add edi,8 lea ecx,DWORD PTR [edx*1+esi] sub ebp,esi mov DWORD PTR 24[esp],ecx inc al cmp DWORD PTR 256[edi],-1 je $L001RC4_CHAR mov ecx,DWORD PTR [eax*4+edi] and edx,-4 jz $L002loop1 lea edx,DWORD PTR [edx*1+esi-4] mov DWORD PTR 28[esp],edx mov DWORD PTR 32[esp],ebp ALIGN 16 $L003loop4: add bl,cl mov edx,DWORD PTR [ebx*4+edi] mov DWORD PTR [ebx*4+edi],ecx mov DWORD PTR [eax*4+edi],edx add edx,ecx inc al and edx,255 mov ecx,DWORD PTR [eax*4+edi] mov ebp,DWORD PTR [edx*4+edi] add bl,cl mov edx,DWORD PTR [ebx*4+edi] mov DWORD PTR [ebx*4+edi],ecx mov DWORD PTR [eax*4+edi],edx add edx,ecx inc al and edx,255 ror ebp,8 mov ecx,DWORD PTR [eax*4+edi] or ebp,DWORD PTR [edx*4+edi] add bl,cl mov edx,DWORD PTR [ebx*4+edi] mov DWORD PTR [ebx*4+edi],ecx mov DWORD PTR [eax*4+edi],edx add edx,ecx inc al and edx,255 ror ebp,8 mov ecx,DWORD PTR [eax*4+edi] or ebp,DWORD PTR [edx*4+edi] add bl,cl mov edx,DWORD PTR [ebx*4+edi] mov DWORD PTR [ebx*4+edi],ecx mov DWORD PTR [eax*4+edi],edx add edx,ecx inc al and edx,255 ror ebp,8 mov ecx,DWORD PTR 32[esp] or ebp,DWORD PTR [edx*4+edi] ror ebp,8 xor ebp,DWORD PTR [esi] cmp esi,DWORD PTR 28[esp] mov DWORD PTR [esi*1+ecx],ebp lea esi,DWORD PTR 4[esi] mov ecx,DWORD PTR [eax*4+edi] jb $L003loop4 cmp esi,DWORD PTR 24[esp] je $L004done mov ebp,DWORD PTR 32[esp] ALIGN 16 $L002loop1: add bl,cl mov edx,DWORD PTR [ebx*4+edi] mov DWORD PTR [ebx*4+edi],ecx mov DWORD PTR [eax*4+edi],edx add edx,ecx inc al and edx,255 mov edx,DWORD PTR [edx*4+edi] xor dl,BYTE PTR [esi] lea esi,DWORD PTR 1[esi] mov ecx,DWORD PTR [eax*4+edi] cmp esi,DWORD PTR 24[esp] mov BYTE PTR [esi*1+ebp-1],dl jb $L002loop1 jmp $L004done ALIGN 16 $L001RC4_CHAR: movzx ecx,BYTE PTR [eax*1+edi] $L005cloop1: add bl,cl movzx edx,BYTE PTR [ebx*1+edi] mov BYTE PTR [ebx*1+edi],cl mov BYTE PTR [eax*1+edi],dl add dl,cl movzx edx,BYTE PTR [edx*1+edi] add al,1 xor dl,BYTE PTR [esi] lea esi,DWORD PTR 1[esi] movzx ecx,BYTE PTR [eax*1+edi] cmp esi,DWORD PTR 24[esp] mov BYTE PTR [esi*1+ebp-1],dl jb $L005cloop1 $L004done: dec al mov BYTE PTR [edi-4],bl mov BYTE PTR [edi-8],al $L000abort: pop edi pop esi pop ebx pop ebp ret _RC4 ENDP ;EXTERN _OPENSSL_ia32cap_P:NEAR ALIGN 16 _RC4_set_key PROC PUBLIC $L_RC4_set_key_begin:: push ebp push ebx push esi push edi mov edi,DWORD PTR 20[esp] mov ebp,DWORD PTR 24[esp] mov esi,DWORD PTR 28[esp] lea edx,DWORD PTR _OPENSSL_ia32cap_P lea edi,DWORD PTR 8[edi] lea esi,DWORD PTR [ebp*1+esi] neg ebp xor eax,eax mov DWORD PTR [edi-4],ebp bt DWORD PTR [edx],20 jc $L006c1stloop ALIGN 16 $L007w1stloop: mov DWORD PTR [eax*4+edi],eax add al,1 jnc $L007w1stloop xor ecx,ecx xor edx,edx ALIGN 16 $L008w2ndloop: mov eax,DWORD PTR [ecx*4+edi] add dl,BYTE PTR [ebp*1+esi] add dl,al add ebp,1 mov ebx,DWORD PTR [edx*4+edi] jnz $L009wnowrap mov ebp,DWORD PTR [edi-4] $L009wnowrap: mov DWORD PTR [edx*4+edi],eax mov DWORD PTR [ecx*4+edi],ebx add cl,1 jnc $L008w2ndloop jmp $L010exit ALIGN 16 $L006c1stloop: mov BYTE PTR [eax*1+edi],al add al,1 jnc $L006c1stloop xor ecx,ecx xor edx,edx xor ebx,ebx ALIGN 16 $L011c2ndloop: mov al,BYTE PTR [ecx*1+edi] add dl,BYTE PTR [ebp*1+esi] add dl,al add ebp,1 mov bl,BYTE PTR [edx*1+edi] jnz $L012cnowrap mov ebp,DWORD PTR [edi-4] $L012cnowrap: mov BYTE PTR [edx*1+edi],al mov BYTE PTR [ecx*1+edi],bl add cl,1 jnc $L011c2ndloop mov DWORD PTR 256[edi],-1 $L010exit: xor eax,eax mov DWORD PTR [edi-8],eax mov DWORD PTR [edi-4],eax pop edi pop esi pop ebx pop ebp ret _RC4_set_key ENDP ALIGN 16 _RC4_options PROC PUBLIC $L_RC4_options_begin:: call $L013pic_point $L013pic_point: pop eax lea eax,DWORD PTR ($L014opts-$L013pic_point)[eax] lea edx,DWORD PTR _OPENSSL_ia32cap_P bt DWORD PTR [edx],20 jnc $L015skip add eax,12 $L015skip: ret ALIGN 64 $L014opts: DB 114,99,52,40,52,120,44,105,110,116,41,0 DB 114,99,52,40,49,120,44,99,104,97,114,41,0 DB 82,67,52,32,102,111,114,32,120,56,54,44,32,67,82,89 DB 80,84,79,71,65,77,83,32,98,121,32,60,97,112,112,114 DB 111,64,111,112,101,110,115,115,108,46,111,114,103,62,0 ALIGN 64 _RC4_options ENDP .text$ ENDS .bss SEGMENT 'BSS' COMM _OPENSSL_ia32cap_P:DWORD .bss ENDS END
Functors/FullyFaithful.agda
jmchapman/Relative-Monads
21
3646
<reponame>jmchapman/Relative-Monads<filename>Functors/FullyFaithful.agda module Functors.FullyFaithful where open import Library open import Categories open import Functors open import Naturals hiding (Iso) open import Isomorphism open Cat open Fun FullyFaithful : ∀{a b c d}{C : Cat {a}{b}}{D : Cat {c}{d}} (F : Fun C D) → Set (a ⊔ b ⊔ d) FullyFaithful {C = C}{D = D} F = ∀ (X Y : Obj C) → Iso (Hom D (OMap F X) (OMap F Y)) (Hom C X Y) Full : ∀{a b c d}{C : Cat {a}{b}}{D : Cat {c}{d}} (F : Fun C D) → Set _ Full {C = C}{D = D} F = ∀ {X Y}(h : Hom D (OMap F X) (OMap F Y)) → Σ (Hom C X Y) \ f -> HMap F f ≅ h Faithful : ∀{a b c d}{C : Cat {a}{b}}{D : Cat {c}{d}} (F : Fun C D) → Set _ Faithful {C = C}{D = D} F = ∀{X Y}{f g : Hom C X Y} → HMap F f ≅ HMap F g → f ≅ g
programs/oeis/165/A165311.asm
neoneye/loda
22
93637
<filename>programs/oeis/165/A165311.asm<gh_stars>10-100 ; A165311: a(0)=1, a(1)=4, a(n)=9*a(n-1)-16*a(n-2) for n>1. ; 1,4,20,116,724,4660,30356,198644,1302100,8540596,56031764,367636340,2412218836,15827788084,103854591380,681446713076,4471346955604,29338975191220,192509225431316,1263159425822324,8288287225499860 mul $0,2 seq $0,52923 ; Expansion of (1-x)/(1 - x - 4*x^2).
+extras/external_libs/zlib/src/zlib-1.2.11/contrib/vstudio/vc14/x86/TestZlibDebug/Tmp/inffast.asm
dkovari/ExtrasToolbox
0
84093
; Listing generated by Microsoft (R) Optimizing Compiler Version 19.14.26428.1 TITLE C:\Users\dkovari\Documents\GitHub\ExtrasToolbox\+extras\external_libs\zlib\src\zlib-1.2.11\inffast.c .686P .XMM include listing.inc .model flat INCLUDELIB MSVCRTD INCLUDELIB OLDNAMES END
programs/oeis/158/A158590.asm
karttu/loda
1
1357
<gh_stars>1-10 ; A158590: a(n) = 324*n^2 + 18. ; 18,342,1314,2934,5202,8118,11682,15894,20754,26262,32418,39222,46674,54774,63522,72918,82962,93654,104994,116982,129618,142902,156834,171414,186642,202518,219042,236214,254034,272502,291618,311382,331794,352854,374562,396918,419922,443574,467874,492822,518418,544662,571554,599094,627282,656118,685602,715734,746514,777942,810018,842742,876114,910134,944802,980118,1016082,1052694,1089954,1127862,1166418,1205622,1245474,1285974,1327122,1368918,1411362,1454454,1498194,1542582,1587618,1633302,1679634,1726614,1774242,1822518,1871442,1921014,1971234,2022102,2073618,2125782,2178594,2232054,2286162,2340918,2396322,2452374,2509074,2566422,2624418,2683062,2742354,2802294,2862882,2924118,2986002,3048534,3111714,3175542,3240018,3305142,3370914,3437334,3504402,3572118,3640482,3709494,3779154,3849462,3920418,3992022,4064274,4137174,4210722,4284918,4359762,4435254,4511394,4588182,4665618,4743702,4822434,4901814,4981842,5062518,5143842,5225814,5308434,5391702,5475618,5560182,5645394,5731254,5817762,5904918,5992722,6081174,6170274,6260022,6350418,6441462,6533154,6625494,6718482,6812118,6906402,7001334,7096914,7193142,7290018,7387542,7485714,7584534,7684002,7784118,7884882,7986294,8088354,8191062,8294418,8398422,8503074,8608374,8714322,8820918,8928162,9036054,9144594,9253782,9363618,9474102,9585234,9697014,9809442,9922518,10036242,10150614,10265634,10381302,10497618,10614582,10732194,10850454,10969362,11088918,11209122,11329974,11451474,11573622,11696418,11819862,11943954,12068694,12194082,12320118,12446802,12574134,12702114,12830742,12960018,13089942,13220514,13351734,13483602,13616118,13749282,13883094,14017554,14152662,14288418,14424822,14561874,14699574,14837922,14976918,15116562,15256854,15397794,15539382,15681618,15824502,15968034,16112214,16257042,16402518,16548642,16695414,16842834,16990902,17139618,17288982,17438994,17589654,17740962,17892918,18045522,18198774,18352674,18507222,18662418,18818262,18974754,19131894,19289682,19448118,19607202,19766934,19927314,20088342 mov $1,$0 pow $1,2 mul $1,324 add $1,18
Transynther/x86/_processed/NC/_zr_/i9-9900K_12_0xa0.log_21829_1536.asm
ljhsiun2/medusa
9
244233
.global s_prepare_buffers s_prepare_buffers: push %r13 push %r14 push %r9 push %rcx push %rdi push %rdx push %rsi lea addresses_D_ht+0x1d9c1, %rdi nop nop nop nop nop cmp %r13, %r13 mov $0x6162636465666768, %rdx movq %rdx, %xmm6 movups %xmm6, (%rdi) nop inc %r14 lea addresses_WT_ht+0x1ca21, %rsi lea addresses_A_ht+0x6c95, %rdi nop nop nop xor %r9, %r9 mov $36, %rcx rep movsb and $1922, %rsi lea addresses_UC_ht+0x4671, %r13 clflush (%r13) nop nop nop and %rcx, %rcx movups (%r13), %xmm6 vpextrq $0, %xmm6, %r9 nop nop nop nop sub $29760, %r13 lea addresses_WT_ht+0x1aa81, %rsi lea addresses_UC_ht+0x1281, %rdi nop sub $43648, %r13 mov $62, %rcx rep movsq nop nop nop cmp %r14, %r14 pop %rsi pop %rdx pop %rdi pop %rcx pop %r9 pop %r14 pop %r13 ret .global s_faulty_load s_faulty_load: push %r10 push %r12 push %r8 push %r9 push %rax push %rdx // Faulty Load mov $0x409eb0000000a81, %r8 clflush (%r8) nop nop nop nop and $45133, %rdx movups (%r8), %xmm5 vpextrq $0, %xmm5, %rax lea oracles, %r9 and $0xff, %rax shlq $12, %rax mov (%r9,%rax,1), %rax pop %rdx pop %rax pop %r9 pop %r8 pop %r12 pop %r10 ret /* <gen_faulty_load> [REF] {'src': {'NT': False, 'same': False, 'congruent': 0, 'type': 'addresses_NC', 'AVXalign': False, 'size': 16}, 'OP': 'LOAD'} [Faulty Load] {'src': {'NT': False, 'same': True, 'congruent': 0, 'type': 'addresses_NC', 'AVXalign': False, 'size': 16}, 'OP': 'LOAD'} <gen_prepare_buffer> {'OP': 'STOR', 'dst': {'NT': False, 'same': False, 'congruent': 3, 'type': 'addresses_D_ht', 'AVXalign': False, 'size': 16}} {'src': {'same': False, 'congruent': 5, 'type': 'addresses_WT_ht'}, 'OP': 'REPM', 'dst': {'same': False, 'congruent': 0, 'type': 'addresses_A_ht'}} {'src': {'NT': False, 'same': False, 'congruent': 4, 'type': 'addresses_UC_ht', 'AVXalign': False, 'size': 16}, 'OP': 'LOAD'} {'src': {'same': False, 'congruent': 10, 'type': 'addresses_WT_ht'}, 'OP': 'REPM', 'dst': {'same': True, 'congruent': 6, 'type': 'addresses_UC_ht'}} {'00': 21829} 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 */
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca.log_21829_722.asm
ljhsiun2/medusa
9
18978
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %r14 push %rax push %rbx push %rcx lea addresses_WC_ht+0x122c9, %rax nop add $47020, %r14 vmovups (%rax), %ymm0 vextracti128 $1, %ymm0, %xmm0 vpextrq $0, %xmm0, %r11 nop nop add %r10, %r10 lea addresses_D_ht+0x9619, %rcx nop nop sub $17508, %rbx mov (%rcx), %r10 dec %r11 pop %rcx pop %rbx pop %rax pop %r14 pop %r11 pop %r10 ret .global s_faulty_load s_faulty_load: push %r11 push %r13 push %r14 push %r15 push %r9 push %rbp push %rdx // Store mov $0x2bd870000000839, %r14 add %rdx, %rdx movw $0x5152, (%r14) nop nop nop nop nop xor $57217, %rdx // Store lea addresses_RW+0xbb7d, %r11 nop nop nop nop inc %r15 movb $0x51, (%r11) nop add $20997, %r11 // Faulty Load lea addresses_normal+0x11319, %r15 nop nop nop nop cmp $17221, %rbp movb (%r15), %r14b lea oracles, %r11 and $0xff, %r14 shlq $12, %r14 mov (%r11,%r14,1), %r14 pop %rdx pop %rbp pop %r9 pop %r15 pop %r14 pop %r13 pop %r11 ret /* <gen_faulty_load> [REF] {'src': {'congruent': 0, 'AVXalign': False, 'same': False, 'size': 16, 'NT': False, 'type': 'addresses_normal'}, 'OP': 'LOAD'} {'OP': 'STOR', 'dst': {'congruent': 5, 'AVXalign': False, 'same': False, 'size': 2, 'NT': False, 'type': 'addresses_NC'}} {'OP': 'STOR', 'dst': {'congruent': 2, 'AVXalign': False, 'same': False, 'size': 1, 'NT': False, 'type': 'addresses_RW'}} [Faulty Load] {'src': {'congruent': 0, 'AVXalign': False, 'same': True, 'size': 1, 'NT': False, 'type': 'addresses_normal'}, 'OP': 'LOAD'} <gen_prepare_buffer> {'src': {'congruent': 3, 'AVXalign': False, 'same': False, 'size': 32, 'NT': False, 'type': 'addresses_WC_ht'}, 'OP': 'LOAD'} {'src': {'congruent': 8, 'AVXalign': True, 'same': False, 'size': 8, 'NT': False, 'type': 'addresses_D_ht'}, 'OP': 'LOAD'} {'34': 21829} 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 */
RefactorAgdaEngine/Test/Tests/input/MoveArg.agda
omega12345/RefactorAgda
5
11696
<filename>RefactorAgdaEngine/Test/Tests/input/MoveArg.agda module moveArg where open import Agda.Builtin.Nat open import Agda.Builtin.Bool stuff : ( number : Nat) -> Bool -> Bool stuff number bool = {! !} stuff2 : Nat -> Bool -> Bool stuff2 number bool = bool nonsense : Bool nonsense = stuff 0 true dep : (A : Set) -> (B : A) -> Bool -> Bool dep a b c = c unnamedDep : (A : Set) -> A -> Bool -> Bool unnamedDep a b c = c sameName : (A : Set) -> {A : Set} -> A -> A sameName set a = a nonDep : (A : Set) -> (B : Set) -> B -> B nonDep set1 set2 b = b data List (A : Set) : Nat -> Set where nil : List A 0 cons : {n : Nat} -> A -> List A n -> List A (suc n) map : {n : Nat} -> {A : Set} -> {B : Set} -> (A -> B) -> List A n -> List B n map f nil = nil map f (cons x xs) = cons (f x) (map f xs) map2 : {A : Set} -> {n : Nat} -> {B : Set} -> (A -> B) -> List A n -> List B n map2 f nil = nil map2 f (cons x xs) = cons (f x) (map2 f xs)
oeis/308/A308693.asm
neoneye/loda-programs
11
19695
; A308693: a(n) = Sum_{d|n} d^(3*(n/d - 1)). ; Submitted by <NAME>(s4) ; 1,2,2,10,2,93,2,578,731,4223,2,56765,2,262489,547068,2359810,2,31173510,2,152949071,387538140,1073743157,2,20134371189,244140627,68719478935,282430067924,618515646977,2,12056339359929,2,39582552821762,205891133866212 add $0,1 mov $2,$0 lpb $0 mov $3,$2 dif $3,$0 mov $5,$3 cmp $3,$2 cmp $3,0 mul $3,$0 sub $0,1 pow $3,3 sub $5,1 pow $3,$5 mov $4,$0 cmp $4,0 add $0,$4 add $1,$3 lpe mov $0,$1 add $0,1
gcc-gcc-7_3_0-release/gcc/ada/a-tiunio.ads
best08618/asylo
7
2707
------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- A D A . T E X T _ I O . U N B O U N D E D _ I O -- -- -- -- S p e c -- -- -- -- This specification is derived from the Ada Reference Manual for use with -- -- GNAT. In accordance with the copyright of that document, you can freely -- -- copy and modify this specification, provided that if you redistribute a -- -- modified version, any changes that you have made are clearly indicated. -- -- -- ------------------------------------------------------------------------------ -- Note: historically GNAT provided these subprograms as a child of the -- package Ada.Strings.Unbounded. So we implement this new Ada 2005 package -- by renaming the subprograms in that child. This is a more straightforward -- implementation anyway, since we need access to the internal representation -- of Ada.Strings.Unbounded.Unbounded_String. with Ada.Strings.Unbounded; with Ada.Strings.Unbounded.Text_IO; package Ada.Text_IO.Unbounded_IO is procedure Put (File : File_Type; Item : Strings.Unbounded.Unbounded_String) renames Ada.Strings.Unbounded.Text_IO.Put; procedure Put (Item : Strings.Unbounded.Unbounded_String) renames Ada.Strings.Unbounded.Text_IO.Put; procedure Put_Line (File : Text_IO.File_Type; Item : Strings.Unbounded.Unbounded_String) renames Ada.Strings.Unbounded.Text_IO.Put_Line; procedure Put_Line (Item : Strings.Unbounded.Unbounded_String) renames Ada.Strings.Unbounded.Text_IO.Put_Line; function Get_Line (File : File_Type) return Strings.Unbounded.Unbounded_String renames Ada.Strings.Unbounded.Text_IO.Get_Line; function Get_Line return Strings.Unbounded.Unbounded_String renames Ada.Strings.Unbounded.Text_IO.Get_Line; procedure Get_Line (File : File_Type; Item : out Strings.Unbounded.Unbounded_String) renames Ada.Strings.Unbounded.Text_IO.Get_Line; procedure Get_Line (Item : out Strings.Unbounded.Unbounded_String) renames Ada.Strings.Unbounded.Text_IO.Get_Line; end Ada.Text_IO.Unbounded_IO;
libsrc/_DEVELOPMENT/l/sccz80/8-8080/i32/l_long_ne.asm
ahjelm/z88dk
640
173611
; sccz80 crt0 library - 8080 version SECTION code_clib SECTION code_l_sccz80 PUBLIC l_long_ne EXTERN l_long_ucmp l_long_ne: call l_long_ucmp ld hl,1 scf ret NZ dec hl and a ret
vpx_dsp/x86/add_noise_sse2.asm
clear39/avcode-libvpx
582
100402
; ; Copyright (c) 2010 The WebM project authors. All Rights Reserved. ; ; Use of this source code is governed by a BSD-style license ; that can be found in the LICENSE file in the root of the source ; tree. An additional intellectual property rights grant can be found ; in the file PATENTS. All contributing project authors may ; be found in the AUTHORS file in the root of the source tree. ; %include "vpx_ports/x86_abi_support.asm" ;void vpx_plane_add_noise_sse2(uint8_t *start, const int8_t *noise, ; int blackclamp, int whiteclamp, ; int width, int height, int pitch) global sym(vpx_plane_add_noise_sse2) PRIVATE sym(vpx_plane_add_noise_sse2): push rbp mov rbp, rsp SHADOW_ARGS_TO_STACK 7 GET_GOT rbx push rsi push rdi mov rdx, 0x01010101 mov rax, arg(2) mul rdx movd xmm3, rax pshufd xmm3, xmm3, 0 ; xmm3 is 16 copies of char in blackclamp mov rdx, 0x01010101 mov rax, arg(3) mul rdx movd xmm4, rax pshufd xmm4, xmm4, 0 ; xmm4 is 16 copies of char in whiteclamp movdqu xmm5, xmm3 ; both clamp = black clamp + white clamp paddusb xmm5, xmm4 .addnoise_loop: call sym(LIBVPX_RAND) WRT_PLT mov rcx, arg(1) ;noise and rax, 0xff add rcx, rax mov rdi, rcx movsxd rcx, dword arg(4) ;[Width] mov rsi, arg(0) ;Pos xor rax, rax .addnoise_nextset: movdqu xmm1,[rsi+rax] ; get the source psubusb xmm1, xmm3 ; subtract black clamp paddusb xmm1, xmm5 ; add both clamp psubusb xmm1, xmm4 ; subtract whiteclamp movdqu xmm2,[rdi+rax] ; get the noise for this line paddb xmm1,xmm2 ; add it in movdqu [rsi+rax],xmm1 ; store the result add rax,16 ; move to the next line cmp rax, rcx jl .addnoise_nextset movsxd rax, dword arg(6) ; Pitch add arg(0), rax ; Start += Pitch sub dword arg(5), 1 ; Height -= 1 jg .addnoise_loop ; begin epilog pop rdi pop rsi RESTORE_GOT UNSHADOW_ARGS pop rbp ret SECTION_RODATA align 16 rd42: times 8 dw 0x04 four8s: times 4 dd 8
programs/oeis/036/A036404.asm
karttu/loda
1
160192
; A036404: a(n) = ceiling(n^2/5). ; 0,1,1,2,4,5,8,10,13,17,20,25,29,34,40,45,52,58,65,73,80,89,97,106,116,125,136,146,157,169,180,193,205,218,232,245,260,274,289,305,320,337,353,370,388,405,424,442,461,481,500,521,541,562,584 pow $0,2 mov $1,$0 add $1,4 div $1,5
programs/oeis/143/A143536.asm
karttu/loda
1
82110
; A143536: Triangle read by rows, T(n,k) = 1 if n is prime, 0 otherwise. ; 0,1,1,1,1,1,0,0,0,0,1,1,1,1,1,0,0,0,0,0,0,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 cal $0,3056 ; n appears n+1 times. Also the array A(n,k) = n+k (n >= 0, k >= 0) read by antidiagonals. Also inverse of triangular numbers. cal $0,10051 ; Characteristic function of primes: 1 if n is prime, else 0. sub $0,1 mov $1,$0 add $1,1
kernel.asm
SandeepPithani/XV6_rename_command
1
17278
<gh_stars>1-10 kernel: file format elf32-i386 Disassembly of section .text: 80100000 <multiboot_header>: 80100000: 02 b0 ad 1b 00 00 add 0x1bad(%eax),%dh 80100006: 00 00 add %al,(%eax) 80100008: fe 4f 52 decb 0x52(%edi) 8010000b: e4 .byte 0xe4 8010000c <entry>: # Entering xv6 on boot processor, with paging off. .globl entry entry: # Turn on page size extension for 4Mbyte pages movl %cr4, %eax 8010000c: 0f 20 e0 mov %cr4,%eax orl $(CR4_PSE), %eax 8010000f: 83 c8 10 or $0x10,%eax movl %eax, %cr4 80100012: 0f 22 e0 mov %eax,%cr4 # Set page directory movl $(V2P_WO(entrypgdir)), %eax 80100015: b8 00 a0 10 00 mov $0x10a000,%eax movl %eax, %cr3 8010001a: 0f 22 d8 mov %eax,%cr3 # Turn on paging. movl %cr0, %eax 8010001d: 0f 20 c0 mov %cr0,%eax orl $(CR0_PG|CR0_WP), %eax 80100020: 0d 00 00 01 80 or $0x80010000,%eax movl %eax, %cr0 80100025: 0f 22 c0 mov %eax,%cr0 # Set up the stack pointer. movl $(stack + KSTACKSIZE), %esp 80100028: bc c0 c5 10 80 mov $0x8010c5c0,%esp # Jump to main(), and switch to executing at # high addresses. The indirect call is needed because # the assembler produces a PC-relative instruction # for a direct jump. mov $main, %eax 8010002d: b8 a0 2e 10 80 mov $0x80102ea0,%eax jmp *%eax 80100032: ff e0 jmp *%eax 80100034: 66 90 xchg %ax,%ax 80100036: 66 90 xchg %ax,%ax 80100038: 66 90 xchg %ax,%ax 8010003a: 66 90 xchg %ax,%ax 8010003c: 66 90 xchg %ax,%ax 8010003e: 66 90 xchg %ax,%ax 80100040 <binit>: struct buf head; } bcache; void binit(void) { 80100040: 55 push %ebp 80100041: 89 e5 mov %esp,%ebp 80100043: 53 push %ebx //PAGEBREAK! // Create linked list of buffers bcache.head.prev = &bcache.head; bcache.head.next = &bcache.head; for(b = bcache.buf; b < bcache.buf+NBUF; b++){ 80100044: bb f4 c5 10 80 mov $0x8010c5f4,%ebx { 80100049: 83 ec 0c sub $0xc,%esp initlock(&bcache.lock, "bcache"); 8010004c: 68 40 77 10 80 push $0x80107740 80100051: 68 c0 c5 10 80 push $0x8010c5c0 80100056: e8 e5 42 00 00 call 80104340 <initlock> bcache.head.prev = &bcache.head; 8010005b: c7 05 0c 0d 11 80 bc movl $0x80110cbc,0x80110d0c 80100062: 0c 11 80 bcache.head.next = &bcache.head; 80100065: c7 05 10 0d 11 80 bc movl $0x80110cbc,0x80110d10 8010006c: 0c 11 80 8010006f: 83 c4 10 add $0x10,%esp 80100072: ba bc 0c 11 80 mov $0x80110cbc,%edx 80100077: eb 09 jmp 80100082 <binit+0x42> 80100079: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80100080: 89 c3 mov %eax,%ebx b->next = bcache.head.next; b->prev = &bcache.head; initsleeplock(&b->lock, "buffer"); 80100082: 8d 43 0c lea 0xc(%ebx),%eax 80100085: 83 ec 08 sub $0x8,%esp b->next = bcache.head.next; 80100088: 89 53 54 mov %edx,0x54(%ebx) b->prev = &bcache.head; 8010008b: c7 43 50 bc 0c 11 80 movl $0x80110cbc,0x50(%ebx) initsleeplock(&b->lock, "buffer"); 80100092: 68 47 77 10 80 push $0x80107747 80100097: 50 push %eax 80100098: e8 73 41 00 00 call 80104210 <initsleeplock> bcache.head.next->prev = b; 8010009d: a1 10 0d 11 80 mov 0x80110d10,%eax for(b = bcache.buf; b < bcache.buf+NBUF; b++){ 801000a2: 83 c4 10 add $0x10,%esp 801000a5: 89 da mov %ebx,%edx bcache.head.next->prev = b; 801000a7: 89 58 50 mov %ebx,0x50(%eax) for(b = bcache.buf; b < bcache.buf+NBUF; b++){ 801000aa: 8d 83 5c 02 00 00 lea 0x25c(%ebx),%eax bcache.head.next = b; 801000b0: 89 1d 10 0d 11 80 mov %ebx,0x80110d10 for(b = bcache.buf; b < bcache.buf+NBUF; b++){ 801000b6: 3d bc 0c 11 80 cmp $0x80110cbc,%eax 801000bb: 72 c3 jb 80100080 <binit+0x40> } } 801000bd: 8b 5d fc mov -0x4(%ebp),%ebx 801000c0: c9 leave 801000c1: c3 ret 801000c2: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 801000c9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 801000d0 <bread>: } // Return a locked buf with the contents of the indicated block. struct buf* bread(uint dev, uint blockno) { 801000d0: 55 push %ebp 801000d1: 89 e5 mov %esp,%ebp 801000d3: 57 push %edi 801000d4: 56 push %esi 801000d5: 53 push %ebx 801000d6: 83 ec 18 sub $0x18,%esp 801000d9: 8b 75 08 mov 0x8(%ebp),%esi 801000dc: 8b 7d 0c mov 0xc(%ebp),%edi acquire(&bcache.lock); 801000df: 68 c0 c5 10 80 push $0x8010c5c0 801000e4: e8 97 43 00 00 call 80104480 <acquire> for(b = bcache.head.next; b != &bcache.head; b = b->next){ 801000e9: 8b 1d 10 0d 11 80 mov 0x80110d10,%ebx 801000ef: 83 c4 10 add $0x10,%esp 801000f2: 81 fb bc 0c 11 80 cmp $0x80110cbc,%ebx 801000f8: 75 11 jne 8010010b <bread+0x3b> 801000fa: eb 24 jmp 80100120 <bread+0x50> 801000fc: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80100100: 8b 5b 54 mov 0x54(%ebx),%ebx 80100103: 81 fb bc 0c 11 80 cmp $0x80110cbc,%ebx 80100109: 74 15 je 80100120 <bread+0x50> if(b->dev == dev && b->blockno == blockno){ 8010010b: 3b 73 04 cmp 0x4(%ebx),%esi 8010010e: 75 f0 jne 80100100 <bread+0x30> 80100110: 3b 7b 08 cmp 0x8(%ebx),%edi 80100113: 75 eb jne 80100100 <bread+0x30> b->refcnt++; 80100115: 83 43 4c 01 addl $0x1,0x4c(%ebx) 80100119: eb 3f jmp 8010015a <bread+0x8a> 8010011b: 90 nop 8010011c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi for(b = bcache.head.prev; b != &bcache.head; b = b->prev){ 80100120: 8b 1d 0c 0d 11 80 mov 0x80110d0c,%ebx 80100126: 81 fb bc 0c 11 80 cmp $0x80110cbc,%ebx 8010012c: 75 0d jne 8010013b <bread+0x6b> 8010012e: eb 60 jmp 80100190 <bread+0xc0> 80100130: 8b 5b 50 mov 0x50(%ebx),%ebx 80100133: 81 fb bc 0c 11 80 cmp $0x80110cbc,%ebx 80100139: 74 55 je 80100190 <bread+0xc0> if(b->refcnt == 0 && (b->flags & B_DIRTY) == 0) { 8010013b: 8b 43 4c mov 0x4c(%ebx),%eax 8010013e: 85 c0 test %eax,%eax 80100140: 75 ee jne 80100130 <bread+0x60> 80100142: f6 03 04 testb $0x4,(%ebx) 80100145: 75 e9 jne 80100130 <bread+0x60> b->dev = dev; 80100147: 89 73 04 mov %esi,0x4(%ebx) b->blockno = blockno; 8010014a: 89 7b 08 mov %edi,0x8(%ebx) b->flags = 0; 8010014d: c7 03 00 00 00 00 movl $0x0,(%ebx) b->refcnt = 1; 80100153: c7 43 4c 01 00 00 00 movl $0x1,0x4c(%ebx) release(&bcache.lock); 8010015a: 83 ec 0c sub $0xc,%esp 8010015d: 68 c0 c5 10 80 push $0x8010c5c0 80100162: e8 d9 43 00 00 call 80104540 <release> acquiresleep(&b->lock); 80100167: 8d 43 0c lea 0xc(%ebx),%eax 8010016a: 89 04 24 mov %eax,(%esp) 8010016d: e8 de 40 00 00 call 80104250 <acquiresleep> 80100172: 83 c4 10 add $0x10,%esp struct buf *b; b = bget(dev, blockno); if((b->flags & B_VALID) == 0) { 80100175: f6 03 02 testb $0x2,(%ebx) 80100178: 75 0c jne 80100186 <bread+0xb6> iderw(b); 8010017a: 83 ec 0c sub $0xc,%esp 8010017d: 53 push %ebx 8010017e: e8 9d 1f 00 00 call 80102120 <iderw> 80100183: 83 c4 10 add $0x10,%esp } return b; } 80100186: 8d 65 f4 lea -0xc(%ebp),%esp 80100189: 89 d8 mov %ebx,%eax 8010018b: 5b pop %ebx 8010018c: 5e pop %esi 8010018d: 5f pop %edi 8010018e: 5d pop %ebp 8010018f: c3 ret panic("bget: no buffers"); 80100190: 83 ec 0c sub $0xc,%esp 80100193: 68 4e 77 10 80 push $0x8010774e 80100198: e8 f3 01 00 00 call 80100390 <panic> 8010019d: 8d 76 00 lea 0x0(%esi),%esi 801001a0 <bwrite>: // Write b's contents to disk. Must be locked. void bwrite(struct buf *b) { 801001a0: 55 push %ebp 801001a1: 89 e5 mov %esp,%ebp 801001a3: 53 push %ebx 801001a4: 83 ec 10 sub $0x10,%esp 801001a7: 8b 5d 08 mov 0x8(%ebp),%ebx if(!holdingsleep(&b->lock)) 801001aa: 8d 43 0c lea 0xc(%ebx),%eax 801001ad: 50 push %eax 801001ae: e8 3d 41 00 00 call 801042f0 <holdingsleep> 801001b3: 83 c4 10 add $0x10,%esp 801001b6: 85 c0 test %eax,%eax 801001b8: 74 0f je 801001c9 <bwrite+0x29> panic("bwrite"); b->flags |= B_DIRTY; 801001ba: 83 0b 04 orl $0x4,(%ebx) iderw(b); 801001bd: 89 5d 08 mov %ebx,0x8(%ebp) } 801001c0: 8b 5d fc mov -0x4(%ebp),%ebx 801001c3: c9 leave iderw(b); 801001c4: e9 57 1f 00 00 jmp 80102120 <iderw> panic("bwrite"); 801001c9: 83 ec 0c sub $0xc,%esp 801001cc: 68 5f 77 10 80 push $0x8010775f 801001d1: e8 ba 01 00 00 call 80100390 <panic> 801001d6: 8d 76 00 lea 0x0(%esi),%esi 801001d9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 801001e0 <brelse>: // Release a locked buffer. // Move to the head of the MRU list. void brelse(struct buf *b) { 801001e0: 55 push %ebp 801001e1: 89 e5 mov %esp,%ebp 801001e3: 56 push %esi 801001e4: 53 push %ebx 801001e5: 8b 5d 08 mov 0x8(%ebp),%ebx if(!holdingsleep(&b->lock)) 801001e8: 83 ec 0c sub $0xc,%esp 801001eb: 8d 73 0c lea 0xc(%ebx),%esi 801001ee: 56 push %esi 801001ef: e8 fc 40 00 00 call 801042f0 <holdingsleep> 801001f4: 83 c4 10 add $0x10,%esp 801001f7: 85 c0 test %eax,%eax 801001f9: 74 66 je 80100261 <brelse+0x81> panic("brelse"); releasesleep(&b->lock); 801001fb: 83 ec 0c sub $0xc,%esp 801001fe: 56 push %esi 801001ff: e8 ac 40 00 00 call 801042b0 <releasesleep> acquire(&bcache.lock); 80100204: c7 04 24 c0 c5 10 80 movl $0x8010c5c0,(%esp) 8010020b: e8 70 42 00 00 call 80104480 <acquire> b->refcnt--; 80100210: 8b 43 4c mov 0x4c(%ebx),%eax if (b->refcnt == 0) { 80100213: 83 c4 10 add $0x10,%esp b->refcnt--; 80100216: 83 e8 01 sub $0x1,%eax if (b->refcnt == 0) { 80100219: 85 c0 test %eax,%eax b->refcnt--; 8010021b: 89 43 4c mov %eax,0x4c(%ebx) if (b->refcnt == 0) { 8010021e: 75 2f jne 8010024f <brelse+0x6f> // no one is waiting for it. b->next->prev = b->prev; 80100220: 8b 43 54 mov 0x54(%ebx),%eax 80100223: 8b 53 50 mov 0x50(%ebx),%edx 80100226: 89 50 50 mov %edx,0x50(%eax) b->prev->next = b->next; 80100229: 8b 43 50 mov 0x50(%ebx),%eax 8010022c: 8b 53 54 mov 0x54(%ebx),%edx 8010022f: 89 50 54 mov %edx,0x54(%eax) b->next = bcache.head.next; 80100232: a1 10 0d 11 80 mov 0x80110d10,%eax b->prev = &bcache.head; 80100237: c7 43 50 bc 0c 11 80 movl $0x80110cbc,0x50(%ebx) b->next = bcache.head.next; 8010023e: 89 43 54 mov %eax,0x54(%ebx) bcache.head.next->prev = b; 80100241: a1 10 0d 11 80 mov 0x80110d10,%eax 80100246: 89 58 50 mov %ebx,0x50(%eax) bcache.head.next = b; 80100249: 89 1d 10 0d 11 80 mov %ebx,0x80110d10 } release(&bcache.lock); 8010024f: c7 45 08 c0 c5 10 80 movl $0x8010c5c0,0x8(%ebp) } 80100256: 8d 65 f8 lea -0x8(%ebp),%esp 80100259: 5b pop %ebx 8010025a: 5e pop %esi 8010025b: 5d pop %ebp release(&bcache.lock); 8010025c: e9 df 42 00 00 jmp 80104540 <release> panic("brelse"); 80100261: 83 ec 0c sub $0xc,%esp 80100264: 68 66 77 10 80 push $0x80107766 80100269: e8 22 01 00 00 call 80100390 <panic> 8010026e: 66 90 xchg %ax,%ax 80100270 <consoleread>: } } int consoleread(struct inode *ip, char *dst, int n) { 80100270: 55 push %ebp 80100271: 89 e5 mov %esp,%ebp 80100273: 57 push %edi 80100274: 56 push %esi 80100275: 53 push %ebx 80100276: 83 ec 28 sub $0x28,%esp 80100279: 8b 7d 08 mov 0x8(%ebp),%edi 8010027c: 8b 75 0c mov 0xc(%ebp),%esi uint target; int c; iunlock(ip); 8010027f: 57 push %edi 80100280: e8 db 14 00 00 call 80101760 <iunlock> target = n; acquire(&cons.lock); 80100285: c7 04 24 20 b5 10 80 movl $0x8010b520,(%esp) 8010028c: e8 ef 41 00 00 call 80104480 <acquire> while(n > 0){ 80100291: 8b 5d 10 mov 0x10(%ebp),%ebx 80100294: 83 c4 10 add $0x10,%esp 80100297: 31 c0 xor %eax,%eax 80100299: 85 db test %ebx,%ebx 8010029b: 0f 8e a1 00 00 00 jle 80100342 <consoleread+0xd2> while(input.r == input.w){ 801002a1: 8b 15 a0 0f 11 80 mov 0x80110fa0,%edx 801002a7: 39 15 a4 0f 11 80 cmp %edx,0x80110fa4 801002ad: 74 2c je 801002db <consoleread+0x6b> 801002af: eb 5f jmp 80100310 <consoleread+0xa0> 801002b1: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi if(myproc()->killed){ release(&cons.lock); ilock(ip); return -1; } sleep(&input.r, &cons.lock); 801002b8: 83 ec 08 sub $0x8,%esp 801002bb: 68 20 b5 10 80 push $0x8010b520 801002c0: 68 a0 0f 11 80 push $0x80110fa0 801002c5: e8 d6 3a 00 00 call 80103da0 <sleep> while(input.r == input.w){ 801002ca: 8b 15 a0 0f 11 80 mov 0x80110fa0,%edx 801002d0: 83 c4 10 add $0x10,%esp 801002d3: 3b 15 a4 0f 11 80 cmp 0x80110fa4,%edx 801002d9: 75 35 jne 80100310 <consoleread+0xa0> if(myproc()->killed){ 801002db: e8 00 35 00 00 call 801037e0 <myproc> 801002e0: 8b 40 24 mov 0x24(%eax),%eax 801002e3: 85 c0 test %eax,%eax 801002e5: 74 d1 je 801002b8 <consoleread+0x48> release(&cons.lock); 801002e7: 83 ec 0c sub $0xc,%esp 801002ea: 68 20 b5 10 80 push $0x8010b520 801002ef: e8 4c 42 00 00 call 80104540 <release> ilock(ip); 801002f4: 89 3c 24 mov %edi,(%esp) 801002f7: e8 84 13 00 00 call 80101680 <ilock> return -1; 801002fc: 83 c4 10 add $0x10,%esp } release(&cons.lock); ilock(ip); return target - n; } 801002ff: 8d 65 f4 lea -0xc(%ebp),%esp return -1; 80100302: b8 ff ff ff ff mov $0xffffffff,%eax } 80100307: 5b pop %ebx 80100308: 5e pop %esi 80100309: 5f pop %edi 8010030a: 5d pop %ebp 8010030b: c3 ret 8010030c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi c = input.buf[input.r++ % INPUT_BUF]; 80100310: 8d 42 01 lea 0x1(%edx),%eax 80100313: a3 a0 0f 11 80 mov %eax,0x80110fa0 80100318: 89 d0 mov %edx,%eax 8010031a: 83 e0 7f and $0x7f,%eax 8010031d: 0f be 80 20 0f 11 80 movsbl -0x7feef0e0(%eax),%eax if(c == C('D')){ // EOF 80100324: 83 f8 04 cmp $0x4,%eax 80100327: 74 3f je 80100368 <consoleread+0xf8> *dst++ = c; 80100329: 83 c6 01 add $0x1,%esi --n; 8010032c: 83 eb 01 sub $0x1,%ebx if(c == '\n') 8010032f: 83 f8 0a cmp $0xa,%eax *dst++ = c; 80100332: 88 46 ff mov %al,-0x1(%esi) if(c == '\n') 80100335: 74 43 je 8010037a <consoleread+0x10a> while(n > 0){ 80100337: 85 db test %ebx,%ebx 80100339: 0f 85 62 ff ff ff jne 801002a1 <consoleread+0x31> 8010033f: 8b 45 10 mov 0x10(%ebp),%eax release(&cons.lock); 80100342: 83 ec 0c sub $0xc,%esp 80100345: 89 45 e4 mov %eax,-0x1c(%ebp) 80100348: 68 20 b5 10 80 push $0x8010b520 8010034d: e8 ee 41 00 00 call 80104540 <release> ilock(ip); 80100352: 89 3c 24 mov %edi,(%esp) 80100355: e8 26 13 00 00 call 80101680 <ilock> return target - n; 8010035a: 8b 45 e4 mov -0x1c(%ebp),%eax 8010035d: 83 c4 10 add $0x10,%esp } 80100360: 8d 65 f4 lea -0xc(%ebp),%esp 80100363: 5b pop %ebx 80100364: 5e pop %esi 80100365: 5f pop %edi 80100366: 5d pop %ebp 80100367: c3 ret 80100368: 8b 45 10 mov 0x10(%ebp),%eax 8010036b: 29 d8 sub %ebx,%eax if(n < target){ 8010036d: 3b 5d 10 cmp 0x10(%ebp),%ebx 80100370: 73 d0 jae 80100342 <consoleread+0xd2> input.r--; 80100372: 89 15 a0 0f 11 80 mov %edx,0x80110fa0 80100378: eb c8 jmp 80100342 <consoleread+0xd2> 8010037a: 8b 45 10 mov 0x10(%ebp),%eax 8010037d: 29 d8 sub %ebx,%eax 8010037f: eb c1 jmp 80100342 <consoleread+0xd2> 80100381: eb 0d jmp 80100390 <panic> 80100383: 90 nop 80100384: 90 nop 80100385: 90 nop 80100386: 90 nop 80100387: 90 nop 80100388: 90 nop 80100389: 90 nop 8010038a: 90 nop 8010038b: 90 nop 8010038c: 90 nop 8010038d: 90 nop 8010038e: 90 nop 8010038f: 90 nop 80100390 <panic>: { 80100390: 55 push %ebp 80100391: 89 e5 mov %esp,%ebp 80100393: 56 push %esi 80100394: 53 push %ebx 80100395: 83 ec 30 sub $0x30,%esp } static inline void cli(void) { asm volatile("cli"); 80100398: fa cli cons.locking = 0; 80100399: c7 05 54 b5 10 80 00 movl $0x0,0x8010b554 801003a0: 00 00 00 getcallerpcs(&s, pcs); 801003a3: 8d 5d d0 lea -0x30(%ebp),%ebx 801003a6: 8d 75 f8 lea -0x8(%ebp),%esi cprintf("lapicid %d: panic: ", lapicid()); 801003a9: e8 82 23 00 00 call 80102730 <lapicid> 801003ae: 83 ec 08 sub $0x8,%esp 801003b1: 50 push %eax 801003b2: 68 6d 77 10 80 push $0x8010776d 801003b7: e8 a4 02 00 00 call 80100660 <cprintf> cprintf(s); 801003bc: 58 pop %eax 801003bd: ff 75 08 pushl 0x8(%ebp) 801003c0: e8 9b 02 00 00 call 80100660 <cprintf> cprintf("\n"); 801003c5: c7 04 24 73 82 10 80 movl $0x80108273,(%esp) 801003cc: e8 8f 02 00 00 call 80100660 <cprintf> getcallerpcs(&s, pcs); 801003d1: 5a pop %edx 801003d2: 8d 45 08 lea 0x8(%ebp),%eax 801003d5: 59 pop %ecx 801003d6: 53 push %ebx 801003d7: 50 push %eax 801003d8: e8 83 3f 00 00 call 80104360 <getcallerpcs> 801003dd: 83 c4 10 add $0x10,%esp cprintf(" %p", pcs[i]); 801003e0: 83 ec 08 sub $0x8,%esp 801003e3: ff 33 pushl (%ebx) 801003e5: 83 c3 04 add $0x4,%ebx 801003e8: 68 81 77 10 80 push $0x80107781 801003ed: e8 6e 02 00 00 call 80100660 <cprintf> for(i=0; i<10; i++) 801003f2: 83 c4 10 add $0x10,%esp 801003f5: 39 f3 cmp %esi,%ebx 801003f7: 75 e7 jne 801003e0 <panic+0x50> panicked = 1; // freeze other CPU 801003f9: c7 05 58 b5 10 80 01 movl $0x1,0x8010b558 80100400: 00 00 00 80100403: eb fe jmp 80100403 <panic+0x73> 80100405: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80100409: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80100410 <consputc>: if(panicked){ 80100410: 8b 0d 58 b5 10 80 mov 0x8010b558,%ecx 80100416: 85 c9 test %ecx,%ecx 80100418: 74 06 je 80100420 <consputc+0x10> 8010041a: fa cli 8010041b: eb fe jmp 8010041b <consputc+0xb> 8010041d: 8d 76 00 lea 0x0(%esi),%esi { 80100420: 55 push %ebp 80100421: 89 e5 mov %esp,%ebp 80100423: 57 push %edi 80100424: 56 push %esi 80100425: 53 push %ebx 80100426: 89 c6 mov %eax,%esi 80100428: 83 ec 0c sub $0xc,%esp if(c == BACKSPACE){ 8010042b: 3d 00 01 00 00 cmp $0x100,%eax 80100430: 0f 84 b1 00 00 00 je 801004e7 <consputc+0xd7> uartputc(c); 80100436: 83 ec 0c sub $0xc,%esp 80100439: 50 push %eax 8010043a: e8 11 5f 00 00 call 80106350 <uartputc> 8010043f: 83 c4 10 add $0x10,%esp asm volatile("out %0,%1" : : "a" (data), "d" (port)); 80100442: bb d4 03 00 00 mov $0x3d4,%ebx 80100447: b8 0e 00 00 00 mov $0xe,%eax 8010044c: 89 da mov %ebx,%edx 8010044e: ee out %al,(%dx) asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 8010044f: b9 d5 03 00 00 mov $0x3d5,%ecx 80100454: 89 ca mov %ecx,%edx 80100456: ec in (%dx),%al pos = inb(CRTPORT+1) << 8; 80100457: 0f b6 c0 movzbl %al,%eax asm volatile("out %0,%1" : : "a" (data), "d" (port)); 8010045a: 89 da mov %ebx,%edx 8010045c: c1 e0 08 shl $0x8,%eax 8010045f: 89 c7 mov %eax,%edi 80100461: b8 0f 00 00 00 mov $0xf,%eax 80100466: ee out %al,(%dx) asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 80100467: 89 ca mov %ecx,%edx 80100469: ec in (%dx),%al 8010046a: 0f b6 d8 movzbl %al,%ebx pos |= inb(CRTPORT+1); 8010046d: 09 fb or %edi,%ebx if(c == '\n') 8010046f: 83 fe 0a cmp $0xa,%esi 80100472: 0f 84 f3 00 00 00 je 8010056b <consputc+0x15b> else if(c == BACKSPACE){ 80100478: 81 fe 00 01 00 00 cmp $0x100,%esi 8010047e: 0f 84 d7 00 00 00 je 8010055b <consputc+0x14b> crt[pos++] = (c&0xff) | 0x0700; // black on white 80100484: 89 f0 mov %esi,%eax 80100486: 0f b6 c0 movzbl %al,%eax 80100489: 80 cc 07 or $0x7,%ah 8010048c: 66 89 84 1b 00 80 0b mov %ax,-0x7ff48000(%ebx,%ebx,1) 80100493: 80 80100494: 83 c3 01 add $0x1,%ebx if(pos < 0 || pos > 25*80) 80100497: 81 fb d0 07 00 00 cmp $0x7d0,%ebx 8010049d: 0f 8f ab 00 00 00 jg 8010054e <consputc+0x13e> if((pos/80) >= 24){ // Scroll up. 801004a3: 81 fb 7f 07 00 00 cmp $0x77f,%ebx 801004a9: 7f 66 jg 80100511 <consputc+0x101> asm volatile("out %0,%1" : : "a" (data), "d" (port)); 801004ab: be d4 03 00 00 mov $0x3d4,%esi 801004b0: b8 0e 00 00 00 mov $0xe,%eax 801004b5: 89 f2 mov %esi,%edx 801004b7: ee out %al,(%dx) 801004b8: b9 d5 03 00 00 mov $0x3d5,%ecx outb(CRTPORT+1, pos>>8); 801004bd: 89 d8 mov %ebx,%eax 801004bf: c1 f8 08 sar $0x8,%eax 801004c2: 89 ca mov %ecx,%edx 801004c4: ee out %al,(%dx) 801004c5: b8 0f 00 00 00 mov $0xf,%eax 801004ca: 89 f2 mov %esi,%edx 801004cc: ee out %al,(%dx) 801004cd: 89 d8 mov %ebx,%eax 801004cf: 89 ca mov %ecx,%edx 801004d1: ee out %al,(%dx) crt[pos] = ' ' | 0x0700; 801004d2: b8 20 07 00 00 mov $0x720,%eax 801004d7: 66 89 84 1b 00 80 0b mov %ax,-0x7ff48000(%ebx,%ebx,1) 801004de: 80 } 801004df: 8d 65 f4 lea -0xc(%ebp),%esp 801004e2: 5b pop %ebx 801004e3: 5e pop %esi 801004e4: 5f pop %edi 801004e5: 5d pop %ebp 801004e6: c3 ret uartputc('\b'); uartputc(' '); uartputc('\b'); 801004e7: 83 ec 0c sub $0xc,%esp 801004ea: 6a 08 push $0x8 801004ec: e8 5f 5e 00 00 call 80106350 <uartputc> 801004f1: c7 04 24 20 00 00 00 movl $0x20,(%esp) 801004f8: e8 53 5e 00 00 call 80106350 <uartputc> 801004fd: c7 04 24 08 00 00 00 movl $0x8,(%esp) 80100504: e8 47 5e 00 00 call 80106350 <uartputc> 80100509: 83 c4 10 add $0x10,%esp 8010050c: e9 31 ff ff ff jmp 80100442 <consputc+0x32> memmove(crt, crt+80, sizeof(crt[0])*23*80); 80100511: 52 push %edx 80100512: 68 60 0e 00 00 push $0xe60 pos -= 80; 80100517: 83 eb 50 sub $0x50,%ebx memmove(crt, crt+80, sizeof(crt[0])*23*80); 8010051a: 68 a0 80 0b 80 push $0x800b80a0 8010051f: 68 00 80 0b 80 push $0x800b8000 80100524: e8 17 41 00 00 call 80104640 <memmove> memset(crt+pos, 0, sizeof(crt[0])*(24*80 - pos)); 80100529: b8 80 07 00 00 mov $0x780,%eax 8010052e: 83 c4 0c add $0xc,%esp 80100531: 29 d8 sub %ebx,%eax 80100533: 01 c0 add %eax,%eax 80100535: 50 push %eax 80100536: 8d 04 1b lea (%ebx,%ebx,1),%eax 80100539: 6a 00 push $0x0 8010053b: 2d 00 80 f4 7f sub $0x7ff48000,%eax 80100540: 50 push %eax 80100541: e8 4a 40 00 00 call 80104590 <memset> 80100546: 83 c4 10 add $0x10,%esp 80100549: e9 5d ff ff ff jmp 801004ab <consputc+0x9b> panic("pos under/overflow"); 8010054e: 83 ec 0c sub $0xc,%esp 80100551: 68 85 77 10 80 push $0x80107785 80100556: e8 35 fe ff ff call 80100390 <panic> if(pos > 0) --pos; 8010055b: 85 db test %ebx,%ebx 8010055d: 0f 84 48 ff ff ff je 801004ab <consputc+0x9b> 80100563: 83 eb 01 sub $0x1,%ebx 80100566: e9 2c ff ff ff jmp 80100497 <consputc+0x87> pos += 80 - pos%80; 8010056b: 89 d8 mov %ebx,%eax 8010056d: b9 50 00 00 00 mov $0x50,%ecx 80100572: 99 cltd 80100573: f7 f9 idiv %ecx 80100575: 29 d1 sub %edx,%ecx 80100577: 01 cb add %ecx,%ebx 80100579: e9 19 ff ff ff jmp 80100497 <consputc+0x87> 8010057e: 66 90 xchg %ax,%ax 80100580 <printint>: { 80100580: 55 push %ebp 80100581: 89 e5 mov %esp,%ebp 80100583: 57 push %edi 80100584: 56 push %esi 80100585: 53 push %ebx 80100586: 89 d3 mov %edx,%ebx 80100588: 83 ec 2c sub $0x2c,%esp if(sign && (sign = xx < 0)) 8010058b: 85 c9 test %ecx,%ecx { 8010058d: 89 4d d4 mov %ecx,-0x2c(%ebp) if(sign && (sign = xx < 0)) 80100590: 74 04 je 80100596 <printint+0x16> 80100592: 85 c0 test %eax,%eax 80100594: 78 5a js 801005f0 <printint+0x70> x = xx; 80100596: c7 45 d4 00 00 00 00 movl $0x0,-0x2c(%ebp) i = 0; 8010059d: 31 c9 xor %ecx,%ecx 8010059f: 8d 75 d7 lea -0x29(%ebp),%esi 801005a2: eb 06 jmp 801005aa <printint+0x2a> 801005a4: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi buf[i++] = digits[x % base]; 801005a8: 89 f9 mov %edi,%ecx 801005aa: 31 d2 xor %edx,%edx 801005ac: 8d 79 01 lea 0x1(%ecx),%edi 801005af: f7 f3 div %ebx 801005b1: 0f b6 92 b0 77 10 80 movzbl -0x7fef8850(%edx),%edx }while((x /= base) != 0); 801005b8: 85 c0 test %eax,%eax buf[i++] = digits[x % base]; 801005ba: 88 14 3e mov %dl,(%esi,%edi,1) }while((x /= base) != 0); 801005bd: 75 e9 jne 801005a8 <printint+0x28> if(sign) 801005bf: 8b 45 d4 mov -0x2c(%ebp),%eax 801005c2: 85 c0 test %eax,%eax 801005c4: 74 08 je 801005ce <printint+0x4e> buf[i++] = '-'; 801005c6: c6 44 3d d8 2d movb $0x2d,-0x28(%ebp,%edi,1) 801005cb: 8d 79 02 lea 0x2(%ecx),%edi 801005ce: 8d 5c 3d d7 lea -0x29(%ebp,%edi,1),%ebx 801005d2: 8d b6 00 00 00 00 lea 0x0(%esi),%esi consputc(buf[i]); 801005d8: 0f be 03 movsbl (%ebx),%eax 801005db: 83 eb 01 sub $0x1,%ebx 801005de: e8 2d fe ff ff call 80100410 <consputc> while(--i >= 0) 801005e3: 39 f3 cmp %esi,%ebx 801005e5: 75 f1 jne 801005d8 <printint+0x58> } 801005e7: 83 c4 2c add $0x2c,%esp 801005ea: 5b pop %ebx 801005eb: 5e pop %esi 801005ec: 5f pop %edi 801005ed: 5d pop %ebp 801005ee: c3 ret 801005ef: 90 nop x = -xx; 801005f0: f7 d8 neg %eax 801005f2: eb a9 jmp 8010059d <printint+0x1d> 801005f4: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 801005fa: 8d bf 00 00 00 00 lea 0x0(%edi),%edi 80100600 <consolewrite>: int consolewrite(struct inode *ip, char *buf, int n) { 80100600: 55 push %ebp 80100601: 89 e5 mov %esp,%ebp 80100603: 57 push %edi 80100604: 56 push %esi 80100605: 53 push %ebx 80100606: 83 ec 18 sub $0x18,%esp 80100609: 8b 75 10 mov 0x10(%ebp),%esi int i; iunlock(ip); 8010060c: ff 75 08 pushl 0x8(%ebp) 8010060f: e8 4c 11 00 00 call 80101760 <iunlock> acquire(&cons.lock); 80100614: c7 04 24 20 b5 10 80 movl $0x8010b520,(%esp) 8010061b: e8 60 3e 00 00 call 80104480 <acquire> for(i = 0; i < n; i++) 80100620: 83 c4 10 add $0x10,%esp 80100623: 85 f6 test %esi,%esi 80100625: 7e 18 jle 8010063f <consolewrite+0x3f> 80100627: 8b 7d 0c mov 0xc(%ebp),%edi 8010062a: 8d 1c 37 lea (%edi,%esi,1),%ebx 8010062d: 8d 76 00 lea 0x0(%esi),%esi consputc(buf[i] & 0xff); 80100630: 0f b6 07 movzbl (%edi),%eax 80100633: 83 c7 01 add $0x1,%edi 80100636: e8 d5 fd ff ff call 80100410 <consputc> for(i = 0; i < n; i++) 8010063b: 39 fb cmp %edi,%ebx 8010063d: 75 f1 jne 80100630 <consolewrite+0x30> release(&cons.lock); 8010063f: 83 ec 0c sub $0xc,%esp 80100642: 68 20 b5 10 80 push $0x8010b520 80100647: e8 f4 3e 00 00 call 80104540 <release> ilock(ip); 8010064c: 58 pop %eax 8010064d: ff 75 08 pushl 0x8(%ebp) 80100650: e8 2b 10 00 00 call 80101680 <ilock> return n; } 80100655: 8d 65 f4 lea -0xc(%ebp),%esp 80100658: 89 f0 mov %esi,%eax 8010065a: 5b pop %ebx 8010065b: 5e pop %esi 8010065c: 5f pop %edi 8010065d: 5d pop %ebp 8010065e: c3 ret 8010065f: 90 nop 80100660 <cprintf>: { 80100660: 55 push %ebp 80100661: 89 e5 mov %esp,%ebp 80100663: 57 push %edi 80100664: 56 push %esi 80100665: 53 push %ebx 80100666: 83 ec 1c sub $0x1c,%esp locking = cons.locking; 80100669: a1 54 b5 10 80 mov 0x8010b554,%eax if(locking) 8010066e: 85 c0 test %eax,%eax locking = cons.locking; 80100670: 89 45 dc mov %eax,-0x24(%ebp) if(locking) 80100673: 0f 85 6f 01 00 00 jne 801007e8 <cprintf+0x188> if (fmt == 0) 80100679: 8b 45 08 mov 0x8(%ebp),%eax 8010067c: 85 c0 test %eax,%eax 8010067e: 89 c7 mov %eax,%edi 80100680: 0f 84 77 01 00 00 je 801007fd <cprintf+0x19d> for(i = 0; (c = fmt[i] & 0xff) != 0; i++){ 80100686: 0f b6 00 movzbl (%eax),%eax argp = (uint*)(void*)(&fmt + 1); 80100689: 8d 4d 0c lea 0xc(%ebp),%ecx for(i = 0; (c = fmt[i] & 0xff) != 0; i++){ 8010068c: 31 db xor %ebx,%ebx argp = (uint*)(void*)(&fmt + 1); 8010068e: 89 4d e4 mov %ecx,-0x1c(%ebp) for(i = 0; (c = fmt[i] & 0xff) != 0; i++){ 80100691: 85 c0 test %eax,%eax 80100693: 75 56 jne 801006eb <cprintf+0x8b> 80100695: eb 79 jmp 80100710 <cprintf+0xb0> 80100697: 89 f6 mov %esi,%esi 80100699: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi c = fmt[++i] & 0xff; 801006a0: 0f b6 16 movzbl (%esi),%edx if(c == 0) 801006a3: 85 d2 test %edx,%edx 801006a5: 74 69 je 80100710 <cprintf+0xb0> 801006a7: 83 c3 02 add $0x2,%ebx switch(c){ 801006aa: 83 fa 70 cmp $0x70,%edx 801006ad: 8d 34 1f lea (%edi,%ebx,1),%esi 801006b0: 0f 84 84 00 00 00 je 8010073a <cprintf+0xda> 801006b6: 7f 78 jg 80100730 <cprintf+0xd0> 801006b8: 83 fa 25 cmp $0x25,%edx 801006bb: 0f 84 ff 00 00 00 je 801007c0 <cprintf+0x160> 801006c1: 83 fa 64 cmp $0x64,%edx 801006c4: 0f 85 8e 00 00 00 jne 80100758 <cprintf+0xf8> printint(*argp++, 10, 1); 801006ca: 8b 45 e4 mov -0x1c(%ebp),%eax 801006cd: ba 0a 00 00 00 mov $0xa,%edx 801006d2: 8d 48 04 lea 0x4(%eax),%ecx 801006d5: 8b 00 mov (%eax),%eax 801006d7: 89 4d e4 mov %ecx,-0x1c(%ebp) 801006da: b9 01 00 00 00 mov $0x1,%ecx 801006df: e8 9c fe ff ff call 80100580 <printint> for(i = 0; (c = fmt[i] & 0xff) != 0; i++){ 801006e4: 0f b6 06 movzbl (%esi),%eax 801006e7: 85 c0 test %eax,%eax 801006e9: 74 25 je 80100710 <cprintf+0xb0> 801006eb: 8d 53 01 lea 0x1(%ebx),%edx if(c != '%'){ 801006ee: 83 f8 25 cmp $0x25,%eax 801006f1: 8d 34 17 lea (%edi,%edx,1),%esi 801006f4: 74 aa je 801006a0 <cprintf+0x40> 801006f6: 89 55 e0 mov %edx,-0x20(%ebp) consputc(c); 801006f9: e8 12 fd ff ff call 80100410 <consputc> for(i = 0; (c = fmt[i] & 0xff) != 0; i++){ 801006fe: 0f b6 06 movzbl (%esi),%eax continue; 80100701: 8b 55 e0 mov -0x20(%ebp),%edx 80100704: 89 d3 mov %edx,%ebx for(i = 0; (c = fmt[i] & 0xff) != 0; i++){ 80100706: 85 c0 test %eax,%eax 80100708: 75 e1 jne 801006eb <cprintf+0x8b> 8010070a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi if(locking) 80100710: 8b 45 dc mov -0x24(%ebp),%eax 80100713: 85 c0 test %eax,%eax 80100715: 74 10 je 80100727 <cprintf+0xc7> release(&cons.lock); 80100717: 83 ec 0c sub $0xc,%esp 8010071a: 68 20 b5 10 80 push $0x8010b520 8010071f: e8 1c 3e 00 00 call 80104540 <release> 80100724: 83 c4 10 add $0x10,%esp } 80100727: 8d 65 f4 lea -0xc(%ebp),%esp 8010072a: 5b pop %ebx 8010072b: 5e pop %esi 8010072c: 5f pop %edi 8010072d: 5d pop %ebp 8010072e: c3 ret 8010072f: 90 nop switch(c){ 80100730: 83 fa 73 cmp $0x73,%edx 80100733: 74 43 je 80100778 <cprintf+0x118> 80100735: 83 fa 78 cmp $0x78,%edx 80100738: 75 1e jne 80100758 <cprintf+0xf8> printint(*argp++, 16, 0); 8010073a: 8b 45 e4 mov -0x1c(%ebp),%eax 8010073d: ba 10 00 00 00 mov $0x10,%edx 80100742: 8d 48 04 lea 0x4(%eax),%ecx 80100745: 8b 00 mov (%eax),%eax 80100747: 89 4d e4 mov %ecx,-0x1c(%ebp) 8010074a: 31 c9 xor %ecx,%ecx 8010074c: e8 2f fe ff ff call 80100580 <printint> break; 80100751: eb 91 jmp 801006e4 <cprintf+0x84> 80100753: 90 nop 80100754: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi consputc('%'); 80100758: b8 25 00 00 00 mov $0x25,%eax 8010075d: 89 55 e0 mov %edx,-0x20(%ebp) 80100760: e8 ab fc ff ff call 80100410 <consputc> consputc(c); 80100765: 8b 55 e0 mov -0x20(%ebp),%edx 80100768: 89 d0 mov %edx,%eax 8010076a: e8 a1 fc ff ff call 80100410 <consputc> break; 8010076f: e9 70 ff ff ff jmp 801006e4 <cprintf+0x84> 80100774: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi if((s = (char*)*argp++) == 0) 80100778: 8b 45 e4 mov -0x1c(%ebp),%eax 8010077b: 8b 10 mov (%eax),%edx 8010077d: 8d 48 04 lea 0x4(%eax),%ecx 80100780: 89 4d e0 mov %ecx,-0x20(%ebp) 80100783: 85 d2 test %edx,%edx 80100785: 74 49 je 801007d0 <cprintf+0x170> for(; *s; s++) 80100787: 0f be 02 movsbl (%edx),%eax if((s = (char*)*argp++) == 0) 8010078a: 89 4d e4 mov %ecx,-0x1c(%ebp) for(; *s; s++) 8010078d: 84 c0 test %al,%al 8010078f: 0f 84 4f ff ff ff je 801006e4 <cprintf+0x84> 80100795: 89 5d e4 mov %ebx,-0x1c(%ebp) 80100798: 89 d3 mov %edx,%ebx 8010079a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 801007a0: 83 c3 01 add $0x1,%ebx consputc(*s); 801007a3: e8 68 fc ff ff call 80100410 <consputc> for(; *s; s++) 801007a8: 0f be 03 movsbl (%ebx),%eax 801007ab: 84 c0 test %al,%al 801007ad: 75 f1 jne 801007a0 <cprintf+0x140> if((s = (char*)*argp++) == 0) 801007af: 8b 45 e0 mov -0x20(%ebp),%eax 801007b2: 8b 5d e4 mov -0x1c(%ebp),%ebx 801007b5: 89 45 e4 mov %eax,-0x1c(%ebp) 801007b8: e9 27 ff ff ff jmp 801006e4 <cprintf+0x84> 801007bd: 8d 76 00 lea 0x0(%esi),%esi consputc('%'); 801007c0: b8 25 00 00 00 mov $0x25,%eax 801007c5: e8 46 fc ff ff call 80100410 <consputc> break; 801007ca: e9 15 ff ff ff jmp 801006e4 <cprintf+0x84> 801007cf: 90 nop s = "(null)"; 801007d0: ba 98 77 10 80 mov $0x80107798,%edx for(; *s; s++) 801007d5: 89 5d e4 mov %ebx,-0x1c(%ebp) 801007d8: b8 28 00 00 00 mov $0x28,%eax 801007dd: 89 d3 mov %edx,%ebx 801007df: eb bf jmp 801007a0 <cprintf+0x140> 801007e1: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi acquire(&cons.lock); 801007e8: 83 ec 0c sub $0xc,%esp 801007eb: 68 20 b5 10 80 push $0x8010b520 801007f0: e8 8b 3c 00 00 call 80104480 <acquire> 801007f5: 83 c4 10 add $0x10,%esp 801007f8: e9 7c fe ff ff jmp 80100679 <cprintf+0x19> panic("null fmt"); 801007fd: 83 ec 0c sub $0xc,%esp 80100800: 68 9f 77 10 80 push $0x8010779f 80100805: e8 86 fb ff ff call 80100390 <panic> 8010080a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 80100810 <consoleintr>: { 80100810: 55 push %ebp 80100811: 89 e5 mov %esp,%ebp 80100813: 57 push %edi 80100814: 56 push %esi 80100815: 53 push %ebx int c, doprocdump = 0; 80100816: 31 f6 xor %esi,%esi { 80100818: 83 ec 18 sub $0x18,%esp 8010081b: 8b 5d 08 mov 0x8(%ebp),%ebx acquire(&cons.lock); 8010081e: 68 20 b5 10 80 push $0x8010b520 80100823: e8 58 3c 00 00 call 80104480 <acquire> while((c = getc()) >= 0){ 80100828: 83 c4 10 add $0x10,%esp 8010082b: 90 nop 8010082c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80100830: ff d3 call *%ebx 80100832: 85 c0 test %eax,%eax 80100834: 89 c7 mov %eax,%edi 80100836: 78 48 js 80100880 <consoleintr+0x70> switch(c){ 80100838: 83 ff 10 cmp $0x10,%edi 8010083b: 0f 84 e7 00 00 00 je 80100928 <consoleintr+0x118> 80100841: 7e 5d jle 801008a0 <consoleintr+0x90> 80100843: 83 ff 15 cmp $0x15,%edi 80100846: 0f 84 ec 00 00 00 je 80100938 <consoleintr+0x128> 8010084c: 83 ff 7f cmp $0x7f,%edi 8010084f: 75 54 jne 801008a5 <consoleintr+0x95> if(input.e != input.w){ 80100851: a1 a8 0f 11 80 mov 0x80110fa8,%eax 80100856: 3b 05 a4 0f 11 80 cmp 0x80110fa4,%eax 8010085c: 74 d2 je 80100830 <consoleintr+0x20> input.e--; 8010085e: 83 e8 01 sub $0x1,%eax 80100861: a3 a8 0f 11 80 mov %eax,0x80110fa8 consputc(BACKSPACE); 80100866: b8 00 01 00 00 mov $0x100,%eax 8010086b: e8 a0 fb ff ff call 80100410 <consputc> while((c = getc()) >= 0){ 80100870: ff d3 call *%ebx 80100872: 85 c0 test %eax,%eax 80100874: 89 c7 mov %eax,%edi 80100876: 79 c0 jns 80100838 <consoleintr+0x28> 80100878: 90 nop 80100879: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi release(&cons.lock); 80100880: 83 ec 0c sub $0xc,%esp 80100883: 68 20 b5 10 80 push $0x8010b520 80100888: e8 b3 3c 00 00 call 80104540 <release> if(doprocdump) { 8010088d: 83 c4 10 add $0x10,%esp 80100890: 85 f6 test %esi,%esi 80100892: 0f 85 f8 00 00 00 jne 80100990 <consoleintr+0x180> } 80100898: 8d 65 f4 lea -0xc(%ebp),%esp 8010089b: 5b pop %ebx 8010089c: 5e pop %esi 8010089d: 5f pop %edi 8010089e: 5d pop %ebp 8010089f: c3 ret switch(c){ 801008a0: 83 ff 08 cmp $0x8,%edi 801008a3: 74 ac je 80100851 <consoleintr+0x41> if(c != 0 && input.e-input.r < INPUT_BUF){ 801008a5: 85 ff test %edi,%edi 801008a7: 74 87 je 80100830 <consoleintr+0x20> 801008a9: a1 a8 0f 11 80 mov 0x80110fa8,%eax 801008ae: 89 c2 mov %eax,%edx 801008b0: 2b 15 a0 0f 11 80 sub 0x80110fa0,%edx 801008b6: 83 fa 7f cmp $0x7f,%edx 801008b9: 0f 87 71 ff ff ff ja 80100830 <consoleintr+0x20> 801008bf: 8d 50 01 lea 0x1(%eax),%edx 801008c2: 83 e0 7f and $0x7f,%eax c = (c == '\r') ? '\n' : c; 801008c5: 83 ff 0d cmp $0xd,%edi input.buf[input.e++ % INPUT_BUF] = c; 801008c8: 89 15 a8 0f 11 80 mov %edx,0x80110fa8 c = (c == '\r') ? '\n' : c; 801008ce: 0f 84 cc 00 00 00 je 801009a0 <consoleintr+0x190> input.buf[input.e++ % INPUT_BUF] = c; 801008d4: 89 f9 mov %edi,%ecx 801008d6: 88 88 20 0f 11 80 mov %cl,-0x7feef0e0(%eax) consputc(c); 801008dc: 89 f8 mov %edi,%eax 801008de: e8 2d fb ff ff call 80100410 <consputc> if(c == '\n' || c == C('D') || input.e == input.r+INPUT_BUF){ 801008e3: 83 ff 0a cmp $0xa,%edi 801008e6: 0f 84 c5 00 00 00 je 801009b1 <consoleintr+0x1a1> 801008ec: 83 ff 04 cmp $0x4,%edi 801008ef: 0f 84 bc 00 00 00 je 801009b1 <consoleintr+0x1a1> 801008f5: a1 a0 0f 11 80 mov 0x80110fa0,%eax 801008fa: 83 e8 80 sub $0xffffff80,%eax 801008fd: 39 05 a8 0f 11 80 cmp %eax,0x80110fa8 80100903: 0f 85 27 ff ff ff jne 80100830 <consoleintr+0x20> wakeup(&input.r); 80100909: 83 ec 0c sub $0xc,%esp input.w = input.e; 8010090c: a3 a4 0f 11 80 mov %eax,0x80110fa4 wakeup(&input.r); 80100911: 68 a0 0f 11 80 push $0x80110fa0 80100916: e8 35 36 00 00 call 80103f50 <wakeup> 8010091b: 83 c4 10 add $0x10,%esp 8010091e: e9 0d ff ff ff jmp 80100830 <consoleintr+0x20> 80100923: 90 nop 80100924: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi doprocdump = 1; 80100928: be 01 00 00 00 mov $0x1,%esi 8010092d: e9 fe fe ff ff jmp 80100830 <consoleintr+0x20> 80100932: 8d b6 00 00 00 00 lea 0x0(%esi),%esi while(input.e != input.w && 80100938: a1 a8 0f 11 80 mov 0x80110fa8,%eax 8010093d: 39 05 a4 0f 11 80 cmp %eax,0x80110fa4 80100943: 75 2b jne 80100970 <consoleintr+0x160> 80100945: e9 e6 fe ff ff jmp 80100830 <consoleintr+0x20> 8010094a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi input.e--; 80100950: a3 a8 0f 11 80 mov %eax,0x80110fa8 consputc(BACKSPACE); 80100955: b8 00 01 00 00 mov $0x100,%eax 8010095a: e8 b1 fa ff ff call 80100410 <consputc> while(input.e != input.w && 8010095f: a1 a8 0f 11 80 mov 0x80110fa8,%eax 80100964: 3b 05 a4 0f 11 80 cmp 0x80110fa4,%eax 8010096a: 0f 84 c0 fe ff ff je 80100830 <consoleintr+0x20> input.buf[(input.e-1) % INPUT_BUF] != '\n'){ 80100970: 83 e8 01 sub $0x1,%eax 80100973: 89 c2 mov %eax,%edx 80100975: 83 e2 7f and $0x7f,%edx while(input.e != input.w && 80100978: 80 ba 20 0f 11 80 0a cmpb $0xa,-0x7feef0e0(%edx) 8010097f: 75 cf jne 80100950 <consoleintr+0x140> 80100981: e9 aa fe ff ff jmp 80100830 <consoleintr+0x20> 80100986: 8d 76 00 lea 0x0(%esi),%esi 80100989: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi } 80100990: 8d 65 f4 lea -0xc(%ebp),%esp 80100993: 5b pop %ebx 80100994: 5e pop %esi 80100995: 5f pop %edi 80100996: 5d pop %ebp procdump(); // now call procdump() wo. cons.lock held 80100997: e9 94 36 00 00 jmp 80104030 <procdump> 8010099c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi input.buf[input.e++ % INPUT_BUF] = c; 801009a0: c6 80 20 0f 11 80 0a movb $0xa,-0x7feef0e0(%eax) consputc(c); 801009a7: b8 0a 00 00 00 mov $0xa,%eax 801009ac: e8 5f fa ff ff call 80100410 <consputc> 801009b1: a1 a8 0f 11 80 mov 0x80110fa8,%eax 801009b6: e9 4e ff ff ff jmp 80100909 <consoleintr+0xf9> 801009bb: 90 nop 801009bc: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 801009c0 <consoleinit>: void consoleinit(void) { 801009c0: 55 push %ebp 801009c1: 89 e5 mov %esp,%ebp 801009c3: 83 ec 10 sub $0x10,%esp initlock(&cons.lock, "console"); 801009c6: 68 a8 77 10 80 push $0x801077a8 801009cb: 68 20 b5 10 80 push $0x8010b520 801009d0: e8 6b 39 00 00 call 80104340 <initlock> devsw[CONSOLE].write = consolewrite; devsw[CONSOLE].read = consoleread; cons.locking = 1; ioapicenable(IRQ_KBD, 0); 801009d5: 58 pop %eax 801009d6: 5a pop %edx 801009d7: 6a 00 push $0x0 801009d9: 6a 01 push $0x1 devsw[CONSOLE].write = consolewrite; 801009db: c7 05 6c 19 11 80 00 movl $0x80100600,0x8011196c 801009e2: 06 10 80 devsw[CONSOLE].read = consoleread; 801009e5: c7 05 68 19 11 80 70 movl $0x80100270,0x80111968 801009ec: 02 10 80 cons.locking = 1; 801009ef: c7 05 54 b5 10 80 01 movl $0x1,0x8010b554 801009f6: 00 00 00 ioapicenable(IRQ_KBD, 0); 801009f9: e8 d2 18 00 00 call 801022d0 <ioapicenable> } 801009fe: 83 c4 10 add $0x10,%esp 80100a01: c9 leave 80100a02: c3 ret 80100a03: 66 90 xchg %ax,%ax 80100a05: 66 90 xchg %ax,%ax 80100a07: 66 90 xchg %ax,%ax 80100a09: 66 90 xchg %ax,%ax 80100a0b: 66 90 xchg %ax,%ax 80100a0d: 66 90 xchg %ax,%ax 80100a0f: 90 nop 80100a10 <exec>: #include "x86.h" #include "elf.h" int exec(char *path, char **argv) { 80100a10: 55 push %ebp 80100a11: 89 e5 mov %esp,%ebp 80100a13: 57 push %edi 80100a14: 56 push %esi 80100a15: 53 push %ebx 80100a16: 81 ec 0c 01 00 00 sub $0x10c,%esp uint argc, sz, sp, ustack[3+MAXARG+1]; struct elfhdr elf; struct inode *ip; struct proghdr ph; pde_t *pgdir, *oldpgdir; struct proc *curproc = myproc(); 80100a1c: e8 bf 2d 00 00 call 801037e0 <myproc> 80100a21: 89 85 f4 fe ff ff mov %eax,-0x10c(%ebp) begin_op(); 80100a27: e8 74 21 00 00 call 80102ba0 <begin_op> if((ip = namei(path)) == 0){ 80100a2c: 83 ec 0c sub $0xc,%esp 80100a2f: ff 75 08 pushl 0x8(%ebp) 80100a32: e8 a9 14 00 00 call 80101ee0 <namei> 80100a37: 83 c4 10 add $0x10,%esp 80100a3a: 85 c0 test %eax,%eax 80100a3c: 0f 84 91 01 00 00 je 80100bd3 <exec+0x1c3> end_op(); cprintf("exec: fail\n"); return -1; } ilock(ip); 80100a42: 83 ec 0c sub $0xc,%esp 80100a45: 89 c3 mov %eax,%ebx 80100a47: 50 push %eax 80100a48: e8 33 0c 00 00 call 80101680 <ilock> pgdir = 0; // Check ELF header if(readi(ip, (char*)&elf, 0, sizeof(elf)) != sizeof(elf)) 80100a4d: 8d 85 24 ff ff ff lea -0xdc(%ebp),%eax 80100a53: 6a 34 push $0x34 80100a55: 6a 00 push $0x0 80100a57: 50 push %eax 80100a58: 53 push %ebx 80100a59: e8 02 0f 00 00 call 80101960 <readi> 80100a5e: 83 c4 20 add $0x20,%esp 80100a61: 83 f8 34 cmp $0x34,%eax 80100a64: 74 22 je 80100a88 <exec+0x78> bad: if(pgdir) freevm(pgdir); if(ip){ iunlockput(ip); 80100a66: 83 ec 0c sub $0xc,%esp 80100a69: 53 push %ebx 80100a6a: e8 a1 0e 00 00 call 80101910 <iunlockput> end_op(); 80100a6f: e8 9c 21 00 00 call 80102c10 <end_op> 80100a74: 83 c4 10 add $0x10,%esp } return -1; 80100a77: b8 ff ff ff ff mov $0xffffffff,%eax } 80100a7c: 8d 65 f4 lea -0xc(%ebp),%esp 80100a7f: 5b pop %ebx 80100a80: 5e pop %esi 80100a81: 5f pop %edi 80100a82: 5d pop %ebp 80100a83: c3 ret 80100a84: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi if(elf.magic != ELF_MAGIC) 80100a88: 81 bd 24 ff ff ff 7f cmpl $0x464c457f,-0xdc(%ebp) 80100a8f: 45 4c 46 80100a92: 75 d2 jne 80100a66 <exec+0x56> if((pgdir = setupkvm()) == 0) 80100a94: e8 07 6a 00 00 call 801074a0 <setupkvm> 80100a99: 85 c0 test %eax,%eax 80100a9b: 89 85 f0 fe ff ff mov %eax,-0x110(%ebp) 80100aa1: 74 c3 je 80100a66 <exec+0x56> sz = 0; 80100aa3: 31 ff xor %edi,%edi for(i=0, off=elf.phoff; i<elf.phnum; i++, off+=sizeof(ph)){ 80100aa5: 66 83 bd 50 ff ff ff cmpw $0x0,-0xb0(%ebp) 80100aac: 00 80100aad: 8b 85 40 ff ff ff mov -0xc0(%ebp),%eax 80100ab3: 89 85 ec fe ff ff mov %eax,-0x114(%ebp) 80100ab9: 0f 84 93 02 00 00 je 80100d52 <exec+0x342> 80100abf: 31 f6 xor %esi,%esi 80100ac1: eb 7f jmp 80100b42 <exec+0x132> 80100ac3: 90 nop 80100ac4: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi if(ph.type != ELF_PROG_LOAD) 80100ac8: 83 bd 04 ff ff ff 01 cmpl $0x1,-0xfc(%ebp) 80100acf: 75 63 jne 80100b34 <exec+0x124> if(ph.memsz < ph.filesz) 80100ad1: 8b 85 18 ff ff ff mov -0xe8(%ebp),%eax 80100ad7: 3b 85 14 ff ff ff cmp -0xec(%ebp),%eax 80100add: 0f 82 86 00 00 00 jb 80100b69 <exec+0x159> 80100ae3: 03 85 0c ff ff ff add -0xf4(%ebp),%eax 80100ae9: 72 7e jb 80100b69 <exec+0x159> if((sz = allocuvm(pgdir, sz, ph.vaddr + ph.memsz)) == 0) 80100aeb: 83 ec 04 sub $0x4,%esp 80100aee: 50 push %eax 80100aef: 57 push %edi 80100af0: ff b5 f0 fe ff ff pushl -0x110(%ebp) 80100af6: e8 c5 67 00 00 call 801072c0 <allocuvm> 80100afb: 83 c4 10 add $0x10,%esp 80100afe: 85 c0 test %eax,%eax 80100b00: 89 c7 mov %eax,%edi 80100b02: 74 65 je 80100b69 <exec+0x159> if(ph.vaddr % PGSIZE != 0) 80100b04: 8b 85 0c ff ff ff mov -0xf4(%ebp),%eax 80100b0a: a9 ff 0f 00 00 test $0xfff,%eax 80100b0f: 75 58 jne 80100b69 <exec+0x159> if(loaduvm(pgdir, (char*)ph.vaddr, ip, ph.off, ph.filesz) < 0) 80100b11: 83 ec 0c sub $0xc,%esp 80100b14: ff b5 14 ff ff ff pushl -0xec(%ebp) 80100b1a: ff b5 08 ff ff ff pushl -0xf8(%ebp) 80100b20: 53 push %ebx 80100b21: 50 push %eax 80100b22: ff b5 f0 fe ff ff pushl -0x110(%ebp) 80100b28: e8 d3 66 00 00 call 80107200 <loaduvm> 80100b2d: 83 c4 20 add $0x20,%esp 80100b30: 85 c0 test %eax,%eax 80100b32: 78 35 js 80100b69 <exec+0x159> for(i=0, off=elf.phoff; i<elf.phnum; i++, off+=sizeof(ph)){ 80100b34: 0f b7 85 50 ff ff ff movzwl -0xb0(%ebp),%eax 80100b3b: 83 c6 01 add $0x1,%esi 80100b3e: 39 f0 cmp %esi,%eax 80100b40: 7e 3d jle 80100b7f <exec+0x16f> if(readi(ip, (char*)&ph, off, sizeof(ph)) != sizeof(ph)) 80100b42: 89 f0 mov %esi,%eax 80100b44: 6a 20 push $0x20 80100b46: c1 e0 05 shl $0x5,%eax 80100b49: 03 85 ec fe ff ff add -0x114(%ebp),%eax 80100b4f: 50 push %eax 80100b50: 8d 85 04 ff ff ff lea -0xfc(%ebp),%eax 80100b56: 50 push %eax 80100b57: 53 push %ebx 80100b58: e8 03 0e 00 00 call 80101960 <readi> 80100b5d: 83 c4 10 add $0x10,%esp 80100b60: 83 f8 20 cmp $0x20,%eax 80100b63: 0f 84 5f ff ff ff je 80100ac8 <exec+0xb8> freevm(pgdir); 80100b69: 83 ec 0c sub $0xc,%esp 80100b6c: ff b5 f0 fe ff ff pushl -0x110(%ebp) 80100b72: e8 a9 68 00 00 call 80107420 <freevm> 80100b77: 83 c4 10 add $0x10,%esp 80100b7a: e9 e7 fe ff ff jmp 80100a66 <exec+0x56> 80100b7f: 81 c7 ff 0f 00 00 add $0xfff,%edi 80100b85: 81 e7 00 f0 ff ff and $0xfffff000,%edi 80100b8b: 8d b7 00 20 00 00 lea 0x2000(%edi),%esi iunlockput(ip); 80100b91: 83 ec 0c sub $0xc,%esp 80100b94: 53 push %ebx 80100b95: e8 76 0d 00 00 call 80101910 <iunlockput> end_op(); 80100b9a: e8 71 20 00 00 call 80102c10 <end_op> if((sz = allocuvm(pgdir, sz, sz + 2*PGSIZE)) == 0) 80100b9f: 83 c4 0c add $0xc,%esp 80100ba2: 56 push %esi 80100ba3: 57 push %edi 80100ba4: ff b5 f0 fe ff ff pushl -0x110(%ebp) 80100baa: e8 11 67 00 00 call 801072c0 <allocuvm> 80100baf: 83 c4 10 add $0x10,%esp 80100bb2: 85 c0 test %eax,%eax 80100bb4: 89 c6 mov %eax,%esi 80100bb6: 75 3a jne 80100bf2 <exec+0x1e2> freevm(pgdir); 80100bb8: 83 ec 0c sub $0xc,%esp 80100bbb: ff b5 f0 fe ff ff pushl -0x110(%ebp) 80100bc1: e8 5a 68 00 00 call 80107420 <freevm> 80100bc6: 83 c4 10 add $0x10,%esp return -1; 80100bc9: b8 ff ff ff ff mov $0xffffffff,%eax 80100bce: e9 a9 fe ff ff jmp 80100a7c <exec+0x6c> end_op(); 80100bd3: e8 38 20 00 00 call 80102c10 <end_op> cprintf("exec: fail\n"); 80100bd8: 83 ec 0c sub $0xc,%esp 80100bdb: 68 c1 77 10 80 push $0x801077c1 80100be0: e8 7b fa ff ff call 80100660 <cprintf> return -1; 80100be5: 83 c4 10 add $0x10,%esp 80100be8: b8 ff ff ff ff mov $0xffffffff,%eax 80100bed: e9 8a fe ff ff jmp 80100a7c <exec+0x6c> clearpteu(pgdir, (char*)(sz - 2*PGSIZE)); 80100bf2: 8d 80 00 e0 ff ff lea -0x2000(%eax),%eax 80100bf8: 83 ec 08 sub $0x8,%esp for(argc = 0; argv[argc]; argc++) { 80100bfb: 31 ff xor %edi,%edi 80100bfd: 89 f3 mov %esi,%ebx clearpteu(pgdir, (char*)(sz - 2*PGSIZE)); 80100bff: 50 push %eax 80100c00: ff b5 f0 fe ff ff pushl -0x110(%ebp) 80100c06: e8 35 69 00 00 call 80107540 <clearpteu> for(argc = 0; argv[argc]; argc++) { 80100c0b: 8b 45 0c mov 0xc(%ebp),%eax 80100c0e: 83 c4 10 add $0x10,%esp 80100c11: 8d 95 58 ff ff ff lea -0xa8(%ebp),%edx 80100c17: 8b 00 mov (%eax),%eax 80100c19: 85 c0 test %eax,%eax 80100c1b: 74 70 je 80100c8d <exec+0x27d> 80100c1d: 89 b5 ec fe ff ff mov %esi,-0x114(%ebp) 80100c23: 8b b5 f0 fe ff ff mov -0x110(%ebp),%esi 80100c29: eb 0a jmp 80100c35 <exec+0x225> 80100c2b: 90 nop 80100c2c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi if(argc >= MAXARG) 80100c30: 83 ff 20 cmp $0x20,%edi 80100c33: 74 83 je 80100bb8 <exec+0x1a8> sp = (sp - (strlen(argv[argc]) + 1)) & ~3; 80100c35: 83 ec 0c sub $0xc,%esp 80100c38: 50 push %eax 80100c39: e8 72 3b 00 00 call 801047b0 <strlen> 80100c3e: f7 d0 not %eax 80100c40: 01 c3 add %eax,%ebx if(copyout(pgdir, sp, argv[argc], strlen(argv[argc]) + 1) < 0) 80100c42: 8b 45 0c mov 0xc(%ebp),%eax 80100c45: 5a pop %edx sp = (sp - (strlen(argv[argc]) + 1)) & ~3; 80100c46: 83 e3 fc and $0xfffffffc,%ebx if(copyout(pgdir, sp, argv[argc], strlen(argv[argc]) + 1) < 0) 80100c49: ff 34 b8 pushl (%eax,%edi,4) 80100c4c: e8 5f 3b 00 00 call 801047b0 <strlen> 80100c51: 83 c0 01 add $0x1,%eax 80100c54: 50 push %eax 80100c55: 8b 45 0c mov 0xc(%ebp),%eax 80100c58: ff 34 b8 pushl (%eax,%edi,4) 80100c5b: 53 push %ebx 80100c5c: 56 push %esi 80100c5d: e8 3e 6a 00 00 call 801076a0 <copyout> 80100c62: 83 c4 20 add $0x20,%esp 80100c65: 85 c0 test %eax,%eax 80100c67: 0f 88 4b ff ff ff js 80100bb8 <exec+0x1a8> for(argc = 0; argv[argc]; argc++) { 80100c6d: 8b 45 0c mov 0xc(%ebp),%eax ustack[3+argc] = sp; 80100c70: 89 9c bd 64 ff ff ff mov %ebx,-0x9c(%ebp,%edi,4) for(argc = 0; argv[argc]; argc++) { 80100c77: 83 c7 01 add $0x1,%edi ustack[3+argc] = sp; 80100c7a: 8d 95 58 ff ff ff lea -0xa8(%ebp),%edx for(argc = 0; argv[argc]; argc++) { 80100c80: 8b 04 b8 mov (%eax,%edi,4),%eax 80100c83: 85 c0 test %eax,%eax 80100c85: 75 a9 jne 80100c30 <exec+0x220> 80100c87: 8b b5 ec fe ff ff mov -0x114(%ebp),%esi ustack[2] = sp - (argc+1)*4; // argv pointer 80100c8d: 8d 04 bd 04 00 00 00 lea 0x4(,%edi,4),%eax 80100c94: 89 d9 mov %ebx,%ecx ustack[3+argc] = 0; 80100c96: c7 84 bd 64 ff ff ff movl $0x0,-0x9c(%ebp,%edi,4) 80100c9d: 00 00 00 00 ustack[0] = 0xffffffff; // fake return PC 80100ca1: c7 85 58 ff ff ff ff movl $0xffffffff,-0xa8(%ebp) 80100ca8: ff ff ff ustack[1] = argc; 80100cab: 89 bd 5c ff ff ff mov %edi,-0xa4(%ebp) ustack[2] = sp - (argc+1)*4; // argv pointer 80100cb1: 29 c1 sub %eax,%ecx sp -= (3+argc+1) * 4; 80100cb3: 83 c0 0c add $0xc,%eax 80100cb6: 29 c3 sub %eax,%ebx if(copyout(pgdir, sp, ustack, (3+argc+1)*4) < 0) 80100cb8: 50 push %eax 80100cb9: 52 push %edx 80100cba: 53 push %ebx 80100cbb: ff b5 f0 fe ff ff pushl -0x110(%ebp) ustack[2] = sp - (argc+1)*4; // argv pointer 80100cc1: 89 8d 60 ff ff ff mov %ecx,-0xa0(%ebp) if(copyout(pgdir, sp, ustack, (3+argc+1)*4) < 0) 80100cc7: e8 d4 69 00 00 call 801076a0 <copyout> 80100ccc: 83 c4 10 add $0x10,%esp 80100ccf: 85 c0 test %eax,%eax 80100cd1: 0f 88 e1 fe ff ff js 80100bb8 <exec+0x1a8> for(last=s=path; *s; s++) 80100cd7: 8b 45 08 mov 0x8(%ebp),%eax 80100cda: 0f b6 00 movzbl (%eax),%eax 80100cdd: 84 c0 test %al,%al 80100cdf: 74 17 je 80100cf8 <exec+0x2e8> 80100ce1: 8b 55 08 mov 0x8(%ebp),%edx 80100ce4: 89 d1 mov %edx,%ecx 80100ce6: 83 c1 01 add $0x1,%ecx 80100ce9: 3c 2f cmp $0x2f,%al 80100ceb: 0f b6 01 movzbl (%ecx),%eax 80100cee: 0f 44 d1 cmove %ecx,%edx 80100cf1: 84 c0 test %al,%al 80100cf3: 75 f1 jne 80100ce6 <exec+0x2d6> 80100cf5: 89 55 08 mov %edx,0x8(%ebp) safestrcpy(curproc->name, last, sizeof(curproc->name)); 80100cf8: 8b bd f4 fe ff ff mov -0x10c(%ebp),%edi 80100cfe: 50 push %eax 80100cff: 6a 10 push $0x10 80100d01: ff 75 08 pushl 0x8(%ebp) 80100d04: 89 f8 mov %edi,%eax 80100d06: 83 c0 6c add $0x6c,%eax 80100d09: 50 push %eax 80100d0a: e8 61 3a 00 00 call 80104770 <safestrcpy> curproc->pgdir = pgdir; 80100d0f: 8b 95 f0 fe ff ff mov -0x110(%ebp),%edx oldpgdir = curproc->pgdir; 80100d15: 89 f9 mov %edi,%ecx 80100d17: 8b 7f 04 mov 0x4(%edi),%edi curproc->tf->eip = elf.entry; // main 80100d1a: 8b 41 18 mov 0x18(%ecx),%eax curproc->sz = sz; 80100d1d: 89 31 mov %esi,(%ecx) curproc->pgdir = pgdir; 80100d1f: 89 51 04 mov %edx,0x4(%ecx) curproc->tf->eip = elf.entry; // main 80100d22: 8b 95 3c ff ff ff mov -0xc4(%ebp),%edx 80100d28: 89 50 38 mov %edx,0x38(%eax) curproc->tf->esp = sp; 80100d2b: 8b 41 18 mov 0x18(%ecx),%eax 80100d2e: 89 58 44 mov %ebx,0x44(%eax) curproc->priority = 10; 80100d31: c7 41 7c 0a 00 00 00 movl $0xa,0x7c(%ecx) switchuvm(curproc); 80100d38: 89 0c 24 mov %ecx,(%esp) 80100d3b: e8 30 63 00 00 call 80107070 <switchuvm> freevm(oldpgdir); 80100d40: 89 3c 24 mov %edi,(%esp) 80100d43: e8 d8 66 00 00 call 80107420 <freevm> return 0; 80100d48: 83 c4 10 add $0x10,%esp 80100d4b: 31 c0 xor %eax,%eax 80100d4d: e9 2a fd ff ff jmp 80100a7c <exec+0x6c> for(i=0, off=elf.phoff; i<elf.phnum; i++, off+=sizeof(ph)){ 80100d52: be 00 20 00 00 mov $0x2000,%esi 80100d57: e9 35 fe ff ff jmp 80100b91 <exec+0x181> 80100d5c: 66 90 xchg %ax,%ax 80100d5e: 66 90 xchg %ax,%ax 80100d60 <fileinit>: struct file file[NFILE]; } ftable; void fileinit(void) { 80100d60: 55 push %ebp 80100d61: 89 e5 mov %esp,%ebp 80100d63: 83 ec 10 sub $0x10,%esp initlock(&ftable.lock, "ftable"); 80100d66: 68 cd 77 10 80 push $0x801077cd 80100d6b: 68 c0 0f 11 80 push $0x80110fc0 80100d70: e8 cb 35 00 00 call 80104340 <initlock> } 80100d75: 83 c4 10 add $0x10,%esp 80100d78: c9 leave 80100d79: c3 ret 80100d7a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 80100d80 <filealloc>: // Allocate a file structure. struct file* filealloc(void) { 80100d80: 55 push %ebp 80100d81: 89 e5 mov %esp,%ebp 80100d83: 53 push %ebx struct file *f; acquire(&ftable.lock); for(f = ftable.file; f < ftable.file + NFILE; f++){ 80100d84: bb f4 0f 11 80 mov $0x80110ff4,%ebx { 80100d89: 83 ec 10 sub $0x10,%esp acquire(&ftable.lock); 80100d8c: 68 c0 0f 11 80 push $0x80110fc0 80100d91: e8 ea 36 00 00 call 80104480 <acquire> 80100d96: 83 c4 10 add $0x10,%esp 80100d99: eb 10 jmp 80100dab <filealloc+0x2b> 80100d9b: 90 nop 80100d9c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi for(f = ftable.file; f < ftable.file + NFILE; f++){ 80100da0: 83 c3 18 add $0x18,%ebx 80100da3: 81 fb 54 19 11 80 cmp $0x80111954,%ebx 80100da9: 73 25 jae 80100dd0 <filealloc+0x50> if(f->ref == 0){ 80100dab: 8b 43 04 mov 0x4(%ebx),%eax 80100dae: 85 c0 test %eax,%eax 80100db0: 75 ee jne 80100da0 <filealloc+0x20> f->ref = 1; release(&ftable.lock); 80100db2: 83 ec 0c sub $0xc,%esp f->ref = 1; 80100db5: c7 43 04 01 00 00 00 movl $0x1,0x4(%ebx) release(&ftable.lock); 80100dbc: 68 c0 0f 11 80 push $0x80110fc0 80100dc1: e8 7a 37 00 00 call 80104540 <release> return f; } } release(&ftable.lock); return 0; } 80100dc6: 89 d8 mov %ebx,%eax return f; 80100dc8: 83 c4 10 add $0x10,%esp } 80100dcb: 8b 5d fc mov -0x4(%ebp),%ebx 80100dce: c9 leave 80100dcf: c3 ret release(&ftable.lock); 80100dd0: 83 ec 0c sub $0xc,%esp return 0; 80100dd3: 31 db xor %ebx,%ebx release(&ftable.lock); 80100dd5: 68 c0 0f 11 80 push $0x80110fc0 80100dda: e8 61 37 00 00 call 80104540 <release> } 80100ddf: 89 d8 mov %ebx,%eax return 0; 80100de1: 83 c4 10 add $0x10,%esp } 80100de4: 8b 5d fc mov -0x4(%ebp),%ebx 80100de7: c9 leave 80100de8: c3 ret 80100de9: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80100df0 <filedup>: // Increment ref count for file f. struct file* filedup(struct file *f) { 80100df0: 55 push %ebp 80100df1: 89 e5 mov %esp,%ebp 80100df3: 53 push %ebx 80100df4: 83 ec 10 sub $0x10,%esp 80100df7: 8b 5d 08 mov 0x8(%ebp),%ebx acquire(&ftable.lock); 80100dfa: 68 c0 0f 11 80 push $0x80110fc0 80100dff: e8 7c 36 00 00 call 80104480 <acquire> if(f->ref < 1) 80100e04: 8b 43 04 mov 0x4(%ebx),%eax 80100e07: 83 c4 10 add $0x10,%esp 80100e0a: 85 c0 test %eax,%eax 80100e0c: 7e 1a jle 80100e28 <filedup+0x38> panic("filedup"); f->ref++; 80100e0e: 83 c0 01 add $0x1,%eax release(&ftable.lock); 80100e11: 83 ec 0c sub $0xc,%esp f->ref++; 80100e14: 89 43 04 mov %eax,0x4(%ebx) release(&ftable.lock); 80100e17: 68 c0 0f 11 80 push $0x80110fc0 80100e1c: e8 1f 37 00 00 call 80104540 <release> return f; } 80100e21: 89 d8 mov %ebx,%eax 80100e23: 8b 5d fc mov -0x4(%ebp),%ebx 80100e26: c9 leave 80100e27: c3 ret panic("filedup"); 80100e28: 83 ec 0c sub $0xc,%esp 80100e2b: 68 d4 77 10 80 push $0x801077d4 80100e30: e8 5b f5 ff ff call 80100390 <panic> 80100e35: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80100e39: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80100e40 <fileclose>: // Close file f. (Decrement ref count, close when reaches 0.) void fileclose(struct file *f) { 80100e40: 55 push %ebp 80100e41: 89 e5 mov %esp,%ebp 80100e43: 57 push %edi 80100e44: 56 push %esi 80100e45: 53 push %ebx 80100e46: 83 ec 28 sub $0x28,%esp 80100e49: 8b 5d 08 mov 0x8(%ebp),%ebx struct file ff; acquire(&ftable.lock); 80100e4c: 68 c0 0f 11 80 push $0x80110fc0 80100e51: e8 2a 36 00 00 call 80104480 <acquire> if(f->ref < 1) 80100e56: 8b 43 04 mov 0x4(%ebx),%eax 80100e59: 83 c4 10 add $0x10,%esp 80100e5c: 85 c0 test %eax,%eax 80100e5e: 0f 8e 9b 00 00 00 jle 80100eff <fileclose+0xbf> panic("fileclose"); if(--f->ref > 0){ 80100e64: 83 e8 01 sub $0x1,%eax 80100e67: 85 c0 test %eax,%eax 80100e69: 89 43 04 mov %eax,0x4(%ebx) 80100e6c: 74 1a je 80100e88 <fileclose+0x48> release(&ftable.lock); 80100e6e: c7 45 08 c0 0f 11 80 movl $0x80110fc0,0x8(%ebp) else if(ff.type == FD_INODE){ begin_op(); iput(ff.ip); end_op(); } } 80100e75: 8d 65 f4 lea -0xc(%ebp),%esp 80100e78: 5b pop %ebx 80100e79: 5e pop %esi 80100e7a: 5f pop %edi 80100e7b: 5d pop %ebp release(&ftable.lock); 80100e7c: e9 bf 36 00 00 jmp 80104540 <release> 80100e81: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi ff = *f; 80100e88: 0f b6 43 09 movzbl 0x9(%ebx),%eax 80100e8c: 8b 3b mov (%ebx),%edi release(&ftable.lock); 80100e8e: 83 ec 0c sub $0xc,%esp ff = *f; 80100e91: 8b 73 0c mov 0xc(%ebx),%esi f->type = FD_NONE; 80100e94: c7 03 00 00 00 00 movl $0x0,(%ebx) ff = *f; 80100e9a: 88 45 e7 mov %al,-0x19(%ebp) 80100e9d: 8b 43 10 mov 0x10(%ebx),%eax release(&ftable.lock); 80100ea0: 68 c0 0f 11 80 push $0x80110fc0 ff = *f; 80100ea5: 89 45 e0 mov %eax,-0x20(%ebp) release(&ftable.lock); 80100ea8: e8 93 36 00 00 call 80104540 <release> if(ff.type == FD_PIPE) 80100ead: 83 c4 10 add $0x10,%esp 80100eb0: 83 ff 01 cmp $0x1,%edi 80100eb3: 74 13 je 80100ec8 <fileclose+0x88> else if(ff.type == FD_INODE){ 80100eb5: 83 ff 02 cmp $0x2,%edi 80100eb8: 74 26 je 80100ee0 <fileclose+0xa0> } 80100eba: 8d 65 f4 lea -0xc(%ebp),%esp 80100ebd: 5b pop %ebx 80100ebe: 5e pop %esi 80100ebf: 5f pop %edi 80100ec0: 5d pop %ebp 80100ec1: c3 ret 80100ec2: 8d b6 00 00 00 00 lea 0x0(%esi),%esi pipeclose(ff.pipe, ff.writable); 80100ec8: 0f be 5d e7 movsbl -0x19(%ebp),%ebx 80100ecc: 83 ec 08 sub $0x8,%esp 80100ecf: 53 push %ebx 80100ed0: 56 push %esi 80100ed1: e8 7a 24 00 00 call 80103350 <pipeclose> 80100ed6: 83 c4 10 add $0x10,%esp 80100ed9: eb df jmp 80100eba <fileclose+0x7a> 80100edb: 90 nop 80100edc: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi begin_op(); 80100ee0: e8 bb 1c 00 00 call 80102ba0 <begin_op> iput(ff.ip); 80100ee5: 83 ec 0c sub $0xc,%esp 80100ee8: ff 75 e0 pushl -0x20(%ebp) 80100eeb: e8 c0 08 00 00 call 801017b0 <iput> end_op(); 80100ef0: 83 c4 10 add $0x10,%esp } 80100ef3: 8d 65 f4 lea -0xc(%ebp),%esp 80100ef6: 5b pop %ebx 80100ef7: 5e pop %esi 80100ef8: 5f pop %edi 80100ef9: 5d pop %ebp end_op(); 80100efa: e9 11 1d 00 00 jmp 80102c10 <end_op> panic("fileclose"); 80100eff: 83 ec 0c sub $0xc,%esp 80100f02: 68 dc 77 10 80 push $0x801077dc 80100f07: e8 84 f4 ff ff call 80100390 <panic> 80100f0c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80100f10 <filestat>: // Get metadata about file f. int filestat(struct file *f, struct stat *st) { 80100f10: 55 push %ebp 80100f11: 89 e5 mov %esp,%ebp 80100f13: 53 push %ebx 80100f14: 83 ec 04 sub $0x4,%esp 80100f17: 8b 5d 08 mov 0x8(%ebp),%ebx if(f->type == FD_INODE){ 80100f1a: 83 3b 02 cmpl $0x2,(%ebx) 80100f1d: 75 31 jne 80100f50 <filestat+0x40> ilock(f->ip); 80100f1f: 83 ec 0c sub $0xc,%esp 80100f22: ff 73 10 pushl 0x10(%ebx) 80100f25: e8 56 07 00 00 call 80101680 <ilock> stati(f->ip, st); 80100f2a: 58 pop %eax 80100f2b: 5a pop %edx 80100f2c: ff 75 0c pushl 0xc(%ebp) 80100f2f: ff 73 10 pushl 0x10(%ebx) 80100f32: e8 f9 09 00 00 call 80101930 <stati> iunlock(f->ip); 80100f37: 59 pop %ecx 80100f38: ff 73 10 pushl 0x10(%ebx) 80100f3b: e8 20 08 00 00 call 80101760 <iunlock> return 0; 80100f40: 83 c4 10 add $0x10,%esp 80100f43: 31 c0 xor %eax,%eax } return -1; } 80100f45: 8b 5d fc mov -0x4(%ebp),%ebx 80100f48: c9 leave 80100f49: c3 ret 80100f4a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi return -1; 80100f50: b8 ff ff ff ff mov $0xffffffff,%eax 80100f55: eb ee jmp 80100f45 <filestat+0x35> 80100f57: 89 f6 mov %esi,%esi 80100f59: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80100f60 <fileread>: // Read from file f. int fileread(struct file *f, char *addr, int n) { 80100f60: 55 push %ebp 80100f61: 89 e5 mov %esp,%ebp 80100f63: 57 push %edi 80100f64: 56 push %esi 80100f65: 53 push %ebx 80100f66: 83 ec 0c sub $0xc,%esp 80100f69: 8b 5d 08 mov 0x8(%ebp),%ebx 80100f6c: 8b 75 0c mov 0xc(%ebp),%esi 80100f6f: 8b 7d 10 mov 0x10(%ebp),%edi int r; if(f->readable == 0) 80100f72: 80 7b 08 00 cmpb $0x0,0x8(%ebx) 80100f76: 74 60 je 80100fd8 <fileread+0x78> return -1; if(f->type == FD_PIPE) 80100f78: 8b 03 mov (%ebx),%eax 80100f7a: 83 f8 01 cmp $0x1,%eax 80100f7d: 74 41 je 80100fc0 <fileread+0x60> return piperead(f->pipe, addr, n); if(f->type == FD_INODE){ 80100f7f: 83 f8 02 cmp $0x2,%eax 80100f82: 75 5b jne 80100fdf <fileread+0x7f> ilock(f->ip); 80100f84: 83 ec 0c sub $0xc,%esp 80100f87: ff 73 10 pushl 0x10(%ebx) 80100f8a: e8 f1 06 00 00 call 80101680 <ilock> if((r = readi(f->ip, addr, f->off, n)) > 0) 80100f8f: 57 push %edi 80100f90: ff 73 14 pushl 0x14(%ebx) 80100f93: 56 push %esi 80100f94: ff 73 10 pushl 0x10(%ebx) 80100f97: e8 c4 09 00 00 call 80101960 <readi> 80100f9c: 83 c4 20 add $0x20,%esp 80100f9f: 85 c0 test %eax,%eax 80100fa1: 89 c6 mov %eax,%esi 80100fa3: 7e 03 jle 80100fa8 <fileread+0x48> f->off += r; 80100fa5: 01 43 14 add %eax,0x14(%ebx) iunlock(f->ip); 80100fa8: 83 ec 0c sub $0xc,%esp 80100fab: ff 73 10 pushl 0x10(%ebx) 80100fae: e8 ad 07 00 00 call 80101760 <iunlock> return r; 80100fb3: 83 c4 10 add $0x10,%esp } panic("fileread"); } 80100fb6: 8d 65 f4 lea -0xc(%ebp),%esp 80100fb9: 89 f0 mov %esi,%eax 80100fbb: 5b pop %ebx 80100fbc: 5e pop %esi 80100fbd: 5f pop %edi 80100fbe: 5d pop %ebp 80100fbf: c3 ret return piperead(f->pipe, addr, n); 80100fc0: 8b 43 0c mov 0xc(%ebx),%eax 80100fc3: 89 45 08 mov %eax,0x8(%ebp) } 80100fc6: 8d 65 f4 lea -0xc(%ebp),%esp 80100fc9: 5b pop %ebx 80100fca: 5e pop %esi 80100fcb: 5f pop %edi 80100fcc: 5d pop %ebp return piperead(f->pipe, addr, n); 80100fcd: e9 2e 25 00 00 jmp 80103500 <piperead> 80100fd2: 8d b6 00 00 00 00 lea 0x0(%esi),%esi return -1; 80100fd8: be ff ff ff ff mov $0xffffffff,%esi 80100fdd: eb d7 jmp 80100fb6 <fileread+0x56> panic("fileread"); 80100fdf: 83 ec 0c sub $0xc,%esp 80100fe2: 68 e6 77 10 80 push $0x801077e6 80100fe7: e8 a4 f3 ff ff call 80100390 <panic> 80100fec: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80100ff0 <filewrite>: //PAGEBREAK! // Write to file f. int filewrite(struct file *f, char *addr, int n) { 80100ff0: 55 push %ebp 80100ff1: 89 e5 mov %esp,%ebp 80100ff3: 57 push %edi 80100ff4: 56 push %esi 80100ff5: 53 push %ebx 80100ff6: 83 ec 1c sub $0x1c,%esp 80100ff9: 8b 75 08 mov 0x8(%ebp),%esi 80100ffc: 8b 45 0c mov 0xc(%ebp),%eax int r; if(f->writable == 0) 80100fff: 80 7e 09 00 cmpb $0x0,0x9(%esi) { 80101003: 89 45 dc mov %eax,-0x24(%ebp) 80101006: 8b 45 10 mov 0x10(%ebp),%eax 80101009: 89 45 e4 mov %eax,-0x1c(%ebp) if(f->writable == 0) 8010100c: 0f 84 aa 00 00 00 je 801010bc <filewrite+0xcc> return -1; if(f->type == FD_PIPE) 80101012: 8b 06 mov (%esi),%eax 80101014: 83 f8 01 cmp $0x1,%eax 80101017: 0f 84 c3 00 00 00 je 801010e0 <filewrite+0xf0> return pipewrite(f->pipe, addr, n); if(f->type == FD_INODE){ 8010101d: 83 f8 02 cmp $0x2,%eax 80101020: 0f 85 d9 00 00 00 jne 801010ff <filewrite+0x10f> // and 2 blocks of slop for non-aligned writes. // this really belongs lower down, since writei() // might be writing a device like the console. int max = ((MAXOPBLOCKS-1-1-2) / 2) * 512; int i = 0; while(i < n){ 80101026: 8b 45 e4 mov -0x1c(%ebp),%eax int i = 0; 80101029: 31 ff xor %edi,%edi while(i < n){ 8010102b: 85 c0 test %eax,%eax 8010102d: 7f 34 jg 80101063 <filewrite+0x73> 8010102f: e9 9c 00 00 00 jmp 801010d0 <filewrite+0xe0> 80101034: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi n1 = max; begin_op(); ilock(f->ip); if ((r = writei(f->ip, addr + i, f->off, n1)) > 0) f->off += r; 80101038: 01 46 14 add %eax,0x14(%esi) iunlock(f->ip); 8010103b: 83 ec 0c sub $0xc,%esp 8010103e: ff 76 10 pushl 0x10(%esi) f->off += r; 80101041: 89 45 e0 mov %eax,-0x20(%ebp) iunlock(f->ip); 80101044: e8 17 07 00 00 call 80101760 <iunlock> end_op(); 80101049: e8 c2 1b 00 00 call 80102c10 <end_op> 8010104e: 8b 45 e0 mov -0x20(%ebp),%eax 80101051: 83 c4 10 add $0x10,%esp if(r < 0) break; if(r != n1) 80101054: 39 c3 cmp %eax,%ebx 80101056: 0f 85 96 00 00 00 jne 801010f2 <filewrite+0x102> panic("short filewrite"); i += r; 8010105c: 01 df add %ebx,%edi while(i < n){ 8010105e: 39 7d e4 cmp %edi,-0x1c(%ebp) 80101061: 7e 6d jle 801010d0 <filewrite+0xe0> int n1 = n - i; 80101063: 8b 5d e4 mov -0x1c(%ebp),%ebx 80101066: b8 00 06 00 00 mov $0x600,%eax 8010106b: 29 fb sub %edi,%ebx 8010106d: 81 fb 00 06 00 00 cmp $0x600,%ebx 80101073: 0f 4f d8 cmovg %eax,%ebx begin_op(); 80101076: e8 25 1b 00 00 call 80102ba0 <begin_op> ilock(f->ip); 8010107b: 83 ec 0c sub $0xc,%esp 8010107e: ff 76 10 pushl 0x10(%esi) 80101081: e8 fa 05 00 00 call 80101680 <ilock> if ((r = writei(f->ip, addr + i, f->off, n1)) > 0) 80101086: 8b 45 dc mov -0x24(%ebp),%eax 80101089: 53 push %ebx 8010108a: ff 76 14 pushl 0x14(%esi) 8010108d: 01 f8 add %edi,%eax 8010108f: 50 push %eax 80101090: ff 76 10 pushl 0x10(%esi) 80101093: e8 c8 09 00 00 call 80101a60 <writei> 80101098: 83 c4 20 add $0x20,%esp 8010109b: 85 c0 test %eax,%eax 8010109d: 7f 99 jg 80101038 <filewrite+0x48> iunlock(f->ip); 8010109f: 83 ec 0c sub $0xc,%esp 801010a2: ff 76 10 pushl 0x10(%esi) 801010a5: 89 45 e0 mov %eax,-0x20(%ebp) 801010a8: e8 b3 06 00 00 call 80101760 <iunlock> end_op(); 801010ad: e8 5e 1b 00 00 call 80102c10 <end_op> if(r < 0) 801010b2: 8b 45 e0 mov -0x20(%ebp),%eax 801010b5: 83 c4 10 add $0x10,%esp 801010b8: 85 c0 test %eax,%eax 801010ba: 74 98 je 80101054 <filewrite+0x64> } return i == n ? n : -1; } panic("filewrite"); } 801010bc: 8d 65 f4 lea -0xc(%ebp),%esp return -1; 801010bf: bf ff ff ff ff mov $0xffffffff,%edi } 801010c4: 89 f8 mov %edi,%eax 801010c6: 5b pop %ebx 801010c7: 5e pop %esi 801010c8: 5f pop %edi 801010c9: 5d pop %ebp 801010ca: c3 ret 801010cb: 90 nop 801010cc: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi return i == n ? n : -1; 801010d0: 39 7d e4 cmp %edi,-0x1c(%ebp) 801010d3: 75 e7 jne 801010bc <filewrite+0xcc> } 801010d5: 8d 65 f4 lea -0xc(%ebp),%esp 801010d8: 89 f8 mov %edi,%eax 801010da: 5b pop %ebx 801010db: 5e pop %esi 801010dc: 5f pop %edi 801010dd: 5d pop %ebp 801010de: c3 ret 801010df: 90 nop return pipewrite(f->pipe, addr, n); 801010e0: 8b 46 0c mov 0xc(%esi),%eax 801010e3: 89 45 08 mov %eax,0x8(%ebp) } 801010e6: 8d 65 f4 lea -0xc(%ebp),%esp 801010e9: 5b pop %ebx 801010ea: 5e pop %esi 801010eb: 5f pop %edi 801010ec: 5d pop %ebp return pipewrite(f->pipe, addr, n); 801010ed: e9 fe 22 00 00 jmp 801033f0 <pipewrite> panic("short filewrite"); 801010f2: 83 ec 0c sub $0xc,%esp 801010f5: 68 ef 77 10 80 push $0x801077ef 801010fa: e8 91 f2 ff ff call 80100390 <panic> panic("filewrite"); 801010ff: 83 ec 0c sub $0xc,%esp 80101102: 68 f5 77 10 80 push $0x801077f5 80101107: e8 84 f2 ff ff call 80100390 <panic> 8010110c: 66 90 xchg %ax,%ax 8010110e: 66 90 xchg %ax,%ax 80101110 <bfree>: } // Free a disk block. static void bfree(int dev, uint b) { 80101110: 55 push %ebp 80101111: 89 e5 mov %esp,%ebp 80101113: 56 push %esi 80101114: 53 push %ebx 80101115: 89 d3 mov %edx,%ebx struct buf *bp; int bi, m; bp = bread(dev, BBLOCK(b, sb)); 80101117: c1 ea 0c shr $0xc,%edx 8010111a: 03 15 d8 19 11 80 add 0x801119d8,%edx 80101120: 83 ec 08 sub $0x8,%esp 80101123: 52 push %edx 80101124: 50 push %eax 80101125: e8 a6 ef ff ff call 801000d0 <bread> bi = b % BPB; m = 1 << (bi % 8); 8010112a: 89 d9 mov %ebx,%ecx if((bp->data[bi/8] & m) == 0) 8010112c: c1 fb 03 sar $0x3,%ebx m = 1 << (bi % 8); 8010112f: ba 01 00 00 00 mov $0x1,%edx 80101134: 83 e1 07 and $0x7,%ecx if((bp->data[bi/8] & m) == 0) 80101137: 81 e3 ff 01 00 00 and $0x1ff,%ebx 8010113d: 83 c4 10 add $0x10,%esp m = 1 << (bi % 8); 80101140: d3 e2 shl %cl,%edx if((bp->data[bi/8] & m) == 0) 80101142: 0f b6 4c 18 5c movzbl 0x5c(%eax,%ebx,1),%ecx 80101147: 85 d1 test %edx,%ecx 80101149: 74 25 je 80101170 <bfree+0x60> panic("freeing free block"); bp->data[bi/8] &= ~m; 8010114b: f7 d2 not %edx 8010114d: 89 c6 mov %eax,%esi log_write(bp); 8010114f: 83 ec 0c sub $0xc,%esp bp->data[bi/8] &= ~m; 80101152: 21 ca and %ecx,%edx 80101154: 88 54 1e 5c mov %dl,0x5c(%esi,%ebx,1) log_write(bp); 80101158: 56 push %esi 80101159: e8 12 1c 00 00 call 80102d70 <log_write> brelse(bp); 8010115e: 89 34 24 mov %esi,(%esp) 80101161: e8 7a f0 ff ff call 801001e0 <brelse> } 80101166: 83 c4 10 add $0x10,%esp 80101169: 8d 65 f8 lea -0x8(%ebp),%esp 8010116c: 5b pop %ebx 8010116d: 5e pop %esi 8010116e: 5d pop %ebp 8010116f: c3 ret panic("freeing free block"); 80101170: 83 ec 0c sub $0xc,%esp 80101173: 68 ff 77 10 80 push $0x801077ff 80101178: e8 13 f2 ff ff call 80100390 <panic> 8010117d: 8d 76 00 lea 0x0(%esi),%esi 80101180 <balloc>: { 80101180: 55 push %ebp 80101181: 89 e5 mov %esp,%ebp 80101183: 57 push %edi 80101184: 56 push %esi 80101185: 53 push %ebx 80101186: 83 ec 1c sub $0x1c,%esp for(b = 0; b < sb.size; b += BPB){ 80101189: 8b 0d c0 19 11 80 mov 0x801119c0,%ecx { 8010118f: 89 45 d8 mov %eax,-0x28(%ebp) for(b = 0; b < sb.size; b += BPB){ 80101192: 85 c9 test %ecx,%ecx 80101194: 0f 84 87 00 00 00 je 80101221 <balloc+0xa1> 8010119a: c7 45 dc 00 00 00 00 movl $0x0,-0x24(%ebp) bp = bread(dev, BBLOCK(b, sb)); 801011a1: 8b 75 dc mov -0x24(%ebp),%esi 801011a4: 83 ec 08 sub $0x8,%esp 801011a7: 89 f0 mov %esi,%eax 801011a9: c1 f8 0c sar $0xc,%eax 801011ac: 03 05 d8 19 11 80 add 0x801119d8,%eax 801011b2: 50 push %eax 801011b3: ff 75 d8 pushl -0x28(%ebp) 801011b6: e8 15 ef ff ff call 801000d0 <bread> 801011bb: 89 45 e4 mov %eax,-0x1c(%ebp) for(bi = 0; bi < BPB && b + bi < sb.size; bi++){ 801011be: a1 c0 19 11 80 mov 0x801119c0,%eax 801011c3: 83 c4 10 add $0x10,%esp 801011c6: 89 45 e0 mov %eax,-0x20(%ebp) 801011c9: 31 c0 xor %eax,%eax 801011cb: eb 2f jmp 801011fc <balloc+0x7c> 801011cd: 8d 76 00 lea 0x0(%esi),%esi m = 1 << (bi % 8); 801011d0: 89 c1 mov %eax,%ecx if((bp->data[bi/8] & m) == 0){ // Is block free? 801011d2: 8b 55 e4 mov -0x1c(%ebp),%edx m = 1 << (bi % 8); 801011d5: bb 01 00 00 00 mov $0x1,%ebx 801011da: 83 e1 07 and $0x7,%ecx 801011dd: d3 e3 shl %cl,%ebx if((bp->data[bi/8] & m) == 0){ // Is block free? 801011df: 89 c1 mov %eax,%ecx 801011e1: c1 f9 03 sar $0x3,%ecx 801011e4: 0f b6 7c 0a 5c movzbl 0x5c(%edx,%ecx,1),%edi 801011e9: 85 df test %ebx,%edi 801011eb: 89 fa mov %edi,%edx 801011ed: 74 41 je 80101230 <balloc+0xb0> for(bi = 0; bi < BPB && b + bi < sb.size; bi++){ 801011ef: 83 c0 01 add $0x1,%eax 801011f2: 83 c6 01 add $0x1,%esi 801011f5: 3d 00 10 00 00 cmp $0x1000,%eax 801011fa: 74 05 je 80101201 <balloc+0x81> 801011fc: 39 75 e0 cmp %esi,-0x20(%ebp) 801011ff: 77 cf ja 801011d0 <balloc+0x50> brelse(bp); 80101201: 83 ec 0c sub $0xc,%esp 80101204: ff 75 e4 pushl -0x1c(%ebp) 80101207: e8 d4 ef ff ff call 801001e0 <brelse> for(b = 0; b < sb.size; b += BPB){ 8010120c: 81 45 dc 00 10 00 00 addl $0x1000,-0x24(%ebp) 80101213: 83 c4 10 add $0x10,%esp 80101216: 8b 45 dc mov -0x24(%ebp),%eax 80101219: 39 05 c0 19 11 80 cmp %eax,0x801119c0 8010121f: 77 80 ja 801011a1 <balloc+0x21> panic("balloc: out of blocks"); 80101221: 83 ec 0c sub $0xc,%esp 80101224: 68 12 78 10 80 push $0x80107812 80101229: e8 62 f1 ff ff call 80100390 <panic> 8010122e: 66 90 xchg %ax,%ax bp->data[bi/8] |= m; // Mark block in use. 80101230: 8b 7d e4 mov -0x1c(%ebp),%edi log_write(bp); 80101233: 83 ec 0c sub $0xc,%esp bp->data[bi/8] |= m; // Mark block in use. 80101236: 09 da or %ebx,%edx 80101238: 88 54 0f 5c mov %dl,0x5c(%edi,%ecx,1) log_write(bp); 8010123c: 57 push %edi 8010123d: e8 2e 1b 00 00 call 80102d70 <log_write> brelse(bp); 80101242: 89 3c 24 mov %edi,(%esp) 80101245: e8 96 ef ff ff call 801001e0 <brelse> bp = bread(dev, bno); 8010124a: 58 pop %eax 8010124b: 5a pop %edx 8010124c: 56 push %esi 8010124d: ff 75 d8 pushl -0x28(%ebp) 80101250: e8 7b ee ff ff call 801000d0 <bread> 80101255: 89 c3 mov %eax,%ebx memset(bp->data, 0, BSIZE); 80101257: 8d 40 5c lea 0x5c(%eax),%eax 8010125a: 83 c4 0c add $0xc,%esp 8010125d: 68 00 02 00 00 push $0x200 80101262: 6a 00 push $0x0 80101264: 50 push %eax 80101265: e8 26 33 00 00 call 80104590 <memset> log_write(bp); 8010126a: 89 1c 24 mov %ebx,(%esp) 8010126d: e8 fe 1a 00 00 call 80102d70 <log_write> brelse(bp); 80101272: 89 1c 24 mov %ebx,(%esp) 80101275: e8 66 ef ff ff call 801001e0 <brelse> } 8010127a: 8d 65 f4 lea -0xc(%ebp),%esp 8010127d: 89 f0 mov %esi,%eax 8010127f: 5b pop %ebx 80101280: 5e pop %esi 80101281: 5f pop %edi 80101282: 5d pop %ebp 80101283: c3 ret 80101284: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 8010128a: 8d bf 00 00 00 00 lea 0x0(%edi),%edi 80101290 <iget>: // Find the inode with number inum on device dev // and return the in-memory copy. Does not lock // the inode and does not read it from disk. static struct inode* iget(uint dev, uint inum) { 80101290: 55 push %ebp 80101291: 89 e5 mov %esp,%ebp 80101293: 57 push %edi 80101294: 56 push %esi 80101295: 53 push %ebx 80101296: 89 c7 mov %eax,%edi struct inode *ip, *empty; acquire(&icache.lock); // Is the inode already cached? empty = 0; 80101298: 31 f6 xor %esi,%esi for(ip = &icache.inode[0]; ip < &icache.inode[NINODE]; ip++){ 8010129a: bb 14 1a 11 80 mov $0x80111a14,%ebx { 8010129f: 83 ec 28 sub $0x28,%esp 801012a2: 89 55 e4 mov %edx,-0x1c(%ebp) acquire(&icache.lock); 801012a5: 68 e0 19 11 80 push $0x801119e0 801012aa: e8 d1 31 00 00 call 80104480 <acquire> 801012af: 83 c4 10 add $0x10,%esp for(ip = &icache.inode[0]; ip < &icache.inode[NINODE]; ip++){ 801012b2: 8b 55 e4 mov -0x1c(%ebp),%edx 801012b5: eb 17 jmp 801012ce <iget+0x3e> 801012b7: 89 f6 mov %esi,%esi 801012b9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 801012c0: 81 c3 90 00 00 00 add $0x90,%ebx 801012c6: 81 fb 34 36 11 80 cmp $0x80113634,%ebx 801012cc: 73 22 jae 801012f0 <iget+0x60> if(ip->ref > 0 && ip->dev == dev && ip->inum == inum){ 801012ce: 8b 4b 08 mov 0x8(%ebx),%ecx 801012d1: 85 c9 test %ecx,%ecx 801012d3: 7e 04 jle 801012d9 <iget+0x49> 801012d5: 39 3b cmp %edi,(%ebx) 801012d7: 74 4f je 80101328 <iget+0x98> ip->ref++; release(&icache.lock); return ip; } if(empty == 0 && ip->ref == 0) // Remember empty slot. 801012d9: 85 f6 test %esi,%esi 801012db: 75 e3 jne 801012c0 <iget+0x30> 801012dd: 85 c9 test %ecx,%ecx 801012df: 0f 44 f3 cmove %ebx,%esi for(ip = &icache.inode[0]; ip < &icache.inode[NINODE]; ip++){ 801012e2: 81 c3 90 00 00 00 add $0x90,%ebx 801012e8: 81 fb 34 36 11 80 cmp $0x80113634,%ebx 801012ee: 72 de jb 801012ce <iget+0x3e> empty = ip; } // Recycle an inode cache entry. if(empty == 0) 801012f0: 85 f6 test %esi,%esi 801012f2: 74 5b je 8010134f <iget+0xbf> ip = empty; ip->dev = dev; ip->inum = inum; ip->ref = 1; ip->valid = 0; release(&icache.lock); 801012f4: 83 ec 0c sub $0xc,%esp ip->dev = dev; 801012f7: 89 3e mov %edi,(%esi) ip->inum = inum; 801012f9: 89 56 04 mov %edx,0x4(%esi) ip->ref = 1; 801012fc: c7 46 08 01 00 00 00 movl $0x1,0x8(%esi) ip->valid = 0; 80101303: c7 46 4c 00 00 00 00 movl $0x0,0x4c(%esi) release(&icache.lock); 8010130a: 68 e0 19 11 80 push $0x801119e0 8010130f: e8 2c 32 00 00 call 80104540 <release> return ip; 80101314: 83 c4 10 add $0x10,%esp } 80101317: 8d 65 f4 lea -0xc(%ebp),%esp 8010131a: 89 f0 mov %esi,%eax 8010131c: 5b pop %ebx 8010131d: 5e pop %esi 8010131e: 5f pop %edi 8010131f: 5d pop %ebp 80101320: c3 ret 80101321: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi if(ip->ref > 0 && ip->dev == dev && ip->inum == inum){ 80101328: 39 53 04 cmp %edx,0x4(%ebx) 8010132b: 75 ac jne 801012d9 <iget+0x49> release(&icache.lock); 8010132d: 83 ec 0c sub $0xc,%esp ip->ref++; 80101330: 83 c1 01 add $0x1,%ecx return ip; 80101333: 89 de mov %ebx,%esi release(&icache.lock); 80101335: 68 e0 19 11 80 push $0x801119e0 ip->ref++; 8010133a: 89 4b 08 mov %ecx,0x8(%ebx) release(&icache.lock); 8010133d: e8 fe 31 00 00 call 80104540 <release> return ip; 80101342: 83 c4 10 add $0x10,%esp } 80101345: 8d 65 f4 lea -0xc(%ebp),%esp 80101348: 89 f0 mov %esi,%eax 8010134a: 5b pop %ebx 8010134b: 5e pop %esi 8010134c: 5f pop %edi 8010134d: 5d pop %ebp 8010134e: c3 ret panic("iget: no inodes"); 8010134f: 83 ec 0c sub $0xc,%esp 80101352: 68 28 78 10 80 push $0x80107828 80101357: e8 34 f0 ff ff call 80100390 <panic> 8010135c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80101360 <bmap>: // Return the disk block address of the nth block in inode ip. // If there is no such block, bmap allocates one. static uint bmap(struct inode *ip, uint bn) { 80101360: 55 push %ebp 80101361: 89 e5 mov %esp,%ebp 80101363: 57 push %edi 80101364: 56 push %esi 80101365: 53 push %ebx 80101366: 89 c6 mov %eax,%esi 80101368: 83 ec 1c sub $0x1c,%esp uint addr, *a; struct buf *bp; if(bn < NDIRECT){ 8010136b: 83 fa 0b cmp $0xb,%edx 8010136e: 77 18 ja 80101388 <bmap+0x28> 80101370: 8d 3c 90 lea (%eax,%edx,4),%edi if((addr = ip->addrs[bn]) == 0) 80101373: 8b 5f 5c mov 0x5c(%edi),%ebx 80101376: 85 db test %ebx,%ebx 80101378: 74 76 je 801013f0 <bmap+0x90> brelse(bp); return addr; } panic("bmap: out of range"); } 8010137a: 8d 65 f4 lea -0xc(%ebp),%esp 8010137d: 89 d8 mov %ebx,%eax 8010137f: 5b pop %ebx 80101380: 5e pop %esi 80101381: 5f pop %edi 80101382: 5d pop %ebp 80101383: c3 ret 80101384: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi bn -= NDIRECT; 80101388: 8d 5a f4 lea -0xc(%edx),%ebx if(bn < NINDIRECT){ 8010138b: 83 fb 7f cmp $0x7f,%ebx 8010138e: 0f 87 90 00 00 00 ja 80101424 <bmap+0xc4> if((addr = ip->addrs[NDIRECT]) == 0) 80101394: 8b 90 8c 00 00 00 mov 0x8c(%eax),%edx 8010139a: 8b 00 mov (%eax),%eax 8010139c: 85 d2 test %edx,%edx 8010139e: 74 70 je 80101410 <bmap+0xb0> bp = bread(ip->dev, addr); 801013a0: 83 ec 08 sub $0x8,%esp 801013a3: 52 push %edx 801013a4: 50 push %eax 801013a5: e8 26 ed ff ff call 801000d0 <bread> if((addr = a[bn]) == 0){ 801013aa: 8d 54 98 5c lea 0x5c(%eax,%ebx,4),%edx 801013ae: 83 c4 10 add $0x10,%esp bp = bread(ip->dev, addr); 801013b1: 89 c7 mov %eax,%edi if((addr = a[bn]) == 0){ 801013b3: 8b 1a mov (%edx),%ebx 801013b5: 85 db test %ebx,%ebx 801013b7: 75 1d jne 801013d6 <bmap+0x76> a[bn] = addr = balloc(ip->dev); 801013b9: 8b 06 mov (%esi),%eax 801013bb: 89 55 e4 mov %edx,-0x1c(%ebp) 801013be: e8 bd fd ff ff call 80101180 <balloc> 801013c3: 8b 55 e4 mov -0x1c(%ebp),%edx log_write(bp); 801013c6: 83 ec 0c sub $0xc,%esp a[bn] = addr = balloc(ip->dev); 801013c9: 89 c3 mov %eax,%ebx 801013cb: 89 02 mov %eax,(%edx) log_write(bp); 801013cd: 57 push %edi 801013ce: e8 9d 19 00 00 call 80102d70 <log_write> 801013d3: 83 c4 10 add $0x10,%esp brelse(bp); 801013d6: 83 ec 0c sub $0xc,%esp 801013d9: 57 push %edi 801013da: e8 01 ee ff ff call 801001e0 <brelse> 801013df: 83 c4 10 add $0x10,%esp } 801013e2: 8d 65 f4 lea -0xc(%ebp),%esp 801013e5: 89 d8 mov %ebx,%eax 801013e7: 5b pop %ebx 801013e8: 5e pop %esi 801013e9: 5f pop %edi 801013ea: 5d pop %ebp 801013eb: c3 ret 801013ec: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi ip->addrs[bn] = addr = balloc(ip->dev); 801013f0: 8b 00 mov (%eax),%eax 801013f2: e8 89 fd ff ff call 80101180 <balloc> 801013f7: 89 47 5c mov %eax,0x5c(%edi) } 801013fa: 8d 65 f4 lea -0xc(%ebp),%esp ip->addrs[bn] = addr = balloc(ip->dev); 801013fd: 89 c3 mov %eax,%ebx } 801013ff: 89 d8 mov %ebx,%eax 80101401: 5b pop %ebx 80101402: 5e pop %esi 80101403: 5f pop %edi 80101404: 5d pop %ebp 80101405: c3 ret 80101406: 8d 76 00 lea 0x0(%esi),%esi 80101409: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi ip->addrs[NDIRECT] = addr = balloc(ip->dev); 80101410: e8 6b fd ff ff call 80101180 <balloc> 80101415: 89 c2 mov %eax,%edx 80101417: 89 86 8c 00 00 00 mov %eax,0x8c(%esi) 8010141d: 8b 06 mov (%esi),%eax 8010141f: e9 7c ff ff ff jmp 801013a0 <bmap+0x40> panic("bmap: out of range"); 80101424: 83 ec 0c sub $0xc,%esp 80101427: 68 38 78 10 80 push $0x80107838 8010142c: e8 5f ef ff ff call 80100390 <panic> 80101431: eb 0d jmp 80101440 <readsb> 80101433: 90 nop 80101434: 90 nop 80101435: 90 nop 80101436: 90 nop 80101437: 90 nop 80101438: 90 nop 80101439: 90 nop 8010143a: 90 nop 8010143b: 90 nop 8010143c: 90 nop 8010143d: 90 nop 8010143e: 90 nop 8010143f: 90 nop 80101440 <readsb>: { 80101440: 55 push %ebp 80101441: 89 e5 mov %esp,%ebp 80101443: 56 push %esi 80101444: 53 push %ebx 80101445: 8b 75 0c mov 0xc(%ebp),%esi bp = bread(dev, 1); 80101448: 83 ec 08 sub $0x8,%esp 8010144b: 6a 01 push $0x1 8010144d: ff 75 08 pushl 0x8(%ebp) 80101450: e8 7b ec ff ff call 801000d0 <bread> 80101455: 89 c3 mov %eax,%ebx memmove(sb, bp->data, sizeof(*sb)); 80101457: 8d 40 5c lea 0x5c(%eax),%eax 8010145a: 83 c4 0c add $0xc,%esp 8010145d: 6a 1c push $0x1c 8010145f: 50 push %eax 80101460: 56 push %esi 80101461: e8 da 31 00 00 call 80104640 <memmove> brelse(bp); 80101466: 89 5d 08 mov %ebx,0x8(%ebp) 80101469: 83 c4 10 add $0x10,%esp } 8010146c: 8d 65 f8 lea -0x8(%ebp),%esp 8010146f: 5b pop %ebx 80101470: 5e pop %esi 80101471: 5d pop %ebp brelse(bp); 80101472: e9 69 ed ff ff jmp 801001e0 <brelse> 80101477: 89 f6 mov %esi,%esi 80101479: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80101480 <iinit>: { 80101480: 55 push %ebp 80101481: 89 e5 mov %esp,%ebp 80101483: 53 push %ebx 80101484: bb 20 1a 11 80 mov $0x80111a20,%ebx 80101489: 83 ec 0c sub $0xc,%esp initlock(&icache.lock, "icache"); 8010148c: 68 4b 78 10 80 push $0x8010784b 80101491: 68 e0 19 11 80 push $0x801119e0 80101496: e8 a5 2e 00 00 call 80104340 <initlock> 8010149b: 83 c4 10 add $0x10,%esp 8010149e: 66 90 xchg %ax,%ax initsleeplock(&icache.inode[i].lock, "inode"); 801014a0: 83 ec 08 sub $0x8,%esp 801014a3: 68 52 78 10 80 push $0x80107852 801014a8: 53 push %ebx 801014a9: 81 c3 90 00 00 00 add $0x90,%ebx 801014af: e8 5c 2d 00 00 call 80104210 <initsleeplock> for(i = 0; i < NINODE; i++) { 801014b4: 83 c4 10 add $0x10,%esp 801014b7: 81 fb 40 36 11 80 cmp $0x80113640,%ebx 801014bd: 75 e1 jne 801014a0 <iinit+0x20> readsb(dev, &sb); 801014bf: 83 ec 08 sub $0x8,%esp 801014c2: 68 c0 19 11 80 push $0x801119c0 801014c7: ff 75 08 pushl 0x8(%ebp) 801014ca: e8 71 ff ff ff call 80101440 <readsb> cprintf("sb: size %d nblocks %d ninodes %d nlog %d logstart %d\ 801014cf: ff 35 d8 19 11 80 pushl 0x801119d8 801014d5: ff 35 d4 19 11 80 pushl 0x801119d4 801014db: ff 35 d0 19 11 80 pushl 0x801119d0 801014e1: ff 35 cc 19 11 80 pushl 0x801119cc 801014e7: ff 35 c8 19 11 80 pushl 0x801119c8 801014ed: ff 35 c4 19 11 80 pushl 0x801119c4 801014f3: ff 35 c0 19 11 80 pushl 0x801119c0 801014f9: 68 b8 78 10 80 push $0x801078b8 801014fe: e8 5d f1 ff ff call 80100660 <cprintf> } 80101503: 83 c4 30 add $0x30,%esp 80101506: 8b 5d fc mov -0x4(%ebp),%ebx 80101509: c9 leave 8010150a: c3 ret 8010150b: 90 nop 8010150c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80101510 <ialloc>: { 80101510: 55 push %ebp 80101511: 89 e5 mov %esp,%ebp 80101513: 57 push %edi 80101514: 56 push %esi 80101515: 53 push %ebx 80101516: 83 ec 1c sub $0x1c,%esp for(inum = 1; inum < sb.ninodes; inum++){ 80101519: 83 3d c8 19 11 80 01 cmpl $0x1,0x801119c8 { 80101520: 8b 45 0c mov 0xc(%ebp),%eax 80101523: 8b 75 08 mov 0x8(%ebp),%esi 80101526: 89 45 e4 mov %eax,-0x1c(%ebp) for(inum = 1; inum < sb.ninodes; inum++){ 80101529: 0f 86 91 00 00 00 jbe 801015c0 <ialloc+0xb0> 8010152f: bb 01 00 00 00 mov $0x1,%ebx 80101534: eb 21 jmp 80101557 <ialloc+0x47> 80101536: 8d 76 00 lea 0x0(%esi),%esi 80101539: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi brelse(bp); 80101540: 83 ec 0c sub $0xc,%esp for(inum = 1; inum < sb.ninodes; inum++){ 80101543: 83 c3 01 add $0x1,%ebx brelse(bp); 80101546: 57 push %edi 80101547: e8 94 ec ff ff call 801001e0 <brelse> for(inum = 1; inum < sb.ninodes; inum++){ 8010154c: 83 c4 10 add $0x10,%esp 8010154f: 39 1d c8 19 11 80 cmp %ebx,0x801119c8 80101555: 76 69 jbe 801015c0 <ialloc+0xb0> bp = bread(dev, IBLOCK(inum, sb)); 80101557: 89 d8 mov %ebx,%eax 80101559: 83 ec 08 sub $0x8,%esp 8010155c: c1 e8 03 shr $0x3,%eax 8010155f: 03 05 d4 19 11 80 add 0x801119d4,%eax 80101565: 50 push %eax 80101566: 56 push %esi 80101567: e8 64 eb ff ff call 801000d0 <bread> 8010156c: 89 c7 mov %eax,%edi dip = (struct dinode*)bp->data + inum%IPB; 8010156e: 89 d8 mov %ebx,%eax if(dip->type == 0){ // a free inode 80101570: 83 c4 10 add $0x10,%esp dip = (struct dinode*)bp->data + inum%IPB; 80101573: 83 e0 07 and $0x7,%eax 80101576: c1 e0 06 shl $0x6,%eax 80101579: 8d 4c 07 5c lea 0x5c(%edi,%eax,1),%ecx if(dip->type == 0){ // a free inode 8010157d: 66 83 39 00 cmpw $0x0,(%ecx) 80101581: 75 bd jne 80101540 <ialloc+0x30> memset(dip, 0, sizeof(*dip)); 80101583: 83 ec 04 sub $0x4,%esp 80101586: 89 4d e0 mov %ecx,-0x20(%ebp) 80101589: 6a 40 push $0x40 8010158b: 6a 00 push $0x0 8010158d: 51 push %ecx 8010158e: e8 fd 2f 00 00 call 80104590 <memset> dip->type = type; 80101593: 0f b7 45 e4 movzwl -0x1c(%ebp),%eax 80101597: 8b 4d e0 mov -0x20(%ebp),%ecx 8010159a: 66 89 01 mov %ax,(%ecx) log_write(bp); // mark it allocated on the disk 8010159d: 89 3c 24 mov %edi,(%esp) 801015a0: e8 cb 17 00 00 call 80102d70 <log_write> brelse(bp); 801015a5: 89 3c 24 mov %edi,(%esp) 801015a8: e8 33 ec ff ff call 801001e0 <brelse> return iget(dev, inum); 801015ad: 83 c4 10 add $0x10,%esp } 801015b0: 8d 65 f4 lea -0xc(%ebp),%esp return iget(dev, inum); 801015b3: 89 da mov %ebx,%edx 801015b5: 89 f0 mov %esi,%eax } 801015b7: 5b pop %ebx 801015b8: 5e pop %esi 801015b9: 5f pop %edi 801015ba: 5d pop %ebp return iget(dev, inum); 801015bb: e9 d0 fc ff ff jmp 80101290 <iget> panic("ialloc: no inodes"); 801015c0: 83 ec 0c sub $0xc,%esp 801015c3: 68 58 78 10 80 push $0x80107858 801015c8: e8 c3 ed ff ff call 80100390 <panic> 801015cd: 8d 76 00 lea 0x0(%esi),%esi 801015d0 <iupdate>: { 801015d0: 55 push %ebp 801015d1: 89 e5 mov %esp,%ebp 801015d3: 56 push %esi 801015d4: 53 push %ebx 801015d5: 8b 5d 08 mov 0x8(%ebp),%ebx bp = bread(ip->dev, IBLOCK(ip->inum, sb)); 801015d8: 83 ec 08 sub $0x8,%esp 801015db: 8b 43 04 mov 0x4(%ebx),%eax memmove(dip->addrs, ip->addrs, sizeof(ip->addrs)); 801015de: 83 c3 5c add $0x5c,%ebx bp = bread(ip->dev, IBLOCK(ip->inum, sb)); 801015e1: c1 e8 03 shr $0x3,%eax 801015e4: 03 05 d4 19 11 80 add 0x801119d4,%eax 801015ea: 50 push %eax 801015eb: ff 73 a4 pushl -0x5c(%ebx) 801015ee: e8 dd ea ff ff call 801000d0 <bread> 801015f3: 89 c6 mov %eax,%esi dip = (struct dinode*)bp->data + ip->inum%IPB; 801015f5: 8b 43 a8 mov -0x58(%ebx),%eax dip->type = ip->type; 801015f8: 0f b7 53 f4 movzwl -0xc(%ebx),%edx memmove(dip->addrs, ip->addrs, sizeof(ip->addrs)); 801015fc: 83 c4 0c add $0xc,%esp dip = (struct dinode*)bp->data + ip->inum%IPB; 801015ff: 83 e0 07 and $0x7,%eax 80101602: c1 e0 06 shl $0x6,%eax 80101605: 8d 44 06 5c lea 0x5c(%esi,%eax,1),%eax dip->type = ip->type; 80101609: 66 89 10 mov %dx,(%eax) dip->major = ip->major; 8010160c: 0f b7 53 f6 movzwl -0xa(%ebx),%edx memmove(dip->addrs, ip->addrs, sizeof(ip->addrs)); 80101610: 83 c0 0c add $0xc,%eax dip->major = ip->major; 80101613: 66 89 50 f6 mov %dx,-0xa(%eax) dip->minor = ip->minor; 80101617: 0f b7 53 f8 movzwl -0x8(%ebx),%edx 8010161b: 66 89 50 f8 mov %dx,-0x8(%eax) dip->nlink = ip->nlink; 8010161f: 0f b7 53 fa movzwl -0x6(%ebx),%edx 80101623: 66 89 50 fa mov %dx,-0x6(%eax) dip->size = ip->size; 80101627: 8b 53 fc mov -0x4(%ebx),%edx 8010162a: 89 50 fc mov %edx,-0x4(%eax) memmove(dip->addrs, ip->addrs, sizeof(ip->addrs)); 8010162d: 6a 34 push $0x34 8010162f: 53 push %ebx 80101630: 50 push %eax 80101631: e8 0a 30 00 00 call 80104640 <memmove> log_write(bp); 80101636: 89 34 24 mov %esi,(%esp) 80101639: e8 32 17 00 00 call 80102d70 <log_write> brelse(bp); 8010163e: 89 75 08 mov %esi,0x8(%ebp) 80101641: 83 c4 10 add $0x10,%esp } 80101644: 8d 65 f8 lea -0x8(%ebp),%esp 80101647: 5b pop %ebx 80101648: 5e pop %esi 80101649: 5d pop %ebp brelse(bp); 8010164a: e9 91 eb ff ff jmp 801001e0 <brelse> 8010164f: 90 nop 80101650 <idup>: { 80101650: 55 push %ebp 80101651: 89 e5 mov %esp,%ebp 80101653: 53 push %ebx 80101654: 83 ec 10 sub $0x10,%esp 80101657: 8b 5d 08 mov 0x8(%ebp),%ebx acquire(&icache.lock); 8010165a: 68 e0 19 11 80 push $0x801119e0 8010165f: e8 1c 2e 00 00 call 80104480 <acquire> ip->ref++; 80101664: 83 43 08 01 addl $0x1,0x8(%ebx) release(&icache.lock); 80101668: c7 04 24 e0 19 11 80 movl $0x801119e0,(%esp) 8010166f: e8 cc 2e 00 00 call 80104540 <release> } 80101674: 89 d8 mov %ebx,%eax 80101676: 8b 5d fc mov -0x4(%ebp),%ebx 80101679: c9 leave 8010167a: c3 ret 8010167b: 90 nop 8010167c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80101680 <ilock>: { 80101680: 55 push %ebp 80101681: 89 e5 mov %esp,%ebp 80101683: 56 push %esi 80101684: 53 push %ebx 80101685: 8b 5d 08 mov 0x8(%ebp),%ebx if(ip == 0 || ip->ref < 1) 80101688: 85 db test %ebx,%ebx 8010168a: 0f 84 b7 00 00 00 je 80101747 <ilock+0xc7> 80101690: 8b 53 08 mov 0x8(%ebx),%edx 80101693: 85 d2 test %edx,%edx 80101695: 0f 8e ac 00 00 00 jle 80101747 <ilock+0xc7> acquiresleep(&ip->lock); 8010169b: 8d 43 0c lea 0xc(%ebx),%eax 8010169e: 83 ec 0c sub $0xc,%esp 801016a1: 50 push %eax 801016a2: e8 a9 2b 00 00 call 80104250 <acquiresleep> if(ip->valid == 0){ 801016a7: 8b 43 4c mov 0x4c(%ebx),%eax 801016aa: 83 c4 10 add $0x10,%esp 801016ad: 85 c0 test %eax,%eax 801016af: 74 0f je 801016c0 <ilock+0x40> } 801016b1: 8d 65 f8 lea -0x8(%ebp),%esp 801016b4: 5b pop %ebx 801016b5: 5e pop %esi 801016b6: 5d pop %ebp 801016b7: c3 ret 801016b8: 90 nop 801016b9: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi bp = bread(ip->dev, IBLOCK(ip->inum, sb)); 801016c0: 8b 43 04 mov 0x4(%ebx),%eax 801016c3: 83 ec 08 sub $0x8,%esp 801016c6: c1 e8 03 shr $0x3,%eax 801016c9: 03 05 d4 19 11 80 add 0x801119d4,%eax 801016cf: 50 push %eax 801016d0: ff 33 pushl (%ebx) 801016d2: e8 f9 e9 ff ff call 801000d0 <bread> 801016d7: 89 c6 mov %eax,%esi dip = (struct dinode*)bp->data + ip->inum%IPB; 801016d9: 8b 43 04 mov 0x4(%ebx),%eax memmove(ip->addrs, dip->addrs, sizeof(ip->addrs)); 801016dc: 83 c4 0c add $0xc,%esp dip = (struct dinode*)bp->data + ip->inum%IPB; 801016df: 83 e0 07 and $0x7,%eax 801016e2: c1 e0 06 shl $0x6,%eax 801016e5: 8d 44 06 5c lea 0x5c(%esi,%eax,1),%eax ip->type = dip->type; 801016e9: 0f b7 10 movzwl (%eax),%edx memmove(ip->addrs, dip->addrs, sizeof(ip->addrs)); 801016ec: 83 c0 0c add $0xc,%eax ip->type = dip->type; 801016ef: 66 89 53 50 mov %dx,0x50(%ebx) ip->major = dip->major; 801016f3: 0f b7 50 f6 movzwl -0xa(%eax),%edx 801016f7: 66 89 53 52 mov %dx,0x52(%ebx) ip->minor = dip->minor; 801016fb: 0f b7 50 f8 movzwl -0x8(%eax),%edx 801016ff: 66 89 53 54 mov %dx,0x54(%ebx) ip->nlink = dip->nlink; 80101703: 0f b7 50 fa movzwl -0x6(%eax),%edx 80101707: 66 89 53 56 mov %dx,0x56(%ebx) ip->size = dip->size; 8010170b: 8b 50 fc mov -0x4(%eax),%edx 8010170e: 89 53 58 mov %edx,0x58(%ebx) memmove(ip->addrs, dip->addrs, sizeof(ip->addrs)); 80101711: 6a 34 push $0x34 80101713: 50 push %eax 80101714: 8d 43 5c lea 0x5c(%ebx),%eax 80101717: 50 push %eax 80101718: e8 23 2f 00 00 call 80104640 <memmove> brelse(bp); 8010171d: 89 34 24 mov %esi,(%esp) 80101720: e8 bb ea ff ff call 801001e0 <brelse> if(ip->type == 0) 80101725: 83 c4 10 add $0x10,%esp 80101728: 66 83 7b 50 00 cmpw $0x0,0x50(%ebx) ip->valid = 1; 8010172d: c7 43 4c 01 00 00 00 movl $0x1,0x4c(%ebx) if(ip->type == 0) 80101734: 0f 85 77 ff ff ff jne 801016b1 <ilock+0x31> panic("ilock: no type"); 8010173a: 83 ec 0c sub $0xc,%esp 8010173d: 68 70 78 10 80 push $0x80107870 80101742: e8 49 ec ff ff call 80100390 <panic> panic("ilock"); 80101747: 83 ec 0c sub $0xc,%esp 8010174a: 68 6a 78 10 80 push $0x8010786a 8010174f: e8 3c ec ff ff call 80100390 <panic> 80101754: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 8010175a: 8d bf 00 00 00 00 lea 0x0(%edi),%edi 80101760 <iunlock>: { 80101760: 55 push %ebp 80101761: 89 e5 mov %esp,%ebp 80101763: 56 push %esi 80101764: 53 push %ebx 80101765: 8b 5d 08 mov 0x8(%ebp),%ebx if(ip == 0 || !holdingsleep(&ip->lock) || ip->ref < 1) 80101768: 85 db test %ebx,%ebx 8010176a: 74 28 je 80101794 <iunlock+0x34> 8010176c: 8d 73 0c lea 0xc(%ebx),%esi 8010176f: 83 ec 0c sub $0xc,%esp 80101772: 56 push %esi 80101773: e8 78 2b 00 00 call 801042f0 <holdingsleep> 80101778: 83 c4 10 add $0x10,%esp 8010177b: 85 c0 test %eax,%eax 8010177d: 74 15 je 80101794 <iunlock+0x34> 8010177f: 8b 43 08 mov 0x8(%ebx),%eax 80101782: 85 c0 test %eax,%eax 80101784: 7e 0e jle 80101794 <iunlock+0x34> releasesleep(&ip->lock); 80101786: 89 75 08 mov %esi,0x8(%ebp) } 80101789: 8d 65 f8 lea -0x8(%ebp),%esp 8010178c: 5b pop %ebx 8010178d: 5e pop %esi 8010178e: 5d pop %ebp releasesleep(&ip->lock); 8010178f: e9 1c 2b 00 00 jmp 801042b0 <releasesleep> panic("iunlock"); 80101794: 83 ec 0c sub $0xc,%esp 80101797: 68 7f 78 10 80 push $0x8010787f 8010179c: e8 ef eb ff ff call 80100390 <panic> 801017a1: eb 0d jmp 801017b0 <iput> 801017a3: 90 nop 801017a4: 90 nop 801017a5: 90 nop 801017a6: 90 nop 801017a7: 90 nop 801017a8: 90 nop 801017a9: 90 nop 801017aa: 90 nop 801017ab: 90 nop 801017ac: 90 nop 801017ad: 90 nop 801017ae: 90 nop 801017af: 90 nop 801017b0 <iput>: { 801017b0: 55 push %ebp 801017b1: 89 e5 mov %esp,%ebp 801017b3: 57 push %edi 801017b4: 56 push %esi 801017b5: 53 push %ebx 801017b6: 83 ec 28 sub $0x28,%esp 801017b9: 8b 5d 08 mov 0x8(%ebp),%ebx acquiresleep(&ip->lock); 801017bc: 8d 7b 0c lea 0xc(%ebx),%edi 801017bf: 57 push %edi 801017c0: e8 8b 2a 00 00 call 80104250 <acquiresleep> if(ip->valid && ip->nlink == 0){ 801017c5: 8b 53 4c mov 0x4c(%ebx),%edx 801017c8: 83 c4 10 add $0x10,%esp 801017cb: 85 d2 test %edx,%edx 801017cd: 74 07 je 801017d6 <iput+0x26> 801017cf: 66 83 7b 56 00 cmpw $0x0,0x56(%ebx) 801017d4: 74 32 je 80101808 <iput+0x58> releasesleep(&ip->lock); 801017d6: 83 ec 0c sub $0xc,%esp 801017d9: 57 push %edi 801017da: e8 d1 2a 00 00 call 801042b0 <releasesleep> acquire(&icache.lock); 801017df: c7 04 24 e0 19 11 80 movl $0x801119e0,(%esp) 801017e6: e8 95 2c 00 00 call 80104480 <acquire> ip->ref--; 801017eb: 83 6b 08 01 subl $0x1,0x8(%ebx) release(&icache.lock); 801017ef: 83 c4 10 add $0x10,%esp 801017f2: c7 45 08 e0 19 11 80 movl $0x801119e0,0x8(%ebp) } 801017f9: 8d 65 f4 lea -0xc(%ebp),%esp 801017fc: 5b pop %ebx 801017fd: 5e pop %esi 801017fe: 5f pop %edi 801017ff: 5d pop %ebp release(&icache.lock); 80101800: e9 3b 2d 00 00 jmp 80104540 <release> 80101805: 8d 76 00 lea 0x0(%esi),%esi acquire(&icache.lock); 80101808: 83 ec 0c sub $0xc,%esp 8010180b: 68 e0 19 11 80 push $0x801119e0 80101810: e8 6b 2c 00 00 call 80104480 <acquire> int r = ip->ref; 80101815: 8b 73 08 mov 0x8(%ebx),%esi release(&icache.lock); 80101818: c7 04 24 e0 19 11 80 movl $0x801119e0,(%esp) 8010181f: e8 1c 2d 00 00 call 80104540 <release> if(r == 1){ 80101824: 83 c4 10 add $0x10,%esp 80101827: 83 fe 01 cmp $0x1,%esi 8010182a: 75 aa jne 801017d6 <iput+0x26> 8010182c: 8d 8b 8c 00 00 00 lea 0x8c(%ebx),%ecx 80101832: 89 7d e4 mov %edi,-0x1c(%ebp) 80101835: 8d 73 5c lea 0x5c(%ebx),%esi 80101838: 89 cf mov %ecx,%edi 8010183a: eb 0b jmp 80101847 <iput+0x97> 8010183c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80101840: 83 c6 04 add $0x4,%esi { int i, j; struct buf *bp; uint *a; for(i = 0; i < NDIRECT; i++){ 80101843: 39 fe cmp %edi,%esi 80101845: 74 19 je 80101860 <iput+0xb0> if(ip->addrs[i]){ 80101847: 8b 16 mov (%esi),%edx 80101849: 85 d2 test %edx,%edx 8010184b: 74 f3 je 80101840 <iput+0x90> bfree(ip->dev, ip->addrs[i]); 8010184d: 8b 03 mov (%ebx),%eax 8010184f: e8 bc f8 ff ff call 80101110 <bfree> ip->addrs[i] = 0; 80101854: c7 06 00 00 00 00 movl $0x0,(%esi) 8010185a: eb e4 jmp 80101840 <iput+0x90> 8010185c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi } } if(ip->addrs[NDIRECT]){ 80101860: 8b 83 8c 00 00 00 mov 0x8c(%ebx),%eax 80101866: 8b 7d e4 mov -0x1c(%ebp),%edi 80101869: 85 c0 test %eax,%eax 8010186b: 75 33 jne 801018a0 <iput+0xf0> bfree(ip->dev, ip->addrs[NDIRECT]); ip->addrs[NDIRECT] = 0; } ip->size = 0; iupdate(ip); 8010186d: 83 ec 0c sub $0xc,%esp ip->size = 0; 80101870: c7 43 58 00 00 00 00 movl $0x0,0x58(%ebx) iupdate(ip); 80101877: 53 push %ebx 80101878: e8 53 fd ff ff call 801015d0 <iupdate> ip->type = 0; 8010187d: 31 c0 xor %eax,%eax 8010187f: 66 89 43 50 mov %ax,0x50(%ebx) iupdate(ip); 80101883: 89 1c 24 mov %ebx,(%esp) 80101886: e8 45 fd ff ff call 801015d0 <iupdate> ip->valid = 0; 8010188b: c7 43 4c 00 00 00 00 movl $0x0,0x4c(%ebx) 80101892: 83 c4 10 add $0x10,%esp 80101895: e9 3c ff ff ff jmp 801017d6 <iput+0x26> 8010189a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi bp = bread(ip->dev, ip->addrs[NDIRECT]); 801018a0: 83 ec 08 sub $0x8,%esp 801018a3: 50 push %eax 801018a4: ff 33 pushl (%ebx) 801018a6: e8 25 e8 ff ff call 801000d0 <bread> 801018ab: 8d 88 5c 02 00 00 lea 0x25c(%eax),%ecx 801018b1: 89 7d e0 mov %edi,-0x20(%ebp) 801018b4: 89 45 e4 mov %eax,-0x1c(%ebp) a = (uint*)bp->data; 801018b7: 8d 70 5c lea 0x5c(%eax),%esi 801018ba: 83 c4 10 add $0x10,%esp 801018bd: 89 cf mov %ecx,%edi 801018bf: eb 0e jmp 801018cf <iput+0x11f> 801018c1: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 801018c8: 83 c6 04 add $0x4,%esi for(j = 0; j < NINDIRECT; j++){ 801018cb: 39 fe cmp %edi,%esi 801018cd: 74 0f je 801018de <iput+0x12e> if(a[j]) 801018cf: 8b 16 mov (%esi),%edx 801018d1: 85 d2 test %edx,%edx 801018d3: 74 f3 je 801018c8 <iput+0x118> bfree(ip->dev, a[j]); 801018d5: 8b 03 mov (%ebx),%eax 801018d7: e8 34 f8 ff ff call 80101110 <bfree> 801018dc: eb ea jmp 801018c8 <iput+0x118> brelse(bp); 801018de: 83 ec 0c sub $0xc,%esp 801018e1: ff 75 e4 pushl -0x1c(%ebp) 801018e4: 8b 7d e0 mov -0x20(%ebp),%edi 801018e7: e8 f4 e8 ff ff call 801001e0 <brelse> bfree(ip->dev, ip->addrs[NDIRECT]); 801018ec: 8b 93 8c 00 00 00 mov 0x8c(%ebx),%edx 801018f2: 8b 03 mov (%ebx),%eax 801018f4: e8 17 f8 ff ff call 80101110 <bfree> ip->addrs[NDIRECT] = 0; 801018f9: c7 83 8c 00 00 00 00 movl $0x0,0x8c(%ebx) 80101900: 00 00 00 80101903: 83 c4 10 add $0x10,%esp 80101906: e9 62 ff ff ff jmp 8010186d <iput+0xbd> 8010190b: 90 nop 8010190c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80101910 <iunlockput>: { 80101910: 55 push %ebp 80101911: 89 e5 mov %esp,%ebp 80101913: 53 push %ebx 80101914: 83 ec 10 sub $0x10,%esp 80101917: 8b 5d 08 mov 0x8(%ebp),%ebx iunlock(ip); 8010191a: 53 push %ebx 8010191b: e8 40 fe ff ff call 80101760 <iunlock> iput(ip); 80101920: 89 5d 08 mov %ebx,0x8(%ebp) 80101923: 83 c4 10 add $0x10,%esp } 80101926: 8b 5d fc mov -0x4(%ebp),%ebx 80101929: c9 leave iput(ip); 8010192a: e9 81 fe ff ff jmp 801017b0 <iput> 8010192f: 90 nop 80101930 <stati>: // Copy stat information from inode. // Caller must hold ip->lock. void stati(struct inode *ip, struct stat *st) { 80101930: 55 push %ebp 80101931: 89 e5 mov %esp,%ebp 80101933: 8b 55 08 mov 0x8(%ebp),%edx 80101936: 8b 45 0c mov 0xc(%ebp),%eax st->dev = ip->dev; 80101939: 8b 0a mov (%edx),%ecx 8010193b: 89 48 04 mov %ecx,0x4(%eax) st->ino = ip->inum; 8010193e: 8b 4a 04 mov 0x4(%edx),%ecx 80101941: 89 48 08 mov %ecx,0x8(%eax) st->type = ip->type; 80101944: 0f b7 4a 50 movzwl 0x50(%edx),%ecx 80101948: 66 89 08 mov %cx,(%eax) st->nlink = ip->nlink; 8010194b: 0f b7 4a 56 movzwl 0x56(%edx),%ecx 8010194f: 66 89 48 0c mov %cx,0xc(%eax) st->size = ip->size; 80101953: 8b 52 58 mov 0x58(%edx),%edx 80101956: 89 50 10 mov %edx,0x10(%eax) } 80101959: 5d pop %ebp 8010195a: c3 ret 8010195b: 90 nop 8010195c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80101960 <readi>: //PAGEBREAK! // Read data from inode. // Caller must hold ip->lock. int readi(struct inode *ip, char *dst, uint off, uint n) { 80101960: 55 push %ebp 80101961: 89 e5 mov %esp,%ebp 80101963: 57 push %edi 80101964: 56 push %esi 80101965: 53 push %ebx 80101966: 83 ec 1c sub $0x1c,%esp 80101969: 8b 45 08 mov 0x8(%ebp),%eax 8010196c: 8b 75 0c mov 0xc(%ebp),%esi 8010196f: 8b 7d 14 mov 0x14(%ebp),%edi uint tot, m; struct buf *bp; if(ip->type == T_DEV){ 80101972: 66 83 78 50 03 cmpw $0x3,0x50(%eax) { 80101977: 89 75 e0 mov %esi,-0x20(%ebp) 8010197a: 89 45 d8 mov %eax,-0x28(%ebp) 8010197d: 8b 75 10 mov 0x10(%ebp),%esi 80101980: 89 7d e4 mov %edi,-0x1c(%ebp) if(ip->type == T_DEV){ 80101983: 0f 84 a7 00 00 00 je 80101a30 <readi+0xd0> if(ip->major < 0 || ip->major >= NDEV || !devsw[ip->major].read) return -1; return devsw[ip->major].read(ip, dst, n); } if(off > ip->size || off + n < off) 80101989: 8b 45 d8 mov -0x28(%ebp),%eax 8010198c: 8b 40 58 mov 0x58(%eax),%eax 8010198f: 39 c6 cmp %eax,%esi 80101991: 0f 87 ba 00 00 00 ja 80101a51 <readi+0xf1> 80101997: 8b 7d e4 mov -0x1c(%ebp),%edi 8010199a: 89 f9 mov %edi,%ecx 8010199c: 01 f1 add %esi,%ecx 8010199e: 0f 82 ad 00 00 00 jb 80101a51 <readi+0xf1> return -1; if(off + n > ip->size) n = ip->size - off; 801019a4: 89 c2 mov %eax,%edx 801019a6: 29 f2 sub %esi,%edx 801019a8: 39 c8 cmp %ecx,%eax 801019aa: 0f 43 d7 cmovae %edi,%edx for(tot=0; tot<n; tot+=m, off+=m, dst+=m){ 801019ad: 31 ff xor %edi,%edi 801019af: 85 d2 test %edx,%edx n = ip->size - off; 801019b1: 89 55 e4 mov %edx,-0x1c(%ebp) for(tot=0; tot<n; tot+=m, off+=m, dst+=m){ 801019b4: 74 6c je 80101a22 <readi+0xc2> 801019b6: 8d 76 00 lea 0x0(%esi),%esi 801019b9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi bp = bread(ip->dev, bmap(ip, off/BSIZE)); 801019c0: 8b 5d d8 mov -0x28(%ebp),%ebx 801019c3: 89 f2 mov %esi,%edx 801019c5: c1 ea 09 shr $0x9,%edx 801019c8: 89 d8 mov %ebx,%eax 801019ca: e8 91 f9 ff ff call 80101360 <bmap> 801019cf: 83 ec 08 sub $0x8,%esp 801019d2: 50 push %eax 801019d3: ff 33 pushl (%ebx) 801019d5: e8 f6 e6 ff ff call 801000d0 <bread> m = min(n - tot, BSIZE - off%BSIZE); 801019da: 8b 5d e4 mov -0x1c(%ebp),%ebx bp = bread(ip->dev, bmap(ip, off/BSIZE)); 801019dd: 89 c2 mov %eax,%edx m = min(n - tot, BSIZE - off%BSIZE); 801019df: 89 f0 mov %esi,%eax 801019e1: 25 ff 01 00 00 and $0x1ff,%eax 801019e6: b9 00 02 00 00 mov $0x200,%ecx 801019eb: 83 c4 0c add $0xc,%esp 801019ee: 29 c1 sub %eax,%ecx memmove(dst, bp->data + off%BSIZE, m); 801019f0: 8d 44 02 5c lea 0x5c(%edx,%eax,1),%eax 801019f4: 89 55 dc mov %edx,-0x24(%ebp) m = min(n - tot, BSIZE - off%BSIZE); 801019f7: 29 fb sub %edi,%ebx 801019f9: 39 d9 cmp %ebx,%ecx 801019fb: 0f 46 d9 cmovbe %ecx,%ebx memmove(dst, bp->data + off%BSIZE, m); 801019fe: 53 push %ebx 801019ff: 50 push %eax for(tot=0; tot<n; tot+=m, off+=m, dst+=m){ 80101a00: 01 df add %ebx,%edi memmove(dst, bp->data + off%BSIZE, m); 80101a02: ff 75 e0 pushl -0x20(%ebp) for(tot=0; tot<n; tot+=m, off+=m, dst+=m){ 80101a05: 01 de add %ebx,%esi memmove(dst, bp->data + off%BSIZE, m); 80101a07: e8 34 2c 00 00 call 80104640 <memmove> brelse(bp); 80101a0c: 8b 55 dc mov -0x24(%ebp),%edx 80101a0f: 89 14 24 mov %edx,(%esp) 80101a12: e8 c9 e7 ff ff call 801001e0 <brelse> for(tot=0; tot<n; tot+=m, off+=m, dst+=m){ 80101a17: 01 5d e0 add %ebx,-0x20(%ebp) 80101a1a: 83 c4 10 add $0x10,%esp 80101a1d: 39 7d e4 cmp %edi,-0x1c(%ebp) 80101a20: 77 9e ja 801019c0 <readi+0x60> } return n; 80101a22: 8b 45 e4 mov -0x1c(%ebp),%eax } 80101a25: 8d 65 f4 lea -0xc(%ebp),%esp 80101a28: 5b pop %ebx 80101a29: 5e pop %esi 80101a2a: 5f pop %edi 80101a2b: 5d pop %ebp 80101a2c: c3 ret 80101a2d: 8d 76 00 lea 0x0(%esi),%esi if(ip->major < 0 || ip->major >= NDEV || !devsw[ip->major].read) 80101a30: 0f bf 40 52 movswl 0x52(%eax),%eax 80101a34: 66 83 f8 09 cmp $0x9,%ax 80101a38: 77 17 ja 80101a51 <readi+0xf1> 80101a3a: 8b 04 c5 60 19 11 80 mov -0x7feee6a0(,%eax,8),%eax 80101a41: 85 c0 test %eax,%eax 80101a43: 74 0c je 80101a51 <readi+0xf1> return devsw[ip->major].read(ip, dst, n); 80101a45: 89 7d 10 mov %edi,0x10(%ebp) } 80101a48: 8d 65 f4 lea -0xc(%ebp),%esp 80101a4b: 5b pop %ebx 80101a4c: 5e pop %esi 80101a4d: 5f pop %edi 80101a4e: 5d pop %ebp return devsw[ip->major].read(ip, dst, n); 80101a4f: ff e0 jmp *%eax return -1; 80101a51: b8 ff ff ff ff mov $0xffffffff,%eax 80101a56: eb cd jmp 80101a25 <readi+0xc5> 80101a58: 90 nop 80101a59: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80101a60 <writei>: // PAGEBREAK! // Write data to inode. // Caller must hold ip->lock. int writei(struct inode *ip, char *src, uint off, uint n) { 80101a60: 55 push %ebp 80101a61: 89 e5 mov %esp,%ebp 80101a63: 57 push %edi 80101a64: 56 push %esi 80101a65: 53 push %ebx 80101a66: 83 ec 1c sub $0x1c,%esp 80101a69: 8b 45 08 mov 0x8(%ebp),%eax 80101a6c: 8b 75 0c mov 0xc(%ebp),%esi 80101a6f: 8b 7d 14 mov 0x14(%ebp),%edi uint tot, m; struct buf *bp; if(ip->type == T_DEV){ 80101a72: 66 83 78 50 03 cmpw $0x3,0x50(%eax) { 80101a77: 89 75 dc mov %esi,-0x24(%ebp) 80101a7a: 89 45 d8 mov %eax,-0x28(%ebp) 80101a7d: 8b 75 10 mov 0x10(%ebp),%esi 80101a80: 89 7d e0 mov %edi,-0x20(%ebp) if(ip->type == T_DEV){ 80101a83: 0f 84 b7 00 00 00 je 80101b40 <writei+0xe0> if(ip->major < 0 || ip->major >= NDEV || !devsw[ip->major].write) return -1; return devsw[ip->major].write(ip, src, n); } if(off > ip->size || off + n < off) 80101a89: 8b 45 d8 mov -0x28(%ebp),%eax 80101a8c: 39 70 58 cmp %esi,0x58(%eax) 80101a8f: 0f 82 eb 00 00 00 jb 80101b80 <writei+0x120> 80101a95: 8b 7d e0 mov -0x20(%ebp),%edi 80101a98: 31 d2 xor %edx,%edx 80101a9a: 89 f8 mov %edi,%eax 80101a9c: 01 f0 add %esi,%eax 80101a9e: 0f 92 c2 setb %dl return -1; if(off + n > MAXFILE*BSIZE) 80101aa1: 3d 00 18 01 00 cmp $0x11800,%eax 80101aa6: 0f 87 d4 00 00 00 ja 80101b80 <writei+0x120> 80101aac: 85 d2 test %edx,%edx 80101aae: 0f 85 cc 00 00 00 jne 80101b80 <writei+0x120> return -1; for(tot=0; tot<n; tot+=m, off+=m, src+=m){ 80101ab4: 85 ff test %edi,%edi 80101ab6: c7 45 e4 00 00 00 00 movl $0x0,-0x1c(%ebp) 80101abd: 74 72 je 80101b31 <writei+0xd1> 80101abf: 90 nop bp = bread(ip->dev, bmap(ip, off/BSIZE)); 80101ac0: 8b 7d d8 mov -0x28(%ebp),%edi 80101ac3: 89 f2 mov %esi,%edx 80101ac5: c1 ea 09 shr $0x9,%edx 80101ac8: 89 f8 mov %edi,%eax 80101aca: e8 91 f8 ff ff call 80101360 <bmap> 80101acf: 83 ec 08 sub $0x8,%esp 80101ad2: 50 push %eax 80101ad3: ff 37 pushl (%edi) 80101ad5: e8 f6 e5 ff ff call 801000d0 <bread> m = min(n - tot, BSIZE - off%BSIZE); 80101ada: 8b 5d e0 mov -0x20(%ebp),%ebx 80101add: 2b 5d e4 sub -0x1c(%ebp),%ebx bp = bread(ip->dev, bmap(ip, off/BSIZE)); 80101ae0: 89 c7 mov %eax,%edi m = min(n - tot, BSIZE - off%BSIZE); 80101ae2: 89 f0 mov %esi,%eax 80101ae4: b9 00 02 00 00 mov $0x200,%ecx 80101ae9: 83 c4 0c add $0xc,%esp 80101aec: 25 ff 01 00 00 and $0x1ff,%eax 80101af1: 29 c1 sub %eax,%ecx memmove(bp->data + off%BSIZE, src, m); 80101af3: 8d 44 07 5c lea 0x5c(%edi,%eax,1),%eax m = min(n - tot, BSIZE - off%BSIZE); 80101af7: 39 d9 cmp %ebx,%ecx 80101af9: 0f 46 d9 cmovbe %ecx,%ebx memmove(bp->data + off%BSIZE, src, m); 80101afc: 53 push %ebx 80101afd: ff 75 dc pushl -0x24(%ebp) for(tot=0; tot<n; tot+=m, off+=m, src+=m){ 80101b00: 01 de add %ebx,%esi memmove(bp->data + off%BSIZE, src, m); 80101b02: 50 push %eax 80101b03: e8 38 2b 00 00 call 80104640 <memmove> log_write(bp); 80101b08: 89 3c 24 mov %edi,(%esp) 80101b0b: e8 60 12 00 00 call 80102d70 <log_write> brelse(bp); 80101b10: 89 3c 24 mov %edi,(%esp) 80101b13: e8 c8 e6 ff ff call 801001e0 <brelse> for(tot=0; tot<n; tot+=m, off+=m, src+=m){ 80101b18: 01 5d e4 add %ebx,-0x1c(%ebp) 80101b1b: 01 5d dc add %ebx,-0x24(%ebp) 80101b1e: 83 c4 10 add $0x10,%esp 80101b21: 8b 45 e4 mov -0x1c(%ebp),%eax 80101b24: 39 45 e0 cmp %eax,-0x20(%ebp) 80101b27: 77 97 ja 80101ac0 <writei+0x60> } if(n > 0 && off > ip->size){ 80101b29: 8b 45 d8 mov -0x28(%ebp),%eax 80101b2c: 3b 70 58 cmp 0x58(%eax),%esi 80101b2f: 77 37 ja 80101b68 <writei+0x108> ip->size = off; iupdate(ip); } return n; 80101b31: 8b 45 e0 mov -0x20(%ebp),%eax } 80101b34: 8d 65 f4 lea -0xc(%ebp),%esp 80101b37: 5b pop %ebx 80101b38: 5e pop %esi 80101b39: 5f pop %edi 80101b3a: 5d pop %ebp 80101b3b: c3 ret 80101b3c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi if(ip->major < 0 || ip->major >= NDEV || !devsw[ip->major].write) 80101b40: 0f bf 40 52 movswl 0x52(%eax),%eax 80101b44: 66 83 f8 09 cmp $0x9,%ax 80101b48: 77 36 ja 80101b80 <writei+0x120> 80101b4a: 8b 04 c5 64 19 11 80 mov -0x7feee69c(,%eax,8),%eax 80101b51: 85 c0 test %eax,%eax 80101b53: 74 2b je 80101b80 <writei+0x120> return devsw[ip->major].write(ip, src, n); 80101b55: 89 7d 10 mov %edi,0x10(%ebp) } 80101b58: 8d 65 f4 lea -0xc(%ebp),%esp 80101b5b: 5b pop %ebx 80101b5c: 5e pop %esi 80101b5d: 5f pop %edi 80101b5e: 5d pop %ebp return devsw[ip->major].write(ip, src, n); 80101b5f: ff e0 jmp *%eax 80101b61: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi ip->size = off; 80101b68: 8b 45 d8 mov -0x28(%ebp),%eax iupdate(ip); 80101b6b: 83 ec 0c sub $0xc,%esp ip->size = off; 80101b6e: 89 70 58 mov %esi,0x58(%eax) iupdate(ip); 80101b71: 50 push %eax 80101b72: e8 59 fa ff ff call 801015d0 <iupdate> 80101b77: 83 c4 10 add $0x10,%esp 80101b7a: eb b5 jmp 80101b31 <writei+0xd1> 80101b7c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi return -1; 80101b80: b8 ff ff ff ff mov $0xffffffff,%eax 80101b85: eb ad jmp 80101b34 <writei+0xd4> 80101b87: 89 f6 mov %esi,%esi 80101b89: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80101b90 <namecmp>: //PAGEBREAK! // Directories int namecmp(const char *s, const char *t) { 80101b90: 55 push %ebp 80101b91: 89 e5 mov %esp,%ebp 80101b93: 83 ec 0c sub $0xc,%esp return strncmp(s, t, DIRSIZ); 80101b96: 6a 0e push $0xe 80101b98: ff 75 0c pushl 0xc(%ebp) 80101b9b: ff 75 08 pushl 0x8(%ebp) 80101b9e: e8 0d 2b 00 00 call 801046b0 <strncmp> } 80101ba3: c9 leave 80101ba4: c3 ret 80101ba5: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80101ba9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80101bb0 <dirlookup>: // Look for a directory entry in a directory. // If found, set *poff to byte offset of entry. struct inode* dirlookup(struct inode *dp, char *name, uint *poff) { 80101bb0: 55 push %ebp 80101bb1: 89 e5 mov %esp,%ebp 80101bb3: 57 push %edi 80101bb4: 56 push %esi 80101bb5: 53 push %ebx 80101bb6: 83 ec 1c sub $0x1c,%esp 80101bb9: 8b 5d 08 mov 0x8(%ebp),%ebx uint off, inum; struct dirent de; if(dp->type != T_DIR) 80101bbc: 66 83 7b 50 01 cmpw $0x1,0x50(%ebx) 80101bc1: 0f 85 85 00 00 00 jne 80101c4c <dirlookup+0x9c> panic("dirlookup not DIR"); for(off = 0; off < dp->size; off += sizeof(de)){ 80101bc7: 8b 53 58 mov 0x58(%ebx),%edx 80101bca: 31 ff xor %edi,%edi 80101bcc: 8d 75 d8 lea -0x28(%ebp),%esi 80101bcf: 85 d2 test %edx,%edx 80101bd1: 74 3e je 80101c11 <dirlookup+0x61> 80101bd3: 90 nop 80101bd4: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi if(readi(dp, (char*)&de, off, sizeof(de)) != sizeof(de)) 80101bd8: 6a 10 push $0x10 80101bda: 57 push %edi 80101bdb: 56 push %esi 80101bdc: 53 push %ebx 80101bdd: e8 7e fd ff ff call 80101960 <readi> 80101be2: 83 c4 10 add $0x10,%esp 80101be5: 83 f8 10 cmp $0x10,%eax 80101be8: 75 55 jne 80101c3f <dirlookup+0x8f> panic("dirlookup read"); if(de.inum == 0) 80101bea: 66 83 7d d8 00 cmpw $0x0,-0x28(%ebp) 80101bef: 74 18 je 80101c09 <dirlookup+0x59> return strncmp(s, t, DIRSIZ); 80101bf1: 8d 45 da lea -0x26(%ebp),%eax 80101bf4: 83 ec 04 sub $0x4,%esp 80101bf7: 6a 0e push $0xe 80101bf9: 50 push %eax 80101bfa: ff 75 0c pushl 0xc(%ebp) 80101bfd: e8 ae 2a 00 00 call 801046b0 <strncmp> continue; if(namecmp(name, de.name) == 0){ 80101c02: 83 c4 10 add $0x10,%esp 80101c05: 85 c0 test %eax,%eax 80101c07: 74 17 je 80101c20 <dirlookup+0x70> for(off = 0; off < dp->size; off += sizeof(de)){ 80101c09: 83 c7 10 add $0x10,%edi 80101c0c: 3b 7b 58 cmp 0x58(%ebx),%edi 80101c0f: 72 c7 jb 80101bd8 <dirlookup+0x28> return iget(dp->dev, inum); } } return 0; } 80101c11: 8d 65 f4 lea -0xc(%ebp),%esp return 0; 80101c14: 31 c0 xor %eax,%eax } 80101c16: 5b pop %ebx 80101c17: 5e pop %esi 80101c18: 5f pop %edi 80101c19: 5d pop %ebp 80101c1a: c3 ret 80101c1b: 90 nop 80101c1c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi if(poff) 80101c20: 8b 45 10 mov 0x10(%ebp),%eax 80101c23: 85 c0 test %eax,%eax 80101c25: 74 05 je 80101c2c <dirlookup+0x7c> *poff = off; 80101c27: 8b 45 10 mov 0x10(%ebp),%eax 80101c2a: 89 38 mov %edi,(%eax) inum = de.inum; 80101c2c: 0f b7 55 d8 movzwl -0x28(%ebp),%edx return iget(dp->dev, inum); 80101c30: 8b 03 mov (%ebx),%eax 80101c32: e8 59 f6 ff ff call 80101290 <iget> } 80101c37: 8d 65 f4 lea -0xc(%ebp),%esp 80101c3a: 5b pop %ebx 80101c3b: 5e pop %esi 80101c3c: 5f pop %edi 80101c3d: 5d pop %ebp 80101c3e: c3 ret panic("dirlookup read"); 80101c3f: 83 ec 0c sub $0xc,%esp 80101c42: 68 99 78 10 80 push $0x80107899 80101c47: e8 44 e7 ff ff call 80100390 <panic> panic("dirlookup not DIR"); 80101c4c: 83 ec 0c sub $0xc,%esp 80101c4f: 68 87 78 10 80 push $0x80107887 80101c54: e8 37 e7 ff ff call 80100390 <panic> 80101c59: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80101c60 <namex>: // If parent != 0, return the inode for the parent and copy the final // path element into name, which must have room for DIRSIZ bytes. // Must be called inside a transaction since it calls iput(). static struct inode* namex(char *path, int nameiparent, char *name) { 80101c60: 55 push %ebp 80101c61: 89 e5 mov %esp,%ebp 80101c63: 57 push %edi 80101c64: 56 push %esi 80101c65: 53 push %ebx 80101c66: 89 cf mov %ecx,%edi 80101c68: 89 c3 mov %eax,%ebx 80101c6a: 83 ec 1c sub $0x1c,%esp struct inode *ip, *next; if(*path == '/') 80101c6d: 80 38 2f cmpb $0x2f,(%eax) { 80101c70: 89 55 e0 mov %edx,-0x20(%ebp) if(*path == '/') 80101c73: 0f 84 67 01 00 00 je 80101de0 <namex+0x180> ip = iget(ROOTDEV, ROOTINO); else ip = idup(myproc()->cwd); 80101c79: e8 62 1b 00 00 call 801037e0 <myproc> acquire(&icache.lock); 80101c7e: 83 ec 0c sub $0xc,%esp ip = idup(myproc()->cwd); 80101c81: 8b 70 68 mov 0x68(%eax),%esi acquire(&icache.lock); 80101c84: 68 e0 19 11 80 push $0x801119e0 80101c89: e8 f2 27 00 00 call 80104480 <acquire> ip->ref++; 80101c8e: 83 46 08 01 addl $0x1,0x8(%esi) release(&icache.lock); 80101c92: c7 04 24 e0 19 11 80 movl $0x801119e0,(%esp) 80101c99: e8 a2 28 00 00 call 80104540 <release> 80101c9e: 83 c4 10 add $0x10,%esp 80101ca1: eb 08 jmp 80101cab <namex+0x4b> 80101ca3: 90 nop 80101ca4: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi path++; 80101ca8: 83 c3 01 add $0x1,%ebx while(*path == '/') 80101cab: 0f b6 03 movzbl (%ebx),%eax 80101cae: 3c 2f cmp $0x2f,%al 80101cb0: 74 f6 je 80101ca8 <namex+0x48> if(*path == 0) 80101cb2: 84 c0 test %al,%al 80101cb4: 0f 84 ee 00 00 00 je 80101da8 <namex+0x148> while(*path != '/' && *path != 0) 80101cba: 0f b6 03 movzbl (%ebx),%eax 80101cbd: 3c 2f cmp $0x2f,%al 80101cbf: 0f 84 b3 00 00 00 je 80101d78 <namex+0x118> 80101cc5: 84 c0 test %al,%al 80101cc7: 89 da mov %ebx,%edx 80101cc9: 75 09 jne 80101cd4 <namex+0x74> 80101ccb: e9 a8 00 00 00 jmp 80101d78 <namex+0x118> 80101cd0: 84 c0 test %al,%al 80101cd2: 74 0a je 80101cde <namex+0x7e> path++; 80101cd4: 83 c2 01 add $0x1,%edx while(*path != '/' && *path != 0) 80101cd7: 0f b6 02 movzbl (%edx),%eax 80101cda: 3c 2f cmp $0x2f,%al 80101cdc: 75 f2 jne 80101cd0 <namex+0x70> 80101cde: 89 d1 mov %edx,%ecx 80101ce0: 29 d9 sub %ebx,%ecx if(len >= DIRSIZ) 80101ce2: 83 f9 0d cmp $0xd,%ecx 80101ce5: 0f 8e 91 00 00 00 jle 80101d7c <namex+0x11c> memmove(name, s, DIRSIZ); 80101ceb: 83 ec 04 sub $0x4,%esp 80101cee: 89 55 e4 mov %edx,-0x1c(%ebp) 80101cf1: 6a 0e push $0xe 80101cf3: 53 push %ebx 80101cf4: 57 push %edi 80101cf5: e8 46 29 00 00 call 80104640 <memmove> path++; 80101cfa: 8b 55 e4 mov -0x1c(%ebp),%edx memmove(name, s, DIRSIZ); 80101cfd: 83 c4 10 add $0x10,%esp path++; 80101d00: 89 d3 mov %edx,%ebx while(*path == '/') 80101d02: 80 3a 2f cmpb $0x2f,(%edx) 80101d05: 75 11 jne 80101d18 <namex+0xb8> 80101d07: 89 f6 mov %esi,%esi 80101d09: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi path++; 80101d10: 83 c3 01 add $0x1,%ebx while(*path == '/') 80101d13: 80 3b 2f cmpb $0x2f,(%ebx) 80101d16: 74 f8 je 80101d10 <namex+0xb0> while((path = skipelem(path, name)) != 0){ ilock(ip); 80101d18: 83 ec 0c sub $0xc,%esp 80101d1b: 56 push %esi 80101d1c: e8 5f f9 ff ff call 80101680 <ilock> if(ip->type != T_DIR){ 80101d21: 83 c4 10 add $0x10,%esp 80101d24: 66 83 7e 50 01 cmpw $0x1,0x50(%esi) 80101d29: 0f 85 91 00 00 00 jne 80101dc0 <namex+0x160> iunlockput(ip); return 0; } if(nameiparent && *path == '\0'){ 80101d2f: 8b 55 e0 mov -0x20(%ebp),%edx 80101d32: 85 d2 test %edx,%edx 80101d34: 74 09 je 80101d3f <namex+0xdf> 80101d36: 80 3b 00 cmpb $0x0,(%ebx) 80101d39: 0f 84 b7 00 00 00 je 80101df6 <namex+0x196> // Stop one level early. iunlock(ip); return ip; } if((next = dirlookup(ip, name, 0)) == 0){ 80101d3f: 83 ec 04 sub $0x4,%esp 80101d42: 6a 00 push $0x0 80101d44: 57 push %edi 80101d45: 56 push %esi 80101d46: e8 65 fe ff ff call 80101bb0 <dirlookup> 80101d4b: 83 c4 10 add $0x10,%esp 80101d4e: 85 c0 test %eax,%eax 80101d50: 74 6e je 80101dc0 <namex+0x160> iunlock(ip); 80101d52: 83 ec 0c sub $0xc,%esp 80101d55: 89 45 e4 mov %eax,-0x1c(%ebp) 80101d58: 56 push %esi 80101d59: e8 02 fa ff ff call 80101760 <iunlock> iput(ip); 80101d5e: 89 34 24 mov %esi,(%esp) 80101d61: e8 4a fa ff ff call 801017b0 <iput> 80101d66: 8b 45 e4 mov -0x1c(%ebp),%eax 80101d69: 83 c4 10 add $0x10,%esp 80101d6c: 89 c6 mov %eax,%esi 80101d6e: e9 38 ff ff ff jmp 80101cab <namex+0x4b> 80101d73: 90 nop 80101d74: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi while(*path != '/' && *path != 0) 80101d78: 89 da mov %ebx,%edx 80101d7a: 31 c9 xor %ecx,%ecx memmove(name, s, len); 80101d7c: 83 ec 04 sub $0x4,%esp 80101d7f: 89 55 dc mov %edx,-0x24(%ebp) 80101d82: 89 4d e4 mov %ecx,-0x1c(%ebp) 80101d85: 51 push %ecx 80101d86: 53 push %ebx 80101d87: 57 push %edi 80101d88: e8 b3 28 00 00 call 80104640 <memmove> name[len] = 0; 80101d8d: 8b 4d e4 mov -0x1c(%ebp),%ecx 80101d90: 8b 55 dc mov -0x24(%ebp),%edx 80101d93: 83 c4 10 add $0x10,%esp 80101d96: c6 04 0f 00 movb $0x0,(%edi,%ecx,1) 80101d9a: 89 d3 mov %edx,%ebx 80101d9c: e9 61 ff ff ff jmp 80101d02 <namex+0xa2> 80101da1: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi return 0; } iunlockput(ip); ip = next; } if(nameiparent){ 80101da8: 8b 45 e0 mov -0x20(%ebp),%eax 80101dab: 85 c0 test %eax,%eax 80101dad: 75 5d jne 80101e0c <namex+0x1ac> iput(ip); return 0; } return ip; } 80101daf: 8d 65 f4 lea -0xc(%ebp),%esp 80101db2: 89 f0 mov %esi,%eax 80101db4: 5b pop %ebx 80101db5: 5e pop %esi 80101db6: 5f pop %edi 80101db7: 5d pop %ebp 80101db8: c3 ret 80101db9: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi iunlock(ip); 80101dc0: 83 ec 0c sub $0xc,%esp 80101dc3: 56 push %esi 80101dc4: e8 97 f9 ff ff call 80101760 <iunlock> iput(ip); 80101dc9: 89 34 24 mov %esi,(%esp) return 0; 80101dcc: 31 f6 xor %esi,%esi iput(ip); 80101dce: e8 dd f9 ff ff call 801017b0 <iput> return 0; 80101dd3: 83 c4 10 add $0x10,%esp } 80101dd6: 8d 65 f4 lea -0xc(%ebp),%esp 80101dd9: 89 f0 mov %esi,%eax 80101ddb: 5b pop %ebx 80101ddc: 5e pop %esi 80101ddd: 5f pop %edi 80101dde: 5d pop %ebp 80101ddf: c3 ret ip = iget(ROOTDEV, ROOTINO); 80101de0: ba 01 00 00 00 mov $0x1,%edx 80101de5: b8 01 00 00 00 mov $0x1,%eax 80101dea: e8 a1 f4 ff ff call 80101290 <iget> 80101def: 89 c6 mov %eax,%esi 80101df1: e9 b5 fe ff ff jmp 80101cab <namex+0x4b> iunlock(ip); 80101df6: 83 ec 0c sub $0xc,%esp 80101df9: 56 push %esi 80101dfa: e8 61 f9 ff ff call 80101760 <iunlock> return ip; 80101dff: 83 c4 10 add $0x10,%esp } 80101e02: 8d 65 f4 lea -0xc(%ebp),%esp 80101e05: 89 f0 mov %esi,%eax 80101e07: 5b pop %ebx 80101e08: 5e pop %esi 80101e09: 5f pop %edi 80101e0a: 5d pop %ebp 80101e0b: c3 ret iput(ip); 80101e0c: 83 ec 0c sub $0xc,%esp 80101e0f: 56 push %esi return 0; 80101e10: 31 f6 xor %esi,%esi iput(ip); 80101e12: e8 99 f9 ff ff call 801017b0 <iput> return 0; 80101e17: 83 c4 10 add $0x10,%esp 80101e1a: eb 93 jmp 80101daf <namex+0x14f> 80101e1c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80101e20 <dirlink>: { 80101e20: 55 push %ebp 80101e21: 89 e5 mov %esp,%ebp 80101e23: 57 push %edi 80101e24: 56 push %esi 80101e25: 53 push %ebx 80101e26: 83 ec 20 sub $0x20,%esp 80101e29: 8b 5d 08 mov 0x8(%ebp),%ebx if((ip = dirlookup(dp, name, 0)) != 0){ 80101e2c: 6a 00 push $0x0 80101e2e: ff 75 0c pushl 0xc(%ebp) 80101e31: 53 push %ebx 80101e32: e8 79 fd ff ff call 80101bb0 <dirlookup> 80101e37: 83 c4 10 add $0x10,%esp 80101e3a: 85 c0 test %eax,%eax 80101e3c: 75 67 jne 80101ea5 <dirlink+0x85> for(off = 0; off < dp->size; off += sizeof(de)){ 80101e3e: 8b 7b 58 mov 0x58(%ebx),%edi 80101e41: 8d 75 d8 lea -0x28(%ebp),%esi 80101e44: 85 ff test %edi,%edi 80101e46: 74 29 je 80101e71 <dirlink+0x51> 80101e48: 31 ff xor %edi,%edi 80101e4a: 8d 75 d8 lea -0x28(%ebp),%esi 80101e4d: eb 09 jmp 80101e58 <dirlink+0x38> 80101e4f: 90 nop 80101e50: 83 c7 10 add $0x10,%edi 80101e53: 3b 7b 58 cmp 0x58(%ebx),%edi 80101e56: 73 19 jae 80101e71 <dirlink+0x51> if(readi(dp, (char*)&de, off, sizeof(de)) != sizeof(de)) 80101e58: 6a 10 push $0x10 80101e5a: 57 push %edi 80101e5b: 56 push %esi 80101e5c: 53 push %ebx 80101e5d: e8 fe fa ff ff call 80101960 <readi> 80101e62: 83 c4 10 add $0x10,%esp 80101e65: 83 f8 10 cmp $0x10,%eax 80101e68: 75 4e jne 80101eb8 <dirlink+0x98> if(de.inum == 0) 80101e6a: 66 83 7d d8 00 cmpw $0x0,-0x28(%ebp) 80101e6f: 75 df jne 80101e50 <dirlink+0x30> strncpy(de.name, name, DIRSIZ); 80101e71: 8d 45 da lea -0x26(%ebp),%eax 80101e74: 83 ec 04 sub $0x4,%esp 80101e77: 6a 0e push $0xe 80101e79: ff 75 0c pushl 0xc(%ebp) 80101e7c: 50 push %eax 80101e7d: e8 8e 28 00 00 call 80104710 <strncpy> de.inum = inum; 80101e82: 8b 45 10 mov 0x10(%ebp),%eax if(writei(dp, (char*)&de, off, sizeof(de)) != sizeof(de)) 80101e85: 6a 10 push $0x10 80101e87: 57 push %edi 80101e88: 56 push %esi 80101e89: 53 push %ebx de.inum = inum; 80101e8a: 66 89 45 d8 mov %ax,-0x28(%ebp) if(writei(dp, (char*)&de, off, sizeof(de)) != sizeof(de)) 80101e8e: e8 cd fb ff ff call 80101a60 <writei> 80101e93: 83 c4 20 add $0x20,%esp 80101e96: 83 f8 10 cmp $0x10,%eax 80101e99: 75 2a jne 80101ec5 <dirlink+0xa5> return 0; 80101e9b: 31 c0 xor %eax,%eax } 80101e9d: 8d 65 f4 lea -0xc(%ebp),%esp 80101ea0: 5b pop %ebx 80101ea1: 5e pop %esi 80101ea2: 5f pop %edi 80101ea3: 5d pop %ebp 80101ea4: c3 ret iput(ip); 80101ea5: 83 ec 0c sub $0xc,%esp 80101ea8: 50 push %eax 80101ea9: e8 02 f9 ff ff call 801017b0 <iput> return -1; 80101eae: 83 c4 10 add $0x10,%esp 80101eb1: b8 ff ff ff ff mov $0xffffffff,%eax 80101eb6: eb e5 jmp 80101e9d <dirlink+0x7d> panic("dirlink read"); 80101eb8: 83 ec 0c sub $0xc,%esp 80101ebb: 68 a8 78 10 80 push $0x801078a8 80101ec0: e8 cb e4 ff ff call 80100390 <panic> panic("dirlink"); 80101ec5: 83 ec 0c sub $0xc,%esp 80101ec8: 68 0e 7f 10 80 push $0x80107f0e 80101ecd: e8 be e4 ff ff call 80100390 <panic> 80101ed2: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80101ed9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80101ee0 <namei>: struct inode* namei(char *path) { 80101ee0: 55 push %ebp char name[DIRSIZ]; return namex(path, 0, name); 80101ee1: 31 d2 xor %edx,%edx { 80101ee3: 89 e5 mov %esp,%ebp 80101ee5: 83 ec 18 sub $0x18,%esp return namex(path, 0, name); 80101ee8: 8b 45 08 mov 0x8(%ebp),%eax 80101eeb: 8d 4d ea lea -0x16(%ebp),%ecx 80101eee: e8 6d fd ff ff call 80101c60 <namex> } 80101ef3: c9 leave 80101ef4: c3 ret 80101ef5: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80101ef9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80101f00 <nameiparent>: struct inode* nameiparent(char *path, char *name) { 80101f00: 55 push %ebp return namex(path, 1, name); 80101f01: ba 01 00 00 00 mov $0x1,%edx { 80101f06: 89 e5 mov %esp,%ebp return namex(path, 1, name); 80101f08: 8b 4d 0c mov 0xc(%ebp),%ecx 80101f0b: 8b 45 08 mov 0x8(%ebp),%eax } 80101f0e: 5d pop %ebp return namex(path, 1, name); 80101f0f: e9 4c fd ff ff jmp 80101c60 <namex> 80101f14: 66 90 xchg %ax,%ax 80101f16: 66 90 xchg %ax,%ax 80101f18: 66 90 xchg %ax,%ax 80101f1a: 66 90 xchg %ax,%ax 80101f1c: 66 90 xchg %ax,%ax 80101f1e: 66 90 xchg %ax,%ax 80101f20 <idestart>: } // Start the request for b. Caller must hold idelock. static void idestart(struct buf *b) { 80101f20: 55 push %ebp 80101f21: 89 e5 mov %esp,%ebp 80101f23: 57 push %edi 80101f24: 56 push %esi 80101f25: 53 push %ebx 80101f26: 83 ec 0c sub $0xc,%esp if(b == 0) 80101f29: 85 c0 test %eax,%eax 80101f2b: 0f 84 b4 00 00 00 je 80101fe5 <idestart+0xc5> panic("idestart"); if(b->blockno >= FSSIZE) 80101f31: 8b 58 08 mov 0x8(%eax),%ebx 80101f34: 89 c6 mov %eax,%esi 80101f36: 81 fb e7 03 00 00 cmp $0x3e7,%ebx 80101f3c: 0f 87 96 00 00 00 ja 80101fd8 <idestart+0xb8> asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 80101f42: b9 f7 01 00 00 mov $0x1f7,%ecx 80101f47: 89 f6 mov %esi,%esi 80101f49: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80101f50: 89 ca mov %ecx,%edx 80101f52: ec in (%dx),%al while(((r = inb(0x1f7)) & (IDE_BSY|IDE_DRDY)) != IDE_DRDY) 80101f53: 83 e0 c0 and $0xffffffc0,%eax 80101f56: 3c 40 cmp $0x40,%al 80101f58: 75 f6 jne 80101f50 <idestart+0x30> asm volatile("out %0,%1" : : "a" (data), "d" (port)); 80101f5a: 31 ff xor %edi,%edi 80101f5c: ba f6 03 00 00 mov $0x3f6,%edx 80101f61: 89 f8 mov %edi,%eax 80101f63: ee out %al,(%dx) 80101f64: b8 01 00 00 00 mov $0x1,%eax 80101f69: ba f2 01 00 00 mov $0x1f2,%edx 80101f6e: ee out %al,(%dx) 80101f6f: ba f3 01 00 00 mov $0x1f3,%edx 80101f74: 89 d8 mov %ebx,%eax 80101f76: ee out %al,(%dx) idewait(0); outb(0x3f6, 0); // generate interrupt outb(0x1f2, sector_per_block); // number of sectors outb(0x1f3, sector & 0xff); outb(0x1f4, (sector >> 8) & 0xff); 80101f77: 89 d8 mov %ebx,%eax 80101f79: ba f4 01 00 00 mov $0x1f4,%edx 80101f7e: c1 f8 08 sar $0x8,%eax 80101f81: ee out %al,(%dx) 80101f82: ba f5 01 00 00 mov $0x1f5,%edx 80101f87: 89 f8 mov %edi,%eax 80101f89: ee out %al,(%dx) outb(0x1f5, (sector >> 16) & 0xff); outb(0x1f6, 0xe0 | ((b->dev&1)<<4) | ((sector>>24)&0x0f)); 80101f8a: 0f b6 46 04 movzbl 0x4(%esi),%eax 80101f8e: ba f6 01 00 00 mov $0x1f6,%edx 80101f93: c1 e0 04 shl $0x4,%eax 80101f96: 83 e0 10 and $0x10,%eax 80101f99: 83 c8 e0 or $0xffffffe0,%eax 80101f9c: ee out %al,(%dx) if(b->flags & B_DIRTY){ 80101f9d: f6 06 04 testb $0x4,(%esi) 80101fa0: 75 16 jne 80101fb8 <idestart+0x98> 80101fa2: b8 20 00 00 00 mov $0x20,%eax 80101fa7: 89 ca mov %ecx,%edx 80101fa9: ee out %al,(%dx) outb(0x1f7, write_cmd); outsl(0x1f0, b->data, BSIZE/4); } else { outb(0x1f7, read_cmd); } } 80101faa: 8d 65 f4 lea -0xc(%ebp),%esp 80101fad: 5b pop %ebx 80101fae: 5e pop %esi 80101faf: 5f pop %edi 80101fb0: 5d pop %ebp 80101fb1: c3 ret 80101fb2: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 80101fb8: b8 30 00 00 00 mov $0x30,%eax 80101fbd: 89 ca mov %ecx,%edx 80101fbf: ee out %al,(%dx) asm volatile("cld; rep outsl" : 80101fc0: b9 80 00 00 00 mov $0x80,%ecx outsl(0x1f0, b->data, BSIZE/4); 80101fc5: 83 c6 5c add $0x5c,%esi 80101fc8: ba f0 01 00 00 mov $0x1f0,%edx 80101fcd: fc cld 80101fce: f3 6f rep outsl %ds:(%esi),(%dx) } 80101fd0: 8d 65 f4 lea -0xc(%ebp),%esp 80101fd3: 5b pop %ebx 80101fd4: 5e pop %esi 80101fd5: 5f pop %edi 80101fd6: 5d pop %ebp 80101fd7: c3 ret panic("incorrect blockno"); 80101fd8: 83 ec 0c sub $0xc,%esp 80101fdb: 68 14 79 10 80 push $0x80107914 80101fe0: e8 ab e3 ff ff call 80100390 <panic> panic("idestart"); 80101fe5: 83 ec 0c sub $0xc,%esp 80101fe8: 68 0b 79 10 80 push $0x8010790b 80101fed: e8 9e e3 ff ff call 80100390 <panic> 80101ff2: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80101ff9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80102000 <ideinit>: { 80102000: 55 push %ebp 80102001: 89 e5 mov %esp,%ebp 80102003: 83 ec 10 sub $0x10,%esp initlock(&idelock, "ide"); 80102006: 68 26 79 10 80 push $0x80107926 8010200b: 68 80 b5 10 80 push $0x8010b580 80102010: e8 2b 23 00 00 call 80104340 <initlock> ioapicenable(IRQ_IDE, ncpu - 1); 80102015: 58 pop %eax 80102016: a1 e0 38 11 80 mov 0x801138e0,%eax 8010201b: 5a pop %edx 8010201c: 83 e8 01 sub $0x1,%eax 8010201f: 50 push %eax 80102020: 6a 0e push $0xe 80102022: e8 a9 02 00 00 call 801022d0 <ioapicenable> 80102027: 83 c4 10 add $0x10,%esp asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 8010202a: ba f7 01 00 00 mov $0x1f7,%edx 8010202f: 90 nop 80102030: ec in (%dx),%al while(((r = inb(0x1f7)) & (IDE_BSY|IDE_DRDY)) != IDE_DRDY) 80102031: 83 e0 c0 and $0xffffffc0,%eax 80102034: 3c 40 cmp $0x40,%al 80102036: 75 f8 jne 80102030 <ideinit+0x30> asm volatile("out %0,%1" : : "a" (data), "d" (port)); 80102038: b8 f0 ff ff ff mov $0xfffffff0,%eax 8010203d: ba f6 01 00 00 mov $0x1f6,%edx 80102042: ee out %al,(%dx) 80102043: b9 e8 03 00 00 mov $0x3e8,%ecx asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 80102048: ba f7 01 00 00 mov $0x1f7,%edx 8010204d: eb 06 jmp 80102055 <ideinit+0x55> 8010204f: 90 nop for(i=0; i<1000; i++){ 80102050: 83 e9 01 sub $0x1,%ecx 80102053: 74 0f je 80102064 <ideinit+0x64> 80102055: ec in (%dx),%al if(inb(0x1f7) != 0){ 80102056: 84 c0 test %al,%al 80102058: 74 f6 je 80102050 <ideinit+0x50> havedisk1 = 1; 8010205a: c7 05 60 b5 10 80 01 movl $0x1,0x8010b560 80102061: 00 00 00 asm volatile("out %0,%1" : : "a" (data), "d" (port)); 80102064: b8 e0 ff ff ff mov $0xffffffe0,%eax 80102069: ba f6 01 00 00 mov $0x1f6,%edx 8010206e: ee out %al,(%dx) } 8010206f: c9 leave 80102070: c3 ret 80102071: eb 0d jmp 80102080 <ideintr> 80102073: 90 nop 80102074: 90 nop 80102075: 90 nop 80102076: 90 nop 80102077: 90 nop 80102078: 90 nop 80102079: 90 nop 8010207a: 90 nop 8010207b: 90 nop 8010207c: 90 nop 8010207d: 90 nop 8010207e: 90 nop 8010207f: 90 nop 80102080 <ideintr>: // Interrupt handler. void ideintr(void) { 80102080: 55 push %ebp 80102081: 89 e5 mov %esp,%ebp 80102083: 57 push %edi 80102084: 56 push %esi 80102085: 53 push %ebx 80102086: 83 ec 18 sub $0x18,%esp struct buf *b; // First queued buffer is the active request. acquire(&idelock); 80102089: 68 80 b5 10 80 push $0x8010b580 8010208e: e8 ed 23 00 00 call 80104480 <acquire> if((b = idequeue) == 0){ 80102093: 8b 1d 64 b5 10 80 mov 0x8010b564,%ebx 80102099: 83 c4 10 add $0x10,%esp 8010209c: 85 db test %ebx,%ebx 8010209e: 74 67 je 80102107 <ideintr+0x87> release(&idelock); return; } idequeue = b->qnext; 801020a0: 8b 43 58 mov 0x58(%ebx),%eax 801020a3: a3 64 b5 10 80 mov %eax,0x8010b564 // Read data if needed. if(!(b->flags & B_DIRTY) && idewait(1) >= 0) 801020a8: 8b 3b mov (%ebx),%edi 801020aa: f7 c7 04 00 00 00 test $0x4,%edi 801020b0: 75 31 jne 801020e3 <ideintr+0x63> asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 801020b2: ba f7 01 00 00 mov $0x1f7,%edx 801020b7: 89 f6 mov %esi,%esi 801020b9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 801020c0: ec in (%dx),%al while(((r = inb(0x1f7)) & (IDE_BSY|IDE_DRDY)) != IDE_DRDY) 801020c1: 89 c6 mov %eax,%esi 801020c3: 83 e6 c0 and $0xffffffc0,%esi 801020c6: 89 f1 mov %esi,%ecx 801020c8: 80 f9 40 cmp $0x40,%cl 801020cb: 75 f3 jne 801020c0 <ideintr+0x40> if(checkerr && (r & (IDE_DF|IDE_ERR)) != 0) 801020cd: a8 21 test $0x21,%al 801020cf: 75 12 jne 801020e3 <ideintr+0x63> insl(0x1f0, b->data, BSIZE/4); 801020d1: 8d 7b 5c lea 0x5c(%ebx),%edi asm volatile("cld; rep insl" : 801020d4: b9 80 00 00 00 mov $0x80,%ecx 801020d9: ba f0 01 00 00 mov $0x1f0,%edx 801020de: fc cld 801020df: f3 6d rep insl (%dx),%es:(%edi) 801020e1: 8b 3b mov (%ebx),%edi // Wake process waiting for this buf. b->flags |= B_VALID; b->flags &= ~B_DIRTY; 801020e3: 83 e7 fb and $0xfffffffb,%edi wakeup(b); 801020e6: 83 ec 0c sub $0xc,%esp b->flags &= ~B_DIRTY; 801020e9: 89 f9 mov %edi,%ecx 801020eb: 83 c9 02 or $0x2,%ecx 801020ee: 89 0b mov %ecx,(%ebx) wakeup(b); 801020f0: 53 push %ebx 801020f1: e8 5a 1e 00 00 call 80103f50 <wakeup> // Start disk on next buf in queue. if(idequeue != 0) 801020f6: a1 64 b5 10 80 mov 0x8010b564,%eax 801020fb: 83 c4 10 add $0x10,%esp 801020fe: 85 c0 test %eax,%eax 80102100: 74 05 je 80102107 <ideintr+0x87> idestart(idequeue); 80102102: e8 19 fe ff ff call 80101f20 <idestart> release(&idelock); 80102107: 83 ec 0c sub $0xc,%esp 8010210a: 68 80 b5 10 80 push $0x8010b580 8010210f: e8 2c 24 00 00 call 80104540 <release> release(&idelock); } 80102114: 8d 65 f4 lea -0xc(%ebp),%esp 80102117: 5b pop %ebx 80102118: 5e pop %esi 80102119: 5f pop %edi 8010211a: 5d pop %ebp 8010211b: c3 ret 8010211c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80102120 <iderw>: // Sync buf with disk. // If B_DIRTY is set, write buf to disk, clear B_DIRTY, set B_VALID. // Else if B_VALID is not set, read buf from disk, set B_VALID. void iderw(struct buf *b) { 80102120: 55 push %ebp 80102121: 89 e5 mov %esp,%ebp 80102123: 53 push %ebx 80102124: 83 ec 10 sub $0x10,%esp 80102127: 8b 5d 08 mov 0x8(%ebp),%ebx struct buf **pp; if(!holdingsleep(&b->lock)) 8010212a: 8d 43 0c lea 0xc(%ebx),%eax 8010212d: 50 push %eax 8010212e: e8 bd 21 00 00 call 801042f0 <holdingsleep> 80102133: 83 c4 10 add $0x10,%esp 80102136: 85 c0 test %eax,%eax 80102138: 0f 84 c6 00 00 00 je 80102204 <iderw+0xe4> panic("iderw: buf not locked"); if((b->flags & (B_VALID|B_DIRTY)) == B_VALID) 8010213e: 8b 03 mov (%ebx),%eax 80102140: 83 e0 06 and $0x6,%eax 80102143: 83 f8 02 cmp $0x2,%eax 80102146: 0f 84 ab 00 00 00 je 801021f7 <iderw+0xd7> panic("iderw: nothing to do"); if(b->dev != 0 && !havedisk1) 8010214c: 8b 53 04 mov 0x4(%ebx),%edx 8010214f: 85 d2 test %edx,%edx 80102151: 74 0d je 80102160 <iderw+0x40> 80102153: a1 60 b5 10 80 mov 0x8010b560,%eax 80102158: 85 c0 test %eax,%eax 8010215a: 0f 84 b1 00 00 00 je 80102211 <iderw+0xf1> panic("iderw: ide disk 1 not present"); acquire(&idelock); //DOC:acquire-lock 80102160: 83 ec 0c sub $0xc,%esp 80102163: 68 80 b5 10 80 push $0x8010b580 80102168: e8 13 23 00 00 call 80104480 <acquire> // Append b to idequeue. b->qnext = 0; for(pp=&idequeue; *pp; pp=&(*pp)->qnext) //DOC:insert-queue 8010216d: 8b 15 64 b5 10 80 mov 0x8010b564,%edx 80102173: 83 c4 10 add $0x10,%esp b->qnext = 0; 80102176: c7 43 58 00 00 00 00 movl $0x0,0x58(%ebx) for(pp=&idequeue; *pp; pp=&(*pp)->qnext) //DOC:insert-queue 8010217d: 85 d2 test %edx,%edx 8010217f: 75 09 jne 8010218a <iderw+0x6a> 80102181: eb 6d jmp 801021f0 <iderw+0xd0> 80102183: 90 nop 80102184: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80102188: 89 c2 mov %eax,%edx 8010218a: 8b 42 58 mov 0x58(%edx),%eax 8010218d: 85 c0 test %eax,%eax 8010218f: 75 f7 jne 80102188 <iderw+0x68> 80102191: 83 c2 58 add $0x58,%edx ; *pp = b; 80102194: 89 1a mov %ebx,(%edx) // Start disk if necessary. if(idequeue == b) 80102196: 39 1d 64 b5 10 80 cmp %ebx,0x8010b564 8010219c: 74 42 je 801021e0 <iderw+0xc0> idestart(b); // Wait for request to finish. while((b->flags & (B_VALID|B_DIRTY)) != B_VALID){ 8010219e: 8b 03 mov (%ebx),%eax 801021a0: 83 e0 06 and $0x6,%eax 801021a3: 83 f8 02 cmp $0x2,%eax 801021a6: 74 23 je 801021cb <iderw+0xab> 801021a8: 90 nop 801021a9: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi sleep(b, &idelock); 801021b0: 83 ec 08 sub $0x8,%esp 801021b3: 68 80 b5 10 80 push $0x8010b580 801021b8: 53 push %ebx 801021b9: e8 e2 1b 00 00 call 80103da0 <sleep> while((b->flags & (B_VALID|B_DIRTY)) != B_VALID){ 801021be: 8b 03 mov (%ebx),%eax 801021c0: 83 c4 10 add $0x10,%esp 801021c3: 83 e0 06 and $0x6,%eax 801021c6: 83 f8 02 cmp $0x2,%eax 801021c9: 75 e5 jne 801021b0 <iderw+0x90> } release(&idelock); 801021cb: c7 45 08 80 b5 10 80 movl $0x8010b580,0x8(%ebp) } 801021d2: 8b 5d fc mov -0x4(%ebp),%ebx 801021d5: c9 leave release(&idelock); 801021d6: e9 65 23 00 00 jmp 80104540 <release> 801021db: 90 nop 801021dc: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi idestart(b); 801021e0: 89 d8 mov %ebx,%eax 801021e2: e8 39 fd ff ff call 80101f20 <idestart> 801021e7: eb b5 jmp 8010219e <iderw+0x7e> 801021e9: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi for(pp=&idequeue; *pp; pp=&(*pp)->qnext) //DOC:insert-queue 801021f0: ba 64 b5 10 80 mov $0x8010b564,%edx 801021f5: eb 9d jmp 80102194 <iderw+0x74> panic("iderw: nothing to do"); 801021f7: 83 ec 0c sub $0xc,%esp 801021fa: 68 40 79 10 80 push $0x80107940 801021ff: e8 8c e1 ff ff call 80100390 <panic> panic("iderw: buf not locked"); 80102204: 83 ec 0c sub $0xc,%esp 80102207: 68 2a 79 10 80 push $0x8010792a 8010220c: e8 7f e1 ff ff call 80100390 <panic> panic("iderw: ide disk 1 not present"); 80102211: 83 ec 0c sub $0xc,%esp 80102214: 68 55 79 10 80 push $0x80107955 80102219: e8 72 e1 ff ff call 80100390 <panic> 8010221e: 66 90 xchg %ax,%ax 80102220 <ioapicinit>: ioapic->data = data; } void ioapicinit(void) { 80102220: 55 push %ebp int i, id, maxintr; ioapic = (volatile struct ioapic*)IOAPIC; 80102221: c7 05 34 36 11 80 00 movl $0xfec00000,0x80113634 80102228: 00 c0 fe { 8010222b: 89 e5 mov %esp,%ebp 8010222d: 56 push %esi 8010222e: 53 push %ebx ioapic->reg = reg; 8010222f: c7 05 00 00 c0 fe 01 movl $0x1,0xfec00000 80102236: 00 00 00 return ioapic->data; 80102239: a1 34 36 11 80 mov 0x80113634,%eax 8010223e: 8b 58 10 mov 0x10(%eax),%ebx ioapic->reg = reg; 80102241: c7 00 00 00 00 00 movl $0x0,(%eax) return ioapic->data; 80102247: 8b 0d 34 36 11 80 mov 0x80113634,%ecx maxintr = (ioapicread(REG_VER) >> 16) & 0xFF; id = ioapicread(REG_ID) >> 24; if(id != ioapicid) 8010224d: 0f b6 15 60 37 11 80 movzbl 0x80113760,%edx maxintr = (ioapicread(REG_VER) >> 16) & 0xFF; 80102254: c1 eb 10 shr $0x10,%ebx return ioapic->data; 80102257: 8b 41 10 mov 0x10(%ecx),%eax maxintr = (ioapicread(REG_VER) >> 16) & 0xFF; 8010225a: 0f b6 db movzbl %bl,%ebx id = ioapicread(REG_ID) >> 24; 8010225d: c1 e8 18 shr $0x18,%eax if(id != ioapicid) 80102260: 39 c2 cmp %eax,%edx 80102262: 74 16 je 8010227a <ioapicinit+0x5a> cprintf("ioapicinit: id isn't equal to ioapicid; not a MP\n"); 80102264: 83 ec 0c sub $0xc,%esp 80102267: 68 74 79 10 80 push $0x80107974 8010226c: e8 ef e3 ff ff call 80100660 <cprintf> 80102271: 8b 0d 34 36 11 80 mov 0x80113634,%ecx 80102277: 83 c4 10 add $0x10,%esp 8010227a: 83 c3 21 add $0x21,%ebx { 8010227d: ba 10 00 00 00 mov $0x10,%edx 80102282: b8 20 00 00 00 mov $0x20,%eax 80102287: 89 f6 mov %esi,%esi 80102289: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi ioapic->reg = reg; 80102290: 89 11 mov %edx,(%ecx) ioapic->data = data; 80102292: 8b 0d 34 36 11 80 mov 0x80113634,%ecx // Mark all interrupts edge-triggered, active high, disabled, // and not routed to any CPUs. for(i = 0; i <= maxintr; i++){ ioapicwrite(REG_TABLE+2*i, INT_DISABLED | (T_IRQ0 + i)); 80102298: 89 c6 mov %eax,%esi 8010229a: 81 ce 00 00 01 00 or $0x10000,%esi 801022a0: 83 c0 01 add $0x1,%eax ioapic->data = data; 801022a3: 89 71 10 mov %esi,0x10(%ecx) 801022a6: 8d 72 01 lea 0x1(%edx),%esi 801022a9: 83 c2 02 add $0x2,%edx for(i = 0; i <= maxintr; i++){ 801022ac: 39 d8 cmp %ebx,%eax ioapic->reg = reg; 801022ae: 89 31 mov %esi,(%ecx) ioapic->data = data; 801022b0: 8b 0d 34 36 11 80 mov 0x80113634,%ecx 801022b6: c7 41 10 00 00 00 00 movl $0x0,0x10(%ecx) for(i = 0; i <= maxintr; i++){ 801022bd: 75 d1 jne 80102290 <ioapicinit+0x70> ioapicwrite(REG_TABLE+2*i+1, 0); } } 801022bf: 8d 65 f8 lea -0x8(%ebp),%esp 801022c2: 5b pop %ebx 801022c3: 5e pop %esi 801022c4: 5d pop %ebp 801022c5: c3 ret 801022c6: 8d 76 00 lea 0x0(%esi),%esi 801022c9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 801022d0 <ioapicenable>: void ioapicenable(int irq, int cpunum) { 801022d0: 55 push %ebp ioapic->reg = reg; 801022d1: 8b 0d 34 36 11 80 mov 0x80113634,%ecx { 801022d7: 89 e5 mov %esp,%ebp 801022d9: 8b 45 08 mov 0x8(%ebp),%eax // Mark interrupt edge-triggered, active high, // enabled, and routed to the given cpunum, // which happens to be that cpu's APIC ID. ioapicwrite(REG_TABLE+2*irq, T_IRQ0 + irq); 801022dc: 8d 50 20 lea 0x20(%eax),%edx 801022df: 8d 44 00 10 lea 0x10(%eax,%eax,1),%eax ioapic->reg = reg; 801022e3: 89 01 mov %eax,(%ecx) ioapic->data = data; 801022e5: 8b 0d 34 36 11 80 mov 0x80113634,%ecx ioapicwrite(REG_TABLE+2*irq+1, cpunum << 24); 801022eb: 83 c0 01 add $0x1,%eax ioapic->data = data; 801022ee: 89 51 10 mov %edx,0x10(%ecx) ioapicwrite(REG_TABLE+2*irq+1, cpunum << 24); 801022f1: 8b 55 0c mov 0xc(%ebp),%edx ioapic->reg = reg; 801022f4: 89 01 mov %eax,(%ecx) ioapic->data = data; 801022f6: a1 34 36 11 80 mov 0x80113634,%eax ioapicwrite(REG_TABLE+2*irq+1, cpunum << 24); 801022fb: c1 e2 18 shl $0x18,%edx ioapic->data = data; 801022fe: 89 50 10 mov %edx,0x10(%eax) } 80102301: 5d pop %ebp 80102302: c3 ret 80102303: 66 90 xchg %ax,%ax 80102305: 66 90 xchg %ax,%ax 80102307: 66 90 xchg %ax,%ax 80102309: 66 90 xchg %ax,%ax 8010230b: 66 90 xchg %ax,%ax 8010230d: 66 90 xchg %ax,%ax 8010230f: 90 nop 80102310 <kfree>: // which normally should have been returned by a // call to kalloc(). (The exception is when // initializing the allocator; see kinit above.) void kfree(char *v) { 80102310: 55 push %ebp 80102311: 89 e5 mov %esp,%ebp 80102313: 53 push %ebx 80102314: 83 ec 04 sub $0x4,%esp 80102317: 8b 5d 08 mov 0x8(%ebp),%ebx struct run *r; if((uint)v % PGSIZE || v < end || V2P(v) >= PHYSTOP) 8010231a: f7 c3 ff 0f 00 00 test $0xfff,%ebx 80102320: 75 70 jne 80102392 <kfree+0x82> 80102322: 81 fb 88 61 11 80 cmp $0x80116188,%ebx 80102328: 72 68 jb 80102392 <kfree+0x82> 8010232a: 8d 83 00 00 00 80 lea -0x80000000(%ebx),%eax 80102330: 3d ff ff ff 0d cmp $0xdffffff,%eax 80102335: 77 5b ja 80102392 <kfree+0x82> panic("kfree"); // Fill with junk to catch dangling refs. memset(v, 1, PGSIZE); 80102337: 83 ec 04 sub $0x4,%esp 8010233a: 68 00 10 00 00 push $0x1000 8010233f: 6a 01 push $0x1 80102341: 53 push %ebx 80102342: e8 49 22 00 00 call 80104590 <memset> if(kmem.use_lock) 80102347: 8b 15 74 36 11 80 mov 0x80113674,%edx 8010234d: 83 c4 10 add $0x10,%esp 80102350: 85 d2 test %edx,%edx 80102352: 75 2c jne 80102380 <kfree+0x70> acquire(&kmem.lock); r = (struct run*)v; r->next = kmem.freelist; 80102354: a1 78 36 11 80 mov 0x80113678,%eax 80102359: 89 03 mov %eax,(%ebx) kmem.freelist = r; if(kmem.use_lock) 8010235b: a1 74 36 11 80 mov 0x80113674,%eax kmem.freelist = r; 80102360: 89 1d 78 36 11 80 mov %ebx,0x80113678 if(kmem.use_lock) 80102366: 85 c0 test %eax,%eax 80102368: 75 06 jne 80102370 <kfree+0x60> release(&kmem.lock); } 8010236a: 8b 5d fc mov -0x4(%ebp),%ebx 8010236d: c9 leave 8010236e: c3 ret 8010236f: 90 nop release(&kmem.lock); 80102370: c7 45 08 40 36 11 80 movl $0x80113640,0x8(%ebp) } 80102377: 8b 5d fc mov -0x4(%ebp),%ebx 8010237a: c9 leave release(&kmem.lock); 8010237b: e9 c0 21 00 00 jmp 80104540 <release> acquire(&kmem.lock); 80102380: 83 ec 0c sub $0xc,%esp 80102383: 68 40 36 11 80 push $0x80113640 80102388: e8 f3 20 00 00 call 80104480 <acquire> 8010238d: 83 c4 10 add $0x10,%esp 80102390: eb c2 jmp 80102354 <kfree+0x44> panic("kfree"); 80102392: 83 ec 0c sub $0xc,%esp 80102395: 68 a6 79 10 80 push $0x801079a6 8010239a: e8 f1 df ff ff call 80100390 <panic> 8010239f: 90 nop 801023a0 <freerange>: { 801023a0: 55 push %ebp 801023a1: 89 e5 mov %esp,%ebp 801023a3: 56 push %esi 801023a4: 53 push %ebx p = (char*)PGROUNDUP((uint)vstart); 801023a5: 8b 45 08 mov 0x8(%ebp),%eax { 801023a8: 8b 75 0c mov 0xc(%ebp),%esi p = (char*)PGROUNDUP((uint)vstart); 801023ab: 8d 98 ff 0f 00 00 lea 0xfff(%eax),%ebx 801023b1: 81 e3 00 f0 ff ff and $0xfffff000,%ebx for(; p + PGSIZE <= (char*)vend; p += PGSIZE) 801023b7: 81 c3 00 10 00 00 add $0x1000,%ebx 801023bd: 39 de cmp %ebx,%esi 801023bf: 72 23 jb 801023e4 <freerange+0x44> 801023c1: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi kfree(p); 801023c8: 8d 83 00 f0 ff ff lea -0x1000(%ebx),%eax 801023ce: 83 ec 0c sub $0xc,%esp for(; p + PGSIZE <= (char*)vend; p += PGSIZE) 801023d1: 81 c3 00 10 00 00 add $0x1000,%ebx kfree(p); 801023d7: 50 push %eax 801023d8: e8 33 ff ff ff call 80102310 <kfree> for(; p + PGSIZE <= (char*)vend; p += PGSIZE) 801023dd: 83 c4 10 add $0x10,%esp 801023e0: 39 f3 cmp %esi,%ebx 801023e2: 76 e4 jbe 801023c8 <freerange+0x28> } 801023e4: 8d 65 f8 lea -0x8(%ebp),%esp 801023e7: 5b pop %ebx 801023e8: 5e pop %esi 801023e9: 5d pop %ebp 801023ea: c3 ret 801023eb: 90 nop 801023ec: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 801023f0 <kinit1>: { 801023f0: 55 push %ebp 801023f1: 89 e5 mov %esp,%ebp 801023f3: 56 push %esi 801023f4: 53 push %ebx 801023f5: 8b 75 0c mov 0xc(%ebp),%esi initlock(&kmem.lock, "kmem"); 801023f8: 83 ec 08 sub $0x8,%esp 801023fb: 68 ac 79 10 80 push $0x801079ac 80102400: 68 40 36 11 80 push $0x80113640 80102405: e8 36 1f 00 00 call 80104340 <initlock> p = (char*)PGROUNDUP((uint)vstart); 8010240a: 8b 45 08 mov 0x8(%ebp),%eax for(; p + PGSIZE <= (char*)vend; p += PGSIZE) 8010240d: 83 c4 10 add $0x10,%esp kmem.use_lock = 0; 80102410: c7 05 74 36 11 80 00 movl $0x0,0x80113674 80102417: 00 00 00 p = (char*)PGROUNDUP((uint)vstart); 8010241a: 8d 98 ff 0f 00 00 lea 0xfff(%eax),%ebx 80102420: 81 e3 00 f0 ff ff and $0xfffff000,%ebx for(; p + PGSIZE <= (char*)vend; p += PGSIZE) 80102426: 81 c3 00 10 00 00 add $0x1000,%ebx 8010242c: 39 de cmp %ebx,%esi 8010242e: 72 1c jb 8010244c <kinit1+0x5c> kfree(p); 80102430: 8d 83 00 f0 ff ff lea -0x1000(%ebx),%eax 80102436: 83 ec 0c sub $0xc,%esp for(; p + PGSIZE <= (char*)vend; p += PGSIZE) 80102439: 81 c3 00 10 00 00 add $0x1000,%ebx kfree(p); 8010243f: 50 push %eax 80102440: e8 cb fe ff ff call 80102310 <kfree> for(; p + PGSIZE <= (char*)vend; p += PGSIZE) 80102445: 83 c4 10 add $0x10,%esp 80102448: 39 de cmp %ebx,%esi 8010244a: 73 e4 jae 80102430 <kinit1+0x40> } 8010244c: 8d 65 f8 lea -0x8(%ebp),%esp 8010244f: 5b pop %ebx 80102450: 5e pop %esi 80102451: 5d pop %ebp 80102452: c3 ret 80102453: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 80102459: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80102460 <kinit2>: { 80102460: 55 push %ebp 80102461: 89 e5 mov %esp,%ebp 80102463: 56 push %esi 80102464: 53 push %ebx p = (char*)PGROUNDUP((uint)vstart); 80102465: 8b 45 08 mov 0x8(%ebp),%eax { 80102468: 8b 75 0c mov 0xc(%ebp),%esi p = (char*)PGROUNDUP((uint)vstart); 8010246b: 8d 98 ff 0f 00 00 lea 0xfff(%eax),%ebx 80102471: 81 e3 00 f0 ff ff and $0xfffff000,%ebx for(; p + PGSIZE <= (char*)vend; p += PGSIZE) 80102477: 81 c3 00 10 00 00 add $0x1000,%ebx 8010247d: 39 de cmp %ebx,%esi 8010247f: 72 23 jb 801024a4 <kinit2+0x44> 80102481: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi kfree(p); 80102488: 8d 83 00 f0 ff ff lea -0x1000(%ebx),%eax 8010248e: 83 ec 0c sub $0xc,%esp for(; p + PGSIZE <= (char*)vend; p += PGSIZE) 80102491: 81 c3 00 10 00 00 add $0x1000,%ebx kfree(p); 80102497: 50 push %eax 80102498: e8 73 fe ff ff call 80102310 <kfree> for(; p + PGSIZE <= (char*)vend; p += PGSIZE) 8010249d: 83 c4 10 add $0x10,%esp 801024a0: 39 de cmp %ebx,%esi 801024a2: 73 e4 jae 80102488 <kinit2+0x28> kmem.use_lock = 1; 801024a4: c7 05 74 36 11 80 01 movl $0x1,0x80113674 801024ab: 00 00 00 } 801024ae: 8d 65 f8 lea -0x8(%ebp),%esp 801024b1: 5b pop %ebx 801024b2: 5e pop %esi 801024b3: 5d pop %ebp 801024b4: c3 ret 801024b5: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 801024b9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 801024c0 <kalloc>: char* kalloc(void) { struct run *r; if(kmem.use_lock) 801024c0: a1 74 36 11 80 mov 0x80113674,%eax 801024c5: 85 c0 test %eax,%eax 801024c7: 75 1f jne 801024e8 <kalloc+0x28> acquire(&kmem.lock); r = kmem.freelist; 801024c9: a1 78 36 11 80 mov 0x80113678,%eax if(r) 801024ce: 85 c0 test %eax,%eax 801024d0: 74 0e je 801024e0 <kalloc+0x20> kmem.freelist = r->next; 801024d2: 8b 10 mov (%eax),%edx 801024d4: 89 15 78 36 11 80 mov %edx,0x80113678 801024da: c3 ret 801024db: 90 nop 801024dc: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi if(kmem.use_lock) release(&kmem.lock); return (char*)r; } 801024e0: f3 c3 repz ret 801024e2: 8d b6 00 00 00 00 lea 0x0(%esi),%esi { 801024e8: 55 push %ebp 801024e9: 89 e5 mov %esp,%ebp 801024eb: 83 ec 24 sub $0x24,%esp acquire(&kmem.lock); 801024ee: 68 40 36 11 80 push $0x80113640 801024f3: e8 88 1f 00 00 call 80104480 <acquire> r = kmem.freelist; 801024f8: a1 78 36 11 80 mov 0x80113678,%eax if(r) 801024fd: 83 c4 10 add $0x10,%esp 80102500: 8b 15 74 36 11 80 mov 0x80113674,%edx 80102506: 85 c0 test %eax,%eax 80102508: 74 08 je 80102512 <kalloc+0x52> kmem.freelist = r->next; 8010250a: 8b 08 mov (%eax),%ecx 8010250c: 89 0d 78 36 11 80 mov %ecx,0x80113678 if(kmem.use_lock) 80102512: 85 d2 test %edx,%edx 80102514: 74 16 je 8010252c <kalloc+0x6c> release(&kmem.lock); 80102516: 83 ec 0c sub $0xc,%esp 80102519: 89 45 f4 mov %eax,-0xc(%ebp) 8010251c: 68 40 36 11 80 push $0x80113640 80102521: e8 1a 20 00 00 call 80104540 <release> return (char*)r; 80102526: 8b 45 f4 mov -0xc(%ebp),%eax release(&kmem.lock); 80102529: 83 c4 10 add $0x10,%esp } 8010252c: c9 leave 8010252d: c3 ret 8010252e: 66 90 xchg %ax,%ax 80102530 <kbdgetc>: asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 80102530: ba 64 00 00 00 mov $0x64,%edx 80102535: ec in (%dx),%al normalmap, shiftmap, ctlmap, ctlmap }; uint st, data, c; st = inb(KBSTATP); if((st & KBS_DIB) == 0) 80102536: a8 01 test $0x1,%al 80102538: 0f 84 c2 00 00 00 je 80102600 <kbdgetc+0xd0> 8010253e: ba 60 00 00 00 mov $0x60,%edx 80102543: ec in (%dx),%al return -1; data = inb(KBDATAP); 80102544: 0f b6 d0 movzbl %al,%edx 80102547: 8b 0d b4 b5 10 80 mov 0x8010b5b4,%ecx if(data == 0xE0){ 8010254d: 81 fa e0 00 00 00 cmp $0xe0,%edx 80102553: 0f 84 7f 00 00 00 je 801025d8 <kbdgetc+0xa8> { 80102559: 55 push %ebp 8010255a: 89 e5 mov %esp,%ebp 8010255c: 53 push %ebx 8010255d: 89 cb mov %ecx,%ebx 8010255f: 83 e3 40 and $0x40,%ebx shift |= E0ESC; return 0; } else if(data & 0x80){ 80102562: 84 c0 test %al,%al 80102564: 78 4a js 801025b0 <kbdgetc+0x80> // Key released data = (shift & E0ESC ? data : data & 0x7F); shift &= ~(shiftcode[data] | E0ESC); return 0; } else if(shift & E0ESC){ 80102566: 85 db test %ebx,%ebx 80102568: 74 09 je 80102573 <kbdgetc+0x43> // Last character was an E0 escape; or with 0x80 data |= 0x80; 8010256a: 83 c8 80 or $0xffffff80,%eax shift &= ~E0ESC; 8010256d: 83 e1 bf and $0xffffffbf,%ecx data |= 0x80; 80102570: 0f b6 d0 movzbl %al,%edx } shift |= shiftcode[data]; 80102573: 0f b6 82 e0 7a 10 80 movzbl -0x7fef8520(%edx),%eax 8010257a: 09 c1 or %eax,%ecx shift ^= togglecode[data]; 8010257c: 0f b6 82 e0 79 10 80 movzbl -0x7fef8620(%edx),%eax 80102583: 31 c1 xor %eax,%ecx c = charcode[shift & (CTL | SHIFT)][data]; 80102585: 89 c8 mov %ecx,%eax shift ^= togglecode[data]; 80102587: 89 0d b4 b5 10 80 mov %ecx,0x8010b5b4 c = charcode[shift & (CTL | SHIFT)][data]; 8010258d: 83 e0 03 and $0x3,%eax if(shift & CAPSLOCK){ 80102590: 83 e1 08 and $0x8,%ecx c = charcode[shift & (CTL | SHIFT)][data]; 80102593: 8b 04 85 c0 79 10 80 mov -0x7fef8640(,%eax,4),%eax 8010259a: 0f b6 04 10 movzbl (%eax,%edx,1),%eax if(shift & CAPSLOCK){ 8010259e: 74 31 je 801025d1 <kbdgetc+0xa1> if('a' <= c && c <= 'z') 801025a0: 8d 50 9f lea -0x61(%eax),%edx 801025a3: 83 fa 19 cmp $0x19,%edx 801025a6: 77 40 ja 801025e8 <kbdgetc+0xb8> c += 'A' - 'a'; 801025a8: 83 e8 20 sub $0x20,%eax else if('A' <= c && c <= 'Z') c += 'a' - 'A'; } return c; } 801025ab: 5b pop %ebx 801025ac: 5d pop %ebp 801025ad: c3 ret 801025ae: 66 90 xchg %ax,%ax data = (shift & E0ESC ? data : data & 0x7F); 801025b0: 83 e0 7f and $0x7f,%eax 801025b3: 85 db test %ebx,%ebx 801025b5: 0f 44 d0 cmove %eax,%edx shift &= ~(shiftcode[data] | E0ESC); 801025b8: 0f b6 82 e0 7a 10 80 movzbl -0x7fef8520(%edx),%eax 801025bf: 83 c8 40 or $0x40,%eax 801025c2: 0f b6 c0 movzbl %al,%eax 801025c5: f7 d0 not %eax 801025c7: 21 c1 and %eax,%ecx return 0; 801025c9: 31 c0 xor %eax,%eax shift &= ~(shiftcode[data] | E0ESC); 801025cb: 89 0d b4 b5 10 80 mov %ecx,0x8010b5b4 } 801025d1: 5b pop %ebx 801025d2: 5d pop %ebp 801025d3: c3 ret 801025d4: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi shift |= E0ESC; 801025d8: 83 c9 40 or $0x40,%ecx return 0; 801025db: 31 c0 xor %eax,%eax shift |= E0ESC; 801025dd: 89 0d b4 b5 10 80 mov %ecx,0x8010b5b4 return 0; 801025e3: c3 ret 801025e4: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi else if('A' <= c && c <= 'Z') 801025e8: 8d 48 bf lea -0x41(%eax),%ecx c += 'a' - 'A'; 801025eb: 8d 50 20 lea 0x20(%eax),%edx } 801025ee: 5b pop %ebx c += 'a' - 'A'; 801025ef: 83 f9 1a cmp $0x1a,%ecx 801025f2: 0f 42 c2 cmovb %edx,%eax } 801025f5: 5d pop %ebp 801025f6: c3 ret 801025f7: 89 f6 mov %esi,%esi 801025f9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi return -1; 80102600: b8 ff ff ff ff mov $0xffffffff,%eax } 80102605: c3 ret 80102606: 8d 76 00 lea 0x0(%esi),%esi 80102609: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80102610 <kbdintr>: void kbdintr(void) { 80102610: 55 push %ebp 80102611: 89 e5 mov %esp,%ebp 80102613: 83 ec 14 sub $0x14,%esp consoleintr(kbdgetc); 80102616: 68 30 25 10 80 push $0x80102530 8010261b: e8 f0 e1 ff ff call 80100810 <consoleintr> } 80102620: 83 c4 10 add $0x10,%esp 80102623: c9 leave 80102624: c3 ret 80102625: 66 90 xchg %ax,%ax 80102627: 66 90 xchg %ax,%ax 80102629: 66 90 xchg %ax,%ax 8010262b: 66 90 xchg %ax,%ax 8010262d: 66 90 xchg %ax,%ax 8010262f: 90 nop 80102630 <lapicinit>: } void lapicinit(void) { if(!lapic) 80102630: a1 7c 36 11 80 mov 0x8011367c,%eax { 80102635: 55 push %ebp 80102636: 89 e5 mov %esp,%ebp if(!lapic) 80102638: 85 c0 test %eax,%eax 8010263a: 0f 84 c8 00 00 00 je 80102708 <lapicinit+0xd8> lapic[index] = value; 80102640: c7 80 f0 00 00 00 3f movl $0x13f,0xf0(%eax) 80102647: 01 00 00 lapic[ID]; // wait for write to finish, by reading 8010264a: 8b 50 20 mov 0x20(%eax),%edx lapic[index] = value; 8010264d: c7 80 e0 03 00 00 0b movl $0xb,0x3e0(%eax) 80102654: 00 00 00 lapic[ID]; // wait for write to finish, by reading 80102657: 8b 50 20 mov 0x20(%eax),%edx lapic[index] = value; 8010265a: c7 80 20 03 00 00 20 movl $0x20020,0x320(%eax) 80102661: 00 02 00 lapic[ID]; // wait for write to finish, by reading 80102664: 8b 50 20 mov 0x20(%eax),%edx lapic[index] = value; 80102667: c7 80 80 03 00 00 80 movl $0x989680,0x380(%eax) 8010266e: 96 98 00 lapic[ID]; // wait for write to finish, by reading 80102671: 8b 50 20 mov 0x20(%eax),%edx lapic[index] = value; 80102674: c7 80 50 03 00 00 00 movl $0x10000,0x350(%eax) 8010267b: 00 01 00 lapic[ID]; // wait for write to finish, by reading 8010267e: 8b 50 20 mov 0x20(%eax),%edx lapic[index] = value; 80102681: c7 80 60 03 00 00 00 movl $0x10000,0x360(%eax) 80102688: 00 01 00 lapic[ID]; // wait for write to finish, by reading 8010268b: 8b 50 20 mov 0x20(%eax),%edx lapicw(LINT0, MASKED); lapicw(LINT1, MASKED); // Disable performance counter overflow interrupts // on machines that provide that interrupt entry. if(((lapic[VER]>>16) & 0xFF) >= 4) 8010268e: 8b 50 30 mov 0x30(%eax),%edx 80102691: c1 ea 10 shr $0x10,%edx 80102694: 80 fa 03 cmp $0x3,%dl 80102697: 77 77 ja 80102710 <lapicinit+0xe0> lapic[index] = value; 80102699: c7 80 70 03 00 00 33 movl $0x33,0x370(%eax) 801026a0: 00 00 00 lapic[ID]; // wait for write to finish, by reading 801026a3: 8b 50 20 mov 0x20(%eax),%edx lapic[index] = value; 801026a6: c7 80 80 02 00 00 00 movl $0x0,0x280(%eax) 801026ad: 00 00 00 lapic[ID]; // wait for write to finish, by reading 801026b0: 8b 50 20 mov 0x20(%eax),%edx lapic[index] = value; 801026b3: c7 80 80 02 00 00 00 movl $0x0,0x280(%eax) 801026ba: 00 00 00 lapic[ID]; // wait for write to finish, by reading 801026bd: 8b 50 20 mov 0x20(%eax),%edx lapic[index] = value; 801026c0: c7 80 b0 00 00 00 00 movl $0x0,0xb0(%eax) 801026c7: 00 00 00 lapic[ID]; // wait for write to finish, by reading 801026ca: 8b 50 20 mov 0x20(%eax),%edx lapic[index] = value; 801026cd: c7 80 10 03 00 00 00 movl $0x0,0x310(%eax) 801026d4: 00 00 00 lapic[ID]; // wait for write to finish, by reading 801026d7: 8b 50 20 mov 0x20(%eax),%edx lapic[index] = value; 801026da: c7 80 00 03 00 00 00 movl $0x88500,0x300(%eax) 801026e1: 85 08 00 lapic[ID]; // wait for write to finish, by reading 801026e4: 8b 50 20 mov 0x20(%eax),%edx 801026e7: 89 f6 mov %esi,%esi 801026e9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi lapicw(EOI, 0); // Send an Init Level De-Assert to synchronise arbitration ID's. lapicw(ICRHI, 0); lapicw(ICRLO, BCAST | INIT | LEVEL); while(lapic[ICRLO] & DELIVS) 801026f0: 8b 90 00 03 00 00 mov 0x300(%eax),%edx 801026f6: 80 e6 10 and $0x10,%dh 801026f9: 75 f5 jne 801026f0 <lapicinit+0xc0> lapic[index] = value; 801026fb: c7 80 80 00 00 00 00 movl $0x0,0x80(%eax) 80102702: 00 00 00 lapic[ID]; // wait for write to finish, by reading 80102705: 8b 40 20 mov 0x20(%eax),%eax ; // Enable interrupts on the APIC (but not on the processor). lapicw(TPR, 0); } 80102708: 5d pop %ebp 80102709: c3 ret 8010270a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi lapic[index] = value; 80102710: c7 80 40 03 00 00 00 movl $0x10000,0x340(%eax) 80102717: 00 01 00 lapic[ID]; // wait for write to finish, by reading 8010271a: 8b 50 20 mov 0x20(%eax),%edx 8010271d: e9 77 ff ff ff jmp 80102699 <lapicinit+0x69> 80102722: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80102729: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80102730 <lapicid>: int lapicid(void) { if (!lapic) 80102730: 8b 15 7c 36 11 80 mov 0x8011367c,%edx { 80102736: 55 push %ebp 80102737: 31 c0 xor %eax,%eax 80102739: 89 e5 mov %esp,%ebp if (!lapic) 8010273b: 85 d2 test %edx,%edx 8010273d: 74 06 je 80102745 <lapicid+0x15> return 0; return lapic[ID] >> 24; 8010273f: 8b 42 20 mov 0x20(%edx),%eax 80102742: c1 e8 18 shr $0x18,%eax } 80102745: 5d pop %ebp 80102746: c3 ret 80102747: 89 f6 mov %esi,%esi 80102749: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80102750 <lapiceoi>: // Acknowledge interrupt. void lapiceoi(void) { if(lapic) 80102750: a1 7c 36 11 80 mov 0x8011367c,%eax { 80102755: 55 push %ebp 80102756: 89 e5 mov %esp,%ebp if(lapic) 80102758: 85 c0 test %eax,%eax 8010275a: 74 0d je 80102769 <lapiceoi+0x19> lapic[index] = value; 8010275c: c7 80 b0 00 00 00 00 movl $0x0,0xb0(%eax) 80102763: 00 00 00 lapic[ID]; // wait for write to finish, by reading 80102766: 8b 40 20 mov 0x20(%eax),%eax lapicw(EOI, 0); } 80102769: 5d pop %ebp 8010276a: c3 ret 8010276b: 90 nop 8010276c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80102770 <microdelay>: // Spin for a given number of microseconds. // On real hardware would want to tune this dynamically. void microdelay(int us) { 80102770: 55 push %ebp 80102771: 89 e5 mov %esp,%ebp } 80102773: 5d pop %ebp 80102774: c3 ret 80102775: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80102779: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80102780 <lapicstartap>: // Start additional processor running entry code at addr. // See Appendix B of MultiProcessor Specification. void lapicstartap(uchar apicid, uint addr) { 80102780: 55 push %ebp asm volatile("out %0,%1" : : "a" (data), "d" (port)); 80102781: b8 0f 00 00 00 mov $0xf,%eax 80102786: ba 70 00 00 00 mov $0x70,%edx 8010278b: 89 e5 mov %esp,%ebp 8010278d: 53 push %ebx 8010278e: 8b 4d 0c mov 0xc(%ebp),%ecx 80102791: 8b 5d 08 mov 0x8(%ebp),%ebx 80102794: ee out %al,(%dx) 80102795: b8 0a 00 00 00 mov $0xa,%eax 8010279a: ba 71 00 00 00 mov $0x71,%edx 8010279f: ee out %al,(%dx) // and the warm reset vector (DWORD based at 40:67) to point at // the AP startup code prior to the [universal startup algorithm]." outb(CMOS_PORT, 0xF); // offset 0xF is shutdown code outb(CMOS_PORT+1, 0x0A); wrv = (ushort*)P2V((0x40<<4 | 0x67)); // Warm reset vector wrv[0] = 0; 801027a0: 31 c0 xor %eax,%eax wrv[1] = addr >> 4; // "Universal startup algorithm." // Send INIT (level-triggered) interrupt to reset other CPU. lapicw(ICRHI, apicid<<24); 801027a2: c1 e3 18 shl $0x18,%ebx wrv[0] = 0; 801027a5: 66 a3 67 04 00 80 mov %ax,0x80000467 wrv[1] = addr >> 4; 801027ab: 89 c8 mov %ecx,%eax // when it is in the halted state due to an INIT. So the second // should be ignored, but it is part of the official Intel algorithm. // Bochs complains about the second one. Too bad for Bochs. for(i = 0; i < 2; i++){ lapicw(ICRHI, apicid<<24); lapicw(ICRLO, STARTUP | (addr>>12)); 801027ad: c1 e9 0c shr $0xc,%ecx wrv[1] = addr >> 4; 801027b0: c1 e8 04 shr $0x4,%eax lapicw(ICRHI, apicid<<24); 801027b3: 89 da mov %ebx,%edx lapicw(ICRLO, STARTUP | (addr>>12)); 801027b5: 80 cd 06 or $0x6,%ch wrv[1] = addr >> 4; 801027b8: 66 a3 69 04 00 80 mov %ax,0x80000469 lapic[index] = value; 801027be: a1 7c 36 11 80 mov 0x8011367c,%eax 801027c3: 89 98 10 03 00 00 mov %ebx,0x310(%eax) lapic[ID]; // wait for write to finish, by reading 801027c9: 8b 58 20 mov 0x20(%eax),%ebx lapic[index] = value; 801027cc: c7 80 00 03 00 00 00 movl $0xc500,0x300(%eax) 801027d3: c5 00 00 lapic[ID]; // wait for write to finish, by reading 801027d6: 8b 58 20 mov 0x20(%eax),%ebx lapic[index] = value; 801027d9: c7 80 00 03 00 00 00 movl $0x8500,0x300(%eax) 801027e0: 85 00 00 lapic[ID]; // wait for write to finish, by reading 801027e3: 8b 58 20 mov 0x20(%eax),%ebx lapic[index] = value; 801027e6: 89 90 10 03 00 00 mov %edx,0x310(%eax) lapic[ID]; // wait for write to finish, by reading 801027ec: 8b 58 20 mov 0x20(%eax),%ebx lapic[index] = value; 801027ef: 89 88 00 03 00 00 mov %ecx,0x300(%eax) lapic[ID]; // wait for write to finish, by reading 801027f5: 8b 58 20 mov 0x20(%eax),%ebx lapic[index] = value; 801027f8: 89 90 10 03 00 00 mov %edx,0x310(%eax) lapic[ID]; // wait for write to finish, by reading 801027fe: 8b 50 20 mov 0x20(%eax),%edx lapic[index] = value; 80102801: 89 88 00 03 00 00 mov %ecx,0x300(%eax) lapic[ID]; // wait for write to finish, by reading 80102807: 8b 40 20 mov 0x20(%eax),%eax microdelay(200); } } 8010280a: 5b pop %ebx 8010280b: 5d pop %ebp 8010280c: c3 ret 8010280d: 8d 76 00 lea 0x0(%esi),%esi 80102810 <cmostime>: } // qemu seems to use 24-hour GWT and the values are BCD encoded void cmostime(struct rtcdate *r) { 80102810: 55 push %ebp 80102811: b8 0b 00 00 00 mov $0xb,%eax 80102816: ba 70 00 00 00 mov $0x70,%edx 8010281b: 89 e5 mov %esp,%ebp 8010281d: 57 push %edi 8010281e: 56 push %esi 8010281f: 53 push %ebx 80102820: 83 ec 4c sub $0x4c,%esp 80102823: ee out %al,(%dx) asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 80102824: ba 71 00 00 00 mov $0x71,%edx 80102829: ec in (%dx),%al 8010282a: 83 e0 04 and $0x4,%eax asm volatile("out %0,%1" : : "a" (data), "d" (port)); 8010282d: bb 70 00 00 00 mov $0x70,%ebx 80102832: 88 45 b3 mov %al,-0x4d(%ebp) 80102835: 8d 76 00 lea 0x0(%esi),%esi 80102838: 31 c0 xor %eax,%eax 8010283a: 89 da mov %ebx,%edx 8010283c: ee out %al,(%dx) asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 8010283d: b9 71 00 00 00 mov $0x71,%ecx 80102842: 89 ca mov %ecx,%edx 80102844: ec in (%dx),%al 80102845: 88 45 b7 mov %al,-0x49(%ebp) asm volatile("out %0,%1" : : "a" (data), "d" (port)); 80102848: 89 da mov %ebx,%edx 8010284a: b8 02 00 00 00 mov $0x2,%eax 8010284f: ee out %al,(%dx) asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 80102850: 89 ca mov %ecx,%edx 80102852: ec in (%dx),%al 80102853: 88 45 b6 mov %al,-0x4a(%ebp) asm volatile("out %0,%1" : : "a" (data), "d" (port)); 80102856: 89 da mov %ebx,%edx 80102858: b8 04 00 00 00 mov $0x4,%eax 8010285d: ee out %al,(%dx) asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 8010285e: 89 ca mov %ecx,%edx 80102860: ec in (%dx),%al 80102861: 88 45 b5 mov %al,-0x4b(%ebp) asm volatile("out %0,%1" : : "a" (data), "d" (port)); 80102864: 89 da mov %ebx,%edx 80102866: b8 07 00 00 00 mov $0x7,%eax 8010286b: ee out %al,(%dx) asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 8010286c: 89 ca mov %ecx,%edx 8010286e: ec in (%dx),%al 8010286f: 88 45 b4 mov %al,-0x4c(%ebp) asm volatile("out %0,%1" : : "a" (data), "d" (port)); 80102872: 89 da mov %ebx,%edx 80102874: b8 08 00 00 00 mov $0x8,%eax 80102879: ee out %al,(%dx) asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 8010287a: 89 ca mov %ecx,%edx 8010287c: ec in (%dx),%al 8010287d: 89 c7 mov %eax,%edi asm volatile("out %0,%1" : : "a" (data), "d" (port)); 8010287f: 89 da mov %ebx,%edx 80102881: b8 09 00 00 00 mov $0x9,%eax 80102886: ee out %al,(%dx) asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 80102887: 89 ca mov %ecx,%edx 80102889: ec in (%dx),%al 8010288a: 89 c6 mov %eax,%esi asm volatile("out %0,%1" : : "a" (data), "d" (port)); 8010288c: 89 da mov %ebx,%edx 8010288e: b8 0a 00 00 00 mov $0xa,%eax 80102893: ee out %al,(%dx) asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 80102894: 89 ca mov %ecx,%edx 80102896: ec in (%dx),%al bcd = (sb & (1 << 2)) == 0; // make sure CMOS doesn't modify time while we read it for(;;) { fill_rtcdate(&t1); if(cmos_read(CMOS_STATA) & CMOS_UIP) 80102897: 84 c0 test %al,%al 80102899: 78 9d js 80102838 <cmostime+0x28> return inb(CMOS_RETURN); 8010289b: 0f b6 45 b7 movzbl -0x49(%ebp),%eax 8010289f: 89 fa mov %edi,%edx 801028a1: 0f b6 fa movzbl %dl,%edi 801028a4: 89 f2 mov %esi,%edx 801028a6: 0f b6 f2 movzbl %dl,%esi 801028a9: 89 7d c8 mov %edi,-0x38(%ebp) asm volatile("out %0,%1" : : "a" (data), "d" (port)); 801028ac: 89 da mov %ebx,%edx 801028ae: 89 75 cc mov %esi,-0x34(%ebp) 801028b1: 89 45 b8 mov %eax,-0x48(%ebp) 801028b4: 0f b6 45 b6 movzbl -0x4a(%ebp),%eax 801028b8: 89 45 bc mov %eax,-0x44(%ebp) 801028bb: 0f b6 45 b5 movzbl -0x4b(%ebp),%eax 801028bf: 89 45 c0 mov %eax,-0x40(%ebp) 801028c2: 0f b6 45 b4 movzbl -0x4c(%ebp),%eax 801028c6: 89 45 c4 mov %eax,-0x3c(%ebp) 801028c9: 31 c0 xor %eax,%eax 801028cb: ee out %al,(%dx) asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 801028cc: 89 ca mov %ecx,%edx 801028ce: ec in (%dx),%al 801028cf: 0f b6 c0 movzbl %al,%eax asm volatile("out %0,%1" : : "a" (data), "d" (port)); 801028d2: 89 da mov %ebx,%edx 801028d4: 89 45 d0 mov %eax,-0x30(%ebp) 801028d7: b8 02 00 00 00 mov $0x2,%eax 801028dc: ee out %al,(%dx) asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 801028dd: 89 ca mov %ecx,%edx 801028df: ec in (%dx),%al 801028e0: 0f b6 c0 movzbl %al,%eax asm volatile("out %0,%1" : : "a" (data), "d" (port)); 801028e3: 89 da mov %ebx,%edx 801028e5: 89 45 d4 mov %eax,-0x2c(%ebp) 801028e8: b8 04 00 00 00 mov $0x4,%eax 801028ed: ee out %al,(%dx) asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 801028ee: 89 ca mov %ecx,%edx 801028f0: ec in (%dx),%al 801028f1: 0f b6 c0 movzbl %al,%eax asm volatile("out %0,%1" : : "a" (data), "d" (port)); 801028f4: 89 da mov %ebx,%edx 801028f6: 89 45 d8 mov %eax,-0x28(%ebp) 801028f9: b8 07 00 00 00 mov $0x7,%eax 801028fe: ee out %al,(%dx) asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 801028ff: 89 ca mov %ecx,%edx 80102901: ec in (%dx),%al 80102902: 0f b6 c0 movzbl %al,%eax asm volatile("out %0,%1" : : "a" (data), "d" (port)); 80102905: 89 da mov %ebx,%edx 80102907: 89 45 dc mov %eax,-0x24(%ebp) 8010290a: b8 08 00 00 00 mov $0x8,%eax 8010290f: ee out %al,(%dx) asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 80102910: 89 ca mov %ecx,%edx 80102912: ec in (%dx),%al 80102913: 0f b6 c0 movzbl %al,%eax asm volatile("out %0,%1" : : "a" (data), "d" (port)); 80102916: 89 da mov %ebx,%edx 80102918: 89 45 e0 mov %eax,-0x20(%ebp) 8010291b: b8 09 00 00 00 mov $0x9,%eax 80102920: ee out %al,(%dx) asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 80102921: 89 ca mov %ecx,%edx 80102923: ec in (%dx),%al 80102924: 0f b6 c0 movzbl %al,%eax continue; fill_rtcdate(&t2); if(memcmp(&t1, &t2, sizeof(t1)) == 0) 80102927: 83 ec 04 sub $0x4,%esp return inb(CMOS_RETURN); 8010292a: 89 45 e4 mov %eax,-0x1c(%ebp) if(memcmp(&t1, &t2, sizeof(t1)) == 0) 8010292d: 8d 45 d0 lea -0x30(%ebp),%eax 80102930: 6a 18 push $0x18 80102932: 50 push %eax 80102933: 8d 45 b8 lea -0x48(%ebp),%eax 80102936: 50 push %eax 80102937: e8 a4 1c 00 00 call 801045e0 <memcmp> 8010293c: 83 c4 10 add $0x10,%esp 8010293f: 85 c0 test %eax,%eax 80102941: 0f 85 f1 fe ff ff jne 80102838 <cmostime+0x28> break; } // convert if(bcd) { 80102947: 80 7d b3 00 cmpb $0x0,-0x4d(%ebp) 8010294b: 75 78 jne 801029c5 <cmostime+0x1b5> #define CONV(x) (t1.x = ((t1.x >> 4) * 10) + (t1.x & 0xf)) CONV(second); 8010294d: 8b 45 b8 mov -0x48(%ebp),%eax 80102950: 89 c2 mov %eax,%edx 80102952: 83 e0 0f and $0xf,%eax 80102955: c1 ea 04 shr $0x4,%edx 80102958: 8d 14 92 lea (%edx,%edx,4),%edx 8010295b: 8d 04 50 lea (%eax,%edx,2),%eax 8010295e: 89 45 b8 mov %eax,-0x48(%ebp) CONV(minute); 80102961: 8b 45 bc mov -0x44(%ebp),%eax 80102964: 89 c2 mov %eax,%edx 80102966: 83 e0 0f and $0xf,%eax 80102969: c1 ea 04 shr $0x4,%edx 8010296c: 8d 14 92 lea (%edx,%edx,4),%edx 8010296f: 8d 04 50 lea (%eax,%edx,2),%eax 80102972: 89 45 bc mov %eax,-0x44(%ebp) CONV(hour ); 80102975: 8b 45 c0 mov -0x40(%ebp),%eax 80102978: 89 c2 mov %eax,%edx 8010297a: 83 e0 0f and $0xf,%eax 8010297d: c1 ea 04 shr $0x4,%edx 80102980: 8d 14 92 lea (%edx,%edx,4),%edx 80102983: 8d 04 50 lea (%eax,%edx,2),%eax 80102986: 89 45 c0 mov %eax,-0x40(%ebp) CONV(day ); 80102989: 8b 45 c4 mov -0x3c(%ebp),%eax 8010298c: 89 c2 mov %eax,%edx 8010298e: 83 e0 0f and $0xf,%eax 80102991: c1 ea 04 shr $0x4,%edx 80102994: 8d 14 92 lea (%edx,%edx,4),%edx 80102997: 8d 04 50 lea (%eax,%edx,2),%eax 8010299a: 89 45 c4 mov %eax,-0x3c(%ebp) CONV(month ); 8010299d: 8b 45 c8 mov -0x38(%ebp),%eax 801029a0: 89 c2 mov %eax,%edx 801029a2: 83 e0 0f and $0xf,%eax 801029a5: c1 ea 04 shr $0x4,%edx 801029a8: 8d 14 92 lea (%edx,%edx,4),%edx 801029ab: 8d 04 50 lea (%eax,%edx,2),%eax 801029ae: 89 45 c8 mov %eax,-0x38(%ebp) CONV(year ); 801029b1: 8b 45 cc mov -0x34(%ebp),%eax 801029b4: 89 c2 mov %eax,%edx 801029b6: 83 e0 0f and $0xf,%eax 801029b9: c1 ea 04 shr $0x4,%edx 801029bc: 8d 14 92 lea (%edx,%edx,4),%edx 801029bf: 8d 04 50 lea (%eax,%edx,2),%eax 801029c2: 89 45 cc mov %eax,-0x34(%ebp) #undef CONV } *r = t1; 801029c5: 8b 75 08 mov 0x8(%ebp),%esi 801029c8: 8b 45 b8 mov -0x48(%ebp),%eax 801029cb: 89 06 mov %eax,(%esi) 801029cd: 8b 45 bc mov -0x44(%ebp),%eax 801029d0: 89 46 04 mov %eax,0x4(%esi) 801029d3: 8b 45 c0 mov -0x40(%ebp),%eax 801029d6: 89 46 08 mov %eax,0x8(%esi) 801029d9: 8b 45 c4 mov -0x3c(%ebp),%eax 801029dc: 89 46 0c mov %eax,0xc(%esi) 801029df: 8b 45 c8 mov -0x38(%ebp),%eax 801029e2: 89 46 10 mov %eax,0x10(%esi) 801029e5: 8b 45 cc mov -0x34(%ebp),%eax 801029e8: 89 46 14 mov %eax,0x14(%esi) r->year += 2000; 801029eb: 81 46 14 d0 07 00 00 addl $0x7d0,0x14(%esi) } 801029f2: 8d 65 f4 lea -0xc(%ebp),%esp 801029f5: 5b pop %ebx 801029f6: 5e pop %esi 801029f7: 5f pop %edi 801029f8: 5d pop %ebp 801029f9: c3 ret 801029fa: 66 90 xchg %ax,%ax 801029fc: 66 90 xchg %ax,%ax 801029fe: 66 90 xchg %ax,%ax 80102a00 <install_trans>: static void install_trans(void) { int tail; for (tail = 0; tail < log.lh.n; tail++) { 80102a00: 8b 0d c8 36 11 80 mov 0x801136c8,%ecx 80102a06: 85 c9 test %ecx,%ecx 80102a08: 0f 8e 8a 00 00 00 jle 80102a98 <install_trans+0x98> { 80102a0e: 55 push %ebp 80102a0f: 89 e5 mov %esp,%ebp 80102a11: 57 push %edi 80102a12: 56 push %esi 80102a13: 53 push %ebx for (tail = 0; tail < log.lh.n; tail++) { 80102a14: 31 db xor %ebx,%ebx { 80102a16: 83 ec 0c sub $0xc,%esp 80102a19: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi struct buf *lbuf = bread(log.dev, log.start+tail+1); // read log block 80102a20: a1 b4 36 11 80 mov 0x801136b4,%eax 80102a25: 83 ec 08 sub $0x8,%esp 80102a28: 01 d8 add %ebx,%eax 80102a2a: 83 c0 01 add $0x1,%eax 80102a2d: 50 push %eax 80102a2e: ff 35 c4 36 11 80 pushl 0x801136c4 80102a34: e8 97 d6 ff ff call 801000d0 <bread> 80102a39: 89 c7 mov %eax,%edi struct buf *dbuf = bread(log.dev, log.lh.block[tail]); // read dst 80102a3b: 58 pop %eax 80102a3c: 5a pop %edx 80102a3d: ff 34 9d cc 36 11 80 pushl -0x7feec934(,%ebx,4) 80102a44: ff 35 c4 36 11 80 pushl 0x801136c4 for (tail = 0; tail < log.lh.n; tail++) { 80102a4a: 83 c3 01 add $0x1,%ebx struct buf *dbuf = bread(log.dev, log.lh.block[tail]); // read dst 80102a4d: e8 7e d6 ff ff call 801000d0 <bread> 80102a52: 89 c6 mov %eax,%esi memmove(dbuf->data, lbuf->data, BSIZE); // copy block to dst 80102a54: 8d 47 5c lea 0x5c(%edi),%eax 80102a57: 83 c4 0c add $0xc,%esp 80102a5a: 68 00 02 00 00 push $0x200 80102a5f: 50 push %eax 80102a60: 8d 46 5c lea 0x5c(%esi),%eax 80102a63: 50 push %eax 80102a64: e8 d7 1b 00 00 call 80104640 <memmove> bwrite(dbuf); // write dst to disk 80102a69: 89 34 24 mov %esi,(%esp) 80102a6c: e8 2f d7 ff ff call 801001a0 <bwrite> brelse(lbuf); 80102a71: 89 3c 24 mov %edi,(%esp) 80102a74: e8 67 d7 ff ff call 801001e0 <brelse> brelse(dbuf); 80102a79: 89 34 24 mov %esi,(%esp) 80102a7c: e8 5f d7 ff ff call 801001e0 <brelse> for (tail = 0; tail < log.lh.n; tail++) { 80102a81: 83 c4 10 add $0x10,%esp 80102a84: 39 1d c8 36 11 80 cmp %ebx,0x801136c8 80102a8a: 7f 94 jg 80102a20 <install_trans+0x20> } } 80102a8c: 8d 65 f4 lea -0xc(%ebp),%esp 80102a8f: 5b pop %ebx 80102a90: 5e pop %esi 80102a91: 5f pop %edi 80102a92: 5d pop %ebp 80102a93: c3 ret 80102a94: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80102a98: f3 c3 repz ret 80102a9a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 80102aa0 <write_head>: // Write in-memory log header to disk. // This is the true point at which the // current transaction commits. static void write_head(void) { 80102aa0: 55 push %ebp 80102aa1: 89 e5 mov %esp,%ebp 80102aa3: 56 push %esi 80102aa4: 53 push %ebx struct buf *buf = bread(log.dev, log.start); 80102aa5: 83 ec 08 sub $0x8,%esp 80102aa8: ff 35 b4 36 11 80 pushl 0x801136b4 80102aae: ff 35 c4 36 11 80 pushl 0x801136c4 80102ab4: e8 17 d6 ff ff call 801000d0 <bread> struct logheader *hb = (struct logheader *) (buf->data); int i; hb->n = log.lh.n; 80102ab9: 8b 1d c8 36 11 80 mov 0x801136c8,%ebx for (i = 0; i < log.lh.n; i++) { 80102abf: 83 c4 10 add $0x10,%esp struct buf *buf = bread(log.dev, log.start); 80102ac2: 89 c6 mov %eax,%esi for (i = 0; i < log.lh.n; i++) { 80102ac4: 85 db test %ebx,%ebx hb->n = log.lh.n; 80102ac6: 89 58 5c mov %ebx,0x5c(%eax) for (i = 0; i < log.lh.n; i++) { 80102ac9: 7e 16 jle 80102ae1 <write_head+0x41> 80102acb: c1 e3 02 shl $0x2,%ebx 80102ace: 31 d2 xor %edx,%edx hb->block[i] = log.lh.block[i]; 80102ad0: 8b 8a cc 36 11 80 mov -0x7feec934(%edx),%ecx 80102ad6: 89 4c 16 60 mov %ecx,0x60(%esi,%edx,1) 80102ada: 83 c2 04 add $0x4,%edx for (i = 0; i < log.lh.n; i++) { 80102add: 39 da cmp %ebx,%edx 80102adf: 75 ef jne 80102ad0 <write_head+0x30> } bwrite(buf); 80102ae1: 83 ec 0c sub $0xc,%esp 80102ae4: 56 push %esi 80102ae5: e8 b6 d6 ff ff call 801001a0 <bwrite> brelse(buf); 80102aea: 89 34 24 mov %esi,(%esp) 80102aed: e8 ee d6 ff ff call 801001e0 <brelse> } 80102af2: 83 c4 10 add $0x10,%esp 80102af5: 8d 65 f8 lea -0x8(%ebp),%esp 80102af8: 5b pop %ebx 80102af9: 5e pop %esi 80102afa: 5d pop %ebp 80102afb: c3 ret 80102afc: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80102b00 <initlog>: { 80102b00: 55 push %ebp 80102b01: 89 e5 mov %esp,%ebp 80102b03: 53 push %ebx 80102b04: 83 ec 2c sub $0x2c,%esp 80102b07: 8b 5d 08 mov 0x8(%ebp),%ebx initlock(&log.lock, "log"); 80102b0a: 68 e0 7b 10 80 push $0x80107be0 80102b0f: 68 80 36 11 80 push $0x80113680 80102b14: e8 27 18 00 00 call 80104340 <initlock> readsb(dev, &sb); 80102b19: 58 pop %eax 80102b1a: 8d 45 dc lea -0x24(%ebp),%eax 80102b1d: 5a pop %edx 80102b1e: 50 push %eax 80102b1f: 53 push %ebx 80102b20: e8 1b e9 ff ff call 80101440 <readsb> log.size = sb.nlog; 80102b25: 8b 55 e8 mov -0x18(%ebp),%edx log.start = sb.logstart; 80102b28: 8b 45 ec mov -0x14(%ebp),%eax struct buf *buf = bread(log.dev, log.start); 80102b2b: 59 pop %ecx log.dev = dev; 80102b2c: 89 1d c4 36 11 80 mov %ebx,0x801136c4 log.size = sb.nlog; 80102b32: 89 15 b8 36 11 80 mov %edx,0x801136b8 log.start = sb.logstart; 80102b38: a3 b4 36 11 80 mov %eax,0x801136b4 struct buf *buf = bread(log.dev, log.start); 80102b3d: 5a pop %edx 80102b3e: 50 push %eax 80102b3f: 53 push %ebx 80102b40: e8 8b d5 ff ff call 801000d0 <bread> log.lh.n = lh->n; 80102b45: 8b 58 5c mov 0x5c(%eax),%ebx for (i = 0; i < log.lh.n; i++) { 80102b48: 83 c4 10 add $0x10,%esp 80102b4b: 85 db test %ebx,%ebx log.lh.n = lh->n; 80102b4d: 89 1d c8 36 11 80 mov %ebx,0x801136c8 for (i = 0; i < log.lh.n; i++) { 80102b53: 7e 1c jle 80102b71 <initlog+0x71> 80102b55: c1 e3 02 shl $0x2,%ebx 80102b58: 31 d2 xor %edx,%edx 80102b5a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi log.lh.block[i] = lh->block[i]; 80102b60: 8b 4c 10 60 mov 0x60(%eax,%edx,1),%ecx 80102b64: 83 c2 04 add $0x4,%edx 80102b67: 89 8a c8 36 11 80 mov %ecx,-0x7feec938(%edx) for (i = 0; i < log.lh.n; i++) { 80102b6d: 39 d3 cmp %edx,%ebx 80102b6f: 75 ef jne 80102b60 <initlog+0x60> brelse(buf); 80102b71: 83 ec 0c sub $0xc,%esp 80102b74: 50 push %eax 80102b75: e8 66 d6 ff ff call 801001e0 <brelse> static void recover_from_log(void) { read_head(); install_trans(); // if committed, copy from log to disk 80102b7a: e8 81 fe ff ff call 80102a00 <install_trans> log.lh.n = 0; 80102b7f: c7 05 c8 36 11 80 00 movl $0x0,0x801136c8 80102b86: 00 00 00 write_head(); // clear the log 80102b89: e8 12 ff ff ff call 80102aa0 <write_head> } 80102b8e: 83 c4 10 add $0x10,%esp 80102b91: 8b 5d fc mov -0x4(%ebp),%ebx 80102b94: c9 leave 80102b95: c3 ret 80102b96: 8d 76 00 lea 0x0(%esi),%esi 80102b99: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80102ba0 <begin_op>: } // called at the start of each FS system call. void begin_op(void) { 80102ba0: 55 push %ebp 80102ba1: 89 e5 mov %esp,%ebp 80102ba3: 83 ec 14 sub $0x14,%esp acquire(&log.lock); 80102ba6: 68 80 36 11 80 push $0x80113680 80102bab: e8 d0 18 00 00 call 80104480 <acquire> 80102bb0: 83 c4 10 add $0x10,%esp 80102bb3: eb 18 jmp 80102bcd <begin_op+0x2d> 80102bb5: 8d 76 00 lea 0x0(%esi),%esi while(1){ if(log.committing){ sleep(&log, &log.lock); 80102bb8: 83 ec 08 sub $0x8,%esp 80102bbb: 68 80 36 11 80 push $0x80113680 80102bc0: 68 80 36 11 80 push $0x80113680 80102bc5: e8 d6 11 00 00 call 80103da0 <sleep> 80102bca: 83 c4 10 add $0x10,%esp if(log.committing){ 80102bcd: a1 c0 36 11 80 mov 0x801136c0,%eax 80102bd2: 85 c0 test %eax,%eax 80102bd4: 75 e2 jne 80102bb8 <begin_op+0x18> } else if(log.lh.n + (log.outstanding+1)*MAXOPBLOCKS > LOGSIZE){ 80102bd6: a1 bc 36 11 80 mov 0x801136bc,%eax 80102bdb: 8b 15 c8 36 11 80 mov 0x801136c8,%edx 80102be1: 83 c0 01 add $0x1,%eax 80102be4: 8d 0c 80 lea (%eax,%eax,4),%ecx 80102be7: 8d 14 4a lea (%edx,%ecx,2),%edx 80102bea: 83 fa 1e cmp $0x1e,%edx 80102bed: 7f c9 jg 80102bb8 <begin_op+0x18> // this op might exhaust log space; wait for commit. sleep(&log, &log.lock); } else { log.outstanding += 1; release(&log.lock); 80102bef: 83 ec 0c sub $0xc,%esp log.outstanding += 1; 80102bf2: a3 bc 36 11 80 mov %eax,0x801136bc release(&log.lock); 80102bf7: 68 80 36 11 80 push $0x80113680 80102bfc: e8 3f 19 00 00 call 80104540 <release> break; } } } 80102c01: 83 c4 10 add $0x10,%esp 80102c04: c9 leave 80102c05: c3 ret 80102c06: 8d 76 00 lea 0x0(%esi),%esi 80102c09: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80102c10 <end_op>: // called at the end of each FS system call. // commits if this was the last outstanding operation. void end_op(void) { 80102c10: 55 push %ebp 80102c11: 89 e5 mov %esp,%ebp 80102c13: 57 push %edi 80102c14: 56 push %esi 80102c15: 53 push %ebx 80102c16: 83 ec 18 sub $0x18,%esp int do_commit = 0; acquire(&log.lock); 80102c19: 68 80 36 11 80 push $0x80113680 80102c1e: e8 5d 18 00 00 call 80104480 <acquire> log.outstanding -= 1; 80102c23: a1 bc 36 11 80 mov 0x801136bc,%eax if(log.committing) 80102c28: 8b 35 c0 36 11 80 mov 0x801136c0,%esi 80102c2e: 83 c4 10 add $0x10,%esp log.outstanding -= 1; 80102c31: 8d 58 ff lea -0x1(%eax),%ebx if(log.committing) 80102c34: 85 f6 test %esi,%esi log.outstanding -= 1; 80102c36: 89 1d bc 36 11 80 mov %ebx,0x801136bc if(log.committing) 80102c3c: 0f 85 1a 01 00 00 jne 80102d5c <end_op+0x14c> panic("log.committing"); if(log.outstanding == 0){ 80102c42: 85 db test %ebx,%ebx 80102c44: 0f 85 ee 00 00 00 jne 80102d38 <end_op+0x128> // begin_op() may be waiting for log space, // and decrementing log.outstanding has decreased // the amount of reserved space. wakeup(&log); } release(&log.lock); 80102c4a: 83 ec 0c sub $0xc,%esp log.committing = 1; 80102c4d: c7 05 c0 36 11 80 01 movl $0x1,0x801136c0 80102c54: 00 00 00 release(&log.lock); 80102c57: 68 80 36 11 80 push $0x80113680 80102c5c: e8 df 18 00 00 call 80104540 <release> } static void commit() { if (log.lh.n > 0) { 80102c61: 8b 0d c8 36 11 80 mov 0x801136c8,%ecx 80102c67: 83 c4 10 add $0x10,%esp 80102c6a: 85 c9 test %ecx,%ecx 80102c6c: 0f 8e 85 00 00 00 jle 80102cf7 <end_op+0xe7> struct buf *to = bread(log.dev, log.start+tail+1); // log block 80102c72: a1 b4 36 11 80 mov 0x801136b4,%eax 80102c77: 83 ec 08 sub $0x8,%esp 80102c7a: 01 d8 add %ebx,%eax 80102c7c: 83 c0 01 add $0x1,%eax 80102c7f: 50 push %eax 80102c80: ff 35 c4 36 11 80 pushl 0x801136c4 80102c86: e8 45 d4 ff ff call 801000d0 <bread> 80102c8b: 89 c6 mov %eax,%esi struct buf *from = bread(log.dev, log.lh.block[tail]); // cache block 80102c8d: 58 pop %eax 80102c8e: 5a pop %edx 80102c8f: ff 34 9d cc 36 11 80 pushl -0x7feec934(,%ebx,4) 80102c96: ff 35 c4 36 11 80 pushl 0x801136c4 for (tail = 0; tail < log.lh.n; tail++) { 80102c9c: 83 c3 01 add $0x1,%ebx struct buf *from = bread(log.dev, log.lh.block[tail]); // cache block 80102c9f: e8 2c d4 ff ff call 801000d0 <bread> 80102ca4: 89 c7 mov %eax,%edi memmove(to->data, from->data, BSIZE); 80102ca6: 8d 40 5c lea 0x5c(%eax),%eax 80102ca9: 83 c4 0c add $0xc,%esp 80102cac: 68 00 02 00 00 push $0x200 80102cb1: 50 push %eax 80102cb2: 8d 46 5c lea 0x5c(%esi),%eax 80102cb5: 50 push %eax 80102cb6: e8 85 19 00 00 call 80104640 <memmove> bwrite(to); // write the log 80102cbb: 89 34 24 mov %esi,(%esp) 80102cbe: e8 dd d4 ff ff call 801001a0 <bwrite> brelse(from); 80102cc3: 89 3c 24 mov %edi,(%esp) 80102cc6: e8 15 d5 ff ff call 801001e0 <brelse> brelse(to); 80102ccb: 89 34 24 mov %esi,(%esp) 80102cce: e8 0d d5 ff ff call 801001e0 <brelse> for (tail = 0; tail < log.lh.n; tail++) { 80102cd3: 83 c4 10 add $0x10,%esp 80102cd6: 3b 1d c8 36 11 80 cmp 0x801136c8,%ebx 80102cdc: 7c 94 jl 80102c72 <end_op+0x62> write_log(); // Write modified blocks from cache to log write_head(); // Write header to disk -- the real commit 80102cde: e8 bd fd ff ff call 80102aa0 <write_head> install_trans(); // Now install writes to home locations 80102ce3: e8 18 fd ff ff call 80102a00 <install_trans> log.lh.n = 0; 80102ce8: c7 05 c8 36 11 80 00 movl $0x0,0x801136c8 80102cef: 00 00 00 write_head(); // Erase the transaction from the log 80102cf2: e8 a9 fd ff ff call 80102aa0 <write_head> acquire(&log.lock); 80102cf7: 83 ec 0c sub $0xc,%esp 80102cfa: 68 80 36 11 80 push $0x80113680 80102cff: e8 7c 17 00 00 call 80104480 <acquire> wakeup(&log); 80102d04: c7 04 24 80 36 11 80 movl $0x80113680,(%esp) log.committing = 0; 80102d0b: c7 05 c0 36 11 80 00 movl $0x0,0x801136c0 80102d12: 00 00 00 wakeup(&log); 80102d15: e8 36 12 00 00 call 80103f50 <wakeup> release(&log.lock); 80102d1a: c7 04 24 80 36 11 80 movl $0x80113680,(%esp) 80102d21: e8 1a 18 00 00 call 80104540 <release> 80102d26: 83 c4 10 add $0x10,%esp } 80102d29: 8d 65 f4 lea -0xc(%ebp),%esp 80102d2c: 5b pop %ebx 80102d2d: 5e pop %esi 80102d2e: 5f pop %edi 80102d2f: 5d pop %ebp 80102d30: c3 ret 80102d31: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi wakeup(&log); 80102d38: 83 ec 0c sub $0xc,%esp 80102d3b: 68 80 36 11 80 push $0x80113680 80102d40: e8 0b 12 00 00 call 80103f50 <wakeup> release(&log.lock); 80102d45: c7 04 24 80 36 11 80 movl $0x80113680,(%esp) 80102d4c: e8 ef 17 00 00 call 80104540 <release> 80102d51: 83 c4 10 add $0x10,%esp } 80102d54: 8d 65 f4 lea -0xc(%ebp),%esp 80102d57: 5b pop %ebx 80102d58: 5e pop %esi 80102d59: 5f pop %edi 80102d5a: 5d pop %ebp 80102d5b: c3 ret panic("log.committing"); 80102d5c: 83 ec 0c sub $0xc,%esp 80102d5f: 68 e4 7b 10 80 push $0x80107be4 80102d64: e8 27 d6 ff ff call 80100390 <panic> 80102d69: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80102d70 <log_write>: // modify bp->data[] // log_write(bp) // brelse(bp) void log_write(struct buf *b) { 80102d70: 55 push %ebp 80102d71: 89 e5 mov %esp,%ebp 80102d73: 53 push %ebx 80102d74: 83 ec 04 sub $0x4,%esp int i; if (log.lh.n >= LOGSIZE || log.lh.n >= log.size - 1) 80102d77: 8b 15 c8 36 11 80 mov 0x801136c8,%edx { 80102d7d: 8b 5d 08 mov 0x8(%ebp),%ebx if (log.lh.n >= LOGSIZE || log.lh.n >= log.size - 1) 80102d80: 83 fa 1d cmp $0x1d,%edx 80102d83: 0f 8f 9d 00 00 00 jg 80102e26 <log_write+0xb6> 80102d89: a1 b8 36 11 80 mov 0x801136b8,%eax 80102d8e: 83 e8 01 sub $0x1,%eax 80102d91: 39 c2 cmp %eax,%edx 80102d93: 0f 8d 8d 00 00 00 jge 80102e26 <log_write+0xb6> panic("too big a transaction"); if (log.outstanding < 1) 80102d99: a1 bc 36 11 80 mov 0x801136bc,%eax 80102d9e: 85 c0 test %eax,%eax 80102da0: 0f 8e 8d 00 00 00 jle 80102e33 <log_write+0xc3> panic("log_write outside of trans"); acquire(&log.lock); 80102da6: 83 ec 0c sub $0xc,%esp 80102da9: 68 80 36 11 80 push $0x80113680 80102dae: e8 cd 16 00 00 call 80104480 <acquire> for (i = 0; i < log.lh.n; i++) { 80102db3: 8b 0d c8 36 11 80 mov 0x801136c8,%ecx 80102db9: 83 c4 10 add $0x10,%esp 80102dbc: 83 f9 00 cmp $0x0,%ecx 80102dbf: 7e 57 jle 80102e18 <log_write+0xa8> if (log.lh.block[i] == b->blockno) // log absorbtion 80102dc1: 8b 53 08 mov 0x8(%ebx),%edx for (i = 0; i < log.lh.n; i++) { 80102dc4: 31 c0 xor %eax,%eax if (log.lh.block[i] == b->blockno) // log absorbtion 80102dc6: 3b 15 cc 36 11 80 cmp 0x801136cc,%edx 80102dcc: 75 0b jne 80102dd9 <log_write+0x69> 80102dce: eb 38 jmp 80102e08 <log_write+0x98> 80102dd0: 39 14 85 cc 36 11 80 cmp %edx,-0x7feec934(,%eax,4) 80102dd7: 74 2f je 80102e08 <log_write+0x98> for (i = 0; i < log.lh.n; i++) { 80102dd9: 83 c0 01 add $0x1,%eax 80102ddc: 39 c1 cmp %eax,%ecx 80102dde: 75 f0 jne 80102dd0 <log_write+0x60> break; } log.lh.block[i] = b->blockno; 80102de0: 89 14 85 cc 36 11 80 mov %edx,-0x7feec934(,%eax,4) if (i == log.lh.n) log.lh.n++; 80102de7: 83 c0 01 add $0x1,%eax 80102dea: a3 c8 36 11 80 mov %eax,0x801136c8 b->flags |= B_DIRTY; // prevent eviction 80102def: 83 0b 04 orl $0x4,(%ebx) release(&log.lock); 80102df2: c7 45 08 80 36 11 80 movl $0x80113680,0x8(%ebp) } 80102df9: 8b 5d fc mov -0x4(%ebp),%ebx 80102dfc: c9 leave release(&log.lock); 80102dfd: e9 3e 17 00 00 jmp 80104540 <release> 80102e02: 8d b6 00 00 00 00 lea 0x0(%esi),%esi log.lh.block[i] = b->blockno; 80102e08: 89 14 85 cc 36 11 80 mov %edx,-0x7feec934(,%eax,4) 80102e0f: eb de jmp 80102def <log_write+0x7f> 80102e11: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80102e18: 8b 43 08 mov 0x8(%ebx),%eax 80102e1b: a3 cc 36 11 80 mov %eax,0x801136cc if (i == log.lh.n) 80102e20: 75 cd jne 80102def <log_write+0x7f> 80102e22: 31 c0 xor %eax,%eax 80102e24: eb c1 jmp 80102de7 <log_write+0x77> panic("too big a transaction"); 80102e26: 83 ec 0c sub $0xc,%esp 80102e29: 68 f3 7b 10 80 push $0x80107bf3 80102e2e: e8 5d d5 ff ff call 80100390 <panic> panic("log_write outside of trans"); 80102e33: 83 ec 0c sub $0xc,%esp 80102e36: 68 09 7c 10 80 push $0x80107c09 80102e3b: e8 50 d5 ff ff call 80100390 <panic> 80102e40 <mpmain>: } // Common CPU setup code. static void mpmain(void) { 80102e40: 55 push %ebp 80102e41: 89 e5 mov %esp,%ebp 80102e43: 53 push %ebx 80102e44: 83 ec 04 sub $0x4,%esp cprintf("cpu%d: starting %d\n", cpuid(), cpuid()); 80102e47: e8 74 09 00 00 call 801037c0 <cpuid> 80102e4c: 89 c3 mov %eax,%ebx 80102e4e: e8 6d 09 00 00 call 801037c0 <cpuid> 80102e53: 83 ec 04 sub $0x4,%esp 80102e56: 53 push %ebx 80102e57: 50 push %eax 80102e58: 68 24 7c 10 80 push $0x80107c24 80102e5d: e8 fe d7 ff ff call 80100660 <cprintf> idtinit(); // load idt register 80102e62: e8 f9 30 00 00 call 80105f60 <idtinit> xchg(&(mycpu()->started), 1); // tell startothers() we're up 80102e67: e8 e4 08 00 00 call 80103750 <mycpu> 80102e6c: 89 c2 mov %eax,%edx xchg(volatile uint *addr, uint newval) { uint result; // The + in "+m" denotes a read-modify-write operand. asm volatile("lock; xchgl %0, %1" : 80102e6e: b8 01 00 00 00 mov $0x1,%eax 80102e73: f0 87 82 a0 00 00 00 lock xchg %eax,0xa0(%edx) scheduler(); // start running processes 80102e7a: e8 21 0c 00 00 call 80103aa0 <scheduler> 80102e7f: 90 nop 80102e80 <mpenter>: { 80102e80: 55 push %ebp 80102e81: 89 e5 mov %esp,%ebp 80102e83: 83 ec 08 sub $0x8,%esp switchkvm(); 80102e86: e8 c5 41 00 00 call 80107050 <switchkvm> seginit(); 80102e8b: e8 30 41 00 00 call 80106fc0 <seginit> lapicinit(); 80102e90: e8 9b f7 ff ff call 80102630 <lapicinit> mpmain(); 80102e95: e8 a6 ff ff ff call 80102e40 <mpmain> 80102e9a: 66 90 xchg %ax,%ax 80102e9c: 66 90 xchg %ax,%ax 80102e9e: 66 90 xchg %ax,%ax 80102ea0 <main>: { 80102ea0: 8d 4c 24 04 lea 0x4(%esp),%ecx 80102ea4: 83 e4 f0 and $0xfffffff0,%esp 80102ea7: ff 71 fc pushl -0x4(%ecx) 80102eaa: 55 push %ebp 80102eab: 89 e5 mov %esp,%ebp 80102ead: 53 push %ebx 80102eae: 51 push %ecx kinit1(end, P2V(4*1024*1024)); // phys page allocator 80102eaf: 83 ec 08 sub $0x8,%esp 80102eb2: 68 00 00 40 80 push $0x80400000 80102eb7: 68 88 61 11 80 push $0x80116188 80102ebc: e8 2f f5 ff ff call 801023f0 <kinit1> kvmalloc(); // kernel page table 80102ec1: e8 5a 46 00 00 call 80107520 <kvmalloc> mpinit(); // detect other processors 80102ec6: e8 75 01 00 00 call 80103040 <mpinit> lapicinit(); // interrupt controller 80102ecb: e8 60 f7 ff ff call 80102630 <lapicinit> seginit(); // segment descriptors 80102ed0: e8 eb 40 00 00 call 80106fc0 <seginit> picinit(); // disable pic 80102ed5: e8 46 03 00 00 call 80103220 <picinit> ioapicinit(); // another interrupt controller 80102eda: e8 41 f3 ff ff call 80102220 <ioapicinit> consoleinit(); // console hardware 80102edf: e8 dc da ff ff call 801009c0 <consoleinit> uartinit(); // serial port 80102ee4: e8 a7 33 00 00 call 80106290 <uartinit> pinit(); // process table 80102ee9: e8 42 08 00 00 call 80103730 <pinit> tvinit(); // trap vectors 80102eee: e8 ed 2f 00 00 call 80105ee0 <tvinit> binit(); // buffer cache 80102ef3: e8 48 d1 ff ff call 80100040 <binit> fileinit(); // file table 80102ef8: e8 63 de ff ff call 80100d60 <fileinit> ideinit(); // disk 80102efd: e8 fe f0 ff ff call 80102000 <ideinit> // Write entry code to unused memory at 0x7000. // The linker has placed the image of entryother.S in // _binary_entryother_start. code = P2V(0x7000); memmove(code, _binary_entryother_start, (uint)_binary_entryother_size); 80102f02: 83 c4 0c add $0xc,%esp 80102f05: 68 8a 00 00 00 push $0x8a 80102f0a: 68 8c b4 10 80 push $0x8010b48c 80102f0f: 68 00 70 00 80 push $0x80007000 80102f14: e8 27 17 00 00 call 80104640 <memmove> for(c = cpus; c < cpus+ncpu; c++){ 80102f19: 69 05 e0 38 11 80 b0 imul $0xb0,0x801138e0,%eax 80102f20: 00 00 00 80102f23: 83 c4 10 add $0x10,%esp 80102f26: 05 80 37 11 80 add $0x80113780,%eax 80102f2b: 3d 80 37 11 80 cmp $0x80113780,%eax 80102f30: 76 71 jbe 80102fa3 <main+0x103> 80102f32: bb 80 37 11 80 mov $0x80113780,%ebx 80102f37: 89 f6 mov %esi,%esi 80102f39: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi if(c == mycpu()) // We've started already. 80102f40: e8 0b 08 00 00 call 80103750 <mycpu> 80102f45: 39 d8 cmp %ebx,%eax 80102f47: 74 41 je 80102f8a <main+0xea> continue; // Tell entryother.S what stack to use, where to enter, and what // pgdir to use. We cannot use kpgdir yet, because the AP processor // is running in low memory, so we use entrypgdir for the APs too. stack = kalloc(); 80102f49: e8 72 f5 ff ff call 801024c0 <kalloc> *(void**)(code-4) = stack + KSTACKSIZE; 80102f4e: 05 00 10 00 00 add $0x1000,%eax *(void(**)(void))(code-8) = mpenter; 80102f53: c7 05 f8 6f 00 80 80 movl $0x80102e80,0x80006ff8 80102f5a: 2e 10 80 *(int**)(code-12) = (void *) V2P(entrypgdir); 80102f5d: c7 05 f4 6f 00 80 00 movl $0x10a000,0x80006ff4 80102f64: a0 10 00 *(void**)(code-4) = stack + KSTACKSIZE; 80102f67: a3 fc 6f 00 80 mov %eax,0x80006ffc lapicstartap(c->apicid, V2P(code)); 80102f6c: 0f b6 03 movzbl (%ebx),%eax 80102f6f: 83 ec 08 sub $0x8,%esp 80102f72: 68 00 70 00 00 push $0x7000 80102f77: 50 push %eax 80102f78: e8 03 f8 ff ff call 80102780 <lapicstartap> 80102f7d: 83 c4 10 add $0x10,%esp // wait for cpu to finish mpmain() while(c->started == 0) 80102f80: 8b 83 a0 00 00 00 mov 0xa0(%ebx),%eax 80102f86: 85 c0 test %eax,%eax 80102f88: 74 f6 je 80102f80 <main+0xe0> for(c = cpus; c < cpus+ncpu; c++){ 80102f8a: 69 05 e0 38 11 80 b0 imul $0xb0,0x801138e0,%eax 80102f91: 00 00 00 80102f94: 81 c3 b0 00 00 00 add $0xb0,%ebx 80102f9a: 05 80 37 11 80 add $0x80113780,%eax 80102f9f: 39 c3 cmp %eax,%ebx 80102fa1: 72 9d jb 80102f40 <main+0xa0> kinit2(P2V(4*1024*1024), P2V(PHYSTOP)); // must come after startothers() 80102fa3: 83 ec 08 sub $0x8,%esp 80102fa6: 68 00 00 00 8e push $0x8e000000 80102fab: 68 00 00 40 80 push $0x80400000 80102fb0: e8 ab f4 ff ff call 80102460 <kinit2> userinit(); // first user process 80102fb5: e8 56 08 00 00 call 80103810 <userinit> mpmain(); // finish this processor's setup 80102fba: e8 81 fe ff ff call 80102e40 <mpmain> 80102fbf: 90 nop 80102fc0 <mpsearch1>: } // Look for an MP structure in the len bytes at addr. static struct mp* mpsearch1(uint a, int len) { 80102fc0: 55 push %ebp 80102fc1: 89 e5 mov %esp,%ebp 80102fc3: 57 push %edi 80102fc4: 56 push %esi uchar *e, *p, *addr; addr = P2V(a); 80102fc5: 8d b0 00 00 00 80 lea -0x80000000(%eax),%esi { 80102fcb: 53 push %ebx e = addr+len; 80102fcc: 8d 1c 16 lea (%esi,%edx,1),%ebx { 80102fcf: 83 ec 0c sub $0xc,%esp for(p = addr; p < e; p += sizeof(struct mp)) 80102fd2: 39 de cmp %ebx,%esi 80102fd4: 72 10 jb 80102fe6 <mpsearch1+0x26> 80102fd6: eb 50 jmp 80103028 <mpsearch1+0x68> 80102fd8: 90 nop 80102fd9: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80102fe0: 39 fb cmp %edi,%ebx 80102fe2: 89 fe mov %edi,%esi 80102fe4: 76 42 jbe 80103028 <mpsearch1+0x68> if(memcmp(p, "_MP_", 4) == 0 && sum(p, sizeof(struct mp)) == 0) 80102fe6: 83 ec 04 sub $0x4,%esp 80102fe9: 8d 7e 10 lea 0x10(%esi),%edi 80102fec: 6a 04 push $0x4 80102fee: 68 38 7c 10 80 push $0x80107c38 80102ff3: 56 push %esi 80102ff4: e8 e7 15 00 00 call 801045e0 <memcmp> 80102ff9: 83 c4 10 add $0x10,%esp 80102ffc: 85 c0 test %eax,%eax 80102ffe: 75 e0 jne 80102fe0 <mpsearch1+0x20> 80103000: 89 f1 mov %esi,%ecx 80103002: 8d b6 00 00 00 00 lea 0x0(%esi),%esi sum += addr[i]; 80103008: 0f b6 11 movzbl (%ecx),%edx 8010300b: 83 c1 01 add $0x1,%ecx 8010300e: 01 d0 add %edx,%eax for(i=0; i<len; i++) 80103010: 39 f9 cmp %edi,%ecx 80103012: 75 f4 jne 80103008 <mpsearch1+0x48> if(memcmp(p, "_MP_", 4) == 0 && sum(p, sizeof(struct mp)) == 0) 80103014: 84 c0 test %al,%al 80103016: 75 c8 jne 80102fe0 <mpsearch1+0x20> return (struct mp*)p; return 0; } 80103018: 8d 65 f4 lea -0xc(%ebp),%esp 8010301b: 89 f0 mov %esi,%eax 8010301d: 5b pop %ebx 8010301e: 5e pop %esi 8010301f: 5f pop %edi 80103020: 5d pop %ebp 80103021: c3 ret 80103022: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 80103028: 8d 65 f4 lea -0xc(%ebp),%esp return 0; 8010302b: 31 f6 xor %esi,%esi } 8010302d: 89 f0 mov %esi,%eax 8010302f: 5b pop %ebx 80103030: 5e pop %esi 80103031: 5f pop %edi 80103032: 5d pop %ebp 80103033: c3 ret 80103034: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 8010303a: 8d bf 00 00 00 00 lea 0x0(%edi),%edi 80103040 <mpinit>: return conf; } void mpinit(void) { 80103040: 55 push %ebp 80103041: 89 e5 mov %esp,%ebp 80103043: 57 push %edi 80103044: 56 push %esi 80103045: 53 push %ebx 80103046: 83 ec 1c sub $0x1c,%esp if((p = ((bda[0x0F]<<8)| bda[0x0E]) << 4)){ 80103049: 0f b6 05 0f 04 00 80 movzbl 0x8000040f,%eax 80103050: 0f b6 15 0e 04 00 80 movzbl 0x8000040e,%edx 80103057: c1 e0 08 shl $0x8,%eax 8010305a: 09 d0 or %edx,%eax 8010305c: c1 e0 04 shl $0x4,%eax 8010305f: 85 c0 test %eax,%eax 80103061: 75 1b jne 8010307e <mpinit+0x3e> p = ((bda[0x14]<<8)|bda[0x13])*1024; 80103063: 0f b6 05 14 04 00 80 movzbl 0x80000414,%eax 8010306a: 0f b6 15 13 04 00 80 movzbl 0x80000413,%edx 80103071: c1 e0 08 shl $0x8,%eax 80103074: 09 d0 or %edx,%eax 80103076: c1 e0 0a shl $0xa,%eax if((mp = mpsearch1(p-1024, 1024))) 80103079: 2d 00 04 00 00 sub $0x400,%eax if((mp = mpsearch1(p, 1024))) 8010307e: ba 00 04 00 00 mov $0x400,%edx 80103083: e8 38 ff ff ff call 80102fc0 <mpsearch1> 80103088: 85 c0 test %eax,%eax 8010308a: 89 45 e4 mov %eax,-0x1c(%ebp) 8010308d: 0f 84 3d 01 00 00 je 801031d0 <mpinit+0x190> if((mp = mpsearch()) == 0 || mp->physaddr == 0) 80103093: 8b 45 e4 mov -0x1c(%ebp),%eax 80103096: 8b 58 04 mov 0x4(%eax),%ebx 80103099: 85 db test %ebx,%ebx 8010309b: 0f 84 4f 01 00 00 je 801031f0 <mpinit+0x1b0> conf = (struct mpconf*) P2V((uint) mp->physaddr); 801030a1: 8d b3 00 00 00 80 lea -0x80000000(%ebx),%esi if(memcmp(conf, "PCMP", 4) != 0) 801030a7: 83 ec 04 sub $0x4,%esp 801030aa: 6a 04 push $0x4 801030ac: 68 55 7c 10 80 push $0x80107c55 801030b1: 56 push %esi 801030b2: e8 29 15 00 00 call 801045e0 <memcmp> 801030b7: 83 c4 10 add $0x10,%esp 801030ba: 85 c0 test %eax,%eax 801030bc: 0f 85 2e 01 00 00 jne 801031f0 <mpinit+0x1b0> if(conf->version != 1 && conf->version != 4) 801030c2: 0f b6 83 06 00 00 80 movzbl -0x7ffffffa(%ebx),%eax 801030c9: 3c 01 cmp $0x1,%al 801030cb: 0f 95 c2 setne %dl 801030ce: 3c 04 cmp $0x4,%al 801030d0: 0f 95 c0 setne %al 801030d3: 20 c2 and %al,%dl 801030d5: 0f 85 15 01 00 00 jne 801031f0 <mpinit+0x1b0> if(sum((uchar*)conf, conf->length) != 0) 801030db: 0f b7 bb 04 00 00 80 movzwl -0x7ffffffc(%ebx),%edi for(i=0; i<len; i++) 801030e2: 66 85 ff test %di,%di 801030e5: 74 1a je 80103101 <mpinit+0xc1> 801030e7: 89 f0 mov %esi,%eax 801030e9: 01 f7 add %esi,%edi sum = 0; 801030eb: 31 d2 xor %edx,%edx 801030ed: 8d 76 00 lea 0x0(%esi),%esi sum += addr[i]; 801030f0: 0f b6 08 movzbl (%eax),%ecx 801030f3: 83 c0 01 add $0x1,%eax 801030f6: 01 ca add %ecx,%edx for(i=0; i<len; i++) 801030f8: 39 c7 cmp %eax,%edi 801030fa: 75 f4 jne 801030f0 <mpinit+0xb0> 801030fc: 84 d2 test %dl,%dl 801030fe: 0f 95 c2 setne %dl struct mp *mp; struct mpconf *conf; struct mpproc *proc; struct mpioapic *ioapic; if((conf = mpconfig(&mp)) == 0) 80103101: 85 f6 test %esi,%esi 80103103: 0f 84 e7 00 00 00 je 801031f0 <mpinit+0x1b0> 80103109: 84 d2 test %dl,%dl 8010310b: 0f 85 df 00 00 00 jne 801031f0 <mpinit+0x1b0> panic("Expect to run on an SMP"); ismp = 1; lapic = (uint*)conf->lapicaddr; 80103111: 8b 83 24 00 00 80 mov -0x7fffffdc(%ebx),%eax 80103117: a3 7c 36 11 80 mov %eax,0x8011367c for(p=(uchar*)(conf+1), e=(uchar*)conf+conf->length; p<e; ){ 8010311c: 0f b7 93 04 00 00 80 movzwl -0x7ffffffc(%ebx),%edx 80103123: 8d 83 2c 00 00 80 lea -0x7fffffd4(%ebx),%eax ismp = 1; 80103129: bb 01 00 00 00 mov $0x1,%ebx for(p=(uchar*)(conf+1), e=(uchar*)conf+conf->length; p<e; ){ 8010312e: 01 d6 add %edx,%esi 80103130: 39 c6 cmp %eax,%esi 80103132: 76 23 jbe 80103157 <mpinit+0x117> switch(*p){ 80103134: 0f b6 10 movzbl (%eax),%edx 80103137: 80 fa 04 cmp $0x4,%dl 8010313a: 0f 87 ca 00 00 00 ja 8010320a <mpinit+0x1ca> 80103140: ff 24 95 7c 7c 10 80 jmp *-0x7fef8384(,%edx,4) 80103147: 89 f6 mov %esi,%esi 80103149: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi p += sizeof(struct mpioapic); continue; case MPBUS: case MPIOINTR: case MPLINTR: p += 8; 80103150: 83 c0 08 add $0x8,%eax for(p=(uchar*)(conf+1), e=(uchar*)conf+conf->length; p<e; ){ 80103153: 39 c6 cmp %eax,%esi 80103155: 77 dd ja 80103134 <mpinit+0xf4> default: ismp = 0; break; } } if(!ismp) 80103157: 85 db test %ebx,%ebx 80103159: 0f 84 9e 00 00 00 je 801031fd <mpinit+0x1bd> panic("Didn't find a suitable machine"); if(mp->imcrp){ 8010315f: 8b 45 e4 mov -0x1c(%ebp),%eax 80103162: 80 78 0c 00 cmpb $0x0,0xc(%eax) 80103166: 74 15 je 8010317d <mpinit+0x13d> asm volatile("out %0,%1" : : "a" (data), "d" (port)); 80103168: b8 70 00 00 00 mov $0x70,%eax 8010316d: ba 22 00 00 00 mov $0x22,%edx 80103172: ee out %al,(%dx) asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 80103173: ba 23 00 00 00 mov $0x23,%edx 80103178: ec in (%dx),%al // Bochs doesn't support IMCR, so this doesn't run on Bochs. // But it would on real hardware. outb(0x22, 0x70); // Select IMCR outb(0x23, inb(0x23) | 1); // Mask external interrupts. 80103179: 83 c8 01 or $0x1,%eax asm volatile("out %0,%1" : : "a" (data), "d" (port)); 8010317c: ee out %al,(%dx) } } 8010317d: 8d 65 f4 lea -0xc(%ebp),%esp 80103180: 5b pop %ebx 80103181: 5e pop %esi 80103182: 5f pop %edi 80103183: 5d pop %ebp 80103184: c3 ret 80103185: 8d 76 00 lea 0x0(%esi),%esi if(ncpu < NCPU) { 80103188: 8b 0d e0 38 11 80 mov 0x801138e0,%ecx 8010318e: 83 f9 01 cmp $0x1,%ecx 80103191: 7f 19 jg 801031ac <mpinit+0x16c> cpus[ncpu].apicid = proc->apicid; // apicid may differ from ncpu 80103193: 0f b6 50 01 movzbl 0x1(%eax),%edx 80103197: 69 f9 b0 00 00 00 imul $0xb0,%ecx,%edi ncpu++; 8010319d: 83 c1 01 add $0x1,%ecx 801031a0: 89 0d e0 38 11 80 mov %ecx,0x801138e0 cpus[ncpu].apicid = proc->apicid; // apicid may differ from ncpu 801031a6: 88 97 80 37 11 80 mov %dl,-0x7feec880(%edi) p += sizeof(struct mpproc); 801031ac: 83 c0 14 add $0x14,%eax continue; 801031af: e9 7c ff ff ff jmp 80103130 <mpinit+0xf0> 801031b4: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi ioapicid = ioapic->apicno; 801031b8: 0f b6 50 01 movzbl 0x1(%eax),%edx p += sizeof(struct mpioapic); 801031bc: 83 c0 08 add $0x8,%eax ioapicid = ioapic->apicno; 801031bf: 88 15 60 37 11 80 mov %dl,0x80113760 continue; 801031c5: e9 66 ff ff ff jmp 80103130 <mpinit+0xf0> 801031ca: 8d b6 00 00 00 00 lea 0x0(%esi),%esi return mpsearch1(0xF0000, 0x10000); 801031d0: ba 00 00 01 00 mov $0x10000,%edx 801031d5: b8 00 00 0f 00 mov $0xf0000,%eax 801031da: e8 e1 fd ff ff call 80102fc0 <mpsearch1> if((mp = mpsearch()) == 0 || mp->physaddr == 0) 801031df: 85 c0 test %eax,%eax return mpsearch1(0xF0000, 0x10000); 801031e1: 89 45 e4 mov %eax,-0x1c(%ebp) if((mp = mpsearch()) == 0 || mp->physaddr == 0) 801031e4: 0f 85 a9 fe ff ff jne 80103093 <mpinit+0x53> 801031ea: 8d b6 00 00 00 00 lea 0x0(%esi),%esi panic("Expect to run on an SMP"); 801031f0: 83 ec 0c sub $0xc,%esp 801031f3: 68 3d 7c 10 80 push $0x80107c3d 801031f8: e8 93 d1 ff ff call 80100390 <panic> panic("Didn't find a suitable machine"); 801031fd: 83 ec 0c sub $0xc,%esp 80103200: 68 5c 7c 10 80 push $0x80107c5c 80103205: e8 86 d1 ff ff call 80100390 <panic> ismp = 0; 8010320a: 31 db xor %ebx,%ebx 8010320c: e9 26 ff ff ff jmp 80103137 <mpinit+0xf7> 80103211: 66 90 xchg %ax,%ax 80103213: 66 90 xchg %ax,%ax 80103215: 66 90 xchg %ax,%ax 80103217: 66 90 xchg %ax,%ax 80103219: 66 90 xchg %ax,%ax 8010321b: 66 90 xchg %ax,%ax 8010321d: 66 90 xchg %ax,%ax 8010321f: 90 nop 80103220 <picinit>: #define IO_PIC2 0xA0 // Slave (IRQs 8-15) // Don't use the 8259A interrupt controllers. Xv6 assumes SMP hardware. void picinit(void) { 80103220: 55 push %ebp 80103221: b8 ff ff ff ff mov $0xffffffff,%eax 80103226: ba 21 00 00 00 mov $0x21,%edx 8010322b: 89 e5 mov %esp,%ebp 8010322d: ee out %al,(%dx) 8010322e: ba a1 00 00 00 mov $0xa1,%edx 80103233: ee out %al,(%dx) // mask all interrupts outb(IO_PIC1+1, 0xFF); outb(IO_PIC2+1, 0xFF); } 80103234: 5d pop %ebp 80103235: c3 ret 80103236: 66 90 xchg %ax,%ax 80103238: 66 90 xchg %ax,%ax 8010323a: 66 90 xchg %ax,%ax 8010323c: 66 90 xchg %ax,%ax 8010323e: 66 90 xchg %ax,%ax 80103240 <pipealloc>: int writeopen; // write fd is still open }; int pipealloc(struct file **f0, struct file **f1) { 80103240: 55 push %ebp 80103241: 89 e5 mov %esp,%ebp 80103243: 57 push %edi 80103244: 56 push %esi 80103245: 53 push %ebx 80103246: 83 ec 0c sub $0xc,%esp 80103249: 8b 5d 08 mov 0x8(%ebp),%ebx 8010324c: 8b 75 0c mov 0xc(%ebp),%esi struct pipe *p; p = 0; *f0 = *f1 = 0; 8010324f: c7 06 00 00 00 00 movl $0x0,(%esi) 80103255: c7 03 00 00 00 00 movl $0x0,(%ebx) if((*f0 = filealloc()) == 0 || (*f1 = filealloc()) == 0) 8010325b: e8 20 db ff ff call 80100d80 <filealloc> 80103260: 85 c0 test %eax,%eax 80103262: 89 03 mov %eax,(%ebx) 80103264: 74 22 je 80103288 <pipealloc+0x48> 80103266: e8 15 db ff ff call 80100d80 <filealloc> 8010326b: 85 c0 test %eax,%eax 8010326d: 89 06 mov %eax,(%esi) 8010326f: 74 3f je 801032b0 <pipealloc+0x70> goto bad; if((p = (struct pipe*)kalloc()) == 0) 80103271: e8 4a f2 ff ff call 801024c0 <kalloc> 80103276: 85 c0 test %eax,%eax 80103278: 89 c7 mov %eax,%edi 8010327a: 75 54 jne 801032d0 <pipealloc+0x90> //PAGEBREAK: 20 bad: if(p) kfree((char*)p); if(*f0) 8010327c: 8b 03 mov (%ebx),%eax 8010327e: 85 c0 test %eax,%eax 80103280: 75 34 jne 801032b6 <pipealloc+0x76> 80103282: 8d b6 00 00 00 00 lea 0x0(%esi),%esi fileclose(*f0); if(*f1) 80103288: 8b 06 mov (%esi),%eax 8010328a: 85 c0 test %eax,%eax 8010328c: 74 0c je 8010329a <pipealloc+0x5a> fileclose(*f1); 8010328e: 83 ec 0c sub $0xc,%esp 80103291: 50 push %eax 80103292: e8 a9 db ff ff call 80100e40 <fileclose> 80103297: 83 c4 10 add $0x10,%esp return -1; } 8010329a: 8d 65 f4 lea -0xc(%ebp),%esp return -1; 8010329d: b8 ff ff ff ff mov $0xffffffff,%eax } 801032a2: 5b pop %ebx 801032a3: 5e pop %esi 801032a4: 5f pop %edi 801032a5: 5d pop %ebp 801032a6: c3 ret 801032a7: 89 f6 mov %esi,%esi 801032a9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi if(*f0) 801032b0: 8b 03 mov (%ebx),%eax 801032b2: 85 c0 test %eax,%eax 801032b4: 74 e4 je 8010329a <pipealloc+0x5a> fileclose(*f0); 801032b6: 83 ec 0c sub $0xc,%esp 801032b9: 50 push %eax 801032ba: e8 81 db ff ff call 80100e40 <fileclose> if(*f1) 801032bf: 8b 06 mov (%esi),%eax fileclose(*f0); 801032c1: 83 c4 10 add $0x10,%esp if(*f1) 801032c4: 85 c0 test %eax,%eax 801032c6: 75 c6 jne 8010328e <pipealloc+0x4e> 801032c8: eb d0 jmp 8010329a <pipealloc+0x5a> 801032ca: 8d b6 00 00 00 00 lea 0x0(%esi),%esi initlock(&p->lock, "pipe"); 801032d0: 83 ec 08 sub $0x8,%esp p->readopen = 1; 801032d3: c7 80 3c 02 00 00 01 movl $0x1,0x23c(%eax) 801032da: 00 00 00 p->writeopen = 1; 801032dd: c7 80 40 02 00 00 01 movl $0x1,0x240(%eax) 801032e4: 00 00 00 p->nwrite = 0; 801032e7: c7 80 38 02 00 00 00 movl $0x0,0x238(%eax) 801032ee: 00 00 00 p->nread = 0; 801032f1: c7 80 34 02 00 00 00 movl $0x0,0x234(%eax) 801032f8: 00 00 00 initlock(&p->lock, "pipe"); 801032fb: 68 90 7c 10 80 push $0x80107c90 80103300: 50 push %eax 80103301: e8 3a 10 00 00 call 80104340 <initlock> (*f0)->type = FD_PIPE; 80103306: 8b 03 mov (%ebx),%eax return 0; 80103308: 83 c4 10 add $0x10,%esp (*f0)->type = FD_PIPE; 8010330b: c7 00 01 00 00 00 movl $0x1,(%eax) (*f0)->readable = 1; 80103311: 8b 03 mov (%ebx),%eax 80103313: c6 40 08 01 movb $0x1,0x8(%eax) (*f0)->writable = 0; 80103317: 8b 03 mov (%ebx),%eax 80103319: c6 40 09 00 movb $0x0,0x9(%eax) (*f0)->pipe = p; 8010331d: 8b 03 mov (%ebx),%eax 8010331f: 89 78 0c mov %edi,0xc(%eax) (*f1)->type = FD_PIPE; 80103322: 8b 06 mov (%esi),%eax 80103324: c7 00 01 00 00 00 movl $0x1,(%eax) (*f1)->readable = 0; 8010332a: 8b 06 mov (%esi),%eax 8010332c: c6 40 08 00 movb $0x0,0x8(%eax) (*f1)->writable = 1; 80103330: 8b 06 mov (%esi),%eax 80103332: c6 40 09 01 movb $0x1,0x9(%eax) (*f1)->pipe = p; 80103336: 8b 06 mov (%esi),%eax 80103338: 89 78 0c mov %edi,0xc(%eax) } 8010333b: 8d 65 f4 lea -0xc(%ebp),%esp return 0; 8010333e: 31 c0 xor %eax,%eax } 80103340: 5b pop %ebx 80103341: 5e pop %esi 80103342: 5f pop %edi 80103343: 5d pop %ebp 80103344: c3 ret 80103345: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80103349: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80103350 <pipeclose>: void pipeclose(struct pipe *p, int writable) { 80103350: 55 push %ebp 80103351: 89 e5 mov %esp,%ebp 80103353: 56 push %esi 80103354: 53 push %ebx 80103355: 8b 5d 08 mov 0x8(%ebp),%ebx 80103358: 8b 75 0c mov 0xc(%ebp),%esi acquire(&p->lock); 8010335b: 83 ec 0c sub $0xc,%esp 8010335e: 53 push %ebx 8010335f: e8 1c 11 00 00 call 80104480 <acquire> if(writable){ 80103364: 83 c4 10 add $0x10,%esp 80103367: 85 f6 test %esi,%esi 80103369: 74 45 je 801033b0 <pipeclose+0x60> p->writeopen = 0; wakeup(&p->nread); 8010336b: 8d 83 34 02 00 00 lea 0x234(%ebx),%eax 80103371: 83 ec 0c sub $0xc,%esp p->writeopen = 0; 80103374: c7 83 40 02 00 00 00 movl $0x0,0x240(%ebx) 8010337b: 00 00 00 wakeup(&p->nread); 8010337e: 50 push %eax 8010337f: e8 cc 0b 00 00 call 80103f50 <wakeup> 80103384: 83 c4 10 add $0x10,%esp } else { p->readopen = 0; wakeup(&p->nwrite); } if(p->readopen == 0 && p->writeopen == 0){ 80103387: 8b 93 3c 02 00 00 mov 0x23c(%ebx),%edx 8010338d: 85 d2 test %edx,%edx 8010338f: 75 0a jne 8010339b <pipeclose+0x4b> 80103391: 8b 83 40 02 00 00 mov 0x240(%ebx),%eax 80103397: 85 c0 test %eax,%eax 80103399: 74 35 je 801033d0 <pipeclose+0x80> release(&p->lock); kfree((char*)p); } else release(&p->lock); 8010339b: 89 5d 08 mov %ebx,0x8(%ebp) } 8010339e: 8d 65 f8 lea -0x8(%ebp),%esp 801033a1: 5b pop %ebx 801033a2: 5e pop %esi 801033a3: 5d pop %ebp release(&p->lock); 801033a4: e9 97 11 00 00 jmp 80104540 <release> 801033a9: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi wakeup(&p->nwrite); 801033b0: 8d 83 38 02 00 00 lea 0x238(%ebx),%eax 801033b6: 83 ec 0c sub $0xc,%esp p->readopen = 0; 801033b9: c7 83 3c 02 00 00 00 movl $0x0,0x23c(%ebx) 801033c0: 00 00 00 wakeup(&p->nwrite); 801033c3: 50 push %eax 801033c4: e8 87 0b 00 00 call 80103f50 <wakeup> 801033c9: 83 c4 10 add $0x10,%esp 801033cc: eb b9 jmp 80103387 <pipeclose+0x37> 801033ce: 66 90 xchg %ax,%ax release(&p->lock); 801033d0: 83 ec 0c sub $0xc,%esp 801033d3: 53 push %ebx 801033d4: e8 67 11 00 00 call 80104540 <release> kfree((char*)p); 801033d9: 89 5d 08 mov %ebx,0x8(%ebp) 801033dc: 83 c4 10 add $0x10,%esp } 801033df: 8d 65 f8 lea -0x8(%ebp),%esp 801033e2: 5b pop %ebx 801033e3: 5e pop %esi 801033e4: 5d pop %ebp kfree((char*)p); 801033e5: e9 26 ef ff ff jmp 80102310 <kfree> 801033ea: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 801033f0 <pipewrite>: //PAGEBREAK: 40 int pipewrite(struct pipe *p, char *addr, int n) { 801033f0: 55 push %ebp 801033f1: 89 e5 mov %esp,%ebp 801033f3: 57 push %edi 801033f4: 56 push %esi 801033f5: 53 push %ebx 801033f6: 83 ec 28 sub $0x28,%esp 801033f9: 8b 5d 08 mov 0x8(%ebp),%ebx int i; acquire(&p->lock); 801033fc: 53 push %ebx 801033fd: e8 7e 10 00 00 call 80104480 <acquire> for(i = 0; i < n; i++){ 80103402: 8b 45 10 mov 0x10(%ebp),%eax 80103405: 83 c4 10 add $0x10,%esp 80103408: 85 c0 test %eax,%eax 8010340a: 0f 8e c9 00 00 00 jle 801034d9 <pipewrite+0xe9> 80103410: 8b 4d 0c mov 0xc(%ebp),%ecx 80103413: 8b 83 38 02 00 00 mov 0x238(%ebx),%eax while(p->nwrite == p->nread + PIPESIZE){ //DOC: pipewrite-full if(p->readopen == 0 || myproc()->killed){ release(&p->lock); return -1; } wakeup(&p->nread); 80103419: 8d bb 34 02 00 00 lea 0x234(%ebx),%edi 8010341f: 89 4d e4 mov %ecx,-0x1c(%ebp) 80103422: 03 4d 10 add 0x10(%ebp),%ecx 80103425: 89 4d e0 mov %ecx,-0x20(%ebp) while(p->nwrite == p->nread + PIPESIZE){ //DOC: pipewrite-full 80103428: 8b 8b 34 02 00 00 mov 0x234(%ebx),%ecx 8010342e: 8d 91 00 02 00 00 lea 0x200(%ecx),%edx 80103434: 39 d0 cmp %edx,%eax 80103436: 75 71 jne 801034a9 <pipewrite+0xb9> if(p->readopen == 0 || myproc()->killed){ 80103438: 8b 83 3c 02 00 00 mov 0x23c(%ebx),%eax 8010343e: 85 c0 test %eax,%eax 80103440: 74 4e je 80103490 <pipewrite+0xa0> sleep(&p->nwrite, &p->lock); //DOC: pipewrite-sleep 80103442: 8d b3 38 02 00 00 lea 0x238(%ebx),%esi 80103448: eb 3a jmp 80103484 <pipewrite+0x94> 8010344a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi wakeup(&p->nread); 80103450: 83 ec 0c sub $0xc,%esp 80103453: 57 push %edi 80103454: e8 f7 0a 00 00 call 80103f50 <wakeup> sleep(&p->nwrite, &p->lock); //DOC: pipewrite-sleep 80103459: 5a pop %edx 8010345a: 59 pop %ecx 8010345b: 53 push %ebx 8010345c: 56 push %esi 8010345d: e8 3e 09 00 00 call 80103da0 <sleep> while(p->nwrite == p->nread + PIPESIZE){ //DOC: pipewrite-full 80103462: 8b 83 34 02 00 00 mov 0x234(%ebx),%eax 80103468: 8b 93 38 02 00 00 mov 0x238(%ebx),%edx 8010346e: 83 c4 10 add $0x10,%esp 80103471: 05 00 02 00 00 add $0x200,%eax 80103476: 39 c2 cmp %eax,%edx 80103478: 75 36 jne 801034b0 <pipewrite+0xc0> if(p->readopen == 0 || myproc()->killed){ 8010347a: 8b 83 3c 02 00 00 mov 0x23c(%ebx),%eax 80103480: 85 c0 test %eax,%eax 80103482: 74 0c je 80103490 <pipewrite+0xa0> 80103484: e8 57 03 00 00 call 801037e0 <myproc> 80103489: 8b 40 24 mov 0x24(%eax),%eax 8010348c: 85 c0 test %eax,%eax 8010348e: 74 c0 je 80103450 <pipewrite+0x60> release(&p->lock); 80103490: 83 ec 0c sub $0xc,%esp 80103493: 53 push %ebx 80103494: e8 a7 10 00 00 call 80104540 <release> return -1; 80103499: 83 c4 10 add $0x10,%esp 8010349c: b8 ff ff ff ff mov $0xffffffff,%eax p->data[p->nwrite++ % PIPESIZE] = addr[i]; } wakeup(&p->nread); //DOC: pipewrite-wakeup1 release(&p->lock); return n; } 801034a1: 8d 65 f4 lea -0xc(%ebp),%esp 801034a4: 5b pop %ebx 801034a5: 5e pop %esi 801034a6: 5f pop %edi 801034a7: 5d pop %ebp 801034a8: c3 ret while(p->nwrite == p->nread + PIPESIZE){ //DOC: pipewrite-full 801034a9: 89 c2 mov %eax,%edx 801034ab: 90 nop 801034ac: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi p->data[p->nwrite++ % PIPESIZE] = addr[i]; 801034b0: 8b 75 e4 mov -0x1c(%ebp),%esi 801034b3: 8d 42 01 lea 0x1(%edx),%eax 801034b6: 81 e2 ff 01 00 00 and $0x1ff,%edx 801034bc: 89 83 38 02 00 00 mov %eax,0x238(%ebx) 801034c2: 83 c6 01 add $0x1,%esi 801034c5: 0f b6 4e ff movzbl -0x1(%esi),%ecx for(i = 0; i < n; i++){ 801034c9: 3b 75 e0 cmp -0x20(%ebp),%esi 801034cc: 89 75 e4 mov %esi,-0x1c(%ebp) p->data[p->nwrite++ % PIPESIZE] = addr[i]; 801034cf: 88 4c 13 34 mov %cl,0x34(%ebx,%edx,1) for(i = 0; i < n; i++){ 801034d3: 0f 85 4f ff ff ff jne 80103428 <pipewrite+0x38> wakeup(&p->nread); //DOC: pipewrite-wakeup1 801034d9: 8d 83 34 02 00 00 lea 0x234(%ebx),%eax 801034df: 83 ec 0c sub $0xc,%esp 801034e2: 50 push %eax 801034e3: e8 68 0a 00 00 call 80103f50 <wakeup> release(&p->lock); 801034e8: 89 1c 24 mov %ebx,(%esp) 801034eb: e8 50 10 00 00 call 80104540 <release> return n; 801034f0: 83 c4 10 add $0x10,%esp 801034f3: 8b 45 10 mov 0x10(%ebp),%eax 801034f6: eb a9 jmp 801034a1 <pipewrite+0xb1> 801034f8: 90 nop 801034f9: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80103500 <piperead>: int piperead(struct pipe *p, char *addr, int n) { 80103500: 55 push %ebp 80103501: 89 e5 mov %esp,%ebp 80103503: 57 push %edi 80103504: 56 push %esi 80103505: 53 push %ebx 80103506: 83 ec 18 sub $0x18,%esp 80103509: 8b 75 08 mov 0x8(%ebp),%esi 8010350c: 8b 7d 0c mov 0xc(%ebp),%edi int i; acquire(&p->lock); 8010350f: 56 push %esi 80103510: e8 6b 0f 00 00 call 80104480 <acquire> while(p->nread == p->nwrite && p->writeopen){ //DOC: pipe-empty 80103515: 83 c4 10 add $0x10,%esp 80103518: 8b 8e 34 02 00 00 mov 0x234(%esi),%ecx 8010351e: 3b 8e 38 02 00 00 cmp 0x238(%esi),%ecx 80103524: 75 6a jne 80103590 <piperead+0x90> 80103526: 8b 9e 40 02 00 00 mov 0x240(%esi),%ebx 8010352c: 85 db test %ebx,%ebx 8010352e: 0f 84 c4 00 00 00 je 801035f8 <piperead+0xf8> if(myproc()->killed){ release(&p->lock); return -1; } sleep(&p->nread, &p->lock); //DOC: piperead-sleep 80103534: 8d 9e 34 02 00 00 lea 0x234(%esi),%ebx 8010353a: eb 2d jmp 80103569 <piperead+0x69> 8010353c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80103540: 83 ec 08 sub $0x8,%esp 80103543: 56 push %esi 80103544: 53 push %ebx 80103545: e8 56 08 00 00 call 80103da0 <sleep> while(p->nread == p->nwrite && p->writeopen){ //DOC: pipe-empty 8010354a: 83 c4 10 add $0x10,%esp 8010354d: 8b 8e 34 02 00 00 mov 0x234(%esi),%ecx 80103553: 3b 8e 38 02 00 00 cmp 0x238(%esi),%ecx 80103559: 75 35 jne 80103590 <piperead+0x90> 8010355b: 8b 96 40 02 00 00 mov 0x240(%esi),%edx 80103561: 85 d2 test %edx,%edx 80103563: 0f 84 8f 00 00 00 je 801035f8 <piperead+0xf8> if(myproc()->killed){ 80103569: e8 72 02 00 00 call 801037e0 <myproc> 8010356e: 8b 48 24 mov 0x24(%eax),%ecx 80103571: 85 c9 test %ecx,%ecx 80103573: 74 cb je 80103540 <piperead+0x40> release(&p->lock); 80103575: 83 ec 0c sub $0xc,%esp return -1; 80103578: bb ff ff ff ff mov $0xffffffff,%ebx release(&p->lock); 8010357d: 56 push %esi 8010357e: e8 bd 0f 00 00 call 80104540 <release> return -1; 80103583: 83 c4 10 add $0x10,%esp addr[i] = p->data[p->nread++ % PIPESIZE]; } wakeup(&p->nwrite); //DOC: piperead-wakeup release(&p->lock); return i; } 80103586: 8d 65 f4 lea -0xc(%ebp),%esp 80103589: 89 d8 mov %ebx,%eax 8010358b: 5b pop %ebx 8010358c: 5e pop %esi 8010358d: 5f pop %edi 8010358e: 5d pop %ebp 8010358f: c3 ret for(i = 0; i < n; i++){ //DOC: piperead-copy 80103590: 8b 45 10 mov 0x10(%ebp),%eax 80103593: 85 c0 test %eax,%eax 80103595: 7e 61 jle 801035f8 <piperead+0xf8> if(p->nread == p->nwrite) 80103597: 31 db xor %ebx,%ebx 80103599: eb 13 jmp 801035ae <piperead+0xae> 8010359b: 90 nop 8010359c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 801035a0: 8b 8e 34 02 00 00 mov 0x234(%esi),%ecx 801035a6: 3b 8e 38 02 00 00 cmp 0x238(%esi),%ecx 801035ac: 74 1f je 801035cd <piperead+0xcd> addr[i] = p->data[p->nread++ % PIPESIZE]; 801035ae: 8d 41 01 lea 0x1(%ecx),%eax 801035b1: 81 e1 ff 01 00 00 and $0x1ff,%ecx 801035b7: 89 86 34 02 00 00 mov %eax,0x234(%esi) 801035bd: 0f b6 44 0e 34 movzbl 0x34(%esi,%ecx,1),%eax 801035c2: 88 04 1f mov %al,(%edi,%ebx,1) for(i = 0; i < n; i++){ //DOC: piperead-copy 801035c5: 83 c3 01 add $0x1,%ebx 801035c8: 39 5d 10 cmp %ebx,0x10(%ebp) 801035cb: 75 d3 jne 801035a0 <piperead+0xa0> wakeup(&p->nwrite); //DOC: piperead-wakeup 801035cd: 8d 86 38 02 00 00 lea 0x238(%esi),%eax 801035d3: 83 ec 0c sub $0xc,%esp 801035d6: 50 push %eax 801035d7: e8 74 09 00 00 call 80103f50 <wakeup> release(&p->lock); 801035dc: 89 34 24 mov %esi,(%esp) 801035df: e8 5c 0f 00 00 call 80104540 <release> return i; 801035e4: 83 c4 10 add $0x10,%esp } 801035e7: 8d 65 f4 lea -0xc(%ebp),%esp 801035ea: 89 d8 mov %ebx,%eax 801035ec: 5b pop %ebx 801035ed: 5e pop %esi 801035ee: 5f pop %edi 801035ef: 5d pop %ebp 801035f0: c3 ret 801035f1: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 801035f8: 31 db xor %ebx,%ebx 801035fa: eb d1 jmp 801035cd <piperead+0xcd> 801035fc: 66 90 xchg %ax,%ax 801035fe: 66 90 xchg %ax,%ax 80103600 <allocproc>: // If found, change state to EMBRYO and initialize // state required to run in the kernel. // Otherwise return 0. static struct proc* allocproc(void) { 80103600: 55 push %ebp 80103601: 89 e5 mov %esp,%ebp 80103603: 53 push %ebx struct proc *p; char *sp; acquire(&ptable.lock); for(p = ptable.proc; p < &ptable.proc[NPROC]; p++) 80103604: bb 34 39 11 80 mov $0x80113934,%ebx { 80103609: 83 ec 10 sub $0x10,%esp acquire(&ptable.lock); 8010360c: 68 00 39 11 80 push $0x80113900 80103611: e8 6a 0e 00 00 call 80104480 <acquire> 80103616: 83 c4 10 add $0x10,%esp 80103619: eb 14 jmp 8010362f <allocproc+0x2f> 8010361b: 90 nop 8010361c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi for(p = ptable.proc; p < &ptable.proc[NPROC]; p++) 80103620: 83 eb 80 sub $0xffffff80,%ebx 80103623: 81 fb 34 59 11 80 cmp $0x80115934,%ebx 80103629: 0f 83 89 00 00 00 jae 801036b8 <allocproc+0xb8> if(p->state == UNUSED) 8010362f: 8b 43 0c mov 0xc(%ebx),%eax 80103632: 85 c0 test %eax,%eax 80103634: 75 ea jne 80103620 <allocproc+0x20> release(&ptable.lock); return 0; found: p->state = EMBRYO; p->pid = nextpid++; 80103636: a1 04 b0 10 80 mov 0x8010b004,%eax p->priority = 10; release(&ptable.lock); 8010363b: 83 ec 0c sub $0xc,%esp p->state = EMBRYO; 8010363e: c7 43 0c 01 00 00 00 movl $0x1,0xc(%ebx) p->priority = 10; 80103645: c7 43 7c 0a 00 00 00 movl $0xa,0x7c(%ebx) p->pid = nextpid++; 8010364c: 8d 50 01 lea 0x1(%eax),%edx 8010364f: 89 43 10 mov %eax,0x10(%ebx) release(&ptable.lock); 80103652: 68 00 39 11 80 push $0x80113900 p->pid = nextpid++; 80103657: 89 15 04 b0 10 80 mov %edx,0x8010b004 release(&ptable.lock); 8010365d: e8 de 0e 00 00 call 80104540 <release> // Allocate kernel stack. if((p->kstack = kalloc()) == 0){ 80103662: e8 59 ee ff ff call 801024c0 <kalloc> 80103667: 83 c4 10 add $0x10,%esp 8010366a: 85 c0 test %eax,%eax 8010366c: 89 43 08 mov %eax,0x8(%ebx) 8010366f: 74 60 je 801036d1 <allocproc+0xd1> return 0; } sp = p->kstack + KSTACKSIZE; // Leave room for trap frame. sp -= sizeof *p->tf; 80103671: 8d 90 b4 0f 00 00 lea 0xfb4(%eax),%edx sp -= 4; *(uint*)sp = (uint)trapret; sp -= sizeof *p->context; p->context = (struct context*)sp; memset(p->context, 0, sizeof *p->context); 80103677: 83 ec 04 sub $0x4,%esp sp -= sizeof *p->context; 8010367a: 05 9c 0f 00 00 add $0xf9c,%eax sp -= sizeof *p->tf; 8010367f: 89 53 18 mov %edx,0x18(%ebx) *(uint*)sp = (uint)trapret; 80103682: c7 40 14 cf 5e 10 80 movl $0x80105ecf,0x14(%eax) p->context = (struct context*)sp; 80103689: 89 43 1c mov %eax,0x1c(%ebx) memset(p->context, 0, sizeof *p->context); 8010368c: 6a 14 push $0x14 8010368e: 6a 00 push $0x0 80103690: 50 push %eax 80103691: e8 fa 0e 00 00 call 80104590 <memset> p->context->eip = (uint)forkret; 80103696: 8b 43 1c mov 0x1c(%ebx),%eax p->priority = 5; //default priority return p; 80103699: 83 c4 10 add $0x10,%esp p->context->eip = (uint)forkret; 8010369c: c7 40 10 e0 36 10 80 movl $0x801036e0,0x10(%eax) p->priority = 5; //default priority 801036a3: c7 43 7c 05 00 00 00 movl $0x5,0x7c(%ebx) } 801036aa: 89 d8 mov %ebx,%eax 801036ac: 8b 5d fc mov -0x4(%ebp),%ebx 801036af: c9 leave 801036b0: c3 ret 801036b1: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi release(&ptable.lock); 801036b8: 83 ec 0c sub $0xc,%esp return 0; 801036bb: 31 db xor %ebx,%ebx release(&ptable.lock); 801036bd: 68 00 39 11 80 push $0x80113900 801036c2: e8 79 0e 00 00 call 80104540 <release> } 801036c7: 89 d8 mov %ebx,%eax return 0; 801036c9: 83 c4 10 add $0x10,%esp } 801036cc: 8b 5d fc mov -0x4(%ebp),%ebx 801036cf: c9 leave 801036d0: c3 ret p->state = UNUSED; 801036d1: c7 43 0c 00 00 00 00 movl $0x0,0xc(%ebx) return 0; 801036d8: 31 db xor %ebx,%ebx 801036da: eb ce jmp 801036aa <allocproc+0xaa> 801036dc: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 801036e0 <forkret>: // A fork child's very first scheduling by scheduler() // will swtch here. "Return" to user space. void forkret(void) { 801036e0: 55 push %ebp 801036e1: 89 e5 mov %esp,%ebp 801036e3: 83 ec 14 sub $0x14,%esp static int first = 1; // Still holding ptable.lock from scheduler. release(&ptable.lock); 801036e6: 68 00 39 11 80 push $0x80113900 801036eb: e8 50 0e 00 00 call 80104540 <release> if (first) { 801036f0: a1 00 b0 10 80 mov 0x8010b000,%eax 801036f5: 83 c4 10 add $0x10,%esp 801036f8: 85 c0 test %eax,%eax 801036fa: 75 04 jne 80103700 <forkret+0x20> iinit(ROOTDEV); initlog(ROOTDEV); } // Return to "caller", actually trapret (see allocproc). } 801036fc: c9 leave 801036fd: c3 ret 801036fe: 66 90 xchg %ax,%ax iinit(ROOTDEV); 80103700: 83 ec 0c sub $0xc,%esp first = 0; 80103703: c7 05 00 b0 10 80 00 movl $0x0,0x8010b000 8010370a: 00 00 00 iinit(ROOTDEV); 8010370d: 6a 01 push $0x1 8010370f: e8 6c dd ff ff call 80101480 <iinit> initlog(ROOTDEV); 80103714: c7 04 24 01 00 00 00 movl $0x1,(%esp) 8010371b: e8 e0 f3 ff ff call 80102b00 <initlog> 80103720: 83 c4 10 add $0x10,%esp } 80103723: c9 leave 80103724: c3 ret 80103725: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80103729: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80103730 <pinit>: { 80103730: 55 push %ebp 80103731: 89 e5 mov %esp,%ebp 80103733: 83 ec 10 sub $0x10,%esp initlock(&ptable.lock, "ptable"); 80103736: 68 95 7c 10 80 push $0x80107c95 8010373b: 68 00 39 11 80 push $0x80113900 80103740: e8 fb 0b 00 00 call 80104340 <initlock> } 80103745: 83 c4 10 add $0x10,%esp 80103748: c9 leave 80103749: c3 ret 8010374a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 80103750 <mycpu>: { 80103750: 55 push %ebp 80103751: 89 e5 mov %esp,%ebp 80103753: 83 ec 08 sub $0x8,%esp asm volatile("pushfl; popl %0" : "=r" (eflags)); 80103756: 9c pushf 80103757: 58 pop %eax if(readeflags()&FL_IF) 80103758: f6 c4 02 test $0x2,%ah 8010375b: 75 4a jne 801037a7 <mycpu+0x57> apicid = lapicid(); 8010375d: e8 ce ef ff ff call 80102730 <lapicid> for (i = 0; i < ncpu; ++i) { 80103762: 8b 15 e0 38 11 80 mov 0x801138e0,%edx 80103768: 85 d2 test %edx,%edx 8010376a: 7e 1b jle 80103787 <mycpu+0x37> if (cpus[i].apicid == apicid) 8010376c: 0f b6 0d 80 37 11 80 movzbl 0x80113780,%ecx 80103773: 39 c8 cmp %ecx,%eax 80103775: 74 21 je 80103798 <mycpu+0x48> for (i = 0; i < ncpu; ++i) { 80103777: 83 fa 01 cmp $0x1,%edx 8010377a: 74 0b je 80103787 <mycpu+0x37> if (cpus[i].apicid == apicid) 8010377c: 0f b6 15 30 38 11 80 movzbl 0x80113830,%edx 80103783: 39 d0 cmp %edx,%eax 80103785: 74 19 je 801037a0 <mycpu+0x50> panic("unknown apicid\n"); 80103787: 83 ec 0c sub $0xc,%esp 8010378a: 68 9c 7c 10 80 push $0x80107c9c 8010378f: e8 fc cb ff ff call 80100390 <panic> 80103794: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi if (cpus[i].apicid == apicid) 80103798: b8 80 37 11 80 mov $0x80113780,%eax } 8010379d: c9 leave 8010379e: c3 ret 8010379f: 90 nop if (cpus[i].apicid == apicid) 801037a0: b8 30 38 11 80 mov $0x80113830,%eax } 801037a5: c9 leave 801037a6: c3 ret panic("mycpu called with interrupts enabled\n"); 801037a7: 83 ec 0c sub $0xc,%esp 801037aa: 68 c4 7d 10 80 push $0x80107dc4 801037af: e8 dc cb ff ff call 80100390 <panic> 801037b4: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 801037ba: 8d bf 00 00 00 00 lea 0x0(%edi),%edi 801037c0 <cpuid>: cpuid() { 801037c0: 55 push %ebp 801037c1: 89 e5 mov %esp,%ebp 801037c3: 83 ec 08 sub $0x8,%esp return mycpu()-cpus; 801037c6: e8 85 ff ff ff call 80103750 <mycpu> 801037cb: 2d 80 37 11 80 sub $0x80113780,%eax } 801037d0: c9 leave return mycpu()-cpus; 801037d1: c1 f8 04 sar $0x4,%eax 801037d4: 69 c0 a3 8b 2e ba imul $0xba2e8ba3,%eax,%eax } 801037da: c3 ret 801037db: 90 nop 801037dc: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 801037e0 <myproc>: myproc(void) { 801037e0: 55 push %ebp 801037e1: 89 e5 mov %esp,%ebp 801037e3: 53 push %ebx 801037e4: 83 ec 04 sub $0x4,%esp pushcli(); 801037e7: e8 c4 0b 00 00 call 801043b0 <pushcli> c = mycpu(); 801037ec: e8 5f ff ff ff call 80103750 <mycpu> p = c->proc; 801037f1: 8b 98 ac 00 00 00 mov 0xac(%eax),%ebx popcli(); 801037f7: e8 f4 0b 00 00 call 801043f0 <popcli> } 801037fc: 83 c4 04 add $0x4,%esp 801037ff: 89 d8 mov %ebx,%eax 80103801: 5b pop %ebx 80103802: 5d pop %ebp 80103803: c3 ret 80103804: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 8010380a: 8d bf 00 00 00 00 lea 0x0(%edi),%edi 80103810 <userinit>: { 80103810: 55 push %ebp 80103811: 89 e5 mov %esp,%ebp 80103813: 53 push %ebx 80103814: 83 ec 04 sub $0x4,%esp p = allocproc(); 80103817: e8 e4 fd ff ff call 80103600 <allocproc> 8010381c: 89 c3 mov %eax,%ebx initproc = p; 8010381e: a3 b8 b5 10 80 mov %eax,0x8010b5b8 if((p->pgdir = setupkvm()) == 0) 80103823: e8 78 3c 00 00 call 801074a0 <setupkvm> 80103828: 85 c0 test %eax,%eax 8010382a: 89 43 04 mov %eax,0x4(%ebx) 8010382d: 0f 84 bd 00 00 00 je 801038f0 <userinit+0xe0> inituvm(p->pgdir, _binary_initcode_start, (int)_binary_initcode_size); 80103833: 83 ec 04 sub $0x4,%esp 80103836: 68 2c 00 00 00 push $0x2c 8010383b: 68 60 b4 10 80 push $0x8010b460 80103840: 50 push %eax 80103841: e8 3a 39 00 00 call 80107180 <inituvm> memset(p->tf, 0, sizeof(*p->tf)); 80103846: 83 c4 0c add $0xc,%esp p->sz = PGSIZE; 80103849: c7 03 00 10 00 00 movl $0x1000,(%ebx) memset(p->tf, 0, sizeof(*p->tf)); 8010384f: 6a 4c push $0x4c 80103851: 6a 00 push $0x0 80103853: ff 73 18 pushl 0x18(%ebx) 80103856: e8 35 0d 00 00 call 80104590 <memset> p->tf->cs = (SEG_UCODE << 3) | DPL_USER; 8010385b: 8b 43 18 mov 0x18(%ebx),%eax 8010385e: ba 1b 00 00 00 mov $0x1b,%edx p->tf->ds = (SEG_UDATA << 3) | DPL_USER; 80103863: b9 23 00 00 00 mov $0x23,%ecx safestrcpy(p->name, "initcode", sizeof(p->name)); 80103868: 83 c4 0c add $0xc,%esp p->tf->cs = (SEG_UCODE << 3) | DPL_USER; 8010386b: 66 89 50 3c mov %dx,0x3c(%eax) p->tf->ds = (SEG_UDATA << 3) | DPL_USER; 8010386f: 8b 43 18 mov 0x18(%ebx),%eax 80103872: 66 89 48 2c mov %cx,0x2c(%eax) p->tf->es = p->tf->ds; 80103876: 8b 43 18 mov 0x18(%ebx),%eax 80103879: 0f b7 50 2c movzwl 0x2c(%eax),%edx 8010387d: 66 89 50 28 mov %dx,0x28(%eax) p->tf->ss = p->tf->ds; 80103881: 8b 43 18 mov 0x18(%ebx),%eax 80103884: 0f b7 50 2c movzwl 0x2c(%eax),%edx 80103888: 66 89 50 48 mov %dx,0x48(%eax) p->tf->eflags = FL_IF; 8010388c: 8b 43 18 mov 0x18(%ebx),%eax 8010388f: c7 40 40 00 02 00 00 movl $0x200,0x40(%eax) p->tf->esp = PGSIZE; 80103896: 8b 43 18 mov 0x18(%ebx),%eax 80103899: c7 40 44 00 10 00 00 movl $0x1000,0x44(%eax) p->tf->eip = 0; // beginning of initcode.S 801038a0: 8b 43 18 mov 0x18(%ebx),%eax 801038a3: c7 40 38 00 00 00 00 movl $0x0,0x38(%eax) safestrcpy(p->name, "initcode", sizeof(p->name)); 801038aa: 8d 43 6c lea 0x6c(%ebx),%eax 801038ad: 6a 10 push $0x10 801038af: 68 c5 7c 10 80 push $0x80107cc5 801038b4: 50 push %eax 801038b5: e8 b6 0e 00 00 call 80104770 <safestrcpy> p->cwd = namei("/"); 801038ba: c7 04 24 ce 7c 10 80 movl $0x80107cce,(%esp) 801038c1: e8 1a e6 ff ff call 80101ee0 <namei> 801038c6: 89 43 68 mov %eax,0x68(%ebx) acquire(&ptable.lock); 801038c9: c7 04 24 00 39 11 80 movl $0x80113900,(%esp) 801038d0: e8 ab 0b 00 00 call 80104480 <acquire> p->state = RUNNABLE; 801038d5: c7 43 0c 03 00 00 00 movl $0x3,0xc(%ebx) release(&ptable.lock); 801038dc: c7 04 24 00 39 11 80 movl $0x80113900,(%esp) 801038e3: e8 58 0c 00 00 call 80104540 <release> } 801038e8: 83 c4 10 add $0x10,%esp 801038eb: 8b 5d fc mov -0x4(%ebp),%ebx 801038ee: c9 leave 801038ef: c3 ret panic("userinit: out of memory?"); 801038f0: 83 ec 0c sub $0xc,%esp 801038f3: 68 ac 7c 10 80 push $0x80107cac 801038f8: e8 93 ca ff ff call 80100390 <panic> 801038fd: 8d 76 00 lea 0x0(%esi),%esi 80103900 <growproc>: { 80103900: 55 push %ebp 80103901: 89 e5 mov %esp,%ebp 80103903: 56 push %esi 80103904: 53 push %ebx 80103905: 8b 75 08 mov 0x8(%ebp),%esi pushcli(); 80103908: e8 a3 0a 00 00 call 801043b0 <pushcli> c = mycpu(); 8010390d: e8 3e fe ff ff call 80103750 <mycpu> p = c->proc; 80103912: 8b 98 ac 00 00 00 mov 0xac(%eax),%ebx popcli(); 80103918: e8 d3 0a 00 00 call 801043f0 <popcli> if(n > 0){ 8010391d: 83 fe 00 cmp $0x0,%esi sz = curproc->sz; 80103920: 8b 03 mov (%ebx),%eax if(n > 0){ 80103922: 7f 1c jg 80103940 <growproc+0x40> } else if(n < 0){ 80103924: 75 3a jne 80103960 <growproc+0x60> switchuvm(curproc); 80103926: 83 ec 0c sub $0xc,%esp curproc->sz = sz; 80103929: 89 03 mov %eax,(%ebx) switchuvm(curproc); 8010392b: 53 push %ebx 8010392c: e8 3f 37 00 00 call 80107070 <switchuvm> return 0; 80103931: 83 c4 10 add $0x10,%esp 80103934: 31 c0 xor %eax,%eax } 80103936: 8d 65 f8 lea -0x8(%ebp),%esp 80103939: 5b pop %ebx 8010393a: 5e pop %esi 8010393b: 5d pop %ebp 8010393c: c3 ret 8010393d: 8d 76 00 lea 0x0(%esi),%esi if((sz = allocuvm(curproc->pgdir, sz, sz + n)) == 0) 80103940: 83 ec 04 sub $0x4,%esp 80103943: 01 c6 add %eax,%esi 80103945: 56 push %esi 80103946: 50 push %eax 80103947: ff 73 04 pushl 0x4(%ebx) 8010394a: e8 71 39 00 00 call 801072c0 <allocuvm> 8010394f: 83 c4 10 add $0x10,%esp 80103952: 85 c0 test %eax,%eax 80103954: 75 d0 jne 80103926 <growproc+0x26> return -1; 80103956: b8 ff ff ff ff mov $0xffffffff,%eax 8010395b: eb d9 jmp 80103936 <growproc+0x36> 8010395d: 8d 76 00 lea 0x0(%esi),%esi if((sz = deallocuvm(curproc->pgdir, sz, sz + n)) == 0) 80103960: 83 ec 04 sub $0x4,%esp 80103963: 01 c6 add %eax,%esi 80103965: 56 push %esi 80103966: 50 push %eax 80103967: ff 73 04 pushl 0x4(%ebx) 8010396a: e8 81 3a 00 00 call 801073f0 <deallocuvm> 8010396f: 83 c4 10 add $0x10,%esp 80103972: 85 c0 test %eax,%eax 80103974: 75 b0 jne 80103926 <growproc+0x26> 80103976: eb de jmp 80103956 <growproc+0x56> 80103978: 90 nop 80103979: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80103980 <fork>: { 80103980: 55 push %ebp 80103981: 89 e5 mov %esp,%ebp 80103983: 57 push %edi 80103984: 56 push %esi 80103985: 53 push %ebx 80103986: 83 ec 1c sub $0x1c,%esp pushcli(); 80103989: e8 22 0a 00 00 call 801043b0 <pushcli> c = mycpu(); 8010398e: e8 bd fd ff ff call 80103750 <mycpu> p = c->proc; 80103993: 8b 98 ac 00 00 00 mov 0xac(%eax),%ebx popcli(); 80103999: e8 52 0a 00 00 call 801043f0 <popcli> if((np = allocproc()) == 0){ 8010399e: e8 5d fc ff ff call 80103600 <allocproc> 801039a3: 85 c0 test %eax,%eax 801039a5: 89 45 e4 mov %eax,-0x1c(%ebp) 801039a8: 0f 84 b7 00 00 00 je 80103a65 <fork+0xe5> if((np->pgdir = copyuvm(curproc->pgdir, curproc->sz)) == 0){ 801039ae: 83 ec 08 sub $0x8,%esp 801039b1: ff 33 pushl (%ebx) 801039b3: ff 73 04 pushl 0x4(%ebx) 801039b6: 89 c7 mov %eax,%edi 801039b8: e8 b3 3b 00 00 call 80107570 <copyuvm> 801039bd: 83 c4 10 add $0x10,%esp 801039c0: 85 c0 test %eax,%eax 801039c2: 89 47 04 mov %eax,0x4(%edi) 801039c5: 0f 84 a1 00 00 00 je 80103a6c <fork+0xec> np->sz = curproc->sz; 801039cb: 8b 03 mov (%ebx),%eax 801039cd: 8b 4d e4 mov -0x1c(%ebp),%ecx 801039d0: 89 01 mov %eax,(%ecx) np->parent = curproc; 801039d2: 89 59 14 mov %ebx,0x14(%ecx) 801039d5: 89 c8 mov %ecx,%eax *np->tf = *curproc->tf; 801039d7: 8b 79 18 mov 0x18(%ecx),%edi 801039da: 8b 73 18 mov 0x18(%ebx),%esi 801039dd: b9 13 00 00 00 mov $0x13,%ecx 801039e2: f3 a5 rep movsl %ds:(%esi),%es:(%edi) for(i = 0; i < NOFILE; i++) 801039e4: 31 f6 xor %esi,%esi np->tf->eax = 0; 801039e6: 8b 40 18 mov 0x18(%eax),%eax 801039e9: c7 40 1c 00 00 00 00 movl $0x0,0x1c(%eax) if(curproc->ofile[i]) 801039f0: 8b 44 b3 28 mov 0x28(%ebx,%esi,4),%eax 801039f4: 85 c0 test %eax,%eax 801039f6: 74 13 je 80103a0b <fork+0x8b> np->ofile[i] = filedup(curproc->ofile[i]); 801039f8: 83 ec 0c sub $0xc,%esp 801039fb: 50 push %eax 801039fc: e8 ef d3 ff ff call 80100df0 <filedup> 80103a01: 8b 55 e4 mov -0x1c(%ebp),%edx 80103a04: 83 c4 10 add $0x10,%esp 80103a07: 89 44 b2 28 mov %eax,0x28(%edx,%esi,4) for(i = 0; i < NOFILE; i++) 80103a0b: 83 c6 01 add $0x1,%esi 80103a0e: 83 fe 10 cmp $0x10,%esi 80103a11: 75 dd jne 801039f0 <fork+0x70> np->cwd = idup(curproc->cwd); 80103a13: 83 ec 0c sub $0xc,%esp 80103a16: ff 73 68 pushl 0x68(%ebx) safestrcpy(np->name, curproc->name, sizeof(curproc->name)); 80103a19: 83 c3 6c add $0x6c,%ebx np->cwd = idup(curproc->cwd); 80103a1c: e8 2f dc ff ff call 80101650 <idup> 80103a21: 8b 7d e4 mov -0x1c(%ebp),%edi safestrcpy(np->name, curproc->name, sizeof(curproc->name)); 80103a24: 83 c4 0c add $0xc,%esp np->cwd = idup(curproc->cwd); 80103a27: 89 47 68 mov %eax,0x68(%edi) safestrcpy(np->name, curproc->name, sizeof(curproc->name)); 80103a2a: 8d 47 6c lea 0x6c(%edi),%eax 80103a2d: 6a 10 push $0x10 80103a2f: 53 push %ebx 80103a30: 50 push %eax 80103a31: e8 3a 0d 00 00 call 80104770 <safestrcpy> pid = np->pid; 80103a36: 8b 5f 10 mov 0x10(%edi),%ebx acquire(&ptable.lock); 80103a39: c7 04 24 00 39 11 80 movl $0x80113900,(%esp) 80103a40: e8 3b 0a 00 00 call 80104480 <acquire> np->state = RUNNABLE; 80103a45: c7 47 0c 03 00 00 00 movl $0x3,0xc(%edi) release(&ptable.lock); 80103a4c: c7 04 24 00 39 11 80 movl $0x80113900,(%esp) 80103a53: e8 e8 0a 00 00 call 80104540 <release> return pid; 80103a58: 83 c4 10 add $0x10,%esp } 80103a5b: 8d 65 f4 lea -0xc(%ebp),%esp 80103a5e: 89 d8 mov %ebx,%eax 80103a60: 5b pop %ebx 80103a61: 5e pop %esi 80103a62: 5f pop %edi 80103a63: 5d pop %ebp 80103a64: c3 ret return -1; 80103a65: bb ff ff ff ff mov $0xffffffff,%ebx 80103a6a: eb ef jmp 80103a5b <fork+0xdb> kfree(np->kstack); 80103a6c: 8b 5d e4 mov -0x1c(%ebp),%ebx 80103a6f: 83 ec 0c sub $0xc,%esp 80103a72: ff 73 08 pushl 0x8(%ebx) 80103a75: e8 96 e8 ff ff call 80102310 <kfree> np->kstack = 0; 80103a7a: c7 43 08 00 00 00 00 movl $0x0,0x8(%ebx) np->state = UNUSED; 80103a81: c7 43 0c 00 00 00 00 movl $0x0,0xc(%ebx) return -1; 80103a88: 83 c4 10 add $0x10,%esp 80103a8b: bb ff ff ff ff mov $0xffffffff,%ebx 80103a90: eb c9 jmp 80103a5b <fork+0xdb> 80103a92: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80103a99: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80103aa0 <scheduler>: { 80103aa0: 55 push %ebp 80103aa1: 89 e5 mov %esp,%ebp 80103aa3: 57 push %edi 80103aa4: 56 push %esi 80103aa5: 53 push %ebx 80103aa6: 83 ec 0c sub $0xc,%esp struct cpu *c = mycpu(); 80103aa9: e8 a2 fc ff ff call 80103750 <mycpu> 80103aae: 8d 70 04 lea 0x4(%eax),%esi 80103ab1: 89 c3 mov %eax,%ebx c->proc = 0; 80103ab3: c7 80 ac 00 00 00 00 movl $0x0,0xac(%eax) 80103aba: 00 00 00 asm volatile("sti"); 80103abd: fb sti acquire(&ptable.lock); 80103abe: 83 ec 0c sub $0xc,%esp for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){ 80103ac1: bf 34 39 11 80 mov $0x80113934,%edi acquire(&ptable.lock); 80103ac6: 68 00 39 11 80 push $0x80113900 80103acb: e8 b0 09 00 00 call 80104480 <acquire> 80103ad0: 83 c4 10 add $0x10,%esp 80103ad3: eb 0e jmp 80103ae3 <scheduler+0x43> 80103ad5: 8d 76 00 lea 0x0(%esi),%esi for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){ 80103ad8: 83 ef 80 sub $0xffffff80,%edi 80103adb: 81 ff 34 59 11 80 cmp $0x80115934,%edi 80103ae1: 73 64 jae 80103b47 <scheduler+0xa7> if(p->state != RUNNABLE) 80103ae3: 83 7f 0c 03 cmpl $0x3,0xc(%edi) 80103ae7: 75 ef jne 80103ad8 <scheduler+0x38> for(p1 = ptable.proc; p1 < &ptable.proc[NPROC]; p1++) { 80103ae9: b8 34 39 11 80 mov $0x80113934,%eax 80103aee: 66 90 xchg %ax,%ax if (p1->state != RUNNABLE) 80103af0: 83 78 0c 03 cmpl $0x3,0xc(%eax) 80103af4: 75 09 jne 80103aff <scheduler+0x5f> if(highP->priority > p1->priority) 80103af6: 8b 50 7c mov 0x7c(%eax),%edx 80103af9: 39 57 7c cmp %edx,0x7c(%edi) 80103afc: 0f 4f f8 cmovg %eax,%edi for(p1 = ptable.proc; p1 < &ptable.proc[NPROC]; p1++) { 80103aff: 83 e8 80 sub $0xffffff80,%eax 80103b02: 3d 34 59 11 80 cmp $0x80115934,%eax 80103b07: 72 e7 jb 80103af0 <scheduler+0x50> switchuvm(p); 80103b09: 83 ec 0c sub $0xc,%esp c->proc = p; 80103b0c: 89 bb ac 00 00 00 mov %edi,0xac(%ebx) switchuvm(p); 80103b12: 57 push %edi for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){ 80103b13: 83 ef 80 sub $0xffffff80,%edi switchuvm(p); 80103b16: e8 55 35 00 00 call 80107070 <switchuvm> p->state = RUNNING; 80103b1b: c7 47 8c 04 00 00 00 movl $0x4,-0x74(%edi) swtch(&(c->scheduler), p->context); 80103b22: 58 pop %eax 80103b23: 5a pop %edx 80103b24: ff 77 9c pushl -0x64(%edi) 80103b27: 56 push %esi 80103b28: e8 9e 0c 00 00 call 801047cb <swtch> switchkvm(); 80103b2d: e8 1e 35 00 00 call 80107050 <switchkvm> c->proc = 0; 80103b32: 83 c4 10 add $0x10,%esp for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){ 80103b35: 81 ff 34 59 11 80 cmp $0x80115934,%edi c->proc = 0; 80103b3b: c7 83 ac 00 00 00 00 movl $0x0,0xac(%ebx) 80103b42: 00 00 00 for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){ 80103b45: 72 9c jb 80103ae3 <scheduler+0x43> release(&ptable.lock); 80103b47: 83 ec 0c sub $0xc,%esp 80103b4a: 68 00 39 11 80 push $0x80113900 80103b4f: e8 ec 09 00 00 call 80104540 <release> for(;;){ 80103b54: 83 c4 10 add $0x10,%esp 80103b57: e9 61 ff ff ff jmp 80103abd <scheduler+0x1d> 80103b5c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80103b60 <sched>: { 80103b60: 55 push %ebp 80103b61: 89 e5 mov %esp,%ebp 80103b63: 56 push %esi 80103b64: 53 push %ebx pushcli(); 80103b65: e8 46 08 00 00 call 801043b0 <pushcli> c = mycpu(); 80103b6a: e8 e1 fb ff ff call 80103750 <mycpu> p = c->proc; 80103b6f: 8b 98 ac 00 00 00 mov 0xac(%eax),%ebx popcli(); 80103b75: e8 76 08 00 00 call 801043f0 <popcli> if(!holding(&ptable.lock)) 80103b7a: 83 ec 0c sub $0xc,%esp 80103b7d: 68 00 39 11 80 push $0x80113900 80103b82: e8 c9 08 00 00 call 80104450 <holding> 80103b87: 83 c4 10 add $0x10,%esp 80103b8a: 85 c0 test %eax,%eax 80103b8c: 74 4f je 80103bdd <sched+0x7d> if(mycpu()->ncli != 1) 80103b8e: e8 bd fb ff ff call 80103750 <mycpu> 80103b93: 83 b8 a4 00 00 00 01 cmpl $0x1,0xa4(%eax) 80103b9a: 75 68 jne 80103c04 <sched+0xa4> if(p->state == RUNNING) 80103b9c: 83 7b 0c 04 cmpl $0x4,0xc(%ebx) 80103ba0: 74 55 je 80103bf7 <sched+0x97> asm volatile("pushfl; popl %0" : "=r" (eflags)); 80103ba2: 9c pushf 80103ba3: 58 pop %eax if(readeflags()&FL_IF) 80103ba4: f6 c4 02 test $0x2,%ah 80103ba7: 75 41 jne 80103bea <sched+0x8a> intena = mycpu()->intena; 80103ba9: e8 a2 fb ff ff call 80103750 <mycpu> swtch(&p->context, mycpu()->scheduler); 80103bae: 83 c3 1c add $0x1c,%ebx intena = mycpu()->intena; 80103bb1: 8b b0 a8 00 00 00 mov 0xa8(%eax),%esi swtch(&p->context, mycpu()->scheduler); 80103bb7: e8 94 fb ff ff call 80103750 <mycpu> 80103bbc: 83 ec 08 sub $0x8,%esp 80103bbf: ff 70 04 pushl 0x4(%eax) 80103bc2: 53 push %ebx 80103bc3: e8 03 0c 00 00 call 801047cb <swtch> mycpu()->intena = intena; 80103bc8: e8 83 fb ff ff call 80103750 <mycpu> } 80103bcd: 83 c4 10 add $0x10,%esp mycpu()->intena = intena; 80103bd0: 89 b0 a8 00 00 00 mov %esi,0xa8(%eax) } 80103bd6: 8d 65 f8 lea -0x8(%ebp),%esp 80103bd9: 5b pop %ebx 80103bda: 5e pop %esi 80103bdb: 5d pop %ebp 80103bdc: c3 ret panic("sched ptable.lock"); 80103bdd: 83 ec 0c sub $0xc,%esp 80103be0: 68 d0 7c 10 80 push $0x80107cd0 80103be5: e8 a6 c7 ff ff call 80100390 <panic> panic("sched interruptible"); 80103bea: 83 ec 0c sub $0xc,%esp 80103bed: 68 fc 7c 10 80 push $0x80107cfc 80103bf2: e8 99 c7 ff ff call 80100390 <panic> panic("sched running"); 80103bf7: 83 ec 0c sub $0xc,%esp 80103bfa: 68 ee 7c 10 80 push $0x80107cee 80103bff: e8 8c c7 ff ff call 80100390 <panic> panic("sched locks"); 80103c04: 83 ec 0c sub $0xc,%esp 80103c07: 68 e2 7c 10 80 push $0x80107ce2 80103c0c: e8 7f c7 ff ff call 80100390 <panic> 80103c11: eb 0d jmp 80103c20 <exit> 80103c13: 90 nop 80103c14: 90 nop 80103c15: 90 nop 80103c16: 90 nop 80103c17: 90 nop 80103c18: 90 nop 80103c19: 90 nop 80103c1a: 90 nop 80103c1b: 90 nop 80103c1c: 90 nop 80103c1d: 90 nop 80103c1e: 90 nop 80103c1f: 90 nop 80103c20 <exit>: { 80103c20: 55 push %ebp 80103c21: 89 e5 mov %esp,%ebp 80103c23: 57 push %edi 80103c24: 56 push %esi 80103c25: 53 push %ebx 80103c26: 83 ec 0c sub $0xc,%esp pushcli(); 80103c29: e8 82 07 00 00 call 801043b0 <pushcli> c = mycpu(); 80103c2e: e8 1d fb ff ff call 80103750 <mycpu> p = c->proc; 80103c33: 8b b0 ac 00 00 00 mov 0xac(%eax),%esi popcli(); 80103c39: e8 b2 07 00 00 call 801043f0 <popcli> if(curproc == initproc) 80103c3e: 39 35 b8 b5 10 80 cmp %esi,0x8010b5b8 80103c44: 8d 5e 28 lea 0x28(%esi),%ebx 80103c47: 8d 7e 68 lea 0x68(%esi),%edi 80103c4a: 0f 84 e7 00 00 00 je 80103d37 <exit+0x117> if(curproc->ofile[fd]){ 80103c50: 8b 03 mov (%ebx),%eax 80103c52: 85 c0 test %eax,%eax 80103c54: 74 12 je 80103c68 <exit+0x48> fileclose(curproc->ofile[fd]); 80103c56: 83 ec 0c sub $0xc,%esp 80103c59: 50 push %eax 80103c5a: e8 e1 d1 ff ff call 80100e40 <fileclose> curproc->ofile[fd] = 0; 80103c5f: c7 03 00 00 00 00 movl $0x0,(%ebx) 80103c65: 83 c4 10 add $0x10,%esp 80103c68: 83 c3 04 add $0x4,%ebx for(fd = 0; fd < NOFILE; fd++){ 80103c6b: 39 fb cmp %edi,%ebx 80103c6d: 75 e1 jne 80103c50 <exit+0x30> begin_op(); 80103c6f: e8 2c ef ff ff call 80102ba0 <begin_op> iput(curproc->cwd); 80103c74: 83 ec 0c sub $0xc,%esp 80103c77: ff 76 68 pushl 0x68(%esi) 80103c7a: e8 31 db ff ff call 801017b0 <iput> end_op(); 80103c7f: e8 8c ef ff ff call 80102c10 <end_op> curproc->cwd = 0; 80103c84: c7 46 68 00 00 00 00 movl $0x0,0x68(%esi) acquire(&ptable.lock); 80103c8b: c7 04 24 00 39 11 80 movl $0x80113900,(%esp) 80103c92: e8 e9 07 00 00 call 80104480 <acquire> wakeup1(curproc->parent); 80103c97: 8b 56 14 mov 0x14(%esi),%edx 80103c9a: 83 c4 10 add $0x10,%esp static void wakeup1(void *chan) { struct proc *p; for(p = ptable.proc; p < &ptable.proc[NPROC]; p++) 80103c9d: b8 34 39 11 80 mov $0x80113934,%eax 80103ca2: eb 0e jmp 80103cb2 <exit+0x92> 80103ca4: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80103ca8: 83 e8 80 sub $0xffffff80,%eax 80103cab: 3d 34 59 11 80 cmp $0x80115934,%eax 80103cb0: 73 1c jae 80103cce <exit+0xae> if(p->state == SLEEPING && p->chan == chan) 80103cb2: 83 78 0c 02 cmpl $0x2,0xc(%eax) 80103cb6: 75 f0 jne 80103ca8 <exit+0x88> 80103cb8: 3b 50 20 cmp 0x20(%eax),%edx 80103cbb: 75 eb jne 80103ca8 <exit+0x88> p->state = RUNNABLE; 80103cbd: c7 40 0c 03 00 00 00 movl $0x3,0xc(%eax) for(p = ptable.proc; p < &ptable.proc[NPROC]; p++) 80103cc4: 83 e8 80 sub $0xffffff80,%eax 80103cc7: 3d 34 59 11 80 cmp $0x80115934,%eax 80103ccc: 72 e4 jb 80103cb2 <exit+0x92> p->parent = initproc; 80103cce: 8b 0d b8 b5 10 80 mov 0x8010b5b8,%ecx for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){ 80103cd4: ba 34 39 11 80 mov $0x80113934,%edx 80103cd9: eb 10 jmp 80103ceb <exit+0xcb> 80103cdb: 90 nop 80103cdc: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80103ce0: 83 ea 80 sub $0xffffff80,%edx 80103ce3: 81 fa 34 59 11 80 cmp $0x80115934,%edx 80103ce9: 73 33 jae 80103d1e <exit+0xfe> if(p->parent == curproc){ 80103ceb: 39 72 14 cmp %esi,0x14(%edx) 80103cee: 75 f0 jne 80103ce0 <exit+0xc0> if(p->state == ZOMBIE) 80103cf0: 83 7a 0c 05 cmpl $0x5,0xc(%edx) p->parent = initproc; 80103cf4: 89 4a 14 mov %ecx,0x14(%edx) if(p->state == ZOMBIE) 80103cf7: 75 e7 jne 80103ce0 <exit+0xc0> for(p = ptable.proc; p < &ptable.proc[NPROC]; p++) 80103cf9: b8 34 39 11 80 mov $0x80113934,%eax 80103cfe: eb 0a jmp 80103d0a <exit+0xea> 80103d00: 83 e8 80 sub $0xffffff80,%eax 80103d03: 3d 34 59 11 80 cmp $0x80115934,%eax 80103d08: 73 d6 jae 80103ce0 <exit+0xc0> if(p->state == SLEEPING && p->chan == chan) 80103d0a: 83 78 0c 02 cmpl $0x2,0xc(%eax) 80103d0e: 75 f0 jne 80103d00 <exit+0xe0> 80103d10: 3b 48 20 cmp 0x20(%eax),%ecx 80103d13: 75 eb jne 80103d00 <exit+0xe0> p->state = RUNNABLE; 80103d15: c7 40 0c 03 00 00 00 movl $0x3,0xc(%eax) 80103d1c: eb e2 jmp 80103d00 <exit+0xe0> curproc->state = ZOMBIE; 80103d1e: c7 46 0c 05 00 00 00 movl $0x5,0xc(%esi) sched(); 80103d25: e8 36 fe ff ff call 80103b60 <sched> panic("zombie exit"); 80103d2a: 83 ec 0c sub $0xc,%esp 80103d2d: 68 1d 7d 10 80 push $0x80107d1d 80103d32: e8 59 c6 ff ff call 80100390 <panic> panic("init exiting"); 80103d37: 83 ec 0c sub $0xc,%esp 80103d3a: 68 10 7d 10 80 push $0x80107d10 80103d3f: e8 4c c6 ff ff call 80100390 <panic> 80103d44: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 80103d4a: 8d bf 00 00 00 00 lea 0x0(%edi),%edi 80103d50 <yield>: { 80103d50: 55 push %ebp 80103d51: 89 e5 mov %esp,%ebp 80103d53: 53 push %ebx 80103d54: 83 ec 10 sub $0x10,%esp acquire(&ptable.lock); //DOC: yieldlock 80103d57: 68 00 39 11 80 push $0x80113900 80103d5c: e8 1f 07 00 00 call 80104480 <acquire> pushcli(); 80103d61: e8 4a 06 00 00 call 801043b0 <pushcli> c = mycpu(); 80103d66: e8 e5 f9 ff ff call 80103750 <mycpu> p = c->proc; 80103d6b: 8b 98 ac 00 00 00 mov 0xac(%eax),%ebx popcli(); 80103d71: e8 7a 06 00 00 call 801043f0 <popcli> myproc()->state = RUNNABLE; 80103d76: c7 43 0c 03 00 00 00 movl $0x3,0xc(%ebx) sched(); 80103d7d: e8 de fd ff ff call 80103b60 <sched> release(&ptable.lock); 80103d82: c7 04 24 00 39 11 80 movl $0x80113900,(%esp) 80103d89: e8 b2 07 00 00 call 80104540 <release> } 80103d8e: 83 c4 10 add $0x10,%esp 80103d91: 8b 5d fc mov -0x4(%ebp),%ebx 80103d94: c9 leave 80103d95: c3 ret 80103d96: 8d 76 00 lea 0x0(%esi),%esi 80103d99: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80103da0 <sleep>: { 80103da0: 55 push %ebp 80103da1: 89 e5 mov %esp,%ebp 80103da3: 57 push %edi 80103da4: 56 push %esi 80103da5: 53 push %ebx 80103da6: 83 ec 0c sub $0xc,%esp 80103da9: 8b 7d 08 mov 0x8(%ebp),%edi 80103dac: 8b 75 0c mov 0xc(%ebp),%esi pushcli(); 80103daf: e8 fc 05 00 00 call 801043b0 <pushcli> c = mycpu(); 80103db4: e8 97 f9 ff ff call 80103750 <mycpu> p = c->proc; 80103db9: 8b 98 ac 00 00 00 mov 0xac(%eax),%ebx popcli(); 80103dbf: e8 2c 06 00 00 call 801043f0 <popcli> if(p == 0) 80103dc4: 85 db test %ebx,%ebx 80103dc6: 0f 84 87 00 00 00 je 80103e53 <sleep+0xb3> if(lk == 0) 80103dcc: 85 f6 test %esi,%esi 80103dce: 74 76 je 80103e46 <sleep+0xa6> if(lk != &ptable.lock){ //DOC: sleeplock0 80103dd0: 81 fe 00 39 11 80 cmp $0x80113900,%esi 80103dd6: 74 50 je 80103e28 <sleep+0x88> acquire(&ptable.lock); //DOC: sleeplock1 80103dd8: 83 ec 0c sub $0xc,%esp 80103ddb: 68 00 39 11 80 push $0x80113900 80103de0: e8 9b 06 00 00 call 80104480 <acquire> release(lk); 80103de5: 89 34 24 mov %esi,(%esp) 80103de8: e8 53 07 00 00 call 80104540 <release> p->chan = chan; 80103ded: 89 7b 20 mov %edi,0x20(%ebx) p->state = SLEEPING; 80103df0: c7 43 0c 02 00 00 00 movl $0x2,0xc(%ebx) sched(); 80103df7: e8 64 fd ff ff call 80103b60 <sched> p->chan = 0; 80103dfc: c7 43 20 00 00 00 00 movl $0x0,0x20(%ebx) release(&ptable.lock); 80103e03: c7 04 24 00 39 11 80 movl $0x80113900,(%esp) 80103e0a: e8 31 07 00 00 call 80104540 <release> acquire(lk); 80103e0f: 89 75 08 mov %esi,0x8(%ebp) 80103e12: 83 c4 10 add $0x10,%esp } 80103e15: 8d 65 f4 lea -0xc(%ebp),%esp 80103e18: 5b pop %ebx 80103e19: 5e pop %esi 80103e1a: 5f pop %edi 80103e1b: 5d pop %ebp acquire(lk); 80103e1c: e9 5f 06 00 00 jmp 80104480 <acquire> 80103e21: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi p->chan = chan; 80103e28: 89 7b 20 mov %edi,0x20(%ebx) p->state = SLEEPING; 80103e2b: c7 43 0c 02 00 00 00 movl $0x2,0xc(%ebx) sched(); 80103e32: e8 29 fd ff ff call 80103b60 <sched> p->chan = 0; 80103e37: c7 43 20 00 00 00 00 movl $0x0,0x20(%ebx) } 80103e3e: 8d 65 f4 lea -0xc(%ebp),%esp 80103e41: 5b pop %ebx 80103e42: 5e pop %esi 80103e43: 5f pop %edi 80103e44: 5d pop %ebp 80103e45: c3 ret panic("sleep without lk"); 80103e46: 83 ec 0c sub $0xc,%esp 80103e49: 68 2f 7d 10 80 push $0x80107d2f 80103e4e: e8 3d c5 ff ff call 80100390 <panic> panic("sleep"); 80103e53: 83 ec 0c sub $0xc,%esp 80103e56: 68 29 7d 10 80 push $0x80107d29 80103e5b: e8 30 c5 ff ff call 80100390 <panic> 80103e60 <wait>: { 80103e60: 55 push %ebp 80103e61: 89 e5 mov %esp,%ebp 80103e63: 56 push %esi 80103e64: 53 push %ebx pushcli(); 80103e65: e8 46 05 00 00 call 801043b0 <pushcli> c = mycpu(); 80103e6a: e8 e1 f8 ff ff call 80103750 <mycpu> p = c->proc; 80103e6f: 8b b0 ac 00 00 00 mov 0xac(%eax),%esi popcli(); 80103e75: e8 76 05 00 00 call 801043f0 <popcli> acquire(&ptable.lock); 80103e7a: 83 ec 0c sub $0xc,%esp 80103e7d: 68 00 39 11 80 push $0x80113900 80103e82: e8 f9 05 00 00 call 80104480 <acquire> 80103e87: 83 c4 10 add $0x10,%esp havekids = 0; 80103e8a: 31 c0 xor %eax,%eax for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){ 80103e8c: bb 34 39 11 80 mov $0x80113934,%ebx 80103e91: eb 10 jmp 80103ea3 <wait+0x43> 80103e93: 90 nop 80103e94: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80103e98: 83 eb 80 sub $0xffffff80,%ebx 80103e9b: 81 fb 34 59 11 80 cmp $0x80115934,%ebx 80103ea1: 73 1b jae 80103ebe <wait+0x5e> if(p->parent != curproc) 80103ea3: 39 73 14 cmp %esi,0x14(%ebx) 80103ea6: 75 f0 jne 80103e98 <wait+0x38> if(p->state == ZOMBIE){ 80103ea8: 83 7b 0c 05 cmpl $0x5,0xc(%ebx) 80103eac: 74 32 je 80103ee0 <wait+0x80> for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){ 80103eae: 83 eb 80 sub $0xffffff80,%ebx havekids = 1; 80103eb1: b8 01 00 00 00 mov $0x1,%eax for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){ 80103eb6: 81 fb 34 59 11 80 cmp $0x80115934,%ebx 80103ebc: 72 e5 jb 80103ea3 <wait+0x43> if(!havekids || curproc->killed){ 80103ebe: 85 c0 test %eax,%eax 80103ec0: 74 74 je 80103f36 <wait+0xd6> 80103ec2: 8b 46 24 mov 0x24(%esi),%eax 80103ec5: 85 c0 test %eax,%eax 80103ec7: 75 6d jne 80103f36 <wait+0xd6> sleep(curproc, &ptable.lock); //DOC: wait-sleep 80103ec9: 83 ec 08 sub $0x8,%esp 80103ecc: 68 00 39 11 80 push $0x80113900 80103ed1: 56 push %esi 80103ed2: e8 c9 fe ff ff call 80103da0 <sleep> havekids = 0; 80103ed7: 83 c4 10 add $0x10,%esp 80103eda: eb ae jmp 80103e8a <wait+0x2a> 80103edc: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi kfree(p->kstack); 80103ee0: 83 ec 0c sub $0xc,%esp 80103ee3: ff 73 08 pushl 0x8(%ebx) pid = p->pid; 80103ee6: 8b 73 10 mov 0x10(%ebx),%esi kfree(p->kstack); 80103ee9: e8 22 e4 ff ff call 80102310 <kfree> freevm(p->pgdir); 80103eee: 5a pop %edx 80103eef: ff 73 04 pushl 0x4(%ebx) p->kstack = 0; 80103ef2: c7 43 08 00 00 00 00 movl $0x0,0x8(%ebx) freevm(p->pgdir); 80103ef9: e8 22 35 00 00 call 80107420 <freevm> release(&ptable.lock); 80103efe: c7 04 24 00 39 11 80 movl $0x80113900,(%esp) p->pid = 0; 80103f05: c7 43 10 00 00 00 00 movl $0x0,0x10(%ebx) p->parent = 0; 80103f0c: c7 43 14 00 00 00 00 movl $0x0,0x14(%ebx) p->name[0] = 0; 80103f13: c6 43 6c 00 movb $0x0,0x6c(%ebx) p->killed = 0; 80103f17: c7 43 24 00 00 00 00 movl $0x0,0x24(%ebx) p->state = UNUSED; 80103f1e: c7 43 0c 00 00 00 00 movl $0x0,0xc(%ebx) release(&ptable.lock); 80103f25: e8 16 06 00 00 call 80104540 <release> return pid; 80103f2a: 83 c4 10 add $0x10,%esp } 80103f2d: 8d 65 f8 lea -0x8(%ebp),%esp 80103f30: 89 f0 mov %esi,%eax 80103f32: 5b pop %ebx 80103f33: 5e pop %esi 80103f34: 5d pop %ebp 80103f35: c3 ret release(&ptable.lock); 80103f36: 83 ec 0c sub $0xc,%esp return -1; 80103f39: be ff ff ff ff mov $0xffffffff,%esi release(&ptable.lock); 80103f3e: 68 00 39 11 80 push $0x80113900 80103f43: e8 f8 05 00 00 call 80104540 <release> return -1; 80103f48: 83 c4 10 add $0x10,%esp 80103f4b: eb e0 jmp 80103f2d <wait+0xcd> 80103f4d: 8d 76 00 lea 0x0(%esi),%esi 80103f50 <wakeup>: } // Wake up all processes sleeping on chan. void wakeup(void *chan) { 80103f50: 55 push %ebp 80103f51: 89 e5 mov %esp,%ebp 80103f53: 53 push %ebx 80103f54: 83 ec 10 sub $0x10,%esp 80103f57: 8b 5d 08 mov 0x8(%ebp),%ebx acquire(&ptable.lock); 80103f5a: 68 00 39 11 80 push $0x80113900 80103f5f: e8 1c 05 00 00 call 80104480 <acquire> 80103f64: 83 c4 10 add $0x10,%esp for(p = ptable.proc; p < &ptable.proc[NPROC]; p++) 80103f67: b8 34 39 11 80 mov $0x80113934,%eax 80103f6c: eb 0c jmp 80103f7a <wakeup+0x2a> 80103f6e: 66 90 xchg %ax,%ax 80103f70: 83 e8 80 sub $0xffffff80,%eax 80103f73: 3d 34 59 11 80 cmp $0x80115934,%eax 80103f78: 73 1c jae 80103f96 <wakeup+0x46> if(p->state == SLEEPING && p->chan == chan) 80103f7a: 83 78 0c 02 cmpl $0x2,0xc(%eax) 80103f7e: 75 f0 jne 80103f70 <wakeup+0x20> 80103f80: 3b 58 20 cmp 0x20(%eax),%ebx 80103f83: 75 eb jne 80103f70 <wakeup+0x20> p->state = RUNNABLE; 80103f85: c7 40 0c 03 00 00 00 movl $0x3,0xc(%eax) for(p = ptable.proc; p < &ptable.proc[NPROC]; p++) 80103f8c: 83 e8 80 sub $0xffffff80,%eax 80103f8f: 3d 34 59 11 80 cmp $0x80115934,%eax 80103f94: 72 e4 jb 80103f7a <wakeup+0x2a> wakeup1(chan); release(&ptable.lock); 80103f96: c7 45 08 00 39 11 80 movl $0x80113900,0x8(%ebp) } 80103f9d: 8b 5d fc mov -0x4(%ebp),%ebx 80103fa0: c9 leave release(&ptable.lock); 80103fa1: e9 9a 05 00 00 jmp 80104540 <release> 80103fa6: 8d 76 00 lea 0x0(%esi),%esi 80103fa9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80103fb0 <kill>: // Kill the process with the given pid. // Process won't exit until it returns // to user space (see trap in trap.c). int kill(int pid) { 80103fb0: 55 push %ebp 80103fb1: 89 e5 mov %esp,%ebp 80103fb3: 53 push %ebx 80103fb4: 83 ec 10 sub $0x10,%esp 80103fb7: 8b 5d 08 mov 0x8(%ebp),%ebx struct proc *p; acquire(&ptable.lock); 80103fba: 68 00 39 11 80 push $0x80113900 80103fbf: e8 bc 04 00 00 call 80104480 <acquire> 80103fc4: 83 c4 10 add $0x10,%esp for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){ 80103fc7: b8 34 39 11 80 mov $0x80113934,%eax 80103fcc: eb 0c jmp 80103fda <kill+0x2a> 80103fce: 66 90 xchg %ax,%ax 80103fd0: 83 e8 80 sub $0xffffff80,%eax 80103fd3: 3d 34 59 11 80 cmp $0x80115934,%eax 80103fd8: 73 36 jae 80104010 <kill+0x60> if(p->pid == pid){ 80103fda: 39 58 10 cmp %ebx,0x10(%eax) 80103fdd: 75 f1 jne 80103fd0 <kill+0x20> p->killed = 1; // Wake process from sleep if necessary. if(p->state == SLEEPING) 80103fdf: 83 78 0c 02 cmpl $0x2,0xc(%eax) p->killed = 1; 80103fe3: c7 40 24 01 00 00 00 movl $0x1,0x24(%eax) if(p->state == SLEEPING) 80103fea: 75 07 jne 80103ff3 <kill+0x43> p->state = RUNNABLE; 80103fec: c7 40 0c 03 00 00 00 movl $0x3,0xc(%eax) release(&ptable.lock); 80103ff3: 83 ec 0c sub $0xc,%esp 80103ff6: 68 00 39 11 80 push $0x80113900 80103ffb: e8 40 05 00 00 call 80104540 <release> return 0; 80104000: 83 c4 10 add $0x10,%esp 80104003: 31 c0 xor %eax,%eax } } release(&ptable.lock); return -1; } 80104005: 8b 5d fc mov -0x4(%ebp),%ebx 80104008: c9 leave 80104009: c3 ret 8010400a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi release(&ptable.lock); 80104010: 83 ec 0c sub $0xc,%esp 80104013: 68 00 39 11 80 push $0x80113900 80104018: e8 23 05 00 00 call 80104540 <release> return -1; 8010401d: 83 c4 10 add $0x10,%esp 80104020: b8 ff ff ff ff mov $0xffffffff,%eax } 80104025: 8b 5d fc mov -0x4(%ebp),%ebx 80104028: c9 leave 80104029: c3 ret 8010402a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 80104030 <procdump>: // Print a process listing to console. For debugging. // Runs when user types ^P on console. // No lock to avoid wedging a stuck machine further. void procdump(void) { 80104030: 55 push %ebp 80104031: 89 e5 mov %esp,%ebp 80104033: 57 push %edi 80104034: 56 push %esi 80104035: 53 push %ebx 80104036: 8d 75 e8 lea -0x18(%ebp),%esi int i; struct proc *p; char *state; uint pc[10]; for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){ 80104039: bb 34 39 11 80 mov $0x80113934,%ebx { 8010403e: 83 ec 3c sub $0x3c,%esp 80104041: eb 24 jmp 80104067 <procdump+0x37> 80104043: 90 nop 80104044: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi if(p->state == SLEEPING){ getcallerpcs((uint*)p->context->ebp+2, pc); for(i=0; i<10 && pc[i] != 0; i++) cprintf(" %p", pc[i]); } cprintf("\n"); 80104048: 83 ec 0c sub $0xc,%esp 8010404b: 68 73 82 10 80 push $0x80108273 80104050: e8 0b c6 ff ff call 80100660 <cprintf> 80104055: 83 c4 10 add $0x10,%esp for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){ 80104058: 83 eb 80 sub $0xffffff80,%ebx 8010405b: 81 fb 34 59 11 80 cmp $0x80115934,%ebx 80104061: 0f 83 81 00 00 00 jae 801040e8 <procdump+0xb8> if(p->state == UNUSED) 80104067: 8b 43 0c mov 0xc(%ebx),%eax 8010406a: 85 c0 test %eax,%eax 8010406c: 74 ea je 80104058 <procdump+0x28> if(p->state >= 0 && p->state < NELEM(states) && states[p->state]) 8010406e: 83 f8 05 cmp $0x5,%eax state = "???"; 80104071: ba 40 7d 10 80 mov $0x80107d40,%edx if(p->state >= 0 && p->state < NELEM(states) && states[p->state]) 80104076: 77 11 ja 80104089 <procdump+0x59> 80104078: 8b 14 85 10 7e 10 80 mov -0x7fef81f0(,%eax,4),%edx state = "???"; 8010407f: b8 40 7d 10 80 mov $0x80107d40,%eax 80104084: 85 d2 test %edx,%edx 80104086: 0f 44 d0 cmove %eax,%edx cprintf("%d %s %s", p->pid, state, p->name); 80104089: 8d 43 6c lea 0x6c(%ebx),%eax 8010408c: 50 push %eax 8010408d: 52 push %edx 8010408e: ff 73 10 pushl 0x10(%ebx) 80104091: 68 44 7d 10 80 push $0x80107d44 80104096: e8 c5 c5 ff ff call 80100660 <cprintf> if(p->state == SLEEPING){ 8010409b: 83 c4 10 add $0x10,%esp 8010409e: 83 7b 0c 02 cmpl $0x2,0xc(%ebx) 801040a2: 75 a4 jne 80104048 <procdump+0x18> getcallerpcs((uint*)p->context->ebp+2, pc); 801040a4: 8d 45 c0 lea -0x40(%ebp),%eax 801040a7: 83 ec 08 sub $0x8,%esp 801040aa: 8d 7d c0 lea -0x40(%ebp),%edi 801040ad: 50 push %eax 801040ae: 8b 43 1c mov 0x1c(%ebx),%eax 801040b1: 8b 40 0c mov 0xc(%eax),%eax 801040b4: 83 c0 08 add $0x8,%eax 801040b7: 50 push %eax 801040b8: e8 a3 02 00 00 call 80104360 <getcallerpcs> 801040bd: 83 c4 10 add $0x10,%esp for(i=0; i<10 && pc[i] != 0; i++) 801040c0: 8b 17 mov (%edi),%edx 801040c2: 85 d2 test %edx,%edx 801040c4: 74 82 je 80104048 <procdump+0x18> cprintf(" %p", pc[i]); 801040c6: 83 ec 08 sub $0x8,%esp 801040c9: 83 c7 04 add $0x4,%edi 801040cc: 52 push %edx 801040cd: 68 81 77 10 80 push $0x80107781 801040d2: e8 89 c5 ff ff call 80100660 <cprintf> for(i=0; i<10 && pc[i] != 0; i++) 801040d7: 83 c4 10 add $0x10,%esp 801040da: 39 fe cmp %edi,%esi 801040dc: 75 e2 jne 801040c0 <procdump+0x90> 801040de: e9 65 ff ff ff jmp 80104048 <procdump+0x18> 801040e3: 90 nop 801040e4: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi } } 801040e8: 8d 65 f4 lea -0xc(%ebp),%esp 801040eb: 5b pop %ebx 801040ec: 5e pop %esi 801040ed: 5f pop %edi 801040ee: 5d pop %ebp 801040ef: c3 ret 801040f0 <cps>: int cps(void) { 801040f0: 55 push %ebp 801040f1: 89 e5 mov %esp,%ebp 801040f3: 53 push %ebx 801040f4: 83 ec 10 sub $0x10,%esp asm volatile("sti"); 801040f7: fb sti struct proc *p; sti(); acquire(&ptable.lock); 801040f8: 68 00 39 11 80 push $0x80113900 cprintf("name \t pid \t state \t \t priority\n"); for(p=ptable.proc; p < &ptable.proc[NPROC]; p++){ 801040fd: bb 34 39 11 80 mov $0x80113934,%ebx acquire(&ptable.lock); 80104102: e8 79 03 00 00 call 80104480 <acquire> cprintf("name \t pid \t state \t \t priority\n"); 80104107: c7 04 24 ec 7d 10 80 movl $0x80107dec,(%esp) 8010410e: e8 4d c5 ff ff call 80100660 <cprintf> 80104113: 83 c4 10 add $0x10,%esp 80104116: eb 1d jmp 80104135 <cps+0x45> 80104118: 90 nop 80104119: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi if(p->state == SLEEPING) cprintf("%s \t %d \t SLEEPING \t %d\n", p->name, p->pid, p->priority); else if(p->state == RUNNING) 80104120: 83 f8 04 cmp $0x4,%eax 80104123: 74 5b je 80104180 <cps+0x90> cprintf("%s \t %d \t RUNNING \t %d\n", p->name, p->pid, p->priority); else if(p->state == RUNNABLE) 80104125: 83 f8 03 cmp $0x3,%eax 80104128: 74 76 je 801041a0 <cps+0xb0> for(p=ptable.proc; p < &ptable.proc[NPROC]; p++){ 8010412a: 83 eb 80 sub $0xffffff80,%ebx 8010412d: 81 fb 34 59 11 80 cmp $0x80115934,%ebx 80104133: 73 2a jae 8010415f <cps+0x6f> if(p->state == SLEEPING) 80104135: 8b 43 0c mov 0xc(%ebx),%eax 80104138: 83 f8 02 cmp $0x2,%eax 8010413b: 75 e3 jne 80104120 <cps+0x30> cprintf("%s \t %d \t SLEEPING \t %d\n", p->name, p->pid, p->priority); 8010413d: 8d 43 6c lea 0x6c(%ebx),%eax 80104140: ff 73 7c pushl 0x7c(%ebx) 80104143: ff 73 10 pushl 0x10(%ebx) for(p=ptable.proc; p < &ptable.proc[NPROC]; p++){ 80104146: 83 eb 80 sub $0xffffff80,%ebx cprintf("%s \t %d \t SLEEPING \t %d\n", p->name, p->pid, p->priority); 80104149: 50 push %eax 8010414a: 68 4d 7d 10 80 push $0x80107d4d 8010414f: e8 0c c5 ff ff call 80100660 <cprintf> 80104154: 83 c4 10 add $0x10,%esp for(p=ptable.proc; p < &ptable.proc[NPROC]; p++){ 80104157: 81 fb 34 59 11 80 cmp $0x80115934,%ebx 8010415d: 72 d6 jb 80104135 <cps+0x45> cprintf("%s \t %d \t RUNNABLE \t %d\n", p->name, p->pid, p->priority); } release(&ptable.lock); 8010415f: 83 ec 0c sub $0xc,%esp 80104162: 68 00 39 11 80 push $0x80113900 80104167: e8 d4 03 00 00 call 80104540 <release> return 22; } 8010416c: b8 16 00 00 00 mov $0x16,%eax 80104171: 8b 5d fc mov -0x4(%ebp),%ebx 80104174: c9 leave 80104175: c3 ret 80104176: 8d 76 00 lea 0x0(%esi),%esi 80104179: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi cprintf("%s \t %d \t RUNNING \t %d\n", p->name, p->pid, p->priority); 80104180: 8d 43 6c lea 0x6c(%ebx),%eax 80104183: ff 73 7c pushl 0x7c(%ebx) 80104186: ff 73 10 pushl 0x10(%ebx) 80104189: 50 push %eax 8010418a: 68 66 7d 10 80 push $0x80107d66 8010418f: e8 cc c4 ff ff call 80100660 <cprintf> 80104194: 83 c4 10 add $0x10,%esp 80104197: eb 91 jmp 8010412a <cps+0x3a> 80104199: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi cprintf("%s \t %d \t RUNNABLE \t %d\n", p->name, p->pid, p->priority); 801041a0: 8d 43 6c lea 0x6c(%ebx),%eax 801041a3: ff 73 7c pushl 0x7c(%ebx) 801041a6: ff 73 10 pushl 0x10(%ebx) 801041a9: 50 push %eax 801041aa: 68 7f 7d 10 80 push $0x80107d7f 801041af: e8 ac c4 ff ff call 80100660 <cprintf> 801041b4: 83 c4 10 add $0x10,%esp 801041b7: e9 6e ff ff ff jmp 8010412a <cps+0x3a> 801041bc: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 801041c0 <chpr>: int chpr(int pid, int priority){ 801041c0: 55 push %ebp 801041c1: 89 e5 mov %esp,%ebp 801041c3: 53 push %ebx 801041c4: 83 ec 10 sub $0x10,%esp 801041c7: 8b 5d 08 mov 0x8(%ebp),%ebx struct proc *p; acquire(&ptable.lock); 801041ca: 68 00 39 11 80 push $0x80113900 801041cf: e8 ac 02 00 00 call 80104480 <acquire> 801041d4: 83 c4 10 add $0x10,%esp for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){ 801041d7: ba 34 39 11 80 mov $0x80113934,%edx 801041dc: eb 0d jmp 801041eb <chpr+0x2b> 801041de: 66 90 xchg %ax,%ax 801041e0: 83 ea 80 sub $0xffffff80,%edx 801041e3: 81 fa 34 59 11 80 cmp $0x80115934,%edx 801041e9: 73 0b jae 801041f6 <chpr+0x36> if(p->pid==pid) { 801041eb: 39 5a 10 cmp %ebx,0x10(%edx) 801041ee: 75 f0 jne 801041e0 <chpr+0x20> p -> priority = priority; 801041f0: 8b 45 0c mov 0xc(%ebp),%eax 801041f3: 89 42 7c mov %eax,0x7c(%edx) break; } } release(&ptable.lock); 801041f6: 83 ec 0c sub $0xc,%esp 801041f9: 68 00 39 11 80 push $0x80113900 801041fe: e8 3d 03 00 00 call 80104540 <release> return pid; } 80104203: 89 d8 mov %ebx,%eax 80104205: 8b 5d fc mov -0x4(%ebp),%ebx 80104208: c9 leave 80104209: c3 ret 8010420a: 66 90 xchg %ax,%ax 8010420c: 66 90 xchg %ax,%ax 8010420e: 66 90 xchg %ax,%ax 80104210 <initsleeplock>: #include "spinlock.h" #include "sleeplock.h" void initsleeplock(struct sleeplock *lk, char *name) { 80104210: 55 push %ebp 80104211: 89 e5 mov %esp,%ebp 80104213: 53 push %ebx 80104214: 83 ec 0c sub $0xc,%esp 80104217: 8b 5d 08 mov 0x8(%ebp),%ebx initlock(&lk->lk, "sleep lock"); 8010421a: 68 28 7e 10 80 push $0x80107e28 8010421f: 8d 43 04 lea 0x4(%ebx),%eax 80104222: 50 push %eax 80104223: e8 18 01 00 00 call 80104340 <initlock> lk->name = name; 80104228: 8b 45 0c mov 0xc(%ebp),%eax lk->locked = 0; 8010422b: c7 03 00 00 00 00 movl $0x0,(%ebx) lk->pid = 0; } 80104231: 83 c4 10 add $0x10,%esp lk->pid = 0; 80104234: c7 43 3c 00 00 00 00 movl $0x0,0x3c(%ebx) lk->name = name; 8010423b: 89 43 38 mov %eax,0x38(%ebx) } 8010423e: 8b 5d fc mov -0x4(%ebp),%ebx 80104241: c9 leave 80104242: c3 ret 80104243: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 80104249: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80104250 <acquiresleep>: void acquiresleep(struct sleeplock *lk) { 80104250: 55 push %ebp 80104251: 89 e5 mov %esp,%ebp 80104253: 56 push %esi 80104254: 53 push %ebx 80104255: 8b 5d 08 mov 0x8(%ebp),%ebx acquire(&lk->lk); 80104258: 83 ec 0c sub $0xc,%esp 8010425b: 8d 73 04 lea 0x4(%ebx),%esi 8010425e: 56 push %esi 8010425f: e8 1c 02 00 00 call 80104480 <acquire> while (lk->locked) { 80104264: 8b 13 mov (%ebx),%edx 80104266: 83 c4 10 add $0x10,%esp 80104269: 85 d2 test %edx,%edx 8010426b: 74 16 je 80104283 <acquiresleep+0x33> 8010426d: 8d 76 00 lea 0x0(%esi),%esi sleep(lk, &lk->lk); 80104270: 83 ec 08 sub $0x8,%esp 80104273: 56 push %esi 80104274: 53 push %ebx 80104275: e8 26 fb ff ff call 80103da0 <sleep> while (lk->locked) { 8010427a: 8b 03 mov (%ebx),%eax 8010427c: 83 c4 10 add $0x10,%esp 8010427f: 85 c0 test %eax,%eax 80104281: 75 ed jne 80104270 <acquiresleep+0x20> } lk->locked = 1; 80104283: c7 03 01 00 00 00 movl $0x1,(%ebx) lk->pid = myproc()->pid; 80104289: e8 52 f5 ff ff call 801037e0 <myproc> 8010428e: 8b 40 10 mov 0x10(%eax),%eax 80104291: 89 43 3c mov %eax,0x3c(%ebx) release(&lk->lk); 80104294: 89 75 08 mov %esi,0x8(%ebp) } 80104297: 8d 65 f8 lea -0x8(%ebp),%esp 8010429a: 5b pop %ebx 8010429b: 5e pop %esi 8010429c: 5d pop %ebp release(&lk->lk); 8010429d: e9 9e 02 00 00 jmp 80104540 <release> 801042a2: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 801042a9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 801042b0 <releasesleep>: void releasesleep(struct sleeplock *lk) { 801042b0: 55 push %ebp 801042b1: 89 e5 mov %esp,%ebp 801042b3: 56 push %esi 801042b4: 53 push %ebx 801042b5: 8b 5d 08 mov 0x8(%ebp),%ebx acquire(&lk->lk); 801042b8: 83 ec 0c sub $0xc,%esp 801042bb: 8d 73 04 lea 0x4(%ebx),%esi 801042be: 56 push %esi 801042bf: e8 bc 01 00 00 call 80104480 <acquire> lk->locked = 0; 801042c4: c7 03 00 00 00 00 movl $0x0,(%ebx) lk->pid = 0; 801042ca: c7 43 3c 00 00 00 00 movl $0x0,0x3c(%ebx) wakeup(lk); 801042d1: 89 1c 24 mov %ebx,(%esp) 801042d4: e8 77 fc ff ff call 80103f50 <wakeup> release(&lk->lk); 801042d9: 89 75 08 mov %esi,0x8(%ebp) 801042dc: 83 c4 10 add $0x10,%esp } 801042df: 8d 65 f8 lea -0x8(%ebp),%esp 801042e2: 5b pop %ebx 801042e3: 5e pop %esi 801042e4: 5d pop %ebp release(&lk->lk); 801042e5: e9 56 02 00 00 jmp 80104540 <release> 801042ea: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 801042f0 <holdingsleep>: int holdingsleep(struct sleeplock *lk) { 801042f0: 55 push %ebp 801042f1: 89 e5 mov %esp,%ebp 801042f3: 57 push %edi 801042f4: 56 push %esi 801042f5: 53 push %ebx 801042f6: 31 ff xor %edi,%edi 801042f8: 83 ec 18 sub $0x18,%esp 801042fb: 8b 5d 08 mov 0x8(%ebp),%ebx int r; acquire(&lk->lk); 801042fe: 8d 73 04 lea 0x4(%ebx),%esi 80104301: 56 push %esi 80104302: e8 79 01 00 00 call 80104480 <acquire> r = lk->locked && (lk->pid == myproc()->pid); 80104307: 8b 03 mov (%ebx),%eax 80104309: 83 c4 10 add $0x10,%esp 8010430c: 85 c0 test %eax,%eax 8010430e: 74 13 je 80104323 <holdingsleep+0x33> 80104310: 8b 5b 3c mov 0x3c(%ebx),%ebx 80104313: e8 c8 f4 ff ff call 801037e0 <myproc> 80104318: 39 58 10 cmp %ebx,0x10(%eax) 8010431b: 0f 94 c0 sete %al 8010431e: 0f b6 c0 movzbl %al,%eax 80104321: 89 c7 mov %eax,%edi release(&lk->lk); 80104323: 83 ec 0c sub $0xc,%esp 80104326: 56 push %esi 80104327: e8 14 02 00 00 call 80104540 <release> return r; } 8010432c: 8d 65 f4 lea -0xc(%ebp),%esp 8010432f: 89 f8 mov %edi,%eax 80104331: 5b pop %ebx 80104332: 5e pop %esi 80104333: 5f pop %edi 80104334: 5d pop %ebp 80104335: c3 ret 80104336: 66 90 xchg %ax,%ax 80104338: 66 90 xchg %ax,%ax 8010433a: 66 90 xchg %ax,%ax 8010433c: 66 90 xchg %ax,%ax 8010433e: 66 90 xchg %ax,%ax 80104340 <initlock>: #include "proc.h" #include "spinlock.h" void initlock(struct spinlock *lk, char *name) { 80104340: 55 push %ebp 80104341: 89 e5 mov %esp,%ebp 80104343: 8b 45 08 mov 0x8(%ebp),%eax lk->name = name; 80104346: 8b 55 0c mov 0xc(%ebp),%edx lk->locked = 0; 80104349: c7 00 00 00 00 00 movl $0x0,(%eax) lk->name = name; 8010434f: 89 50 04 mov %edx,0x4(%eax) lk->cpu = 0; 80104352: c7 40 08 00 00 00 00 movl $0x0,0x8(%eax) } 80104359: 5d pop %ebp 8010435a: c3 ret 8010435b: 90 nop 8010435c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80104360 <getcallerpcs>: } // Record the current call stack in pcs[] by following the %ebp chain. void getcallerpcs(void *v, uint pcs[]) { 80104360: 55 push %ebp uint *ebp; int i; ebp = (uint*)v - 2; for(i = 0; i < 10; i++){ 80104361: 31 d2 xor %edx,%edx { 80104363: 89 e5 mov %esp,%ebp 80104365: 53 push %ebx ebp = (uint*)v - 2; 80104366: 8b 45 08 mov 0x8(%ebp),%eax { 80104369: 8b 4d 0c mov 0xc(%ebp),%ecx ebp = (uint*)v - 2; 8010436c: 83 e8 08 sub $0x8,%eax 8010436f: 90 nop if(ebp == 0 || ebp < (uint*)KERNBASE || ebp == (uint*)0xffffffff) 80104370: 8d 98 00 00 00 80 lea -0x80000000(%eax),%ebx 80104376: 81 fb fe ff ff 7f cmp $0x7ffffffe,%ebx 8010437c: 77 1a ja 80104398 <getcallerpcs+0x38> break; pcs[i] = ebp[1]; // saved %eip 8010437e: 8b 58 04 mov 0x4(%eax),%ebx 80104381: 89 1c 91 mov %ebx,(%ecx,%edx,4) for(i = 0; i < 10; i++){ 80104384: 83 c2 01 add $0x1,%edx ebp = (uint*)ebp[0]; // saved %ebp 80104387: 8b 00 mov (%eax),%eax for(i = 0; i < 10; i++){ 80104389: 83 fa 0a cmp $0xa,%edx 8010438c: 75 e2 jne 80104370 <getcallerpcs+0x10> } for(; i < 10; i++) pcs[i] = 0; } 8010438e: 5b pop %ebx 8010438f: 5d pop %ebp 80104390: c3 ret 80104391: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80104398: 8d 04 91 lea (%ecx,%edx,4),%eax 8010439b: 83 c1 28 add $0x28,%ecx 8010439e: 66 90 xchg %ax,%ax pcs[i] = 0; 801043a0: c7 00 00 00 00 00 movl $0x0,(%eax) 801043a6: 83 c0 04 add $0x4,%eax for(; i < 10; i++) 801043a9: 39 c1 cmp %eax,%ecx 801043ab: 75 f3 jne 801043a0 <getcallerpcs+0x40> } 801043ad: 5b pop %ebx 801043ae: 5d pop %ebp 801043af: c3 ret 801043b0 <pushcli>: // it takes two popcli to undo two pushcli. Also, if interrupts // are off, then pushcli, popcli leaves them off. void pushcli(void) { 801043b0: 55 push %ebp 801043b1: 89 e5 mov %esp,%ebp 801043b3: 53 push %ebx 801043b4: 83 ec 04 sub $0x4,%esp asm volatile("pushfl; popl %0" : "=r" (eflags)); 801043b7: 9c pushf 801043b8: 5b pop %ebx asm volatile("cli"); 801043b9: fa cli int eflags; eflags = readeflags(); cli(); if(mycpu()->ncli == 0) 801043ba: e8 91 f3 ff ff call 80103750 <mycpu> 801043bf: 8b 80 a4 00 00 00 mov 0xa4(%eax),%eax 801043c5: 85 c0 test %eax,%eax 801043c7: 75 11 jne 801043da <pushcli+0x2a> mycpu()->intena = eflags & FL_IF; 801043c9: 81 e3 00 02 00 00 and $0x200,%ebx 801043cf: e8 7c f3 ff ff call 80103750 <mycpu> 801043d4: 89 98 a8 00 00 00 mov %ebx,0xa8(%eax) mycpu()->ncli += 1; 801043da: e8 71 f3 ff ff call 80103750 <mycpu> 801043df: 83 80 a4 00 00 00 01 addl $0x1,0xa4(%eax) } 801043e6: 83 c4 04 add $0x4,%esp 801043e9: 5b pop %ebx 801043ea: 5d pop %ebp 801043eb: c3 ret 801043ec: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 801043f0 <popcli>: void popcli(void) { 801043f0: 55 push %ebp 801043f1: 89 e5 mov %esp,%ebp 801043f3: 83 ec 08 sub $0x8,%esp asm volatile("pushfl; popl %0" : "=r" (eflags)); 801043f6: 9c pushf 801043f7: 58 pop %eax if(readeflags()&FL_IF) 801043f8: f6 c4 02 test $0x2,%ah 801043fb: 75 35 jne 80104432 <popcli+0x42> panic("popcli - interruptible"); if(--mycpu()->ncli < 0) 801043fd: e8 4e f3 ff ff call 80103750 <mycpu> 80104402: 83 a8 a4 00 00 00 01 subl $0x1,0xa4(%eax) 80104409: 78 34 js 8010443f <popcli+0x4f> panic("popcli"); if(mycpu()->ncli == 0 && mycpu()->intena) 8010440b: e8 40 f3 ff ff call 80103750 <mycpu> 80104410: 8b 90 a4 00 00 00 mov 0xa4(%eax),%edx 80104416: 85 d2 test %edx,%edx 80104418: 74 06 je 80104420 <popcli+0x30> sti(); } 8010441a: c9 leave 8010441b: c3 ret 8010441c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi if(mycpu()->ncli == 0 && mycpu()->intena) 80104420: e8 2b f3 ff ff call 80103750 <mycpu> 80104425: 8b 80 a8 00 00 00 mov 0xa8(%eax),%eax 8010442b: 85 c0 test %eax,%eax 8010442d: 74 eb je 8010441a <popcli+0x2a> asm volatile("sti"); 8010442f: fb sti } 80104430: c9 leave 80104431: c3 ret panic("popcli - interruptible"); 80104432: 83 ec 0c sub $0xc,%esp 80104435: 68 33 7e 10 80 push $0x80107e33 8010443a: e8 51 bf ff ff call 80100390 <panic> panic("popcli"); 8010443f: 83 ec 0c sub $0xc,%esp 80104442: 68 4a 7e 10 80 push $0x80107e4a 80104447: e8 44 bf ff ff call 80100390 <panic> 8010444c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80104450 <holding>: { 80104450: 55 push %ebp 80104451: 89 e5 mov %esp,%ebp 80104453: 56 push %esi 80104454: 53 push %ebx 80104455: 8b 75 08 mov 0x8(%ebp),%esi 80104458: 31 db xor %ebx,%ebx pushcli(); 8010445a: e8 51 ff ff ff call 801043b0 <pushcli> r = lock->locked && lock->cpu == mycpu(); 8010445f: 8b 06 mov (%esi),%eax 80104461: 85 c0 test %eax,%eax 80104463: 74 10 je 80104475 <holding+0x25> 80104465: 8b 5e 08 mov 0x8(%esi),%ebx 80104468: e8 e3 f2 ff ff call 80103750 <mycpu> 8010446d: 39 c3 cmp %eax,%ebx 8010446f: 0f 94 c3 sete %bl 80104472: 0f b6 db movzbl %bl,%ebx popcli(); 80104475: e8 76 ff ff ff call 801043f0 <popcli> } 8010447a: 89 d8 mov %ebx,%eax 8010447c: 5b pop %ebx 8010447d: 5e pop %esi 8010447e: 5d pop %ebp 8010447f: c3 ret 80104480 <acquire>: { 80104480: 55 push %ebp 80104481: 89 e5 mov %esp,%ebp 80104483: 56 push %esi 80104484: 53 push %ebx pushcli(); // disable interrupts to avoid deadlock. 80104485: e8 26 ff ff ff call 801043b0 <pushcli> if(holding(lk)) 8010448a: 8b 5d 08 mov 0x8(%ebp),%ebx 8010448d: 83 ec 0c sub $0xc,%esp 80104490: 53 push %ebx 80104491: e8 ba ff ff ff call 80104450 <holding> 80104496: 83 c4 10 add $0x10,%esp 80104499: 85 c0 test %eax,%eax 8010449b: 0f 85 83 00 00 00 jne 80104524 <acquire+0xa4> 801044a1: 89 c6 mov %eax,%esi asm volatile("lock; xchgl %0, %1" : 801044a3: ba 01 00 00 00 mov $0x1,%edx 801044a8: eb 09 jmp 801044b3 <acquire+0x33> 801044aa: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 801044b0: 8b 5d 08 mov 0x8(%ebp),%ebx 801044b3: 89 d0 mov %edx,%eax 801044b5: f0 87 03 lock xchg %eax,(%ebx) while(xchg(&lk->locked, 1) != 0) 801044b8: 85 c0 test %eax,%eax 801044ba: 75 f4 jne 801044b0 <acquire+0x30> __sync_synchronize(); 801044bc: f0 83 0c 24 00 lock orl $0x0,(%esp) lk->cpu = mycpu(); 801044c1: 8b 5d 08 mov 0x8(%ebp),%ebx 801044c4: e8 87 f2 ff ff call 80103750 <mycpu> getcallerpcs(&lk, lk->pcs); 801044c9: 8d 53 0c lea 0xc(%ebx),%edx lk->cpu = mycpu(); 801044cc: 89 43 08 mov %eax,0x8(%ebx) ebp = (uint*)v - 2; 801044cf: 89 e8 mov %ebp,%eax 801044d1: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi if(ebp == 0 || ebp < (uint*)KERNBASE || ebp == (uint*)0xffffffff) 801044d8: 8d 88 00 00 00 80 lea -0x80000000(%eax),%ecx 801044de: 81 f9 fe ff ff 7f cmp $0x7ffffffe,%ecx 801044e4: 77 1a ja 80104500 <acquire+0x80> pcs[i] = ebp[1]; // saved %eip 801044e6: 8b 48 04 mov 0x4(%eax),%ecx 801044e9: 89 0c b2 mov %ecx,(%edx,%esi,4) for(i = 0; i < 10; i++){ 801044ec: 83 c6 01 add $0x1,%esi ebp = (uint*)ebp[0]; // saved %ebp 801044ef: 8b 00 mov (%eax),%eax for(i = 0; i < 10; i++){ 801044f1: 83 fe 0a cmp $0xa,%esi 801044f4: 75 e2 jne 801044d8 <acquire+0x58> } 801044f6: 8d 65 f8 lea -0x8(%ebp),%esp 801044f9: 5b pop %ebx 801044fa: 5e pop %esi 801044fb: 5d pop %ebp 801044fc: c3 ret 801044fd: 8d 76 00 lea 0x0(%esi),%esi 80104500: 8d 04 b2 lea (%edx,%esi,4),%eax 80104503: 83 c2 28 add $0x28,%edx 80104506: 8d 76 00 lea 0x0(%esi),%esi 80104509: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi pcs[i] = 0; 80104510: c7 00 00 00 00 00 movl $0x0,(%eax) 80104516: 83 c0 04 add $0x4,%eax for(; i < 10; i++) 80104519: 39 d0 cmp %edx,%eax 8010451b: 75 f3 jne 80104510 <acquire+0x90> } 8010451d: 8d 65 f8 lea -0x8(%ebp),%esp 80104520: 5b pop %ebx 80104521: 5e pop %esi 80104522: 5d pop %ebp 80104523: c3 ret panic("acquire"); 80104524: 83 ec 0c sub $0xc,%esp 80104527: 68 51 7e 10 80 push $0x80107e51 8010452c: e8 5f be ff ff call 80100390 <panic> 80104531: eb 0d jmp 80104540 <release> 80104533: 90 nop 80104534: 90 nop 80104535: 90 nop 80104536: 90 nop 80104537: 90 nop 80104538: 90 nop 80104539: 90 nop 8010453a: 90 nop 8010453b: 90 nop 8010453c: 90 nop 8010453d: 90 nop 8010453e: 90 nop 8010453f: 90 nop 80104540 <release>: { 80104540: 55 push %ebp 80104541: 89 e5 mov %esp,%ebp 80104543: 53 push %ebx 80104544: 83 ec 10 sub $0x10,%esp 80104547: 8b 5d 08 mov 0x8(%ebp),%ebx if(!holding(lk)) 8010454a: 53 push %ebx 8010454b: e8 00 ff ff ff call 80104450 <holding> 80104550: 83 c4 10 add $0x10,%esp 80104553: 85 c0 test %eax,%eax 80104555: 74 22 je 80104579 <release+0x39> lk->pcs[0] = 0; 80104557: c7 43 0c 00 00 00 00 movl $0x0,0xc(%ebx) lk->cpu = 0; 8010455e: c7 43 08 00 00 00 00 movl $0x0,0x8(%ebx) __sync_synchronize(); 80104565: f0 83 0c 24 00 lock orl $0x0,(%esp) asm volatile("movl $0, %0" : "+m" (lk->locked) : ); 8010456a: c7 03 00 00 00 00 movl $0x0,(%ebx) } 80104570: 8b 5d fc mov -0x4(%ebp),%ebx 80104573: c9 leave popcli(); 80104574: e9 77 fe ff ff jmp 801043f0 <popcli> panic("release"); 80104579: 83 ec 0c sub $0xc,%esp 8010457c: 68 59 7e 10 80 push $0x80107e59 80104581: e8 0a be ff ff call 80100390 <panic> 80104586: 66 90 xchg %ax,%ax 80104588: 66 90 xchg %ax,%ax 8010458a: 66 90 xchg %ax,%ax 8010458c: 66 90 xchg %ax,%ax 8010458e: 66 90 xchg %ax,%ax 80104590 <memset>: #include "types.h" #include "x86.h" void* memset(void *dst, int c, uint n) { 80104590: 55 push %ebp 80104591: 89 e5 mov %esp,%ebp 80104593: 57 push %edi 80104594: 53 push %ebx 80104595: 8b 55 08 mov 0x8(%ebp),%edx 80104598: 8b 4d 10 mov 0x10(%ebp),%ecx if ((int)dst%4 == 0 && n%4 == 0){ 8010459b: f6 c2 03 test $0x3,%dl 8010459e: 75 05 jne 801045a5 <memset+0x15> 801045a0: f6 c1 03 test $0x3,%cl 801045a3: 74 13 je 801045b8 <memset+0x28> asm volatile("cld; rep stosb" : 801045a5: 89 d7 mov %edx,%edi 801045a7: 8b 45 0c mov 0xc(%ebp),%eax 801045aa: fc cld 801045ab: f3 aa rep stos %al,%es:(%edi) c &= 0xFF; stosl(dst, (c<<24)|(c<<16)|(c<<8)|c, n/4); } else stosb(dst, c, n); return dst; } 801045ad: 5b pop %ebx 801045ae: 89 d0 mov %edx,%eax 801045b0: 5f pop %edi 801045b1: 5d pop %ebp 801045b2: c3 ret 801045b3: 90 nop 801045b4: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi c &= 0xFF; 801045b8: 0f b6 7d 0c movzbl 0xc(%ebp),%edi stosl(dst, (c<<24)|(c<<16)|(c<<8)|c, n/4); 801045bc: c1 e9 02 shr $0x2,%ecx 801045bf: 89 f8 mov %edi,%eax 801045c1: 89 fb mov %edi,%ebx 801045c3: c1 e0 18 shl $0x18,%eax 801045c6: c1 e3 10 shl $0x10,%ebx 801045c9: 09 d8 or %ebx,%eax 801045cb: 09 f8 or %edi,%eax 801045cd: c1 e7 08 shl $0x8,%edi 801045d0: 09 f8 or %edi,%eax asm volatile("cld; rep stosl" : 801045d2: 89 d7 mov %edx,%edi 801045d4: fc cld 801045d5: f3 ab rep stos %eax,%es:(%edi) } 801045d7: 5b pop %ebx 801045d8: 89 d0 mov %edx,%eax 801045da: 5f pop %edi 801045db: 5d pop %ebp 801045dc: c3 ret 801045dd: 8d 76 00 lea 0x0(%esi),%esi 801045e0 <memcmp>: int memcmp(const void *v1, const void *v2, uint n) { 801045e0: 55 push %ebp 801045e1: 89 e5 mov %esp,%ebp 801045e3: 57 push %edi 801045e4: 56 push %esi 801045e5: 53 push %ebx 801045e6: 8b 5d 10 mov 0x10(%ebp),%ebx 801045e9: 8b 75 08 mov 0x8(%ebp),%esi 801045ec: 8b 7d 0c mov 0xc(%ebp),%edi const uchar *s1, *s2; s1 = v1; s2 = v2; while(n-- > 0){ 801045ef: 85 db test %ebx,%ebx 801045f1: 74 29 je 8010461c <memcmp+0x3c> if(*s1 != *s2) 801045f3: 0f b6 16 movzbl (%esi),%edx 801045f6: 0f b6 0f movzbl (%edi),%ecx 801045f9: 38 d1 cmp %dl,%cl 801045fb: 75 2b jne 80104628 <memcmp+0x48> 801045fd: b8 01 00 00 00 mov $0x1,%eax 80104602: eb 14 jmp 80104618 <memcmp+0x38> 80104604: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80104608: 0f b6 14 06 movzbl (%esi,%eax,1),%edx 8010460c: 83 c0 01 add $0x1,%eax 8010460f: 0f b6 4c 07 ff movzbl -0x1(%edi,%eax,1),%ecx 80104614: 38 ca cmp %cl,%dl 80104616: 75 10 jne 80104628 <memcmp+0x48> while(n-- > 0){ 80104618: 39 d8 cmp %ebx,%eax 8010461a: 75 ec jne 80104608 <memcmp+0x28> return *s1 - *s2; s1++, s2++; } return 0; } 8010461c: 5b pop %ebx return 0; 8010461d: 31 c0 xor %eax,%eax } 8010461f: 5e pop %esi 80104620: 5f pop %edi 80104621: 5d pop %ebp 80104622: c3 ret 80104623: 90 nop 80104624: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi return *s1 - *s2; 80104628: 0f b6 c2 movzbl %dl,%eax } 8010462b: 5b pop %ebx return *s1 - *s2; 8010462c: 29 c8 sub %ecx,%eax } 8010462e: 5e pop %esi 8010462f: 5f pop %edi 80104630: 5d pop %ebp 80104631: c3 ret 80104632: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80104639: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80104640 <memmove>: void* memmove(void *dst, const void *src, uint n) { 80104640: 55 push %ebp 80104641: 89 e5 mov %esp,%ebp 80104643: 56 push %esi 80104644: 53 push %ebx 80104645: 8b 45 08 mov 0x8(%ebp),%eax 80104648: 8b 5d 0c mov 0xc(%ebp),%ebx 8010464b: 8b 75 10 mov 0x10(%ebp),%esi const char *s; char *d; s = src; d = dst; if(s < d && s + n > d){ 8010464e: 39 c3 cmp %eax,%ebx 80104650: 73 26 jae 80104678 <memmove+0x38> 80104652: 8d 0c 33 lea (%ebx,%esi,1),%ecx 80104655: 39 c8 cmp %ecx,%eax 80104657: 73 1f jae 80104678 <memmove+0x38> s += n; d += n; while(n-- > 0) 80104659: 85 f6 test %esi,%esi 8010465b: 8d 56 ff lea -0x1(%esi),%edx 8010465e: 74 0f je 8010466f <memmove+0x2f> *--d = *--s; 80104660: 0f b6 0c 13 movzbl (%ebx,%edx,1),%ecx 80104664: 88 0c 10 mov %cl,(%eax,%edx,1) while(n-- > 0) 80104667: 83 ea 01 sub $0x1,%edx 8010466a: 83 fa ff cmp $0xffffffff,%edx 8010466d: 75 f1 jne 80104660 <memmove+0x20> } else while(n-- > 0) *d++ = *s++; return dst; } 8010466f: 5b pop %ebx 80104670: 5e pop %esi 80104671: 5d pop %ebp 80104672: c3 ret 80104673: 90 nop 80104674: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi while(n-- > 0) 80104678: 31 d2 xor %edx,%edx 8010467a: 85 f6 test %esi,%esi 8010467c: 74 f1 je 8010466f <memmove+0x2f> 8010467e: 66 90 xchg %ax,%ax *d++ = *s++; 80104680: 0f b6 0c 13 movzbl (%ebx,%edx,1),%ecx 80104684: 88 0c 10 mov %cl,(%eax,%edx,1) 80104687: 83 c2 01 add $0x1,%edx while(n-- > 0) 8010468a: 39 d6 cmp %edx,%esi 8010468c: 75 f2 jne 80104680 <memmove+0x40> } 8010468e: 5b pop %ebx 8010468f: 5e pop %esi 80104690: 5d pop %ebp 80104691: c3 ret 80104692: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80104699: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 801046a0 <memcpy>: // memcpy exists to placate GCC. Use memmove. void* memcpy(void *dst, const void *src, uint n) { 801046a0: 55 push %ebp 801046a1: 89 e5 mov %esp,%ebp return memmove(dst, src, n); } 801046a3: 5d pop %ebp return memmove(dst, src, n); 801046a4: eb 9a jmp 80104640 <memmove> 801046a6: 8d 76 00 lea 0x0(%esi),%esi 801046a9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 801046b0 <strncmp>: int strncmp(const char *p, const char *q, uint n) { 801046b0: 55 push %ebp 801046b1: 89 e5 mov %esp,%ebp 801046b3: 57 push %edi 801046b4: 56 push %esi 801046b5: 8b 7d 10 mov 0x10(%ebp),%edi 801046b8: 53 push %ebx 801046b9: 8b 4d 08 mov 0x8(%ebp),%ecx 801046bc: 8b 75 0c mov 0xc(%ebp),%esi while(n > 0 && *p && *p == *q) 801046bf: 85 ff test %edi,%edi 801046c1: 74 2f je 801046f2 <strncmp+0x42> 801046c3: 0f b6 01 movzbl (%ecx),%eax 801046c6: 0f b6 1e movzbl (%esi),%ebx 801046c9: 84 c0 test %al,%al 801046cb: 74 37 je 80104704 <strncmp+0x54> 801046cd: 38 c3 cmp %al,%bl 801046cf: 75 33 jne 80104704 <strncmp+0x54> 801046d1: 01 f7 add %esi,%edi 801046d3: eb 13 jmp 801046e8 <strncmp+0x38> 801046d5: 8d 76 00 lea 0x0(%esi),%esi 801046d8: 0f b6 01 movzbl (%ecx),%eax 801046db: 84 c0 test %al,%al 801046dd: 74 21 je 80104700 <strncmp+0x50> 801046df: 0f b6 1a movzbl (%edx),%ebx 801046e2: 89 d6 mov %edx,%esi 801046e4: 38 d8 cmp %bl,%al 801046e6: 75 1c jne 80104704 <strncmp+0x54> n--, p++, q++; 801046e8: 8d 56 01 lea 0x1(%esi),%edx 801046eb: 83 c1 01 add $0x1,%ecx while(n > 0 && *p && *p == *q) 801046ee: 39 fa cmp %edi,%edx 801046f0: 75 e6 jne 801046d8 <strncmp+0x28> if(n == 0) return 0; return (uchar)*p - (uchar)*q; } 801046f2: 5b pop %ebx return 0; 801046f3: 31 c0 xor %eax,%eax } 801046f5: 5e pop %esi 801046f6: 5f pop %edi 801046f7: 5d pop %ebp 801046f8: c3 ret 801046f9: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80104700: 0f b6 5e 01 movzbl 0x1(%esi),%ebx return (uchar)*p - (uchar)*q; 80104704: 29 d8 sub %ebx,%eax } 80104706: 5b pop %ebx 80104707: 5e pop %esi 80104708: 5f pop %edi 80104709: 5d pop %ebp 8010470a: c3 ret 8010470b: 90 nop 8010470c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80104710 <strncpy>: char* strncpy(char *s, const char *t, int n) { 80104710: 55 push %ebp 80104711: 89 e5 mov %esp,%ebp 80104713: 56 push %esi 80104714: 53 push %ebx 80104715: 8b 45 08 mov 0x8(%ebp),%eax 80104718: 8b 5d 0c mov 0xc(%ebp),%ebx 8010471b: 8b 4d 10 mov 0x10(%ebp),%ecx char *os; os = s; while(n-- > 0 && (*s++ = *t++) != 0) 8010471e: 89 c2 mov %eax,%edx 80104720: eb 19 jmp 8010473b <strncpy+0x2b> 80104722: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 80104728: 83 c3 01 add $0x1,%ebx 8010472b: 0f b6 4b ff movzbl -0x1(%ebx),%ecx 8010472f: 83 c2 01 add $0x1,%edx 80104732: 84 c9 test %cl,%cl 80104734: 88 4a ff mov %cl,-0x1(%edx) 80104737: 74 09 je 80104742 <strncpy+0x32> 80104739: 89 f1 mov %esi,%ecx 8010473b: 85 c9 test %ecx,%ecx 8010473d: 8d 71 ff lea -0x1(%ecx),%esi 80104740: 7f e6 jg 80104728 <strncpy+0x18> ; while(n-- > 0) 80104742: 31 c9 xor %ecx,%ecx 80104744: 85 f6 test %esi,%esi 80104746: 7e 17 jle 8010475f <strncpy+0x4f> 80104748: 90 nop 80104749: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi *s++ = 0; 80104750: c6 04 0a 00 movb $0x0,(%edx,%ecx,1) 80104754: 89 f3 mov %esi,%ebx 80104756: 83 c1 01 add $0x1,%ecx 80104759: 29 cb sub %ecx,%ebx while(n-- > 0) 8010475b: 85 db test %ebx,%ebx 8010475d: 7f f1 jg 80104750 <strncpy+0x40> return os; } 8010475f: 5b pop %ebx 80104760: 5e pop %esi 80104761: 5d pop %ebp 80104762: c3 ret 80104763: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 80104769: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80104770 <safestrcpy>: // Like strncpy but guaranteed to NUL-terminate. char* safestrcpy(char *s, const char *t, int n) { 80104770: 55 push %ebp 80104771: 89 e5 mov %esp,%ebp 80104773: 56 push %esi 80104774: 53 push %ebx 80104775: 8b 4d 10 mov 0x10(%ebp),%ecx 80104778: 8b 45 08 mov 0x8(%ebp),%eax 8010477b: 8b 55 0c mov 0xc(%ebp),%edx char *os; os = s; if(n <= 0) 8010477e: 85 c9 test %ecx,%ecx 80104780: 7e 26 jle 801047a8 <safestrcpy+0x38> 80104782: 8d 74 0a ff lea -0x1(%edx,%ecx,1),%esi 80104786: 89 c1 mov %eax,%ecx 80104788: eb 17 jmp 801047a1 <safestrcpy+0x31> 8010478a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi return os; while(--n > 0 && (*s++ = *t++) != 0) 80104790: 83 c2 01 add $0x1,%edx 80104793: 0f b6 5a ff movzbl -0x1(%edx),%ebx 80104797: 83 c1 01 add $0x1,%ecx 8010479a: 84 db test %bl,%bl 8010479c: 88 59 ff mov %bl,-0x1(%ecx) 8010479f: 74 04 je 801047a5 <safestrcpy+0x35> 801047a1: 39 f2 cmp %esi,%edx 801047a3: 75 eb jne 80104790 <safestrcpy+0x20> ; *s = 0; 801047a5: c6 01 00 movb $0x0,(%ecx) return os; } 801047a8: 5b pop %ebx 801047a9: 5e pop %esi 801047aa: 5d pop %ebp 801047ab: c3 ret 801047ac: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 801047b0 <strlen>: int strlen(const char *s) { 801047b0: 55 push %ebp int n; for(n = 0; s[n]; n++) 801047b1: 31 c0 xor %eax,%eax { 801047b3: 89 e5 mov %esp,%ebp 801047b5: 8b 55 08 mov 0x8(%ebp),%edx for(n = 0; s[n]; n++) 801047b8: 80 3a 00 cmpb $0x0,(%edx) 801047bb: 74 0c je 801047c9 <strlen+0x19> 801047bd: 8d 76 00 lea 0x0(%esi),%esi 801047c0: 83 c0 01 add $0x1,%eax 801047c3: 80 3c 02 00 cmpb $0x0,(%edx,%eax,1) 801047c7: 75 f7 jne 801047c0 <strlen+0x10> ; return n; } 801047c9: 5d pop %ebp 801047ca: c3 ret 801047cb <swtch>: # a struct context, and save its address in *old. # Switch stacks to new and pop previously-saved registers. .globl swtch swtch: movl 4(%esp), %eax 801047cb: 8b 44 24 04 mov 0x4(%esp),%eax movl 8(%esp), %edx 801047cf: 8b 54 24 08 mov 0x8(%esp),%edx # Save old callee-saved registers pushl %ebp 801047d3: 55 push %ebp pushl %ebx 801047d4: 53 push %ebx pushl %esi 801047d5: 56 push %esi pushl %edi 801047d6: 57 push %edi # Switch stacks movl %esp, (%eax) 801047d7: 89 20 mov %esp,(%eax) movl %edx, %esp 801047d9: 89 d4 mov %edx,%esp # Load new callee-saved registers popl %edi 801047db: 5f pop %edi popl %esi 801047dc: 5e pop %esi popl %ebx 801047dd: 5b pop %ebx popl %ebp 801047de: 5d pop %ebp ret 801047df: c3 ret 801047e0 <fetchint>: // to a saved program counter, and then the first argument. // Fetch the int at addr from the current process. int fetchint(uint addr, int *ip) { 801047e0: 55 push %ebp 801047e1: 89 e5 mov %esp,%ebp 801047e3: 53 push %ebx 801047e4: 83 ec 04 sub $0x4,%esp 801047e7: 8b 5d 08 mov 0x8(%ebp),%ebx struct proc *curproc = myproc(); 801047ea: e8 f1 ef ff ff call 801037e0 <myproc> if(addr >= curproc->sz || addr+4 > curproc->sz) 801047ef: 8b 00 mov (%eax),%eax 801047f1: 39 d8 cmp %ebx,%eax 801047f3: 76 1b jbe 80104810 <fetchint+0x30> 801047f5: 8d 53 04 lea 0x4(%ebx),%edx 801047f8: 39 d0 cmp %edx,%eax 801047fa: 72 14 jb 80104810 <fetchint+0x30> return -1; *ip = *(int*)(addr); 801047fc: 8b 45 0c mov 0xc(%ebp),%eax 801047ff: 8b 13 mov (%ebx),%edx 80104801: 89 10 mov %edx,(%eax) return 0; 80104803: 31 c0 xor %eax,%eax } 80104805: 83 c4 04 add $0x4,%esp 80104808: 5b pop %ebx 80104809: 5d pop %ebp 8010480a: c3 ret 8010480b: 90 nop 8010480c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi return -1; 80104810: b8 ff ff ff ff mov $0xffffffff,%eax 80104815: eb ee jmp 80104805 <fetchint+0x25> 80104817: 89 f6 mov %esi,%esi 80104819: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80104820 <fetchstr>: // Fetch the nul-terminated string at addr from the current process. // Doesn't actually copy the string - just sets *pp to point at it. // Returns length of string, not including nul. int fetchstr(uint addr, char **pp) { 80104820: 55 push %ebp 80104821: 89 e5 mov %esp,%ebp 80104823: 53 push %ebx 80104824: 83 ec 04 sub $0x4,%esp 80104827: 8b 5d 08 mov 0x8(%ebp),%ebx char *s, *ep; struct proc *curproc = myproc(); 8010482a: e8 b1 ef ff ff call 801037e0 <myproc> if(addr >= curproc->sz) 8010482f: 39 18 cmp %ebx,(%eax) 80104831: 76 29 jbe 8010485c <fetchstr+0x3c> return -1; *pp = (char*)addr; 80104833: 8b 4d 0c mov 0xc(%ebp),%ecx 80104836: 89 da mov %ebx,%edx 80104838: 89 19 mov %ebx,(%ecx) ep = (char*)curproc->sz; 8010483a: 8b 00 mov (%eax),%eax for(s = *pp; s < ep; s++){ 8010483c: 39 c3 cmp %eax,%ebx 8010483e: 73 1c jae 8010485c <fetchstr+0x3c> if(*s == 0) 80104840: 80 3b 00 cmpb $0x0,(%ebx) 80104843: 75 10 jne 80104855 <fetchstr+0x35> 80104845: eb 39 jmp 80104880 <fetchstr+0x60> 80104847: 89 f6 mov %esi,%esi 80104849: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80104850: 80 3a 00 cmpb $0x0,(%edx) 80104853: 74 1b je 80104870 <fetchstr+0x50> for(s = *pp; s < ep; s++){ 80104855: 83 c2 01 add $0x1,%edx 80104858: 39 d0 cmp %edx,%eax 8010485a: 77 f4 ja 80104850 <fetchstr+0x30> return -1; 8010485c: b8 ff ff ff ff mov $0xffffffff,%eax return s - *pp; } return -1; } 80104861: 83 c4 04 add $0x4,%esp 80104864: 5b pop %ebx 80104865: 5d pop %ebp 80104866: c3 ret 80104867: 89 f6 mov %esi,%esi 80104869: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80104870: 83 c4 04 add $0x4,%esp 80104873: 89 d0 mov %edx,%eax 80104875: 29 d8 sub %ebx,%eax 80104877: 5b pop %ebx 80104878: 5d pop %ebp 80104879: c3 ret 8010487a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi if(*s == 0) 80104880: 31 c0 xor %eax,%eax return s - *pp; 80104882: eb dd jmp 80104861 <fetchstr+0x41> 80104884: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 8010488a: 8d bf 00 00 00 00 lea 0x0(%edi),%edi 80104890 <argint>: // Fetch the nth 32-bit system call argument. int argint(int n, int *ip) { 80104890: 55 push %ebp 80104891: 89 e5 mov %esp,%ebp 80104893: 56 push %esi 80104894: 53 push %ebx return fetchint((myproc()->tf->esp) + 4 + 4*n, ip); 80104895: e8 46 ef ff ff call 801037e0 <myproc> 8010489a: 8b 40 18 mov 0x18(%eax),%eax 8010489d: 8b 55 08 mov 0x8(%ebp),%edx 801048a0: 8b 40 44 mov 0x44(%eax),%eax 801048a3: 8d 1c 90 lea (%eax,%edx,4),%ebx struct proc *curproc = myproc(); 801048a6: e8 35 ef ff ff call 801037e0 <myproc> if(addr >= curproc->sz || addr+4 > curproc->sz) 801048ab: 8b 00 mov (%eax),%eax return fetchint((myproc()->tf->esp) + 4 + 4*n, ip); 801048ad: 8d 73 04 lea 0x4(%ebx),%esi if(addr >= curproc->sz || addr+4 > curproc->sz) 801048b0: 39 c6 cmp %eax,%esi 801048b2: 73 1c jae 801048d0 <argint+0x40> 801048b4: 8d 53 08 lea 0x8(%ebx),%edx 801048b7: 39 d0 cmp %edx,%eax 801048b9: 72 15 jb 801048d0 <argint+0x40> *ip = *(int*)(addr); 801048bb: 8b 45 0c mov 0xc(%ebp),%eax 801048be: 8b 53 04 mov 0x4(%ebx),%edx 801048c1: 89 10 mov %edx,(%eax) return 0; 801048c3: 31 c0 xor %eax,%eax } 801048c5: 5b pop %ebx 801048c6: 5e pop %esi 801048c7: 5d pop %ebp 801048c8: c3 ret 801048c9: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi return -1; 801048d0: b8 ff ff ff ff mov $0xffffffff,%eax return fetchint((myproc()->tf->esp) + 4 + 4*n, ip); 801048d5: eb ee jmp 801048c5 <argint+0x35> 801048d7: 89 f6 mov %esi,%esi 801048d9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 801048e0 <argptr>: // Fetch the nth word-sized system call argument as a pointer // to a block of memory of size bytes. Check that the pointer // lies within the process address space. int argptr(int n, char **pp, int size) { 801048e0: 55 push %ebp 801048e1: 89 e5 mov %esp,%ebp 801048e3: 56 push %esi 801048e4: 53 push %ebx 801048e5: 83 ec 10 sub $0x10,%esp 801048e8: 8b 5d 10 mov 0x10(%ebp),%ebx int i; struct proc *curproc = myproc(); 801048eb: e8 f0 ee ff ff call 801037e0 <myproc> 801048f0: 89 c6 mov %eax,%esi if(argint(n, &i) < 0) 801048f2: 8d 45 f4 lea -0xc(%ebp),%eax 801048f5: 83 ec 08 sub $0x8,%esp 801048f8: 50 push %eax 801048f9: ff 75 08 pushl 0x8(%ebp) 801048fc: e8 8f ff ff ff call 80104890 <argint> return -1; if(size < 0 || (uint)i >= curproc->sz || (uint)i+size > curproc->sz) 80104901: 83 c4 10 add $0x10,%esp 80104904: 85 c0 test %eax,%eax 80104906: 78 28 js 80104930 <argptr+0x50> 80104908: 85 db test %ebx,%ebx 8010490a: 78 24 js 80104930 <argptr+0x50> 8010490c: 8b 16 mov (%esi),%edx 8010490e: 8b 45 f4 mov -0xc(%ebp),%eax 80104911: 39 c2 cmp %eax,%edx 80104913: 76 1b jbe 80104930 <argptr+0x50> 80104915: 01 c3 add %eax,%ebx 80104917: 39 da cmp %ebx,%edx 80104919: 72 15 jb 80104930 <argptr+0x50> return -1; *pp = (char*)i; 8010491b: 8b 55 0c mov 0xc(%ebp),%edx 8010491e: 89 02 mov %eax,(%edx) return 0; 80104920: 31 c0 xor %eax,%eax } 80104922: 8d 65 f8 lea -0x8(%ebp),%esp 80104925: 5b pop %ebx 80104926: 5e pop %esi 80104927: 5d pop %ebp 80104928: c3 ret 80104929: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi return -1; 80104930: b8 ff ff ff ff mov $0xffffffff,%eax 80104935: eb eb jmp 80104922 <argptr+0x42> 80104937: 89 f6 mov %esi,%esi 80104939: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80104940 <argstr>: // Check that the pointer is valid and the string is nul-terminated. // (There is no shared writable memory, so the string can't change // between this check and being used by the kernel.) int argstr(int n, char **pp) { 80104940: 55 push %ebp 80104941: 89 e5 mov %esp,%ebp 80104943: 83 ec 20 sub $0x20,%esp int addr; if(argint(n, &addr) < 0) 80104946: 8d 45 f4 lea -0xc(%ebp),%eax 80104949: 50 push %eax 8010494a: ff 75 08 pushl 0x8(%ebp) 8010494d: e8 3e ff ff ff call 80104890 <argint> 80104952: 83 c4 10 add $0x10,%esp 80104955: 85 c0 test %eax,%eax 80104957: 78 17 js 80104970 <argstr+0x30> return -1; return fetchstr(addr, pp); 80104959: 83 ec 08 sub $0x8,%esp 8010495c: ff 75 0c pushl 0xc(%ebp) 8010495f: ff 75 f4 pushl -0xc(%ebp) 80104962: e8 b9 fe ff ff call 80104820 <fetchstr> 80104967: 83 c4 10 add $0x10,%esp } 8010496a: c9 leave 8010496b: c3 ret 8010496c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi return -1; 80104970: b8 ff ff ff ff mov $0xffffffff,%eax } 80104975: c9 leave 80104976: c3 ret 80104977: 89 f6 mov %esi,%esi 80104979: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80104980 <syscall>: [SYS_mv] sys_mv, }; void syscall(void) { 80104980: 55 push %ebp 80104981: 89 e5 mov %esp,%ebp 80104983: 53 push %ebx 80104984: 83 ec 04 sub $0x4,%esp int num; struct proc *curproc = myproc(); 80104987: e8 54 ee ff ff call 801037e0 <myproc> 8010498c: 89 c3 mov %eax,%ebx num = curproc->tf->eax; 8010498e: 8b 40 18 mov 0x18(%eax),%eax 80104991: 8b 40 1c mov 0x1c(%eax),%eax if(num > 0 && num < NELEM(syscalls) && syscalls[num]) { 80104994: 8d 50 ff lea -0x1(%eax),%edx 80104997: 83 fa 18 cmp $0x18,%edx 8010499a: 77 1c ja 801049b8 <syscall+0x38> 8010499c: 8b 14 85 80 7e 10 80 mov -0x7fef8180(,%eax,4),%edx 801049a3: 85 d2 test %edx,%edx 801049a5: 74 11 je 801049b8 <syscall+0x38> curproc->tf->eax = syscalls[num](); 801049a7: ff d2 call *%edx 801049a9: 8b 53 18 mov 0x18(%ebx),%edx 801049ac: 89 42 1c mov %eax,0x1c(%edx) } else { cprintf("%d %s: unknown sys call %d\n", curproc->pid, curproc->name, num); curproc->tf->eax = -1; } } 801049af: 8b 5d fc mov -0x4(%ebp),%ebx 801049b2: c9 leave 801049b3: c3 ret 801049b4: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi cprintf("%d %s: unknown sys call %d\n", 801049b8: 50 push %eax curproc->pid, curproc->name, num); 801049b9: 8d 43 6c lea 0x6c(%ebx),%eax cprintf("%d %s: unknown sys call %d\n", 801049bc: 50 push %eax 801049bd: ff 73 10 pushl 0x10(%ebx) 801049c0: 68 61 7e 10 80 push $0x80107e61 801049c5: e8 96 bc ff ff call 80100660 <cprintf> curproc->tf->eax = -1; 801049ca: 8b 43 18 mov 0x18(%ebx),%eax 801049cd: 83 c4 10 add $0x10,%esp 801049d0: c7 40 1c ff ff ff ff movl $0xffffffff,0x1c(%eax) } 801049d7: 8b 5d fc mov -0x4(%ebp),%ebx 801049da: c9 leave 801049db: c3 ret 801049dc: 66 90 xchg %ax,%ax 801049de: 66 90 xchg %ax,%ax 801049e0 <create>: return -1; } static struct inode* create(char *path, short type, short major, short minor) { 801049e0: 55 push %ebp 801049e1: 89 e5 mov %esp,%ebp 801049e3: 57 push %edi 801049e4: 56 push %esi 801049e5: 53 push %ebx struct inode *ip, *dp; char name[DIRSIZ]; if((dp = nameiparent(path, name)) == 0) 801049e6: 8d 75 da lea -0x26(%ebp),%esi { 801049e9: 83 ec 34 sub $0x34,%esp 801049ec: 89 4d d0 mov %ecx,-0x30(%ebp) 801049ef: 8b 4d 08 mov 0x8(%ebp),%ecx if((dp = nameiparent(path, name)) == 0) 801049f2: 56 push %esi 801049f3: 50 push %eax { 801049f4: 89 55 d4 mov %edx,-0x2c(%ebp) 801049f7: 89 4d cc mov %ecx,-0x34(%ebp) if((dp = nameiparent(path, name)) == 0) 801049fa: e8 01 d5 ff ff call 80101f00 <nameiparent> 801049ff: 83 c4 10 add $0x10,%esp 80104a02: 85 c0 test %eax,%eax 80104a04: 0f 84 46 01 00 00 je 80104b50 <create+0x170> return 0; ilock(dp); 80104a0a: 83 ec 0c sub $0xc,%esp 80104a0d: 89 c3 mov %eax,%ebx 80104a0f: 50 push %eax 80104a10: e8 6b cc ff ff call 80101680 <ilock> if((ip = dirlookup(dp, name, 0)) != 0){ 80104a15: 83 c4 0c add $0xc,%esp 80104a18: 6a 00 push $0x0 80104a1a: 56 push %esi 80104a1b: 53 push %ebx 80104a1c: e8 8f d1 ff ff call 80101bb0 <dirlookup> 80104a21: 83 c4 10 add $0x10,%esp 80104a24: 85 c0 test %eax,%eax 80104a26: 89 c7 mov %eax,%edi 80104a28: 74 36 je 80104a60 <create+0x80> iunlockput(dp); 80104a2a: 83 ec 0c sub $0xc,%esp 80104a2d: 53 push %ebx 80104a2e: e8 dd ce ff ff call 80101910 <iunlockput> ilock(ip); 80104a33: 89 3c 24 mov %edi,(%esp) 80104a36: e8 45 cc ff ff call 80101680 <ilock> if(type == T_FILE && ip->type == T_FILE) 80104a3b: 83 c4 10 add $0x10,%esp 80104a3e: 66 83 7d d4 02 cmpw $0x2,-0x2c(%ebp) 80104a43: 0f 85 97 00 00 00 jne 80104ae0 <create+0x100> 80104a49: 66 83 7f 50 02 cmpw $0x2,0x50(%edi) 80104a4e: 0f 85 8c 00 00 00 jne 80104ae0 <create+0x100> panic("create: dirlink"); iunlockput(dp); return ip; } 80104a54: 8d 65 f4 lea -0xc(%ebp),%esp 80104a57: 89 f8 mov %edi,%eax 80104a59: 5b pop %ebx 80104a5a: 5e pop %esi 80104a5b: 5f pop %edi 80104a5c: 5d pop %ebp 80104a5d: c3 ret 80104a5e: 66 90 xchg %ax,%ax if((ip = ialloc(dp->dev, type)) == 0) 80104a60: 0f bf 45 d4 movswl -0x2c(%ebp),%eax 80104a64: 83 ec 08 sub $0x8,%esp 80104a67: 50 push %eax 80104a68: ff 33 pushl (%ebx) 80104a6a: e8 a1 ca ff ff call 80101510 <ialloc> 80104a6f: 83 c4 10 add $0x10,%esp 80104a72: 85 c0 test %eax,%eax 80104a74: 89 c7 mov %eax,%edi 80104a76: 0f 84 e8 00 00 00 je 80104b64 <create+0x184> ilock(ip); 80104a7c: 83 ec 0c sub $0xc,%esp 80104a7f: 50 push %eax 80104a80: e8 fb cb ff ff call 80101680 <ilock> ip->major = major; 80104a85: 0f b7 45 d0 movzwl -0x30(%ebp),%eax 80104a89: 66 89 47 52 mov %ax,0x52(%edi) ip->minor = minor; 80104a8d: 0f b7 45 cc movzwl -0x34(%ebp),%eax 80104a91: 66 89 47 54 mov %ax,0x54(%edi) ip->nlink = 1; 80104a95: b8 01 00 00 00 mov $0x1,%eax 80104a9a: 66 89 47 56 mov %ax,0x56(%edi) iupdate(ip); 80104a9e: 89 3c 24 mov %edi,(%esp) 80104aa1: e8 2a cb ff ff call 801015d0 <iupdate> if(type == T_DIR){ // Create . and .. entries. 80104aa6: 83 c4 10 add $0x10,%esp 80104aa9: 66 83 7d d4 01 cmpw $0x1,-0x2c(%ebp) 80104aae: 74 50 je 80104b00 <create+0x120> if(dirlink(dp, name, ip->inum) < 0) 80104ab0: 83 ec 04 sub $0x4,%esp 80104ab3: ff 77 04 pushl 0x4(%edi) 80104ab6: 56 push %esi 80104ab7: 53 push %ebx 80104ab8: e8 63 d3 ff ff call 80101e20 <dirlink> 80104abd: 83 c4 10 add $0x10,%esp 80104ac0: 85 c0 test %eax,%eax 80104ac2: 0f 88 8f 00 00 00 js 80104b57 <create+0x177> iunlockput(dp); 80104ac8: 83 ec 0c sub $0xc,%esp 80104acb: 53 push %ebx 80104acc: e8 3f ce ff ff call 80101910 <iunlockput> return ip; 80104ad1: 83 c4 10 add $0x10,%esp } 80104ad4: 8d 65 f4 lea -0xc(%ebp),%esp 80104ad7: 89 f8 mov %edi,%eax 80104ad9: 5b pop %ebx 80104ada: 5e pop %esi 80104adb: 5f pop %edi 80104adc: 5d pop %ebp 80104add: c3 ret 80104ade: 66 90 xchg %ax,%ax iunlockput(ip); 80104ae0: 83 ec 0c sub $0xc,%esp 80104ae3: 57 push %edi return 0; 80104ae4: 31 ff xor %edi,%edi iunlockput(ip); 80104ae6: e8 25 ce ff ff call 80101910 <iunlockput> return 0; 80104aeb: 83 c4 10 add $0x10,%esp } 80104aee: 8d 65 f4 lea -0xc(%ebp),%esp 80104af1: 89 f8 mov %edi,%eax 80104af3: 5b pop %ebx 80104af4: 5e pop %esi 80104af5: 5f pop %edi 80104af6: 5d pop %ebp 80104af7: c3 ret 80104af8: 90 nop 80104af9: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi dp->nlink++; // for ".." 80104b00: 66 83 43 56 01 addw $0x1,0x56(%ebx) iupdate(dp); 80104b05: 83 ec 0c sub $0xc,%esp 80104b08: 53 push %ebx 80104b09: e8 c2 ca ff ff call 801015d0 <iupdate> if(dirlink(ip, ".", ip->inum) < 0 || dirlink(ip, "..", dp->inum) < 0) 80104b0e: 83 c4 0c add $0xc,%esp 80104b11: ff 77 04 pushl 0x4(%edi) 80104b14: 68 04 7f 10 80 push $0x80107f04 80104b19: 57 push %edi 80104b1a: e8 01 d3 ff ff call 80101e20 <dirlink> 80104b1f: 83 c4 10 add $0x10,%esp 80104b22: 85 c0 test %eax,%eax 80104b24: 78 1c js 80104b42 <create+0x162> 80104b26: 83 ec 04 sub $0x4,%esp 80104b29: ff 73 04 pushl 0x4(%ebx) 80104b2c: 68 03 7f 10 80 push $0x80107f03 80104b31: 57 push %edi 80104b32: e8 e9 d2 ff ff call 80101e20 <dirlink> 80104b37: 83 c4 10 add $0x10,%esp 80104b3a: 85 c0 test %eax,%eax 80104b3c: 0f 89 6e ff ff ff jns 80104ab0 <create+0xd0> panic("create dots"); 80104b42: 83 ec 0c sub $0xc,%esp 80104b45: 68 f7 7e 10 80 push $0x80107ef7 80104b4a: e8 41 b8 ff ff call 80100390 <panic> 80104b4f: 90 nop return 0; 80104b50: 31 ff xor %edi,%edi 80104b52: e9 fd fe ff ff jmp 80104a54 <create+0x74> panic("create: dirlink"); 80104b57: 83 ec 0c sub $0xc,%esp 80104b5a: 68 06 7f 10 80 push $0x80107f06 80104b5f: e8 2c b8 ff ff call 80100390 <panic> panic("create: ialloc"); 80104b64: 83 ec 0c sub $0xc,%esp 80104b67: 68 e8 7e 10 80 push $0x80107ee8 80104b6c: e8 1f b8 ff ff call 80100390 <panic> 80104b71: eb 0d jmp 80104b80 <argfd.constprop.1> 80104b73: 90 nop 80104b74: 90 nop 80104b75: 90 nop 80104b76: 90 nop 80104b77: 90 nop 80104b78: 90 nop 80104b79: 90 nop 80104b7a: 90 nop 80104b7b: 90 nop 80104b7c: 90 nop 80104b7d: 90 nop 80104b7e: 90 nop 80104b7f: 90 nop 80104b80 <argfd.constprop.1>: argfd(int n, int *pfd, struct file **pf) 80104b80: 55 push %ebp 80104b81: 89 e5 mov %esp,%ebp 80104b83: 56 push %esi 80104b84: 53 push %ebx 80104b85: 89 c3 mov %eax,%ebx if(argint(n, &fd) < 0) 80104b87: 8d 45 f4 lea -0xc(%ebp),%eax argfd(int n, int *pfd, struct file **pf) 80104b8a: 89 d6 mov %edx,%esi 80104b8c: 83 ec 18 sub $0x18,%esp if(argint(n, &fd) < 0) 80104b8f: 50 push %eax 80104b90: 6a 00 push $0x0 80104b92: e8 f9 fc ff ff call 80104890 <argint> 80104b97: 83 c4 10 add $0x10,%esp 80104b9a: 85 c0 test %eax,%eax 80104b9c: 78 2a js 80104bc8 <argfd.constprop.1+0x48> if(fd < 0 || fd >= NOFILE || (f=myproc()->ofile[fd]) == 0) 80104b9e: 83 7d f4 0f cmpl $0xf,-0xc(%ebp) 80104ba2: 77 24 ja 80104bc8 <argfd.constprop.1+0x48> 80104ba4: e8 37 ec ff ff call 801037e0 <myproc> 80104ba9: 8b 55 f4 mov -0xc(%ebp),%edx 80104bac: 8b 44 90 28 mov 0x28(%eax,%edx,4),%eax 80104bb0: 85 c0 test %eax,%eax 80104bb2: 74 14 je 80104bc8 <argfd.constprop.1+0x48> if(pfd) 80104bb4: 85 db test %ebx,%ebx 80104bb6: 74 02 je 80104bba <argfd.constprop.1+0x3a> *pfd = fd; 80104bb8: 89 13 mov %edx,(%ebx) *pf = f; 80104bba: 89 06 mov %eax,(%esi) return 0; 80104bbc: 31 c0 xor %eax,%eax } 80104bbe: 8d 65 f8 lea -0x8(%ebp),%esp 80104bc1: 5b pop %ebx 80104bc2: 5e pop %esi 80104bc3: 5d pop %ebp 80104bc4: c3 ret 80104bc5: 8d 76 00 lea 0x0(%esi),%esi return -1; 80104bc8: b8 ff ff ff ff mov $0xffffffff,%eax 80104bcd: eb ef jmp 80104bbe <argfd.constprop.1+0x3e> 80104bcf: 90 nop 80104bd0 <sys_dup>: { 80104bd0: 55 push %ebp if(argfd(0, 0, &f) < 0) 80104bd1: 31 c0 xor %eax,%eax { 80104bd3: 89 e5 mov %esp,%ebp 80104bd5: 56 push %esi 80104bd6: 53 push %ebx if(argfd(0, 0, &f) < 0) 80104bd7: 8d 55 f4 lea -0xc(%ebp),%edx { 80104bda: 83 ec 10 sub $0x10,%esp if(argfd(0, 0, &f) < 0) 80104bdd: e8 9e ff ff ff call 80104b80 <argfd.constprop.1> 80104be2: 85 c0 test %eax,%eax 80104be4: 78 42 js 80104c28 <sys_dup+0x58> if((fd=fdalloc(f)) < 0) 80104be6: 8b 75 f4 mov -0xc(%ebp),%esi for(fd = 0; fd < NOFILE; fd++){ 80104be9: 31 db xor %ebx,%ebx struct proc *curproc = myproc(); 80104beb: e8 f0 eb ff ff call 801037e0 <myproc> 80104bf0: eb 0e jmp 80104c00 <sys_dup+0x30> 80104bf2: 8d b6 00 00 00 00 lea 0x0(%esi),%esi for(fd = 0; fd < NOFILE; fd++){ 80104bf8: 83 c3 01 add $0x1,%ebx 80104bfb: 83 fb 10 cmp $0x10,%ebx 80104bfe: 74 28 je 80104c28 <sys_dup+0x58> if(curproc->ofile[fd] == 0){ 80104c00: 8b 54 98 28 mov 0x28(%eax,%ebx,4),%edx 80104c04: 85 d2 test %edx,%edx 80104c06: 75 f0 jne 80104bf8 <sys_dup+0x28> curproc->ofile[fd] = f; 80104c08: 89 74 98 28 mov %esi,0x28(%eax,%ebx,4) filedup(f); 80104c0c: 83 ec 0c sub $0xc,%esp 80104c0f: ff 75 f4 pushl -0xc(%ebp) 80104c12: e8 d9 c1 ff ff call 80100df0 <filedup> return fd; 80104c17: 83 c4 10 add $0x10,%esp } 80104c1a: 8d 65 f8 lea -0x8(%ebp),%esp 80104c1d: 89 d8 mov %ebx,%eax 80104c1f: 5b pop %ebx 80104c20: 5e pop %esi 80104c21: 5d pop %ebp 80104c22: c3 ret 80104c23: 90 nop 80104c24: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80104c28: 8d 65 f8 lea -0x8(%ebp),%esp return -1; 80104c2b: bb ff ff ff ff mov $0xffffffff,%ebx } 80104c30: 89 d8 mov %ebx,%eax 80104c32: 5b pop %ebx 80104c33: 5e pop %esi 80104c34: 5d pop %ebp 80104c35: c3 ret 80104c36: 8d 76 00 lea 0x0(%esi),%esi 80104c39: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80104c40 <sys_read>: { 80104c40: 55 push %ebp if(argfd(0, 0, &f) < 0 || argint(2, &n) < 0 || argptr(1, &p, n) < 0) 80104c41: 31 c0 xor %eax,%eax { 80104c43: 89 e5 mov %esp,%ebp 80104c45: 83 ec 18 sub $0x18,%esp if(argfd(0, 0, &f) < 0 || argint(2, &n) < 0 || argptr(1, &p, n) < 0) 80104c48: 8d 55 ec lea -0x14(%ebp),%edx 80104c4b: e8 30 ff ff ff call 80104b80 <argfd.constprop.1> 80104c50: 85 c0 test %eax,%eax 80104c52: 78 4c js 80104ca0 <sys_read+0x60> 80104c54: 8d 45 f0 lea -0x10(%ebp),%eax 80104c57: 83 ec 08 sub $0x8,%esp 80104c5a: 50 push %eax 80104c5b: 6a 02 push $0x2 80104c5d: e8 2e fc ff ff call 80104890 <argint> 80104c62: 83 c4 10 add $0x10,%esp 80104c65: 85 c0 test %eax,%eax 80104c67: 78 37 js 80104ca0 <sys_read+0x60> 80104c69: 8d 45 f4 lea -0xc(%ebp),%eax 80104c6c: 83 ec 04 sub $0x4,%esp 80104c6f: ff 75 f0 pushl -0x10(%ebp) 80104c72: 50 push %eax 80104c73: 6a 01 push $0x1 80104c75: e8 66 fc ff ff call 801048e0 <argptr> 80104c7a: 83 c4 10 add $0x10,%esp 80104c7d: 85 c0 test %eax,%eax 80104c7f: 78 1f js 80104ca0 <sys_read+0x60> return fileread(f, p, n); 80104c81: 83 ec 04 sub $0x4,%esp 80104c84: ff 75 f0 pushl -0x10(%ebp) 80104c87: ff 75 f4 pushl -0xc(%ebp) 80104c8a: ff 75 ec pushl -0x14(%ebp) 80104c8d: e8 ce c2 ff ff call 80100f60 <fileread> 80104c92: 83 c4 10 add $0x10,%esp } 80104c95: c9 leave 80104c96: c3 ret 80104c97: 89 f6 mov %esi,%esi 80104c99: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi return -1; 80104ca0: b8 ff ff ff ff mov $0xffffffff,%eax } 80104ca5: c9 leave 80104ca6: c3 ret 80104ca7: 89 f6 mov %esi,%esi 80104ca9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80104cb0 <sys_write>: { 80104cb0: 55 push %ebp if(argfd(0, 0, &f) < 0 || argint(2, &n) < 0 || argptr(1, &p, n) < 0) 80104cb1: 31 c0 xor %eax,%eax { 80104cb3: 89 e5 mov %esp,%ebp 80104cb5: 83 ec 18 sub $0x18,%esp if(argfd(0, 0, &f) < 0 || argint(2, &n) < 0 || argptr(1, &p, n) < 0) 80104cb8: 8d 55 ec lea -0x14(%ebp),%edx 80104cbb: e8 c0 fe ff ff call 80104b80 <argfd.constprop.1> 80104cc0: 85 c0 test %eax,%eax 80104cc2: 78 4c js 80104d10 <sys_write+0x60> 80104cc4: 8d 45 f0 lea -0x10(%ebp),%eax 80104cc7: 83 ec 08 sub $0x8,%esp 80104cca: 50 push %eax 80104ccb: 6a 02 push $0x2 80104ccd: e8 be fb ff ff call 80104890 <argint> 80104cd2: 83 c4 10 add $0x10,%esp 80104cd5: 85 c0 test %eax,%eax 80104cd7: 78 37 js 80104d10 <sys_write+0x60> 80104cd9: 8d 45 f4 lea -0xc(%ebp),%eax 80104cdc: 83 ec 04 sub $0x4,%esp 80104cdf: ff 75 f0 pushl -0x10(%ebp) 80104ce2: 50 push %eax 80104ce3: 6a 01 push $0x1 80104ce5: e8 f6 fb ff ff call 801048e0 <argptr> 80104cea: 83 c4 10 add $0x10,%esp 80104ced: 85 c0 test %eax,%eax 80104cef: 78 1f js 80104d10 <sys_write+0x60> return filewrite(f, p, n); 80104cf1: 83 ec 04 sub $0x4,%esp 80104cf4: ff 75 f0 pushl -0x10(%ebp) 80104cf7: ff 75 f4 pushl -0xc(%ebp) 80104cfa: ff 75 ec pushl -0x14(%ebp) 80104cfd: e8 ee c2 ff ff call 80100ff0 <filewrite> 80104d02: 83 c4 10 add $0x10,%esp } 80104d05: c9 leave 80104d06: c3 ret 80104d07: 89 f6 mov %esi,%esi 80104d09: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi return -1; 80104d10: b8 ff ff ff ff mov $0xffffffff,%eax } 80104d15: c9 leave 80104d16: c3 ret 80104d17: 89 f6 mov %esi,%esi 80104d19: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80104d20 <sys_close>: { 80104d20: 55 push %ebp 80104d21: 89 e5 mov %esp,%ebp 80104d23: 83 ec 18 sub $0x18,%esp if(argfd(0, &fd, &f) < 0) 80104d26: 8d 55 f4 lea -0xc(%ebp),%edx 80104d29: 8d 45 f0 lea -0x10(%ebp),%eax 80104d2c: e8 4f fe ff ff call 80104b80 <argfd.constprop.1> 80104d31: 85 c0 test %eax,%eax 80104d33: 78 2b js 80104d60 <sys_close+0x40> myproc()->ofile[fd] = 0; 80104d35: e8 a6 ea ff ff call 801037e0 <myproc> 80104d3a: 8b 55 f0 mov -0x10(%ebp),%edx fileclose(f); 80104d3d: 83 ec 0c sub $0xc,%esp myproc()->ofile[fd] = 0; 80104d40: c7 44 90 28 00 00 00 movl $0x0,0x28(%eax,%edx,4) 80104d47: 00 fileclose(f); 80104d48: ff 75 f4 pushl -0xc(%ebp) 80104d4b: e8 f0 c0 ff ff call 80100e40 <fileclose> return 0; 80104d50: 83 c4 10 add $0x10,%esp 80104d53: 31 c0 xor %eax,%eax } 80104d55: c9 leave 80104d56: c3 ret 80104d57: 89 f6 mov %esi,%esi 80104d59: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi return -1; 80104d60: b8 ff ff ff ff mov $0xffffffff,%eax } 80104d65: c9 leave 80104d66: c3 ret 80104d67: 89 f6 mov %esi,%esi 80104d69: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80104d70 <sys_fstat>: { 80104d70: 55 push %ebp if(argfd(0, 0, &f) < 0 || argptr(1, (void*)&st, sizeof(*st)) < 0) 80104d71: 31 c0 xor %eax,%eax { 80104d73: 89 e5 mov %esp,%ebp 80104d75: 83 ec 18 sub $0x18,%esp if(argfd(0, 0, &f) < 0 || argptr(1, (void*)&st, sizeof(*st)) < 0) 80104d78: 8d 55 f0 lea -0x10(%ebp),%edx 80104d7b: e8 00 fe ff ff call 80104b80 <argfd.constprop.1> 80104d80: 85 c0 test %eax,%eax 80104d82: 78 2c js 80104db0 <sys_fstat+0x40> 80104d84: 8d 45 f4 lea -0xc(%ebp),%eax 80104d87: 83 ec 04 sub $0x4,%esp 80104d8a: 6a 14 push $0x14 80104d8c: 50 push %eax 80104d8d: 6a 01 push $0x1 80104d8f: e8 4c fb ff ff call 801048e0 <argptr> 80104d94: 83 c4 10 add $0x10,%esp 80104d97: 85 c0 test %eax,%eax 80104d99: 78 15 js 80104db0 <sys_fstat+0x40> return filestat(f, st); 80104d9b: 83 ec 08 sub $0x8,%esp 80104d9e: ff 75 f4 pushl -0xc(%ebp) 80104da1: ff 75 f0 pushl -0x10(%ebp) 80104da4: e8 67 c1 ff ff call 80100f10 <filestat> 80104da9: 83 c4 10 add $0x10,%esp } 80104dac: c9 leave 80104dad: c3 ret 80104dae: 66 90 xchg %ax,%ax return -1; 80104db0: b8 ff ff ff ff mov $0xffffffff,%eax } 80104db5: c9 leave 80104db6: c3 ret 80104db7: 89 f6 mov %esi,%esi 80104db9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80104dc0 <sys_link>: { 80104dc0: 55 push %ebp 80104dc1: 89 e5 mov %esp,%ebp 80104dc3: 57 push %edi 80104dc4: 56 push %esi 80104dc5: 53 push %ebx if(argstr(0, &old) < 0 || argstr(1, &new) < 0) 80104dc6: 8d 45 d4 lea -0x2c(%ebp),%eax { 80104dc9: 83 ec 34 sub $0x34,%esp if(argstr(0, &old) < 0 || argstr(1, &new) < 0) 80104dcc: 50 push %eax 80104dcd: 6a 00 push $0x0 80104dcf: e8 6c fb ff ff call 80104940 <argstr> 80104dd4: 83 c4 10 add $0x10,%esp 80104dd7: 85 c0 test %eax,%eax 80104dd9: 0f 88 fb 00 00 00 js 80104eda <sys_link+0x11a> 80104ddf: 8d 45 d0 lea -0x30(%ebp),%eax 80104de2: 83 ec 08 sub $0x8,%esp 80104de5: 50 push %eax 80104de6: 6a 01 push $0x1 80104de8: e8 53 fb ff ff call 80104940 <argstr> 80104ded: 83 c4 10 add $0x10,%esp 80104df0: 85 c0 test %eax,%eax 80104df2: 0f 88 e2 00 00 00 js 80104eda <sys_link+0x11a> begin_op(); 80104df8: e8 a3 dd ff ff call 80102ba0 <begin_op> if((ip = namei(old)) == 0){ 80104dfd: 83 ec 0c sub $0xc,%esp 80104e00: ff 75 d4 pushl -0x2c(%ebp) 80104e03: e8 d8 d0 ff ff call 80101ee0 <namei> 80104e08: 83 c4 10 add $0x10,%esp 80104e0b: 85 c0 test %eax,%eax 80104e0d: 89 c3 mov %eax,%ebx 80104e0f: 0f 84 ea 00 00 00 je 80104eff <sys_link+0x13f> ilock(ip); 80104e15: 83 ec 0c sub $0xc,%esp 80104e18: 50 push %eax 80104e19: e8 62 c8 ff ff call 80101680 <ilock> if(ip->type == T_DIR){ 80104e1e: 83 c4 10 add $0x10,%esp 80104e21: 66 83 7b 50 01 cmpw $0x1,0x50(%ebx) 80104e26: 0f 84 bb 00 00 00 je 80104ee7 <sys_link+0x127> ip->nlink++; 80104e2c: 66 83 43 56 01 addw $0x1,0x56(%ebx) iupdate(ip); 80104e31: 83 ec 0c sub $0xc,%esp if((dp = nameiparent(new, name)) == 0) 80104e34: 8d 7d da lea -0x26(%ebp),%edi iupdate(ip); 80104e37: 53 push %ebx 80104e38: e8 93 c7 ff ff call 801015d0 <iupdate> iunlock(ip); 80104e3d: 89 1c 24 mov %ebx,(%esp) 80104e40: e8 1b c9 ff ff call 80101760 <iunlock> if((dp = nameiparent(new, name)) == 0) 80104e45: 58 pop %eax 80104e46: 5a pop %edx 80104e47: 57 push %edi 80104e48: ff 75 d0 pushl -0x30(%ebp) 80104e4b: e8 b0 d0 ff ff call 80101f00 <nameiparent> 80104e50: 83 c4 10 add $0x10,%esp 80104e53: 85 c0 test %eax,%eax 80104e55: 89 c6 mov %eax,%esi 80104e57: 74 5b je 80104eb4 <sys_link+0xf4> ilock(dp); 80104e59: 83 ec 0c sub $0xc,%esp 80104e5c: 50 push %eax 80104e5d: e8 1e c8 ff ff call 80101680 <ilock> if(dp->dev != ip->dev || dirlink(dp, name, ip->inum) < 0){ 80104e62: 83 c4 10 add $0x10,%esp 80104e65: 8b 03 mov (%ebx),%eax 80104e67: 39 06 cmp %eax,(%esi) 80104e69: 75 3d jne 80104ea8 <sys_link+0xe8> 80104e6b: 83 ec 04 sub $0x4,%esp 80104e6e: ff 73 04 pushl 0x4(%ebx) 80104e71: 57 push %edi 80104e72: 56 push %esi 80104e73: e8 a8 cf ff ff call 80101e20 <dirlink> 80104e78: 83 c4 10 add $0x10,%esp 80104e7b: 85 c0 test %eax,%eax 80104e7d: 78 29 js 80104ea8 <sys_link+0xe8> iunlockput(dp); 80104e7f: 83 ec 0c sub $0xc,%esp 80104e82: 56 push %esi 80104e83: e8 88 ca ff ff call 80101910 <iunlockput> iput(ip); 80104e88: 89 1c 24 mov %ebx,(%esp) 80104e8b: e8 20 c9 ff ff call 801017b0 <iput> end_op(); 80104e90: e8 7b dd ff ff call 80102c10 <end_op> return 0; 80104e95: 83 c4 10 add $0x10,%esp 80104e98: 31 c0 xor %eax,%eax } 80104e9a: 8d 65 f4 lea -0xc(%ebp),%esp 80104e9d: 5b pop %ebx 80104e9e: 5e pop %esi 80104e9f: 5f pop %edi 80104ea0: 5d pop %ebp 80104ea1: c3 ret 80104ea2: 8d b6 00 00 00 00 lea 0x0(%esi),%esi iunlockput(dp); 80104ea8: 83 ec 0c sub $0xc,%esp 80104eab: 56 push %esi 80104eac: e8 5f ca ff ff call 80101910 <iunlockput> goto bad; 80104eb1: 83 c4 10 add $0x10,%esp ilock(ip); 80104eb4: 83 ec 0c sub $0xc,%esp 80104eb7: 53 push %ebx 80104eb8: e8 c3 c7 ff ff call 80101680 <ilock> ip->nlink--; 80104ebd: 66 83 6b 56 01 subw $0x1,0x56(%ebx) iupdate(ip); 80104ec2: 89 1c 24 mov %ebx,(%esp) 80104ec5: e8 06 c7 ff ff call 801015d0 <iupdate> iunlockput(ip); 80104eca: 89 1c 24 mov %ebx,(%esp) 80104ecd: e8 3e ca ff ff call 80101910 <iunlockput> end_op(); 80104ed2: e8 39 dd ff ff call 80102c10 <end_op> return -1; 80104ed7: 83 c4 10 add $0x10,%esp } 80104eda: 8d 65 f4 lea -0xc(%ebp),%esp return -1; 80104edd: b8 ff ff ff ff mov $0xffffffff,%eax } 80104ee2: 5b pop %ebx 80104ee3: 5e pop %esi 80104ee4: 5f pop %edi 80104ee5: 5d pop %ebp 80104ee6: c3 ret iunlockput(ip); 80104ee7: 83 ec 0c sub $0xc,%esp 80104eea: 53 push %ebx 80104eeb: e8 20 ca ff ff call 80101910 <iunlockput> end_op(); 80104ef0: e8 1b dd ff ff call 80102c10 <end_op> return -1; 80104ef5: 83 c4 10 add $0x10,%esp 80104ef8: b8 ff ff ff ff mov $0xffffffff,%eax 80104efd: eb 9b jmp 80104e9a <sys_link+0xda> end_op(); 80104eff: e8 0c dd ff ff call 80102c10 <end_op> return -1; 80104f04: b8 ff ff ff ff mov $0xffffffff,%eax 80104f09: eb 8f jmp 80104e9a <sys_link+0xda> 80104f0b: 90 nop 80104f0c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80104f10 <sys_unlink>: { 80104f10: 55 push %ebp 80104f11: 89 e5 mov %esp,%ebp 80104f13: 57 push %edi 80104f14: 56 push %esi 80104f15: 53 push %ebx if(argstr(0, &path) < 0) 80104f16: 8d 45 c0 lea -0x40(%ebp),%eax { 80104f19: 83 ec 44 sub $0x44,%esp if(argstr(0, &path) < 0) 80104f1c: 50 push %eax 80104f1d: 6a 00 push $0x0 80104f1f: e8 1c fa ff ff call 80104940 <argstr> 80104f24: 83 c4 10 add $0x10,%esp 80104f27: 85 c0 test %eax,%eax 80104f29: 0f 88 77 01 00 00 js 801050a6 <sys_unlink+0x196> if((dp = nameiparent(path, name)) == 0){ 80104f2f: 8d 5d ca lea -0x36(%ebp),%ebx begin_op(); 80104f32: e8 69 dc ff ff call 80102ba0 <begin_op> if((dp = nameiparent(path, name)) == 0){ 80104f37: 83 ec 08 sub $0x8,%esp 80104f3a: 53 push %ebx 80104f3b: ff 75 c0 pushl -0x40(%ebp) 80104f3e: e8 bd cf ff ff call 80101f00 <nameiparent> 80104f43: 83 c4 10 add $0x10,%esp 80104f46: 85 c0 test %eax,%eax 80104f48: 89 c6 mov %eax,%esi 80104f4a: 0f 84 60 01 00 00 je 801050b0 <sys_unlink+0x1a0> ilock(dp); 80104f50: 83 ec 0c sub $0xc,%esp 80104f53: 50 push %eax 80104f54: e8 27 c7 ff ff call 80101680 <ilock> if(namecmp(name, ".") == 0 || namecmp(name, "..") == 0) 80104f59: 58 pop %eax 80104f5a: 5a pop %edx 80104f5b: 68 04 7f 10 80 push $0x80107f04 80104f60: 53 push %ebx 80104f61: e8 2a cc ff ff call 80101b90 <namecmp> 80104f66: 83 c4 10 add $0x10,%esp 80104f69: 85 c0 test %eax,%eax 80104f6b: 0f 84 03 01 00 00 je 80105074 <sys_unlink+0x164> 80104f71: 83 ec 08 sub $0x8,%esp 80104f74: 68 03 7f 10 80 push $0x80107f03 80104f79: 53 push %ebx 80104f7a: e8 11 cc ff ff call 80101b90 <namecmp> 80104f7f: 83 c4 10 add $0x10,%esp 80104f82: 85 c0 test %eax,%eax 80104f84: 0f 84 ea 00 00 00 je 80105074 <sys_unlink+0x164> if((ip = dirlookup(dp, name, &off)) == 0) 80104f8a: 8d 45 c4 lea -0x3c(%ebp),%eax 80104f8d: 83 ec 04 sub $0x4,%esp 80104f90: 50 push %eax 80104f91: 53 push %ebx 80104f92: 56 push %esi 80104f93: e8 18 cc ff ff call 80101bb0 <dirlookup> 80104f98: 83 c4 10 add $0x10,%esp 80104f9b: 85 c0 test %eax,%eax 80104f9d: 89 c3 mov %eax,%ebx 80104f9f: 0f 84 cf 00 00 00 je 80105074 <sys_unlink+0x164> ilock(ip); 80104fa5: 83 ec 0c sub $0xc,%esp 80104fa8: 50 push %eax 80104fa9: e8 d2 c6 ff ff call 80101680 <ilock> if(ip->nlink < 1) 80104fae: 83 c4 10 add $0x10,%esp 80104fb1: 66 83 7b 56 00 cmpw $0x0,0x56(%ebx) 80104fb6: 0f 8e 10 01 00 00 jle 801050cc <sys_unlink+0x1bc> if(ip->type == T_DIR && !isdirempty(ip)){ 80104fbc: 66 83 7b 50 01 cmpw $0x1,0x50(%ebx) 80104fc1: 74 6d je 80105030 <sys_unlink+0x120> memset(&de, 0, sizeof(de)); 80104fc3: 8d 45 d8 lea -0x28(%ebp),%eax 80104fc6: 83 ec 04 sub $0x4,%esp 80104fc9: 6a 10 push $0x10 80104fcb: 6a 00 push $0x0 80104fcd: 50 push %eax 80104fce: e8 bd f5 ff ff call 80104590 <memset> if(writei(dp, (char*)&de, off, sizeof(de)) != sizeof(de)) 80104fd3: 8d 45 d8 lea -0x28(%ebp),%eax 80104fd6: 6a 10 push $0x10 80104fd8: ff 75 c4 pushl -0x3c(%ebp) 80104fdb: 50 push %eax 80104fdc: 56 push %esi 80104fdd: e8 7e ca ff ff call 80101a60 <writei> 80104fe2: 83 c4 20 add $0x20,%esp 80104fe5: 83 f8 10 cmp $0x10,%eax 80104fe8: 0f 85 eb 00 00 00 jne 801050d9 <sys_unlink+0x1c9> if(ip->type == T_DIR){ 80104fee: 66 83 7b 50 01 cmpw $0x1,0x50(%ebx) 80104ff3: 0f 84 97 00 00 00 je 80105090 <sys_unlink+0x180> iunlockput(dp); 80104ff9: 83 ec 0c sub $0xc,%esp 80104ffc: 56 push %esi 80104ffd: e8 0e c9 ff ff call 80101910 <iunlockput> ip->nlink--; 80105002: 66 83 6b 56 01 subw $0x1,0x56(%ebx) iupdate(ip); 80105007: 89 1c 24 mov %ebx,(%esp) 8010500a: e8 c1 c5 ff ff call 801015d0 <iupdate> iunlockput(ip); 8010500f: 89 1c 24 mov %ebx,(%esp) 80105012: e8 f9 c8 ff ff call 80101910 <iunlockput> end_op(); 80105017: e8 f4 db ff ff call 80102c10 <end_op> return 0; 8010501c: 83 c4 10 add $0x10,%esp 8010501f: 31 c0 xor %eax,%eax } 80105021: 8d 65 f4 lea -0xc(%ebp),%esp 80105024: 5b pop %ebx 80105025: 5e pop %esi 80105026: 5f pop %edi 80105027: 5d pop %ebp 80105028: c3 ret 80105029: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi for(off=2*sizeof(de); off<dp->size; off+=sizeof(de)){ 80105030: 83 7b 58 20 cmpl $0x20,0x58(%ebx) 80105034: 76 8d jbe 80104fc3 <sys_unlink+0xb3> 80105036: bf 20 00 00 00 mov $0x20,%edi 8010503b: eb 0f jmp 8010504c <sys_unlink+0x13c> 8010503d: 8d 76 00 lea 0x0(%esi),%esi 80105040: 83 c7 10 add $0x10,%edi 80105043: 3b 7b 58 cmp 0x58(%ebx),%edi 80105046: 0f 83 77 ff ff ff jae 80104fc3 <sys_unlink+0xb3> if(readi(dp, (char*)&de, off, sizeof(de)) != sizeof(de)) 8010504c: 8d 45 d8 lea -0x28(%ebp),%eax 8010504f: 6a 10 push $0x10 80105051: 57 push %edi 80105052: 50 push %eax 80105053: 53 push %ebx 80105054: e8 07 c9 ff ff call 80101960 <readi> 80105059: 83 c4 10 add $0x10,%esp 8010505c: 83 f8 10 cmp $0x10,%eax 8010505f: 75 5e jne 801050bf <sys_unlink+0x1af> if(de.inum != 0) 80105061: 66 83 7d d8 00 cmpw $0x0,-0x28(%ebp) 80105066: 74 d8 je 80105040 <sys_unlink+0x130> iunlockput(ip); 80105068: 83 ec 0c sub $0xc,%esp 8010506b: 53 push %ebx 8010506c: e8 9f c8 ff ff call 80101910 <iunlockput> goto bad; 80105071: 83 c4 10 add $0x10,%esp iunlockput(dp); 80105074: 83 ec 0c sub $0xc,%esp 80105077: 56 push %esi 80105078: e8 93 c8 ff ff call 80101910 <iunlockput> end_op(); 8010507d: e8 8e db ff ff call 80102c10 <end_op> return -1; 80105082: 83 c4 10 add $0x10,%esp 80105085: b8 ff ff ff ff mov $0xffffffff,%eax 8010508a: eb 95 jmp 80105021 <sys_unlink+0x111> 8010508c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi dp->nlink--; 80105090: 66 83 6e 56 01 subw $0x1,0x56(%esi) iupdate(dp); 80105095: 83 ec 0c sub $0xc,%esp 80105098: 56 push %esi 80105099: e8 32 c5 ff ff call 801015d0 <iupdate> 8010509e: 83 c4 10 add $0x10,%esp 801050a1: e9 53 ff ff ff jmp 80104ff9 <sys_unlink+0xe9> return -1; 801050a6: b8 ff ff ff ff mov $0xffffffff,%eax 801050ab: e9 71 ff ff ff jmp 80105021 <sys_unlink+0x111> end_op(); 801050b0: e8 5b db ff ff call 80102c10 <end_op> return -1; 801050b5: b8 ff ff ff ff mov $0xffffffff,%eax 801050ba: e9 62 ff ff ff jmp 80105021 <sys_unlink+0x111> panic("isdirempty: readi"); 801050bf: 83 ec 0c sub $0xc,%esp 801050c2: 68 28 7f 10 80 push $0x80107f28 801050c7: e8 c4 b2 ff ff call 80100390 <panic> panic("unlink: nlink < 1"); 801050cc: 83 ec 0c sub $0xc,%esp 801050cf: 68 16 7f 10 80 push $0x80107f16 801050d4: e8 b7 b2 ff ff call 80100390 <panic> panic("unlink: writei"); 801050d9: 83 ec 0c sub $0xc,%esp 801050dc: 68 3a 7f 10 80 push $0x80107f3a 801050e1: e8 aa b2 ff ff call 80100390 <panic> 801050e6: 8d 76 00 lea 0x0(%esi),%esi 801050e9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 801050f0 <sys_open>: int sys_open(void) { 801050f0: 55 push %ebp 801050f1: 89 e5 mov %esp,%ebp 801050f3: 57 push %edi 801050f4: 56 push %esi 801050f5: 53 push %ebx char *path; int fd, omode; struct file *f; struct inode *ip; if(argstr(0, &path) < 0 || argint(1, &omode) < 0) 801050f6: 8d 45 e0 lea -0x20(%ebp),%eax { 801050f9: 83 ec 24 sub $0x24,%esp if(argstr(0, &path) < 0 || argint(1, &omode) < 0) 801050fc: 50 push %eax 801050fd: 6a 00 push $0x0 801050ff: e8 3c f8 ff ff call 80104940 <argstr> 80105104: 83 c4 10 add $0x10,%esp 80105107: 85 c0 test %eax,%eax 80105109: 0f 88 1d 01 00 00 js 8010522c <sys_open+0x13c> 8010510f: 8d 45 e4 lea -0x1c(%ebp),%eax 80105112: 83 ec 08 sub $0x8,%esp 80105115: 50 push %eax 80105116: 6a 01 push $0x1 80105118: e8 73 f7 ff ff call 80104890 <argint> 8010511d: 83 c4 10 add $0x10,%esp 80105120: 85 c0 test %eax,%eax 80105122: 0f 88 04 01 00 00 js 8010522c <sys_open+0x13c> return -1; begin_op(); 80105128: e8 73 da ff ff call 80102ba0 <begin_op> if(omode & O_CREATE){ 8010512d: f6 45 e5 02 testb $0x2,-0x1b(%ebp) 80105131: 0f 85 a9 00 00 00 jne 801051e0 <sys_open+0xf0> if(ip == 0){ end_op(); return -1; } } else { if((ip = namei(path)) == 0){ 80105137: 83 ec 0c sub $0xc,%esp 8010513a: ff 75 e0 pushl -0x20(%ebp) 8010513d: e8 9e cd ff ff call 80101ee0 <namei> 80105142: 83 c4 10 add $0x10,%esp 80105145: 85 c0 test %eax,%eax 80105147: 89 c6 mov %eax,%esi 80105149: 0f 84 b2 00 00 00 je 80105201 <sys_open+0x111> end_op(); return -1; } ilock(ip); 8010514f: 83 ec 0c sub $0xc,%esp 80105152: 50 push %eax 80105153: e8 28 c5 ff ff call 80101680 <ilock> if(ip->type == T_DIR && omode != O_RDONLY){ 80105158: 83 c4 10 add $0x10,%esp 8010515b: 66 83 7e 50 01 cmpw $0x1,0x50(%esi) 80105160: 0f 84 aa 00 00 00 je 80105210 <sys_open+0x120> end_op(); return -1; } } if((f = filealloc()) == 0 || (fd = fdalloc(f)) < 0){ 80105166: e8 15 bc ff ff call 80100d80 <filealloc> 8010516b: 85 c0 test %eax,%eax 8010516d: 89 c7 mov %eax,%edi 8010516f: 0f 84 a6 00 00 00 je 8010521b <sys_open+0x12b> struct proc *curproc = myproc(); 80105175: e8 66 e6 ff ff call 801037e0 <myproc> for(fd = 0; fd < NOFILE; fd++){ 8010517a: 31 db xor %ebx,%ebx 8010517c: eb 0e jmp 8010518c <sys_open+0x9c> 8010517e: 66 90 xchg %ax,%ax 80105180: 83 c3 01 add $0x1,%ebx 80105183: 83 fb 10 cmp $0x10,%ebx 80105186: 0f 84 ac 00 00 00 je 80105238 <sys_open+0x148> if(curproc->ofile[fd] == 0){ 8010518c: 8b 54 98 28 mov 0x28(%eax,%ebx,4),%edx 80105190: 85 d2 test %edx,%edx 80105192: 75 ec jne 80105180 <sys_open+0x90> fileclose(f); iunlockput(ip); end_op(); return -1; } iunlock(ip); 80105194: 83 ec 0c sub $0xc,%esp curproc->ofile[fd] = f; 80105197: 89 7c 98 28 mov %edi,0x28(%eax,%ebx,4) iunlock(ip); 8010519b: 56 push %esi 8010519c: e8 bf c5 ff ff call 80101760 <iunlock> end_op(); 801051a1: e8 6a da ff ff call 80102c10 <end_op> f->type = FD_INODE; 801051a6: c7 07 02 00 00 00 movl $0x2,(%edi) f->ip = ip; f->off = 0; f->readable = !(omode & O_WRONLY); 801051ac: 8b 55 e4 mov -0x1c(%ebp),%edx f->writable = (omode & O_WRONLY) || (omode & O_RDWR); 801051af: 83 c4 10 add $0x10,%esp f->ip = ip; 801051b2: 89 77 10 mov %esi,0x10(%edi) f->off = 0; 801051b5: c7 47 14 00 00 00 00 movl $0x0,0x14(%edi) f->readable = !(omode & O_WRONLY); 801051bc: 89 d0 mov %edx,%eax 801051be: f7 d0 not %eax 801051c0: 83 e0 01 and $0x1,%eax f->writable = (omode & O_WRONLY) || (omode & O_RDWR); 801051c3: 83 e2 03 and $0x3,%edx f->readable = !(omode & O_WRONLY); 801051c6: 88 47 08 mov %al,0x8(%edi) f->writable = (omode & O_WRONLY) || (omode & O_RDWR); 801051c9: 0f 95 47 09 setne 0x9(%edi) return fd; } 801051cd: 8d 65 f4 lea -0xc(%ebp),%esp 801051d0: 89 d8 mov %ebx,%eax 801051d2: 5b pop %ebx 801051d3: 5e pop %esi 801051d4: 5f pop %edi 801051d5: 5d pop %ebp 801051d6: c3 ret 801051d7: 89 f6 mov %esi,%esi 801051d9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi ip = create(path, T_FILE, 0, 0); 801051e0: 83 ec 0c sub $0xc,%esp 801051e3: 8b 45 e0 mov -0x20(%ebp),%eax 801051e6: 31 c9 xor %ecx,%ecx 801051e8: 6a 00 push $0x0 801051ea: ba 02 00 00 00 mov $0x2,%edx 801051ef: e8 ec f7 ff ff call 801049e0 <create> if(ip == 0){ 801051f4: 83 c4 10 add $0x10,%esp 801051f7: 85 c0 test %eax,%eax ip = create(path, T_FILE, 0, 0); 801051f9: 89 c6 mov %eax,%esi if(ip == 0){ 801051fb: 0f 85 65 ff ff ff jne 80105166 <sys_open+0x76> end_op(); 80105201: e8 0a da ff ff call 80102c10 <end_op> return -1; 80105206: bb ff ff ff ff mov $0xffffffff,%ebx 8010520b: eb c0 jmp 801051cd <sys_open+0xdd> 8010520d: 8d 76 00 lea 0x0(%esi),%esi if(ip->type == T_DIR && omode != O_RDONLY){ 80105210: 8b 4d e4 mov -0x1c(%ebp),%ecx 80105213: 85 c9 test %ecx,%ecx 80105215: 0f 84 4b ff ff ff je 80105166 <sys_open+0x76> iunlockput(ip); 8010521b: 83 ec 0c sub $0xc,%esp 8010521e: 56 push %esi 8010521f: e8 ec c6 ff ff call 80101910 <iunlockput> end_op(); 80105224: e8 e7 d9 ff ff call 80102c10 <end_op> return -1; 80105229: 83 c4 10 add $0x10,%esp 8010522c: bb ff ff ff ff mov $0xffffffff,%ebx 80105231: eb 9a jmp 801051cd <sys_open+0xdd> 80105233: 90 nop 80105234: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi fileclose(f); 80105238: 83 ec 0c sub $0xc,%esp 8010523b: 57 push %edi 8010523c: e8 ff bb ff ff call 80100e40 <fileclose> 80105241: 83 c4 10 add $0x10,%esp 80105244: eb d5 jmp 8010521b <sys_open+0x12b> 80105246: 8d 76 00 lea 0x0(%esi),%esi 80105249: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80105250 <sys_mkdir>: int sys_mkdir(void) { 80105250: 55 push %ebp 80105251: 89 e5 mov %esp,%ebp 80105253: 83 ec 18 sub $0x18,%esp char *path; struct inode *ip; begin_op(); 80105256: e8 45 d9 ff ff call 80102ba0 <begin_op> if(argstr(0, &path) < 0 || (ip = create(path, T_DIR, 0, 0)) == 0){ 8010525b: 8d 45 f4 lea -0xc(%ebp),%eax 8010525e: 83 ec 08 sub $0x8,%esp 80105261: 50 push %eax 80105262: 6a 00 push $0x0 80105264: e8 d7 f6 ff ff call 80104940 <argstr> 80105269: 83 c4 10 add $0x10,%esp 8010526c: 85 c0 test %eax,%eax 8010526e: 78 30 js 801052a0 <sys_mkdir+0x50> 80105270: 83 ec 0c sub $0xc,%esp 80105273: 8b 45 f4 mov -0xc(%ebp),%eax 80105276: 31 c9 xor %ecx,%ecx 80105278: 6a 00 push $0x0 8010527a: ba 01 00 00 00 mov $0x1,%edx 8010527f: e8 5c f7 ff ff call 801049e0 <create> 80105284: 83 c4 10 add $0x10,%esp 80105287: 85 c0 test %eax,%eax 80105289: 74 15 je 801052a0 <sys_mkdir+0x50> end_op(); return -1; } iunlockput(ip); 8010528b: 83 ec 0c sub $0xc,%esp 8010528e: 50 push %eax 8010528f: e8 7c c6 ff ff call 80101910 <iunlockput> end_op(); 80105294: e8 77 d9 ff ff call 80102c10 <end_op> return 0; 80105299: 83 c4 10 add $0x10,%esp 8010529c: 31 c0 xor %eax,%eax } 8010529e: c9 leave 8010529f: c3 ret end_op(); 801052a0: e8 6b d9 ff ff call 80102c10 <end_op> return -1; 801052a5: b8 ff ff ff ff mov $0xffffffff,%eax } 801052aa: c9 leave 801052ab: c3 ret 801052ac: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 801052b0 <sys_mknod>: int sys_mknod(void) { 801052b0: 55 push %ebp 801052b1: 89 e5 mov %esp,%ebp 801052b3: 83 ec 18 sub $0x18,%esp struct inode *ip; char *path; int major, minor; begin_op(); 801052b6: e8 e5 d8 ff ff call 80102ba0 <begin_op> if((argstr(0, &path)) < 0 || 801052bb: 8d 45 ec lea -0x14(%ebp),%eax 801052be: 83 ec 08 sub $0x8,%esp 801052c1: 50 push %eax 801052c2: 6a 00 push $0x0 801052c4: e8 77 f6 ff ff call 80104940 <argstr> 801052c9: 83 c4 10 add $0x10,%esp 801052cc: 85 c0 test %eax,%eax 801052ce: 78 60 js 80105330 <sys_mknod+0x80> argint(1, &major) < 0 || 801052d0: 8d 45 f0 lea -0x10(%ebp),%eax 801052d3: 83 ec 08 sub $0x8,%esp 801052d6: 50 push %eax 801052d7: 6a 01 push $0x1 801052d9: e8 b2 f5 ff ff call 80104890 <argint> if((argstr(0, &path)) < 0 || 801052de: 83 c4 10 add $0x10,%esp 801052e1: 85 c0 test %eax,%eax 801052e3: 78 4b js 80105330 <sys_mknod+0x80> argint(2, &minor) < 0 || 801052e5: 8d 45 f4 lea -0xc(%ebp),%eax 801052e8: 83 ec 08 sub $0x8,%esp 801052eb: 50 push %eax 801052ec: 6a 02 push $0x2 801052ee: e8 9d f5 ff ff call 80104890 <argint> argint(1, &major) < 0 || 801052f3: 83 c4 10 add $0x10,%esp 801052f6: 85 c0 test %eax,%eax 801052f8: 78 36 js 80105330 <sys_mknod+0x80> (ip = create(path, T_DEV, major, minor)) == 0){ 801052fa: 0f bf 45 f4 movswl -0xc(%ebp),%eax argint(2, &minor) < 0 || 801052fe: 83 ec 0c sub $0xc,%esp (ip = create(path, T_DEV, major, minor)) == 0){ 80105301: 0f bf 4d f0 movswl -0x10(%ebp),%ecx argint(2, &minor) < 0 || 80105305: ba 03 00 00 00 mov $0x3,%edx 8010530a: 50 push %eax 8010530b: 8b 45 ec mov -0x14(%ebp),%eax 8010530e: e8 cd f6 ff ff call 801049e0 <create> 80105313: 83 c4 10 add $0x10,%esp 80105316: 85 c0 test %eax,%eax 80105318: 74 16 je 80105330 <sys_mknod+0x80> end_op(); return -1; } iunlockput(ip); 8010531a: 83 ec 0c sub $0xc,%esp 8010531d: 50 push %eax 8010531e: e8 ed c5 ff ff call 80101910 <iunlockput> end_op(); 80105323: e8 e8 d8 ff ff call 80102c10 <end_op> return 0; 80105328: 83 c4 10 add $0x10,%esp 8010532b: 31 c0 xor %eax,%eax } 8010532d: c9 leave 8010532e: c3 ret 8010532f: 90 nop end_op(); 80105330: e8 db d8 ff ff call 80102c10 <end_op> return -1; 80105335: b8 ff ff ff ff mov $0xffffffff,%eax } 8010533a: c9 leave 8010533b: c3 ret 8010533c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80105340 <sys_chdir>: int sys_chdir(void) { 80105340: 55 push %ebp 80105341: 89 e5 mov %esp,%ebp 80105343: 56 push %esi 80105344: 53 push %ebx 80105345: 83 ec 10 sub $0x10,%esp char *path; struct inode *ip; struct proc *curproc = myproc(); 80105348: e8 93 e4 ff ff call 801037e0 <myproc> 8010534d: 89 c6 mov %eax,%esi begin_op(); 8010534f: e8 4c d8 ff ff call 80102ba0 <begin_op> if(argstr(0, &path) < 0 || (ip = namei(path)) == 0){ 80105354: 8d 45 f4 lea -0xc(%ebp),%eax 80105357: 83 ec 08 sub $0x8,%esp 8010535a: 50 push %eax 8010535b: 6a 00 push $0x0 8010535d: e8 de f5 ff ff call 80104940 <argstr> 80105362: 83 c4 10 add $0x10,%esp 80105365: 85 c0 test %eax,%eax 80105367: 78 77 js 801053e0 <sys_chdir+0xa0> 80105369: 83 ec 0c sub $0xc,%esp 8010536c: ff 75 f4 pushl -0xc(%ebp) 8010536f: e8 6c cb ff ff call 80101ee0 <namei> 80105374: 83 c4 10 add $0x10,%esp 80105377: 85 c0 test %eax,%eax 80105379: 89 c3 mov %eax,%ebx 8010537b: 74 63 je 801053e0 <sys_chdir+0xa0> end_op(); return -1; } ilock(ip); 8010537d: 83 ec 0c sub $0xc,%esp 80105380: 50 push %eax 80105381: e8 fa c2 ff ff call 80101680 <ilock> if(ip->type != T_DIR){ 80105386: 83 c4 10 add $0x10,%esp 80105389: 66 83 7b 50 01 cmpw $0x1,0x50(%ebx) 8010538e: 75 30 jne 801053c0 <sys_chdir+0x80> iunlockput(ip); end_op(); return -1; } iunlock(ip); 80105390: 83 ec 0c sub $0xc,%esp 80105393: 53 push %ebx 80105394: e8 c7 c3 ff ff call 80101760 <iunlock> iput(curproc->cwd); 80105399: 58 pop %eax 8010539a: ff 76 68 pushl 0x68(%esi) 8010539d: e8 0e c4 ff ff call 801017b0 <iput> end_op(); 801053a2: e8 69 d8 ff ff call 80102c10 <end_op> curproc->cwd = ip; 801053a7: 89 5e 68 mov %ebx,0x68(%esi) return 0; 801053aa: 83 c4 10 add $0x10,%esp 801053ad: 31 c0 xor %eax,%eax } 801053af: 8d 65 f8 lea -0x8(%ebp),%esp 801053b2: 5b pop %ebx 801053b3: 5e pop %esi 801053b4: 5d pop %ebp 801053b5: c3 ret 801053b6: 8d 76 00 lea 0x0(%esi),%esi 801053b9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi iunlockput(ip); 801053c0: 83 ec 0c sub $0xc,%esp 801053c3: 53 push %ebx 801053c4: e8 47 c5 ff ff call 80101910 <iunlockput> end_op(); 801053c9: e8 42 d8 ff ff call 80102c10 <end_op> return -1; 801053ce: 83 c4 10 add $0x10,%esp 801053d1: b8 ff ff ff ff mov $0xffffffff,%eax 801053d6: eb d7 jmp 801053af <sys_chdir+0x6f> 801053d8: 90 nop 801053d9: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi end_op(); 801053e0: e8 2b d8 ff ff call 80102c10 <end_op> return -1; 801053e5: b8 ff ff ff ff mov $0xffffffff,%eax 801053ea: eb c3 jmp 801053af <sys_chdir+0x6f> 801053ec: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 801053f0 <sys_mv>: int sys_mv(void){ 801053f0: 55 push %ebp 801053f1: 89 e5 mov %esp,%ebp 801053f3: 57 push %edi 801053f4: 56 push %esi 801053f5: 53 push %ebx 801053f6: 83 ec 7c sub $0x7c,%esp char *path1, *path2, *path3; //to take given arguments struct inode *ip, *dp, *kp, *ep; //inodes for respective arguments struct proc *curproc= myproc(); //getting current process going ie. mv 801053f9: e8 e2 e3 ff ff call 801037e0 <myproc> 801053fe: 89 c6 mov %eax,%esi 80105400: 89 45 80 mov %eax,-0x80(%ebp) begin_op(); // acts like a lock , controls the system 80105403: e8 98 d7 ff ff call 80102ba0 <begin_op> dp = curproc->cwd; //getting inode to current working directory 80105408: 8b 46 68 mov 0x68(%esi),%eax if(argstr(0, &path1) < 0 || (ip=namei(path1)) == 0) { //checking for if path1 present and if its inode not present 8010540b: 83 ec 08 sub $0x8,%esp dp = curproc->cwd; //getting inode to current working directory 8010540e: 89 85 7c ff ff ff mov %eax,-0x84(%ebp) if(argstr(0, &path1) < 0 || (ip=namei(path1)) == 0) { //checking for if path1 present and if its inode not present 80105414: 8d 45 8c lea -0x74(%ebp),%eax 80105417: 50 push %eax 80105418: 6a 00 push $0x0 8010541a: e8 21 f5 ff ff call 80104940 <argstr> 8010541f: 83 c4 10 add $0x10,%esp 80105422: 85 c0 test %eax,%eax 80105424: 0f 88 be 03 00 00 js 801057e8 <sys_mv+0x3f8> 8010542a: 83 ec 0c sub $0xc,%esp 8010542d: ff 75 8c pushl -0x74(%ebp) 80105430: e8 ab ca ff ff call 80101ee0 <namei> 80105435: 83 c4 10 add $0x10,%esp 80105438: 85 c0 test %eax,%eax 8010543a: 89 c3 mov %eax,%ebx 8010543c: 0f 84 a6 03 00 00 je 801057e8 <sys_mv+0x3f8> cprintf(" Written by <NAME>\n"); } end_op();//end of operation unlock the process. return -1; } ilock(ip);//locking inode of path1 for making potential changes 80105442: 83 ec 0c sub $0xc,%esp 80105445: 50 push %eax 80105446: e8 35 c2 ff ff call 80101680 <ilock> if(argstr(1, &path2) < 0) { 8010544b: 5e pop %esi 8010544c: 8d 45 90 lea -0x70(%ebp),%eax 8010544f: 5f pop %edi 80105450: 50 push %eax 80105451: 6a 01 push $0x1 80105453: e8 e8 f4 ff ff call 80104940 <argstr> 80105458: 83 c4 10 add $0x10,%esp 8010545b: 85 c0 test %eax,%eax 8010545d: 0f 88 f8 03 00 00 js 8010585b <sys_mv+0x46b> iunlock(ip); end_op(); return -1; } if(argstr(2, &path3) > 0 && ((strncmp(path3, "-n", DIRSIZ) == 0) && (ep=namei(path2)) != 0)) { 80105463: 8d 45 94 lea -0x6c(%ebp),%eax 80105466: 83 ec 08 sub $0x8,%esp 80105469: 50 push %eax 8010546a: 6a 02 push $0x2 8010546c: e8 cf f4 ff ff call 80104940 <argstr> 80105471: 83 c4 10 add $0x10,%esp 80105474: 85 c0 test %eax,%eax 80105476: 7e 19 jle 80105491 <sys_mv+0xa1> 80105478: 83 ec 04 sub $0x4,%esp 8010547b: 6a 0e push $0xe 8010547d: 68 a6 7f 10 80 push $0x80107fa6 80105482: ff 75 94 pushl -0x6c(%ebp) 80105485: e8 26 f2 ff ff call 801046b0 <strncmp> 8010548a: 83 c4 10 add $0x10,%esp 8010548d: 85 c0 test %eax,%eax 8010548f: 74 7f je 80105510 <sys_mv+0x120> safestrcpy(path1, "", DIRSIZ); safestrcpy(path2, "", DIRSIZ); safestrcpy(path3, "", DIRSIZ); //function to copy null terminated string return -1; } if((kp=namei(path2)) != 0 && (kp->type== T_FILE || kp->type==T_DIR)){ 80105491: 83 ec 0c sub $0xc,%esp 80105494: ff 75 90 pushl -0x70(%ebp) 80105497: e8 44 ca ff ff call 80101ee0 <namei> 8010549c: 83 c4 10 add $0x10,%esp 8010549f: 85 c0 test %eax,%eax 801054a1: 74 11 je 801054b4 <sys_mv+0xc4> 801054a3: 0f b7 40 50 movzwl 0x50(%eax),%eax 801054a7: 83 e8 01 sub $0x1,%eax 801054aa: 66 83 f8 01 cmp $0x1,%ax 801054ae: 0f 86 6c 02 00 00 jbe 80105720 <sys_mv+0x330> ap->nlink--;//decreasing the links to self node iupdate(ap); //updating info iunlockput(ap); //send it back to storage } if(ip->type == T_FILE){ 801054b4: 0f b7 43 50 movzwl 0x50(%ebx),%eax 801054b8: 66 83 f8 02 cmp $0x2,%ax 801054bc: 0f 84 d6 01 00 00 je 80105698 <sys_mv+0x2a8> safestrcpy(path1, "", DIRSIZ); safestrcpy(path2, "", DIRSIZ); safestrcpy(path1, "", DIRSIZ); return 0; } else if(ip->type == T_DIR){ 801054c2: 66 83 f8 01 cmp $0x1,%ax 801054c6: 0f 84 bc 00 00 00 je 80105588 <sys_mv+0x198> safestrcpy(path1, "", DIRSIZ); safestrcpy(path2, "", DIRSIZ); safestrcpy(path1, "", DIRSIZ); return 0; } safestrcpy(path1, "", DIRSIZ); 801054cc: 83 ec 04 sub $0x4,%esp 801054cf: 6a 0e push $0xe 801054d1: 68 74 82 10 80 push $0x80108274 801054d6: ff 75 8c pushl -0x74(%ebp) 801054d9: e8 92 f2 ff ff call 80104770 <safestrcpy> safestrcpy(path2, "", DIRSIZ); 801054de: 83 c4 0c add $0xc,%esp 801054e1: 6a 0e push $0xe 801054e3: 68 74 82 10 80 push $0x80108274 801054e8: ff 75 90 pushl -0x70(%ebp) 801054eb: e8 80 f2 ff ff call 80104770 <safestrcpy> safestrcpy(path3, "", DIRSIZ); 801054f0: 83 c4 0c add $0xc,%esp 801054f3: 6a 0e push $0xe 801054f5: 68 74 82 10 80 push $0x80108274 801054fa: ff 75 94 pushl -0x6c(%ebp) 801054fd: e8 6e f2 ff ff call 80104770 <safestrcpy> return 0; 80105502: 83 c4 10 add $0x10,%esp 80105505: 31 c0 xor %eax,%eax } 80105507: 8d 65 f4 lea -0xc(%ebp),%esp 8010550a: 5b pop %ebx 8010550b: 5e pop %esi 8010550c: 5f pop %edi 8010550d: 5d pop %ebp 8010550e: c3 ret 8010550f: 90 nop if(argstr(2, &path3) > 0 && ((strncmp(path3, "-n", DIRSIZ) == 0) && (ep=namei(path2)) != 0)) { 80105510: 83 ec 0c sub $0xc,%esp 80105513: ff 75 90 pushl -0x70(%ebp) 80105516: e8 c5 c9 ff ff call 80101ee0 <namei> 8010551b: 83 c4 10 add $0x10,%esp 8010551e: 85 c0 test %eax,%eax 80105520: 0f 84 6b ff ff ff je 80105491 <sys_mv+0xa1> iunlock(ip); 80105526: 83 ec 0c sub $0xc,%esp 80105529: 53 push %ebx 8010552a: e8 31 c2 ff ff call 80101760 <iunlock> cprintf("%s alredy exists\n", path2); //checking for -n command 8010552f: 5a pop %edx 80105530: 59 pop %ecx 80105531: ff 75 90 pushl -0x70(%ebp) 80105534: 68 a9 7f 10 80 push $0x80107fa9 80105539: e8 22 b1 ff ff call 80100660 <cprintf> end_op(); 8010553e: e8 cd d6 ff ff call 80102c10 <end_op> safestrcpy(path1, "", DIRSIZ); 80105543: 83 c4 0c add $0xc,%esp 80105546: 6a 0e push $0xe 80105548: 68 74 82 10 80 push $0x80108274 8010554d: ff 75 8c pushl -0x74(%ebp) 80105550: e8 1b f2 ff ff call 80104770 <safestrcpy> safestrcpy(path2, "", DIRSIZ); 80105555: 83 c4 0c add $0xc,%esp 80105558: 6a 0e push $0xe 8010555a: 68 74 82 10 80 push $0x80108274 8010555f: ff 75 90 pushl -0x70(%ebp) 80105562: e8 09 f2 ff ff call 80104770 <safestrcpy> safestrcpy(path3, "", DIRSIZ); //function to copy null terminated string 80105567: 83 c4 0c add $0xc,%esp 8010556a: 6a 0e push $0xe 8010556c: 68 74 82 10 80 push $0x80108274 80105571: ff 75 94 pushl -0x6c(%ebp) 80105574: e8 f7 f1 ff ff call 80104770 <safestrcpy> return -1; 80105579: 83 c4 10 add $0x10,%esp 8010557c: b8 ff ff ff ff mov $0xffffffff,%eax 80105581: eb 84 jmp 80105507 <sys_mv+0x117> 80105583: 90 nop 80105584: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi parent = dirlookup(ip, "..", 0); //getting inode of parent directory 80105588: 83 ec 04 sub $0x4,%esp 8010558b: 6a 00 push $0x0 8010558d: 68 03 7f 10 80 push $0x80107f03 80105592: 53 push %ebx 80105593: e8 18 c6 ff ff call 80101bb0 <dirlookup> 80105598: 89 c6 mov %eax,%esi ilock(parent); 8010559a: 89 04 24 mov %eax,(%esp) 8010559d: e8 de c0 ff ff call 80101680 <ilock> for(off = 0; off < (parent->size); off += sizeof(de)){ 801055a2: 8b 7e 58 mov 0x58(%esi),%edi 801055a5: 83 c4 10 add $0x10,%esp 801055a8: 85 ff test %edi,%edi 801055aa: 0f 84 a0 02 00 00 je 80105850 <sys_mv+0x460> 801055b0: 8d 45 d8 lea -0x28(%ebp),%eax 801055b3: 31 ff xor %edi,%edi 801055b5: 89 45 84 mov %eax,-0x7c(%ebp) 801055b8: 89 f0 mov %esi,%eax 801055ba: 89 de mov %ebx,%esi 801055bc: 89 c3 mov %eax,%ebx 801055be: eb 08 jmp 801055c8 <sys_mv+0x1d8> 801055c0: 83 c7 10 add $0x10,%edi 801055c3: 3b 7b 58 cmp 0x58(%ebx),%edi 801055c6: 73 40 jae 80105608 <sys_mv+0x218> if(readi(parent, (char*)&de, off, sizeof(de)) != sizeof(de)) 801055c8: 6a 10 push $0x10 801055ca: 57 push %edi 801055cb: ff 75 84 pushl -0x7c(%ebp) 801055ce: 53 push %ebx 801055cf: e8 8c c3 ff ff call 80101960 <readi> 801055d4: 83 c4 10 add $0x10,%esp 801055d7: 83 f8 10 cmp $0x10,%eax 801055da: 0f 85 a1 02 00 00 jne 80105881 <sys_mv+0x491> if(de.inum == ip->inum){ 801055e0: 0f b7 45 d8 movzwl -0x28(%ebp),%eax 801055e4: 3b 46 04 cmp 0x4(%esi),%eax 801055e7: 75 d7 jne 801055c0 <sys_mv+0x1d0> 801055e9: 89 d8 mov %ebx,%eax 801055eb: 89 f3 mov %esi,%ebx safestrcpy(de.name, path2, DIRSIZ); 801055ed: 83 ec 04 sub $0x4,%esp 801055f0: 89 c6 mov %eax,%esi 801055f2: 8d 45 da lea -0x26(%ebp),%eax 801055f5: 6a 0e push $0xe 801055f7: ff 75 90 pushl -0x70(%ebp) 801055fa: 50 push %eax 801055fb: e8 70 f1 ff ff call 80104770 <safestrcpy> break; 80105600: 83 c4 10 add $0x10,%esp 80105603: eb 09 jmp 8010560e <sys_mv+0x21e> 80105605: 8d 76 00 lea 0x0(%esi),%esi 80105608: 89 d8 mov %ebx,%eax 8010560a: 89 f3 mov %esi,%ebx 8010560c: 89 c6 mov %eax,%esi if(writei(parent, (char*)&de, off, sizeof(de)) != sizeof(de)) { 8010560e: 6a 10 push $0x10 80105610: 57 push %edi 80105611: ff 75 84 pushl -0x7c(%ebp) 80105614: 56 push %esi 80105615: e8 46 c4 ff ff call 80101a60 <writei> 8010561a: 83 c4 10 add $0x10,%esp 8010561d: 83 f8 10 cmp $0x10,%eax 80105620: 0f 85 83 02 00 00 jne 801058a9 <sys_mv+0x4b9> iunlock(ip); 80105626: 83 ec 0c sub $0xc,%esp 80105629: 53 push %ebx 8010562a: e8 31 c1 ff ff call 80101760 <iunlock> iunlock(parent); 8010562f: 89 34 24 mov %esi,(%esp) 80105632: e8 29 c1 ff ff call 80101760 <iunlock> iput(curproc->cwd); 80105637: 8b 75 80 mov -0x80(%ebp),%esi 8010563a: 58 pop %eax 8010563b: ff 76 68 pushl 0x68(%esi) 8010563e: e8 6d c1 ff ff call 801017b0 <iput> end_op(); 80105643: e8 c8 d5 ff ff call 80102c10 <end_op> curproc->cwd = dp; 80105648: 8b 8d 7c ff ff ff mov -0x84(%ebp),%ecx safestrcpy(path1, "", DIRSIZ); 8010564e: 83 c4 0c add $0xc,%esp curproc->cwd = dp; 80105651: 89 4e 68 mov %ecx,0x68(%esi) safestrcpy(path1, "", DIRSIZ); 80105654: 6a 0e push $0xe 80105656: 68 74 82 10 80 push $0x80108274 8010565b: ff 75 8c pushl -0x74(%ebp) 8010565e: e8 0d f1 ff ff call 80104770 <safestrcpy> safestrcpy(path2, "", DIRSIZ); 80105663: 83 c4 0c add $0xc,%esp 80105666: 6a 0e push $0xe 80105668: 68 74 82 10 80 push $0x80108274 8010566d: ff 75 90 pushl -0x70(%ebp) 80105670: e8 fb f0 ff ff call 80104770 <safestrcpy> safestrcpy(path1, "", DIRSIZ); 80105675: 83 c4 0c add $0xc,%esp 80105678: 6a 0e push $0xe 8010567a: 68 74 82 10 80 push $0x80108274 8010567f: ff 75 8c pushl -0x74(%ebp) 80105682: e8 e9 f0 ff ff call 80104770 <safestrcpy> 80105687: 83 c4 10 add $0x10,%esp } 8010568a: 8d 65 f4 lea -0xc(%ebp),%esp return 0; 8010568d: 31 c0 xor %eax,%eax } 8010568f: 5b pop %ebx 80105690: 5e pop %esi 80105691: 5f pop %edi 80105692: 5d pop %ebp 80105693: c3 ret 80105694: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi sp = nameiparent(path1, name); 80105698: 8d 45 aa lea -0x56(%ebp),%eax 8010569b: 83 ec 08 sub $0x8,%esp 8010569e: 50 push %eax 8010569f: ff 75 8c pushl -0x74(%ebp) 801056a2: e8 59 c8 ff ff call 80101f00 <nameiparent> 801056a7: 89 c6 mov %eax,%esi ilock(sp); 801056a9: 89 04 24 mov %eax,(%esp) 801056ac: e8 cf bf ff ff call 80101680 <ilock> for(off = 0; off < (sp->size); off += sizeof(de)){ 801056b1: 8b 7e 58 mov 0x58(%esi),%edi 801056b4: 83 c4 10 add $0x10,%esp 801056b7: 85 ff test %edi,%edi 801056b9: 0f 84 b7 01 00 00 je 80105876 <sys_mv+0x486> 801056bf: 8d 45 c8 lea -0x38(%ebp),%eax 801056c2: 31 ff xor %edi,%edi 801056c4: 89 45 84 mov %eax,-0x7c(%ebp) 801056c7: 89 f0 mov %esi,%eax 801056c9: 89 de mov %ebx,%esi 801056cb: 89 c3 mov %eax,%ebx 801056cd: eb 0d jmp 801056dc <sys_mv+0x2ec> 801056cf: 90 nop 801056d0: 83 c7 10 add $0x10,%edi 801056d3: 3b 7b 58 cmp 0x58(%ebx),%edi 801056d6: 0f 83 2c ff ff ff jae 80105608 <sys_mv+0x218> if(readi(sp, (char*)&de, off, sizeof(de)) != sizeof(de)) //finding one dirent structure each time 801056dc: 6a 10 push $0x10 801056de: 57 push %edi 801056df: ff 75 84 pushl -0x7c(%ebp) 801056e2: 53 push %ebx 801056e3: e8 78 c2 ff ff call 80101960 <readi> 801056e8: 83 c4 10 add $0x10,%esp 801056eb: 83 f8 10 cmp $0x10,%eax 801056ee: 0f 85 8d 01 00 00 jne 80105881 <sys_mv+0x491> if(de.inum == ip->inum){ //comparing inum 801056f4: 0f b7 45 c8 movzwl -0x38(%ebp),%eax 801056f8: 3b 46 04 cmp 0x4(%esi),%eax 801056fb: 75 d3 jne 801056d0 <sys_mv+0x2e0> 801056fd: 89 d8 mov %ebx,%eax 801056ff: 89 f3 mov %esi,%ebx safestrcpy(de.name, path2, DIRSIZ); //copy the name into de 80105701: 83 ec 04 sub $0x4,%esp 80105704: 89 c6 mov %eax,%esi 80105706: 8d 45 ca lea -0x36(%ebp),%eax 80105709: 6a 0e push $0xe 8010570b: ff 75 90 pushl -0x70(%ebp) 8010570e: 50 push %eax 8010570f: e8 5c f0 ff ff call 80104770 <safestrcpy> break; 80105714: 83 c4 10 add $0x10,%esp 80105717: e9 f2 fe ff ff jmp 8010560e <sys_mv+0x21e> 8010571c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi if((vp = nameiparent(path2, name1)) == 0){ 80105720: 8d 75 9c lea -0x64(%ebp),%esi 80105723: 83 ec 08 sub $0x8,%esp 80105726: 56 push %esi 80105727: ff 75 90 pushl -0x70(%ebp) 8010572a: e8 d1 c7 ff ff call 80101f00 <nameiparent> 8010572f: 83 c4 10 add $0x10,%esp 80105732: 85 c0 test %eax,%eax 80105734: 89 c7 mov %eax,%edi 80105736: 0f 84 52 01 00 00 je 8010588e <sys_mv+0x49e> ilock(vp); //locking parent structure 8010573c: 83 ec 0c sub $0xc,%esp 8010573f: 50 push %eax 80105740: e8 3b bf ff ff call 80101680 <ilock> ap = dirlookup(vp, name1, &off1); //getting entry of inode in ap and its offset in off1 80105745: 8d 45 98 lea -0x68(%ebp),%eax 80105748: 83 c4 0c add $0xc,%esp 8010574b: 50 push %eax 8010574c: 56 push %esi 8010574d: 57 push %edi 8010574e: e8 5d c4 ff ff call 80101bb0 <dirlookup> 80105753: 89 c6 mov %eax,%esi ilock(ap); 80105755: 89 04 24 mov %eax,(%esp) 80105758: e8 23 bf ff ff call 80101680 <ilock> if(ap->nlink < 1) 8010575d: 83 c4 10 add $0x10,%esp 80105760: 66 83 7e 56 00 cmpw $0x0,0x56(%esi) 80105765: 0f 8e 4b 01 00 00 jle 801058b6 <sys_mv+0x4c6> memset(&dz, 0, sizeof(dz)); //writing the null values in dirent structure 8010576b: 8d 55 b8 lea -0x48(%ebp),%edx 8010576e: 83 ec 04 sub $0x4,%esp 80105771: 6a 10 push $0x10 80105773: 6a 00 push $0x0 80105775: 52 push %edx 80105776: 89 55 84 mov %edx,-0x7c(%ebp) 80105779: e8 12 ee ff ff call 80104590 <memset> if(writei(vp, (char*)&dz, off1, sizeof(dz)) != sizeof(dz)) //writing the structure to off1 offset 8010577e: 8b 55 84 mov -0x7c(%ebp),%edx 80105781: 6a 10 push $0x10 80105783: ff 75 98 pushl -0x68(%ebp) 80105786: 52 push %edx 80105787: 57 push %edi 80105788: e8 d3 c2 ff ff call 80101a60 <writei> 8010578d: 83 c4 20 add $0x20,%esp 80105790: 83 f8 10 cmp $0x10,%eax 80105793: 0f 85 10 01 00 00 jne 801058a9 <sys_mv+0x4b9> if(ap->type == T_DIR){ 80105799: 66 83 7e 50 01 cmpw $0x1,0x50(%esi) 8010579e: 74 30 je 801057d0 <sys_mv+0x3e0> iunlockput(vp); 801057a0: 83 ec 0c sub $0xc,%esp 801057a3: 57 push %edi 801057a4: e8 67 c1 ff ff call 80101910 <iunlockput> ap->nlink--;//decreasing the links to self node 801057a9: 66 83 6e 56 01 subw $0x1,0x56(%esi) iupdate(ap); //updating info 801057ae: 89 34 24 mov %esi,(%esp) 801057b1: e8 1a be ff ff call 801015d0 <iupdate> iunlockput(ap); //send it back to storage 801057b6: 89 34 24 mov %esi,(%esp) 801057b9: e8 52 c1 ff ff call 80101910 <iunlockput> 801057be: 83 c4 10 add $0x10,%esp 801057c1: e9 ee fc ff ff jmp 801054b4 <sys_mv+0xc4> 801057c6: 8d 76 00 lea 0x0(%esi),%esi 801057c9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi vp->nlink--; //decreasing the links to parent node 801057d0: 66 83 6f 56 01 subw $0x1,0x56(%edi) iupdate(vp); 801057d5: 83 ec 0c sub $0xc,%esp 801057d8: 57 push %edi 801057d9: e8 f2 bd ff ff call 801015d0 <iupdate> 801057de: 83 c4 10 add $0x10,%esp 801057e1: eb bd jmp 801057a0 <sys_mv+0x3b0> 801057e3: 90 nop 801057e4: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi if(strncmp(path1, "--ver", DIRSIZ) == 0) { 801057e8: 83 ec 04 sub $0x4,%esp 801057eb: 6a 0e push $0xe 801057ed: 68 49 7f 10 80 push $0x80107f49 801057f2: ff 75 8c pushl -0x74(%ebp) 801057f5: e8 b6 ee ff ff call 801046b0 <strncmp> 801057fa: 83 c4 10 add $0x10,%esp 801057fd: 85 c0 test %eax,%eax 801057ff: 75 40 jne 80105841 <sys_mv+0x451> cprintf(" mv (GNU coreutils) 8.26\n"); 80105801: 83 ec 0c sub $0xc,%esp 80105804: 68 4f 7f 10 80 push $0x80107f4f 80105809: e8 52 ae ff ff call 80100660 <cprintf> cprintf(" Packaged by SEV (8.26-2)\n"); 8010580e: c7 04 24 6b 7f 10 80 movl $0x80107f6b,(%esp) 80105815: e8 46 ae ff ff call 80100660 <cprintf> cprintf(" Copyright (C) 2020 SEV, Inc.\n"); 8010581a: c7 04 24 e8 7f 10 80 movl $0x80107fe8,(%esp) 80105821: e8 3a ae ff ff call 80100660 <cprintf> cprintf(" License GPLv3+: free for Public Use .\n"); 80105826: c7 04 24 0c 80 10 80 movl $0x8010800c,(%esp) 8010582d: e8 2e ae ff ff call 80100660 <cprintf> cprintf(" Written by <NAME>\n"); 80105832: c7 04 24 88 7f 10 80 movl $0x80107f88,(%esp) 80105839: e8 22 ae ff ff call 80100660 <cprintf> 8010583e: 83 c4 10 add $0x10,%esp end_op();//end of operation unlock the process. 80105841: e8 ca d3 ff ff call 80102c10 <end_op> return -1; 80105846: b8 ff ff ff ff mov $0xffffffff,%eax 8010584b: e9 b7 fc ff ff jmp 80105507 <sys_mv+0x117> 80105850: 8d 45 d8 lea -0x28(%ebp),%eax 80105853: 89 45 84 mov %eax,-0x7c(%ebp) 80105856: e9 b3 fd ff ff jmp 8010560e <sys_mv+0x21e> iunlock(ip); 8010585b: 83 ec 0c sub $0xc,%esp 8010585e: 53 push %ebx 8010585f: e8 fc be ff ff call 80101760 <iunlock> end_op(); 80105864: e8 a7 d3 ff ff call 80102c10 <end_op> return -1; 80105869: 83 c4 10 add $0x10,%esp 8010586c: b8 ff ff ff ff mov $0xffffffff,%eax 80105871: e9 91 fc ff ff jmp 80105507 <sys_mv+0x117> 80105876: 8d 45 c8 lea -0x38(%ebp),%eax 80105879: 89 45 84 mov %eax,-0x7c(%ebp) 8010587c: e9 8d fd ff ff jmp 8010560e <sys_mv+0x21e> panic("dirlink read"); 80105881: 83 ec 0c sub $0xc,%esp 80105884: 68 a8 78 10 80 push $0x801078a8 80105889: e8 02 ab ff ff call 80100390 <panic> end_op(); 8010588e: e8 7d d3 ff ff call 80102c10 <end_op> iunlock(ip); 80105893: 83 ec 0c sub $0xc,%esp 80105896: 53 push %ebx 80105897: e8 c4 be ff ff call 80101760 <iunlock> return -1; 8010589c: 83 c4 10 add $0x10,%esp 8010589f: b8 ff ff ff ff mov $0xffffffff,%eax 801058a4: e9 5e fc ff ff jmp 80105507 <sys_mv+0x117> panic("unlink: writei"); 801058a9: 83 ec 0c sub $0xc,%esp 801058ac: 68 3a 7f 10 80 push $0x80107f3a 801058b1: e8 da aa ff ff call 80100390 <panic> panic("unlink: nlink < 1"); 801058b6: 83 ec 0c sub $0xc,%esp 801058b9: 68 16 7f 10 80 push $0x80107f16 801058be: e8 cd aa ff ff call 80100390 <panic> 801058c3: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 801058c9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 801058d0 <name_of_inode>: return 1; }*/ int name_of_inode(struct inode *ip, struct inode *parent, char buf[DIRSIZ]) { 801058d0: 55 push %ebp 801058d1: 89 e5 mov %esp,%ebp 801058d3: 57 push %edi 801058d4: 56 push %esi 801058d5: 53 push %ebx 801058d6: 83 ec 1c sub $0x1c,%esp 801058d9: 8b 5d 0c mov 0xc(%ebp),%ebx uint off; struct dirent de; for (off = 0; off < parent->size; off += sizeof(de)) { 801058dc: 8b 43 58 mov 0x58(%ebx),%eax 801058df: 85 c0 test %eax,%eax 801058e1: 74 55 je 80105938 <name_of_inode+0x68> 801058e3: 31 f6 xor %esi,%esi 801058e5: 8d 7d d8 lea -0x28(%ebp),%edi 801058e8: eb 0e jmp 801058f8 <name_of_inode+0x28> 801058ea: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 801058f0: 83 c6 10 add $0x10,%esi 801058f3: 39 73 58 cmp %esi,0x58(%ebx) 801058f6: 76 40 jbe 80105938 <name_of_inode+0x68> if (readi(parent, (char*)&de, off, sizeof(de)) != sizeof(de)) 801058f8: 6a 10 push $0x10 801058fa: 56 push %esi 801058fb: 57 push %edi 801058fc: 53 push %ebx 801058fd: e8 5e c0 ff ff call 80101960 <readi> 80105902: 83 c4 10 add $0x10,%esp 80105905: 83 f8 10 cmp $0x10,%eax 80105908: 75 3b jne 80105945 <name_of_inode+0x75> panic("couldn't read dir entry"); if (de.inum == ip->inum) { 8010590a: 8b 55 08 mov 0x8(%ebp),%edx 8010590d: 0f b7 45 d8 movzwl -0x28(%ebp),%eax 80105911: 3b 42 04 cmp 0x4(%edx),%eax 80105914: 75 da jne 801058f0 <name_of_inode+0x20> safestrcpy(buf, de.name, DIRSIZ); 80105916: 8d 45 da lea -0x26(%ebp),%eax 80105919: 83 ec 04 sub $0x4,%esp 8010591c: 6a 0e push $0xe 8010591e: 50 push %eax 8010591f: ff 75 10 pushl 0x10(%ebp) 80105922: e8 49 ee ff ff call 80104770 <safestrcpy> return 0; 80105927: 83 c4 10 add $0x10,%esp } } return -1; } 8010592a: 8d 65 f4 lea -0xc(%ebp),%esp return 0; 8010592d: 31 c0 xor %eax,%eax } 8010592f: 5b pop %ebx 80105930: 5e pop %esi 80105931: 5f pop %edi 80105932: 5d pop %ebp 80105933: c3 ret 80105934: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80105938: 8d 65 f4 lea -0xc(%ebp),%esp return -1; 8010593b: b8 ff ff ff ff mov $0xffffffff,%eax } 80105940: 5b pop %ebx 80105941: 5e pop %esi 80105942: 5f pop %edi 80105943: 5d pop %ebp 80105944: c3 ret panic("couldn't read dir entry"); 80105945: 83 ec 0c sub $0xc,%esp 80105948: 68 bb 7f 10 80 push $0x80107fbb 8010594d: e8 3e aa ff ff call 80100390 <panic> 80105952: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80105959: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80105960 <name_for_inode>: int name_for_inode(char* buf, int n, struct inode *ip) { 80105960: 55 push %ebp 80105961: 89 e5 mov %esp,%ebp 80105963: 57 push %edi 80105964: 56 push %esi 80105965: 53 push %ebx 80105966: 83 ec 38 sub $0x38,%esp 80105969: 8b 5d 10 mov 0x10(%ebp),%ebx int path_offset; struct inode *parent; char node_name[DIRSIZ]; if (ip->inum == namei("/")->inum) { //namei is inefficient but iget isn't exported for some reason 8010596c: 8b 73 04 mov 0x4(%ebx),%esi 8010596f: 68 ce 7c 10 80 push $0x80107cce 80105974: e8 67 c5 ff ff call 80101ee0 <namei> 80105979: 83 c4 10 add $0x10,%esp 8010597c: 3b 70 04 cmp 0x4(%eax),%esi 8010597f: 74 27 je 801059a8 <name_for_inode+0x48> buf[0] = '/'; return 1; } else if (ip->type == T_DIR) { 80105981: 0f b7 43 50 movzwl 0x50(%ebx),%eax 80105985: 66 83 f8 01 cmp $0x1,%ax 80105989: 74 45 je 801059d0 <name_for_inode+0x70> } else { buf[path_offset++] = '/'; } iunlock(parent); //free return path_offset; } else if (ip->type == T_DEV || ip->type == T_FILE) { 8010598b: 83 e8 02 sub $0x2,%eax 8010598e: 66 83 f8 01 cmp $0x1,%ax 80105992: 76 2c jbe 801059c0 <name_for_inode+0x60> panic("process cwd is a device node / file, not a directory!"); } else { panic("unknown inode type"); 80105994: 83 ec 0c sub $0xc,%esp 80105997: 68 d3 7f 10 80 push $0x80107fd3 8010599c: e8 ef a9 ff ff call 80100390 <panic> 801059a1: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi buf[0] = '/'; 801059a8: 8b 45 08 mov 0x8(%ebp),%eax 801059ab: c6 00 2f movb $0x2f,(%eax) return 1; 801059ae: b8 01 00 00 00 mov $0x1,%eax } } 801059b3: 8d 65 f4 lea -0xc(%ebp),%esp 801059b6: 5b pop %ebx 801059b7: 5e pop %esi 801059b8: 5f pop %edi 801059b9: 5d pop %ebp 801059ba: c3 ret 801059bb: 90 nop 801059bc: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi panic("process cwd is a device node / file, not a directory!"); 801059c0: 83 ec 0c sub $0xc,%esp 801059c3: 68 60 80 10 80 push $0x80108060 801059c8: e8 c3 a9 ff ff call 80100390 <panic> 801059cd: 8d 76 00 lea 0x0(%esi),%esi parent = dirlookup(ip, "..", 0); 801059d0: 83 ec 04 sub $0x4,%esp if (name_of_inode(ip, parent, node_name)) { 801059d3: 8d 7d da lea -0x26(%ebp),%edi parent = dirlookup(ip, "..", 0); 801059d6: 6a 00 push $0x0 801059d8: 68 03 7f 10 80 push $0x80107f03 801059dd: 53 push %ebx 801059de: e8 cd c1 ff ff call 80101bb0 <dirlookup> 801059e3: 89 c6 mov %eax,%esi ilock(parent); 801059e5: 89 04 24 mov %eax,(%esp) 801059e8: e8 93 bc ff ff call 80101680 <ilock> if (name_of_inode(ip, parent, node_name)) { 801059ed: 83 c4 0c add $0xc,%esp 801059f0: 57 push %edi 801059f1: 56 push %esi 801059f2: 53 push %ebx 801059f3: e8 d8 fe ff ff call 801058d0 <name_of_inode> 801059f8: 83 c4 10 add $0x10,%esp 801059fb: 85 c0 test %eax,%eax 801059fd: 75 72 jne 80105a71 <name_for_inode+0x111> path_offset = name_for_inode(buf, n, parent); 801059ff: 83 ec 04 sub $0x4,%esp 80105a02: 56 push %esi 80105a03: ff 75 0c pushl 0xc(%ebp) 80105a06: ff 75 08 pushl 0x8(%ebp) 80105a09: e8 52 ff ff ff call 80105960 <name_for_inode> 80105a0e: 89 c3 mov %eax,%ebx safestrcpy(buf + path_offset, node_name, n - path_offset); 80105a10: 8b 45 0c mov 0xc(%ebp),%eax 80105a13: 83 c4 0c add $0xc,%esp 80105a16: 29 d8 sub %ebx,%eax 80105a18: 50 push %eax 80105a19: 8b 45 08 mov 0x8(%ebp),%eax 80105a1c: 57 push %edi 80105a1d: 01 d8 add %ebx,%eax 80105a1f: 50 push %eax 80105a20: e8 4b ed ff ff call 80104770 <safestrcpy> path_offset += strlen(node_name); 80105a25: 89 3c 24 mov %edi,(%esp) 80105a28: e8 83 ed ff ff call 801047b0 <strlen> 80105a2d: 01 c3 add %eax,%ebx if (path_offset == n - 1) { 80105a2f: 8b 45 0c mov 0xc(%ebp),%eax 80105a32: 83 c4 10 add $0x10,%esp 80105a35: 83 e8 01 sub $0x1,%eax 80105a38: 39 c3 cmp %eax,%ebx 80105a3a: 75 14 jne 80105a50 <name_for_inode+0xf0> buf[path_offset] = '\0'; 80105a3c: 8b 45 08 mov 0x8(%ebp),%eax 80105a3f: c6 04 18 00 movb $0x0,(%eax,%ebx,1) return n; 80105a43: 8b 45 0c mov 0xc(%ebp),%eax 80105a46: e9 68 ff ff ff jmp 801059b3 <name_for_inode+0x53> 80105a4b: 90 nop 80105a4c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi buf[path_offset++] = '/'; 80105a50: 8d 43 01 lea 0x1(%ebx),%eax iunlock(parent); //free 80105a53: 83 ec 0c sub $0xc,%esp buf[path_offset++] = '/'; 80105a56: 89 45 d4 mov %eax,-0x2c(%ebp) 80105a59: 8b 45 08 mov 0x8(%ebp),%eax 80105a5c: c6 04 18 2f movb $0x2f,(%eax,%ebx,1) iunlock(parent); //free 80105a60: 56 push %esi 80105a61: e8 fa bc ff ff call 80101760 <iunlock> 80105a66: 83 c4 10 add $0x10,%esp 80105a69: 8b 45 d4 mov -0x2c(%ebp),%eax 80105a6c: e9 42 ff ff ff jmp 801059b3 <name_for_inode+0x53> panic("could not find name of inode in parent!"); 80105a71: 83 ec 0c sub $0xc,%esp 80105a74: 68 38 80 10 80 push $0x80108038 80105a79: e8 12 a9 ff ff call 80100390 <panic> 80105a7e: 66 90 xchg %ax,%ax 80105a80 <sys_pwd>: int sys_pwd(void) { 80105a80: 55 push %ebp 80105a81: 89 e5 mov %esp,%ebp 80105a83: 53 push %ebx 80105a84: 83 ec 14 sub $0x14,%esp char *p; int n; struct proc *curproc = myproc(); 80105a87: e8 54 dd ff ff call 801037e0 <myproc> 80105a8c: 89 c3 mov %eax,%ebx if(argint(1, &n) < 0 || argptr(0, &p, n) < 0) 80105a8e: 8d 45 f4 lea -0xc(%ebp),%eax 80105a91: 83 ec 08 sub $0x8,%esp 80105a94: 50 push %eax 80105a95: 6a 01 push $0x1 80105a97: e8 f4 ed ff ff call 80104890 <argint> 80105a9c: 83 c4 10 add $0x10,%esp 80105a9f: 85 c0 test %eax,%eax 80105aa1: 78 35 js 80105ad8 <sys_pwd+0x58> 80105aa3: 8d 45 f0 lea -0x10(%ebp),%eax 80105aa6: 83 ec 04 sub $0x4,%esp 80105aa9: ff 75 f4 pushl -0xc(%ebp) 80105aac: 50 push %eax 80105aad: 6a 00 push $0x0 80105aaf: e8 2c ee ff ff call 801048e0 <argptr> 80105ab4: 83 c4 10 add $0x10,%esp 80105ab7: 85 c0 test %eax,%eax 80105ab9: 78 1d js 80105ad8 <sys_pwd+0x58> return -1; return name_for_inode(p, n, curproc->cwd); 80105abb: 83 ec 04 sub $0x4,%esp 80105abe: ff 73 68 pushl 0x68(%ebx) 80105ac1: ff 75 f4 pushl -0xc(%ebp) 80105ac4: ff 75 f0 pushl -0x10(%ebp) 80105ac7: e8 94 fe ff ff call 80105960 <name_for_inode> 80105acc: 83 c4 10 add $0x10,%esp } 80105acf: 8b 5d fc mov -0x4(%ebp),%ebx 80105ad2: c9 leave 80105ad3: c3 ret 80105ad4: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi return -1; 80105ad8: b8 ff ff ff ff mov $0xffffffff,%eax 80105add: eb f0 jmp 80105acf <sys_pwd+0x4f> 80105adf: 90 nop 80105ae0 <sys_exec>: int sys_exec(void) { 80105ae0: 55 push %ebp 80105ae1: 89 e5 mov %esp,%ebp 80105ae3: 57 push %edi 80105ae4: 56 push %esi 80105ae5: 53 push %ebx char *path, *argv[MAXARG]; int i; uint uargv, uarg; if(argstr(0, &path) < 0 || argint(1, (int*)&uargv) < 0){ 80105ae6: 8d 85 5c ff ff ff lea -0xa4(%ebp),%eax { 80105aec: 81 ec a4 00 00 00 sub $0xa4,%esp if(argstr(0, &path) < 0 || argint(1, (int*)&uargv) < 0){ 80105af2: 50 push %eax 80105af3: 6a 00 push $0x0 80105af5: e8 46 ee ff ff call 80104940 <argstr> 80105afa: 83 c4 10 add $0x10,%esp 80105afd: 85 c0 test %eax,%eax 80105aff: 0f 88 87 00 00 00 js 80105b8c <sys_exec+0xac> 80105b05: 8d 85 60 ff ff ff lea -0xa0(%ebp),%eax 80105b0b: 83 ec 08 sub $0x8,%esp 80105b0e: 50 push %eax 80105b0f: 6a 01 push $0x1 80105b11: e8 7a ed ff ff call 80104890 <argint> 80105b16: 83 c4 10 add $0x10,%esp 80105b19: 85 c0 test %eax,%eax 80105b1b: 78 6f js 80105b8c <sys_exec+0xac> return -1; } memset(argv, 0, sizeof(argv)); 80105b1d: 8d 85 68 ff ff ff lea -0x98(%ebp),%eax 80105b23: 83 ec 04 sub $0x4,%esp for(i=0;; i++){ 80105b26: 31 db xor %ebx,%ebx memset(argv, 0, sizeof(argv)); 80105b28: 68 80 00 00 00 push $0x80 80105b2d: 6a 00 push $0x0 80105b2f: 8d bd 64 ff ff ff lea -0x9c(%ebp),%edi 80105b35: 50 push %eax 80105b36: e8 55 ea ff ff call 80104590 <memset> 80105b3b: 83 c4 10 add $0x10,%esp 80105b3e: eb 2c jmp 80105b6c <sys_exec+0x8c> if(i >= NELEM(argv)) return -1; if(fetchint(uargv+4*i, (int*)&uarg) < 0) return -1; if(uarg == 0){ 80105b40: 8b 85 64 ff ff ff mov -0x9c(%ebp),%eax 80105b46: 85 c0 test %eax,%eax 80105b48: 74 56 je 80105ba0 <sys_exec+0xc0> argv[i] = 0; break; } if(fetchstr(uarg, &argv[i]) < 0) 80105b4a: 8d 8d 68 ff ff ff lea -0x98(%ebp),%ecx 80105b50: 83 ec 08 sub $0x8,%esp 80105b53: 8d 14 31 lea (%ecx,%esi,1),%edx 80105b56: 52 push %edx 80105b57: 50 push %eax 80105b58: e8 c3 ec ff ff call 80104820 <fetchstr> 80105b5d: 83 c4 10 add $0x10,%esp 80105b60: 85 c0 test %eax,%eax 80105b62: 78 28 js 80105b8c <sys_exec+0xac> for(i=0;; i++){ 80105b64: 83 c3 01 add $0x1,%ebx if(i >= NELEM(argv)) 80105b67: 83 fb 20 cmp $0x20,%ebx 80105b6a: 74 20 je 80105b8c <sys_exec+0xac> if(fetchint(uargv+4*i, (int*)&uarg) < 0) 80105b6c: 8b 85 60 ff ff ff mov -0xa0(%ebp),%eax 80105b72: 8d 34 9d 00 00 00 00 lea 0x0(,%ebx,4),%esi 80105b79: 83 ec 08 sub $0x8,%esp 80105b7c: 57 push %edi 80105b7d: 01 f0 add %esi,%eax 80105b7f: 50 push %eax 80105b80: e8 5b ec ff ff call 801047e0 <fetchint> 80105b85: 83 c4 10 add $0x10,%esp 80105b88: 85 c0 test %eax,%eax 80105b8a: 79 b4 jns 80105b40 <sys_exec+0x60> return -1; } return exec(path, argv); } 80105b8c: 8d 65 f4 lea -0xc(%ebp),%esp return -1; 80105b8f: b8 ff ff ff ff mov $0xffffffff,%eax } 80105b94: 5b pop %ebx 80105b95: 5e pop %esi 80105b96: 5f pop %edi 80105b97: 5d pop %ebp 80105b98: c3 ret 80105b99: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi return exec(path, argv); 80105ba0: 8d 85 68 ff ff ff lea -0x98(%ebp),%eax 80105ba6: 83 ec 08 sub $0x8,%esp argv[i] = 0; 80105ba9: c7 84 9d 68 ff ff ff movl $0x0,-0x98(%ebp,%ebx,4) 80105bb0: 00 00 00 00 return exec(path, argv); 80105bb4: 50 push %eax 80105bb5: ff b5 5c ff ff ff pushl -0xa4(%ebp) 80105bbb: e8 50 ae ff ff call 80100a10 <exec> 80105bc0: 83 c4 10 add $0x10,%esp } 80105bc3: 8d 65 f4 lea -0xc(%ebp),%esp 80105bc6: 5b pop %ebx 80105bc7: 5e pop %esi 80105bc8: 5f pop %edi 80105bc9: 5d pop %ebp 80105bca: c3 ret 80105bcb: 90 nop 80105bcc: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80105bd0 <sys_pipe>: int sys_pipe(void) { 80105bd0: 55 push %ebp 80105bd1: 89 e5 mov %esp,%ebp 80105bd3: 57 push %edi 80105bd4: 56 push %esi 80105bd5: 53 push %ebx int *fd; struct file *rf, *wf; int fd0, fd1; if(argptr(0, (void*)&fd, 2*sizeof(fd[0])) < 0) 80105bd6: 8d 45 dc lea -0x24(%ebp),%eax { 80105bd9: 83 ec 20 sub $0x20,%esp if(argptr(0, (void*)&fd, 2*sizeof(fd[0])) < 0) 80105bdc: 6a 08 push $0x8 80105bde: 50 push %eax 80105bdf: 6a 00 push $0x0 80105be1: e8 fa ec ff ff call 801048e0 <argptr> 80105be6: 83 c4 10 add $0x10,%esp 80105be9: 85 c0 test %eax,%eax 80105beb: 0f 88 ae 00 00 00 js 80105c9f <sys_pipe+0xcf> return -1; if(pipealloc(&rf, &wf) < 0) 80105bf1: 8d 45 e4 lea -0x1c(%ebp),%eax 80105bf4: 83 ec 08 sub $0x8,%esp 80105bf7: 50 push %eax 80105bf8: 8d 45 e0 lea -0x20(%ebp),%eax 80105bfb: 50 push %eax 80105bfc: e8 3f d6 ff ff call 80103240 <pipealloc> 80105c01: 83 c4 10 add $0x10,%esp 80105c04: 85 c0 test %eax,%eax 80105c06: 0f 88 93 00 00 00 js 80105c9f <sys_pipe+0xcf> return -1; fd0 = -1; if((fd0 = fdalloc(rf)) < 0 || (fd1 = fdalloc(wf)) < 0){ 80105c0c: 8b 7d e0 mov -0x20(%ebp),%edi for(fd = 0; fd < NOFILE; fd++){ 80105c0f: 31 db xor %ebx,%ebx struct proc *curproc = myproc(); 80105c11: e8 ca db ff ff call 801037e0 <myproc> 80105c16: eb 10 jmp 80105c28 <sys_pipe+0x58> 80105c18: 90 nop 80105c19: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi for(fd = 0; fd < NOFILE; fd++){ 80105c20: 83 c3 01 add $0x1,%ebx 80105c23: 83 fb 10 cmp $0x10,%ebx 80105c26: 74 60 je 80105c88 <sys_pipe+0xb8> if(curproc->ofile[fd] == 0){ 80105c28: 8b 74 98 28 mov 0x28(%eax,%ebx,4),%esi 80105c2c: 85 f6 test %esi,%esi 80105c2e: 75 f0 jne 80105c20 <sys_pipe+0x50> curproc->ofile[fd] = f; 80105c30: 8d 73 08 lea 0x8(%ebx),%esi 80105c33: 89 7c b0 08 mov %edi,0x8(%eax,%esi,4) if((fd0 = fdalloc(rf)) < 0 || (fd1 = fdalloc(wf)) < 0){ 80105c37: 8b 7d e4 mov -0x1c(%ebp),%edi struct proc *curproc = myproc(); 80105c3a: e8 a1 db ff ff call 801037e0 <myproc> for(fd = 0; fd < NOFILE; fd++){ 80105c3f: 31 d2 xor %edx,%edx 80105c41: eb 0d jmp 80105c50 <sys_pipe+0x80> 80105c43: 90 nop 80105c44: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80105c48: 83 c2 01 add $0x1,%edx 80105c4b: 83 fa 10 cmp $0x10,%edx 80105c4e: 74 28 je 80105c78 <sys_pipe+0xa8> if(curproc->ofile[fd] == 0){ 80105c50: 8b 4c 90 28 mov 0x28(%eax,%edx,4),%ecx 80105c54: 85 c9 test %ecx,%ecx 80105c56: 75 f0 jne 80105c48 <sys_pipe+0x78> curproc->ofile[fd] = f; 80105c58: 89 7c 90 28 mov %edi,0x28(%eax,%edx,4) myproc()->ofile[fd0] = 0; fileclose(rf); fileclose(wf); return -1; } fd[0] = fd0; 80105c5c: 8b 45 dc mov -0x24(%ebp),%eax 80105c5f: 89 18 mov %ebx,(%eax) fd[1] = fd1; 80105c61: 8b 45 dc mov -0x24(%ebp),%eax 80105c64: 89 50 04 mov %edx,0x4(%eax) return 0; 80105c67: 31 c0 xor %eax,%eax } 80105c69: 8d 65 f4 lea -0xc(%ebp),%esp 80105c6c: 5b pop %ebx 80105c6d: 5e pop %esi 80105c6e: 5f pop %edi 80105c6f: 5d pop %ebp 80105c70: c3 ret 80105c71: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi myproc()->ofile[fd0] = 0; 80105c78: e8 63 db ff ff call 801037e0 <myproc> 80105c7d: c7 44 b0 08 00 00 00 movl $0x0,0x8(%eax,%esi,4) 80105c84: 00 80105c85: 8d 76 00 lea 0x0(%esi),%esi fileclose(rf); 80105c88: 83 ec 0c sub $0xc,%esp 80105c8b: ff 75 e0 pushl -0x20(%ebp) 80105c8e: e8 ad b1 ff ff call 80100e40 <fileclose> fileclose(wf); 80105c93: 58 pop %eax 80105c94: ff 75 e4 pushl -0x1c(%ebp) 80105c97: e8 a4 b1 ff ff call 80100e40 <fileclose> return -1; 80105c9c: 83 c4 10 add $0x10,%esp 80105c9f: b8 ff ff ff ff mov $0xffffffff,%eax 80105ca4: eb c3 jmp 80105c69 <sys_pipe+0x99> 80105ca6: 66 90 xchg %ax,%ax 80105ca8: 66 90 xchg %ax,%ax 80105caa: 66 90 xchg %ax,%ax 80105cac: 66 90 xchg %ax,%ax 80105cae: 66 90 xchg %ax,%ax 80105cb0 <sys_fork>: #include "mmu.h" #include "proc.h" int sys_fork(void) { 80105cb0: 55 push %ebp 80105cb1: 89 e5 mov %esp,%ebp return fork(); } 80105cb3: 5d pop %ebp return fork(); 80105cb4: e9 c7 dc ff ff jmp 80103980 <fork> 80105cb9: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80105cc0 <sys_exit>: int sys_exit(void) { 80105cc0: 55 push %ebp 80105cc1: 89 e5 mov %esp,%ebp 80105cc3: 83 ec 08 sub $0x8,%esp exit(); 80105cc6: e8 55 df ff ff call 80103c20 <exit> return 0; // not reached } 80105ccb: 31 c0 xor %eax,%eax 80105ccd: c9 leave 80105cce: c3 ret 80105ccf: 90 nop 80105cd0 <sys_wait>: int sys_wait(void) { 80105cd0: 55 push %ebp 80105cd1: 89 e5 mov %esp,%ebp return wait(); } 80105cd3: 5d pop %ebp return wait(); 80105cd4: e9 87 e1 ff ff jmp 80103e60 <wait> 80105cd9: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80105ce0 <sys_kill>: int sys_kill(void) { 80105ce0: 55 push %ebp 80105ce1: 89 e5 mov %esp,%ebp 80105ce3: 83 ec 20 sub $0x20,%esp int pid; if(argint(0, &pid) < 0) 80105ce6: 8d 45 f4 lea -0xc(%ebp),%eax 80105ce9: 50 push %eax 80105cea: 6a 00 push $0x0 80105cec: e8 9f eb ff ff call 80104890 <argint> 80105cf1: 83 c4 10 add $0x10,%esp 80105cf4: 85 c0 test %eax,%eax 80105cf6: 78 18 js 80105d10 <sys_kill+0x30> return -1; return kill(pid); 80105cf8: 83 ec 0c sub $0xc,%esp 80105cfb: ff 75 f4 pushl -0xc(%ebp) 80105cfe: e8 ad e2 ff ff call 80103fb0 <kill> 80105d03: 83 c4 10 add $0x10,%esp } 80105d06: c9 leave 80105d07: c3 ret 80105d08: 90 nop 80105d09: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi return -1; 80105d10: b8 ff ff ff ff mov $0xffffffff,%eax } 80105d15: c9 leave 80105d16: c3 ret 80105d17: 89 f6 mov %esi,%esi 80105d19: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80105d20 <sys_getpid>: int sys_getpid(void) { 80105d20: 55 push %ebp 80105d21: 89 e5 mov %esp,%ebp 80105d23: 83 ec 08 sub $0x8,%esp return myproc()->pid; 80105d26: e8 b5 da ff ff call 801037e0 <myproc> 80105d2b: 8b 40 10 mov 0x10(%eax),%eax } 80105d2e: c9 leave 80105d2f: c3 ret 80105d30 <sys_sbrk>: int sys_sbrk(void) { 80105d30: 55 push %ebp 80105d31: 89 e5 mov %esp,%ebp 80105d33: 53 push %ebx int addr; int n; if(argint(0, &n) < 0) 80105d34: 8d 45 f4 lea -0xc(%ebp),%eax { 80105d37: 83 ec 1c sub $0x1c,%esp if(argint(0, &n) < 0) 80105d3a: 50 push %eax 80105d3b: 6a 00 push $0x0 80105d3d: e8 4e eb ff ff call 80104890 <argint> 80105d42: 83 c4 10 add $0x10,%esp 80105d45: 85 c0 test %eax,%eax 80105d47: 78 27 js 80105d70 <sys_sbrk+0x40> return -1; addr = myproc()->sz; 80105d49: e8 92 da ff ff call 801037e0 <myproc> if(growproc(n) < 0) 80105d4e: 83 ec 0c sub $0xc,%esp addr = myproc()->sz; 80105d51: 8b 18 mov (%eax),%ebx if(growproc(n) < 0) 80105d53: ff 75 f4 pushl -0xc(%ebp) 80105d56: e8 a5 db ff ff call 80103900 <growproc> 80105d5b: 83 c4 10 add $0x10,%esp 80105d5e: 85 c0 test %eax,%eax 80105d60: 78 0e js 80105d70 <sys_sbrk+0x40> return -1; return addr; } 80105d62: 89 d8 mov %ebx,%eax 80105d64: 8b 5d fc mov -0x4(%ebp),%ebx 80105d67: c9 leave 80105d68: c3 ret 80105d69: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi return -1; 80105d70: bb ff ff ff ff mov $0xffffffff,%ebx 80105d75: eb eb jmp 80105d62 <sys_sbrk+0x32> 80105d77: 89 f6 mov %esi,%esi 80105d79: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80105d80 <sys_sleep>: int sys_sleep(void) { 80105d80: 55 push %ebp 80105d81: 89 e5 mov %esp,%ebp 80105d83: 53 push %ebx int n; uint ticks0; if(argint(0, &n) < 0) 80105d84: 8d 45 f4 lea -0xc(%ebp),%eax { 80105d87: 83 ec 1c sub $0x1c,%esp if(argint(0, &n) < 0) 80105d8a: 50 push %eax 80105d8b: 6a 00 push $0x0 80105d8d: e8 fe ea ff ff call 80104890 <argint> 80105d92: 83 c4 10 add $0x10,%esp 80105d95: 85 c0 test %eax,%eax 80105d97: 0f 88 8a 00 00 00 js 80105e27 <sys_sleep+0xa7> return -1; acquire(&tickslock); 80105d9d: 83 ec 0c sub $0xc,%esp 80105da0: 68 40 59 11 80 push $0x80115940 80105da5: e8 d6 e6 ff ff call 80104480 <acquire> ticks0 = ticks; while(ticks - ticks0 < n){ 80105daa: 8b 55 f4 mov -0xc(%ebp),%edx 80105dad: 83 c4 10 add $0x10,%esp ticks0 = ticks; 80105db0: 8b 1d 80 61 11 80 mov 0x80116180,%ebx while(ticks - ticks0 < n){ 80105db6: 85 d2 test %edx,%edx 80105db8: 75 27 jne 80105de1 <sys_sleep+0x61> 80105dba: eb 54 jmp 80105e10 <sys_sleep+0x90> 80105dbc: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi if(myproc()->killed){ release(&tickslock); return -1; } sleep(&ticks, &tickslock); 80105dc0: 83 ec 08 sub $0x8,%esp 80105dc3: 68 40 59 11 80 push $0x80115940 80105dc8: 68 80 61 11 80 push $0x80116180 80105dcd: e8 ce df ff ff call 80103da0 <sleep> while(ticks - ticks0 < n){ 80105dd2: a1 80 61 11 80 mov 0x80116180,%eax 80105dd7: 83 c4 10 add $0x10,%esp 80105dda: 29 d8 sub %ebx,%eax 80105ddc: 3b 45 f4 cmp -0xc(%ebp),%eax 80105ddf: 73 2f jae 80105e10 <sys_sleep+0x90> if(myproc()->killed){ 80105de1: e8 fa d9 ff ff call 801037e0 <myproc> 80105de6: 8b 40 24 mov 0x24(%eax),%eax 80105de9: 85 c0 test %eax,%eax 80105deb: 74 d3 je 80105dc0 <sys_sleep+0x40> release(&tickslock); 80105ded: 83 ec 0c sub $0xc,%esp 80105df0: 68 40 59 11 80 push $0x80115940 80105df5: e8 46 e7 ff ff call 80104540 <release> return -1; 80105dfa: 83 c4 10 add $0x10,%esp 80105dfd: b8 ff ff ff ff mov $0xffffffff,%eax } release(&tickslock); return 0; } 80105e02: 8b 5d fc mov -0x4(%ebp),%ebx 80105e05: c9 leave 80105e06: c3 ret 80105e07: 89 f6 mov %esi,%esi 80105e09: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi release(&tickslock); 80105e10: 83 ec 0c sub $0xc,%esp 80105e13: 68 40 59 11 80 push $0x80115940 80105e18: e8 23 e7 ff ff call 80104540 <release> return 0; 80105e1d: 83 c4 10 add $0x10,%esp 80105e20: 31 c0 xor %eax,%eax } 80105e22: 8b 5d fc mov -0x4(%ebp),%ebx 80105e25: c9 leave 80105e26: c3 ret return -1; 80105e27: b8 ff ff ff ff mov $0xffffffff,%eax 80105e2c: eb f4 jmp 80105e22 <sys_sleep+0xa2> 80105e2e: 66 90 xchg %ax,%ax 80105e30 <sys_uptime>: // return how many clock tick interrupts have occurred // since start. int sys_uptime(void) { 80105e30: 55 push %ebp 80105e31: 89 e5 mov %esp,%ebp 80105e33: 53 push %ebx 80105e34: 83 ec 10 sub $0x10,%esp uint xticks; acquire(&tickslock); 80105e37: 68 40 59 11 80 push $0x80115940 80105e3c: e8 3f e6 ff ff call 80104480 <acquire> xticks = ticks; 80105e41: 8b 1d 80 61 11 80 mov 0x80116180,%ebx release(&tickslock); 80105e47: c7 04 24 40 59 11 80 movl $0x80115940,(%esp) 80105e4e: e8 ed e6 ff ff call 80104540 <release> return xticks; } 80105e53: 89 d8 mov %ebx,%eax 80105e55: 8b 5d fc mov -0x4(%ebp),%ebx 80105e58: c9 leave 80105e59: c3 ret 80105e5a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 80105e60 <sys_cps>: int sys_cps (void) { 80105e60: 55 push %ebp 80105e61: 89 e5 mov %esp,%ebp return cps(); } 80105e63: 5d pop %ebp return cps(); 80105e64: e9 87 e2 ff ff jmp 801040f0 <cps> 80105e69: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80105e70 <sys_chpr>: int sys_chpr(void){ 80105e70: 55 push %ebp 80105e71: 89 e5 mov %esp,%ebp 80105e73: 83 ec 20 sub $0x20,%esp int pid, pr; if(argint(0, &pid) < 0) 80105e76: 8d 45 f0 lea -0x10(%ebp),%eax 80105e79: 50 push %eax 80105e7a: 6a 00 push $0x0 80105e7c: e8 0f ea ff ff call 80104890 <argint> 80105e81: 83 c4 10 add $0x10,%esp 80105e84: 85 c0 test %eax,%eax 80105e86: 78 28 js 80105eb0 <sys_chpr+0x40> return -1; if(argint(1, &pr) < 0) 80105e88: 8d 45 f4 lea -0xc(%ebp),%eax 80105e8b: 83 ec 08 sub $0x8,%esp 80105e8e: 50 push %eax 80105e8f: 6a 01 push $0x1 80105e91: e8 fa e9 ff ff call 80104890 <argint> 80105e96: 83 c4 10 add $0x10,%esp 80105e99: 85 c0 test %eax,%eax 80105e9b: 78 13 js 80105eb0 <sys_chpr+0x40> return -1; return chpr(pid, pr); 80105e9d: 83 ec 08 sub $0x8,%esp 80105ea0: ff 75 f4 pushl -0xc(%ebp) 80105ea3: ff 75 f0 pushl -0x10(%ebp) 80105ea6: e8 15 e3 ff ff call 801041c0 <chpr> 80105eab: 83 c4 10 add $0x10,%esp } 80105eae: c9 leave 80105eaf: c3 ret return -1; 80105eb0: b8 ff ff ff ff mov $0xffffffff,%eax } 80105eb5: c9 leave 80105eb6: c3 ret 80105eb7 <alltraps>: # vectors.S sends all traps here. .globl alltraps alltraps: # Build trap frame. pushl %ds 80105eb7: 1e push %ds pushl %es 80105eb8: 06 push %es pushl %fs 80105eb9: 0f a0 push %fs pushl %gs 80105ebb: 0f a8 push %gs pushal 80105ebd: 60 pusha # Set up data segments. movw $(SEG_KDATA<<3), %ax 80105ebe: 66 b8 10 00 mov $0x10,%ax movw %ax, %ds 80105ec2: 8e d8 mov %eax,%ds movw %ax, %es 80105ec4: 8e c0 mov %eax,%es # Call trap(tf), where tf=%esp pushl %esp 80105ec6: 54 push %esp call trap 80105ec7: e8 c4 00 00 00 call 80105f90 <trap> addl $4, %esp 80105ecc: 83 c4 04 add $0x4,%esp 80105ecf <trapret>: # Return falls through to trapret... .globl trapret trapret: popal 80105ecf: 61 popa popl %gs 80105ed0: 0f a9 pop %gs popl %fs 80105ed2: 0f a1 pop %fs popl %es 80105ed4: 07 pop %es popl %ds 80105ed5: 1f pop %ds addl $0x8, %esp # trapno and errcode 80105ed6: 83 c4 08 add $0x8,%esp iret 80105ed9: cf iret 80105eda: 66 90 xchg %ax,%ax 80105edc: 66 90 xchg %ax,%ax 80105ede: 66 90 xchg %ax,%ax 80105ee0 <tvinit>: struct spinlock tickslock; uint ticks; void tvinit(void) { 80105ee0: 55 push %ebp int i; for(i = 0; i < 256; i++) 80105ee1: 31 c0 xor %eax,%eax { 80105ee3: 89 e5 mov %esp,%ebp 80105ee5: 83 ec 08 sub $0x8,%esp 80105ee8: 90 nop 80105ee9: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi SETGATE(idt[i], 0, SEG_KCODE<<3, vectors[i], 0); 80105ef0: 8b 14 85 08 b0 10 80 mov -0x7fef4ff8(,%eax,4),%edx 80105ef7: c7 04 c5 82 59 11 80 movl $0x8e000008,-0x7feea67e(,%eax,8) 80105efe: 08 00 00 8e 80105f02: 66 89 14 c5 80 59 11 mov %dx,-0x7feea680(,%eax,8) 80105f09: 80 80105f0a: c1 ea 10 shr $0x10,%edx 80105f0d: 66 89 14 c5 86 59 11 mov %dx,-0x7feea67a(,%eax,8) 80105f14: 80 for(i = 0; i < 256; i++) 80105f15: 83 c0 01 add $0x1,%eax 80105f18: 3d 00 01 00 00 cmp $0x100,%eax 80105f1d: 75 d1 jne 80105ef0 <tvinit+0x10> SETGATE(idt[T_SYSCALL], 1, SEG_KCODE<<3, vectors[T_SYSCALL], DPL_USER); 80105f1f: a1 08 b1 10 80 mov 0x8010b108,%eax initlock(&tickslock, "time"); 80105f24: 83 ec 08 sub $0x8,%esp SETGATE(idt[T_SYSCALL], 1, SEG_KCODE<<3, vectors[T_SYSCALL], DPL_USER); 80105f27: c7 05 82 5b 11 80 08 movl $0xef000008,0x80115b82 80105f2e: 00 00 ef initlock(&tickslock, "time"); 80105f31: 68 96 80 10 80 push $0x80108096 80105f36: 68 40 59 11 80 push $0x80115940 SETGATE(idt[T_SYSCALL], 1, SEG_KCODE<<3, vectors[T_SYSCALL], DPL_USER); 80105f3b: 66 a3 80 5b 11 80 mov %ax,0x80115b80 80105f41: c1 e8 10 shr $0x10,%eax 80105f44: 66 a3 86 5b 11 80 mov %ax,0x80115b86 initlock(&tickslock, "time"); 80105f4a: e8 f1 e3 ff ff call 80104340 <initlock> } 80105f4f: 83 c4 10 add $0x10,%esp 80105f52: c9 leave 80105f53: c3 ret 80105f54: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 80105f5a: 8d bf 00 00 00 00 lea 0x0(%edi),%edi 80105f60 <idtinit>: void idtinit(void) { 80105f60: 55 push %ebp pd[0] = size-1; 80105f61: b8 ff 07 00 00 mov $0x7ff,%eax 80105f66: 89 e5 mov %esp,%ebp 80105f68: 83 ec 10 sub $0x10,%esp 80105f6b: 66 89 45 fa mov %ax,-0x6(%ebp) pd[1] = (uint)p; 80105f6f: b8 80 59 11 80 mov $0x80115980,%eax 80105f74: 66 89 45 fc mov %ax,-0x4(%ebp) pd[2] = (uint)p >> 16; 80105f78: c1 e8 10 shr $0x10,%eax 80105f7b: 66 89 45 fe mov %ax,-0x2(%ebp) asm volatile("lidt (%0)" : : "r" (pd)); 80105f7f: 8d 45 fa lea -0x6(%ebp),%eax 80105f82: 0f 01 18 lidtl (%eax) lidt(idt, sizeof(idt)); } 80105f85: c9 leave 80105f86: c3 ret 80105f87: 89 f6 mov %esi,%esi 80105f89: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80105f90 <trap>: //PAGEBREAK: 41 void trap(struct trapframe *tf) { 80105f90: 55 push %ebp 80105f91: 89 e5 mov %esp,%ebp 80105f93: 57 push %edi 80105f94: 56 push %esi 80105f95: 53 push %ebx 80105f96: 83 ec 1c sub $0x1c,%esp 80105f99: 8b 7d 08 mov 0x8(%ebp),%edi if(tf->trapno == T_SYSCALL){ 80105f9c: 8b 47 30 mov 0x30(%edi),%eax 80105f9f: 83 f8 40 cmp $0x40,%eax 80105fa2: 0f 84 f0 00 00 00 je 80106098 <trap+0x108> if(myproc()->killed) exit(); return; } switch(tf->trapno){ 80105fa8: 83 e8 20 sub $0x20,%eax 80105fab: 83 f8 1f cmp $0x1f,%eax 80105fae: 77 10 ja 80105fc0 <trap+0x30> 80105fb0: ff 24 85 3c 81 10 80 jmp *-0x7fef7ec4(,%eax,4) 80105fb7: 89 f6 mov %esi,%esi 80105fb9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi lapiceoi(); break; //PAGEBREAK: 13 default: if(myproc() == 0 || (tf->cs&3) == 0){ 80105fc0: e8 1b d8 ff ff call 801037e0 <myproc> 80105fc5: 85 c0 test %eax,%eax 80105fc7: 8b 5f 38 mov 0x38(%edi),%ebx 80105fca: 0f 84 14 02 00 00 je 801061e4 <trap+0x254> 80105fd0: f6 47 3c 03 testb $0x3,0x3c(%edi) 80105fd4: 0f 84 0a 02 00 00 je 801061e4 <trap+0x254> static inline uint rcr2(void) { uint val; asm volatile("movl %%cr2,%0" : "=r" (val)); 80105fda: 0f 20 d1 mov %cr2,%ecx 80105fdd: 89 4d d8 mov %ecx,-0x28(%ebp) cprintf("unexpected trap %d from cpu %d eip %x (cr2=0x%x)\n", tf->trapno, cpuid(), tf->eip, rcr2()); panic("trap"); } // In user space, assume process misbehaved. cprintf("pid %d %s: trap %d err %d on cpu %d " 80105fe0: e8 db d7 ff ff call 801037c0 <cpuid> 80105fe5: 89 45 dc mov %eax,-0x24(%ebp) 80105fe8: 8b 47 34 mov 0x34(%edi),%eax 80105feb: 8b 77 30 mov 0x30(%edi),%esi 80105fee: 89 45 e4 mov %eax,-0x1c(%ebp) "eip 0x%x addr 0x%x--kill proc\n", myproc()->pid, myproc()->name, tf->trapno, 80105ff1: e8 ea d7 ff ff call 801037e0 <myproc> 80105ff6: 89 45 e0 mov %eax,-0x20(%ebp) 80105ff9: e8 e2 d7 ff ff call 801037e0 <myproc> cprintf("pid %d %s: trap %d err %d on cpu %d " 80105ffe: 8b 4d d8 mov -0x28(%ebp),%ecx 80106001: 8b 55 dc mov -0x24(%ebp),%edx 80106004: 51 push %ecx 80106005: 53 push %ebx 80106006: 52 push %edx myproc()->pid, myproc()->name, tf->trapno, 80106007: 8b 55 e0 mov -0x20(%ebp),%edx cprintf("pid %d %s: trap %d err %d on cpu %d " 8010600a: ff 75 e4 pushl -0x1c(%ebp) 8010600d: 56 push %esi myproc()->pid, myproc()->name, tf->trapno, 8010600e: 83 c2 6c add $0x6c,%edx cprintf("pid %d %s: trap %d err %d on cpu %d " 80106011: 52 push %edx 80106012: ff 70 10 pushl 0x10(%eax) 80106015: 68 f8 80 10 80 push $0x801080f8 8010601a: e8 41 a6 ff ff call 80100660 <cprintf> tf->err, cpuid(), tf->eip, rcr2()); myproc()->killed = 1; 8010601f: 83 c4 20 add $0x20,%esp 80106022: e8 b9 d7 ff ff call 801037e0 <myproc> 80106027: c7 40 24 01 00 00 00 movl $0x1,0x24(%eax) } // Force process exit if it has been killed and is in user space. // (If it is still executing in the kernel, let it keep running // until it gets to the regular system call return.) if(myproc() && myproc()->killed && (tf->cs&3) == DPL_USER) 8010602e: e8 ad d7 ff ff call 801037e0 <myproc> 80106033: 85 c0 test %eax,%eax 80106035: 74 1d je 80106054 <trap+0xc4> 80106037: e8 a4 d7 ff ff call 801037e0 <myproc> 8010603c: 8b 50 24 mov 0x24(%eax),%edx 8010603f: 85 d2 test %edx,%edx 80106041: 74 11 je 80106054 <trap+0xc4> 80106043: 0f b7 47 3c movzwl 0x3c(%edi),%eax 80106047: 83 e0 03 and $0x3,%eax 8010604a: 66 83 f8 03 cmp $0x3,%ax 8010604e: 0f 84 4c 01 00 00 je 801061a0 <trap+0x210> exit(); // Force process to give up CPU on clock tick. // If interrupts were on while locks held, would need to check nlock. if(myproc() && myproc()->state == RUNNING && 80106054: e8 87 d7 ff ff call 801037e0 <myproc> 80106059: 85 c0 test %eax,%eax 8010605b: 74 0b je 80106068 <trap+0xd8> 8010605d: e8 7e d7 ff ff call 801037e0 <myproc> 80106062: 83 78 0c 04 cmpl $0x4,0xc(%eax) 80106066: 74 68 je 801060d0 <trap+0x140> tf->trapno == T_IRQ0+IRQ_TIMER) yield(); // Check if the process has been killed since we yielded if(myproc() && myproc()->killed && (tf->cs&3) == DPL_USER) 80106068: e8 73 d7 ff ff call 801037e0 <myproc> 8010606d: 85 c0 test %eax,%eax 8010606f: 74 19 je 8010608a <trap+0xfa> 80106071: e8 6a d7 ff ff call 801037e0 <myproc> 80106076: 8b 40 24 mov 0x24(%eax),%eax 80106079: 85 c0 test %eax,%eax 8010607b: 74 0d je 8010608a <trap+0xfa> 8010607d: 0f b7 47 3c movzwl 0x3c(%edi),%eax 80106081: 83 e0 03 and $0x3,%eax 80106084: 66 83 f8 03 cmp $0x3,%ax 80106088: 74 37 je 801060c1 <trap+0x131> exit(); } 8010608a: 8d 65 f4 lea -0xc(%ebp),%esp 8010608d: 5b pop %ebx 8010608e: 5e pop %esi 8010608f: 5f pop %edi 80106090: 5d pop %ebp 80106091: c3 ret 80106092: 8d b6 00 00 00 00 lea 0x0(%esi),%esi if(myproc()->killed) 80106098: e8 43 d7 ff ff call 801037e0 <myproc> 8010609d: 8b 58 24 mov 0x24(%eax),%ebx 801060a0: 85 db test %ebx,%ebx 801060a2: 0f 85 e8 00 00 00 jne 80106190 <trap+0x200> myproc()->tf = tf; 801060a8: e8 33 d7 ff ff call 801037e0 <myproc> 801060ad: 89 78 18 mov %edi,0x18(%eax) syscall(); 801060b0: e8 cb e8 ff ff call 80104980 <syscall> if(myproc()->killed) 801060b5: e8 26 d7 ff ff call 801037e0 <myproc> 801060ba: 8b 48 24 mov 0x24(%eax),%ecx 801060bd: 85 c9 test %ecx,%ecx 801060bf: 74 c9 je 8010608a <trap+0xfa> } 801060c1: 8d 65 f4 lea -0xc(%ebp),%esp 801060c4: 5b pop %ebx 801060c5: 5e pop %esi 801060c6: 5f pop %edi 801060c7: 5d pop %ebp exit(); 801060c8: e9 53 db ff ff jmp 80103c20 <exit> 801060cd: 8d 76 00 lea 0x0(%esi),%esi if(myproc() && myproc()->state == RUNNING && 801060d0: 83 7f 30 20 cmpl $0x20,0x30(%edi) 801060d4: 75 92 jne 80106068 <trap+0xd8> yield(); 801060d6: e8 75 dc ff ff call 80103d50 <yield> 801060db: eb 8b jmp 80106068 <trap+0xd8> 801060dd: 8d 76 00 lea 0x0(%esi),%esi if(cpuid() == 0){ 801060e0: e8 db d6 ff ff call 801037c0 <cpuid> 801060e5: 85 c0 test %eax,%eax 801060e7: 0f 84 c3 00 00 00 je 801061b0 <trap+0x220> lapiceoi(); 801060ed: e8 5e c6 ff ff call 80102750 <lapiceoi> if(myproc() && myproc()->killed && (tf->cs&3) == DPL_USER) 801060f2: e8 e9 d6 ff ff call 801037e0 <myproc> 801060f7: 85 c0 test %eax,%eax 801060f9: 0f 85 38 ff ff ff jne 80106037 <trap+0xa7> 801060ff: e9 50 ff ff ff jmp 80106054 <trap+0xc4> 80106104: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi kbdintr(); 80106108: e8 03 c5 ff ff call 80102610 <kbdintr> lapiceoi(); 8010610d: e8 3e c6 ff ff call 80102750 <lapiceoi> if(myproc() && myproc()->killed && (tf->cs&3) == DPL_USER) 80106112: e8 c9 d6 ff ff call 801037e0 <myproc> 80106117: 85 c0 test %eax,%eax 80106119: 0f 85 18 ff ff ff jne 80106037 <trap+0xa7> 8010611f: e9 30 ff ff ff jmp 80106054 <trap+0xc4> 80106124: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi uartintr(); 80106128: e8 53 02 00 00 call 80106380 <uartintr> lapiceoi(); 8010612d: e8 1e c6 ff ff call 80102750 <lapiceoi> if(myproc() && myproc()->killed && (tf->cs&3) == DPL_USER) 80106132: e8 a9 d6 ff ff call 801037e0 <myproc> 80106137: 85 c0 test %eax,%eax 80106139: 0f 85 f8 fe ff ff jne 80106037 <trap+0xa7> 8010613f: e9 10 ff ff ff jmp 80106054 <trap+0xc4> 80106144: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi cprintf("cpu%d: spurious interrupt at %x:%x\n", 80106148: 0f b7 5f 3c movzwl 0x3c(%edi),%ebx 8010614c: 8b 77 38 mov 0x38(%edi),%esi 8010614f: e8 6c d6 ff ff call 801037c0 <cpuid> 80106154: 56 push %esi 80106155: 53 push %ebx 80106156: 50 push %eax 80106157: 68 a0 80 10 80 push $0x801080a0 8010615c: e8 ff a4 ff ff call 80100660 <cprintf> lapiceoi(); 80106161: e8 ea c5 ff ff call 80102750 <lapiceoi> break; 80106166: 83 c4 10 add $0x10,%esp if(myproc() && myproc()->killed && (tf->cs&3) == DPL_USER) 80106169: e8 72 d6 ff ff call 801037e0 <myproc> 8010616e: 85 c0 test %eax,%eax 80106170: 0f 85 c1 fe ff ff jne 80106037 <trap+0xa7> 80106176: e9 d9 fe ff ff jmp 80106054 <trap+0xc4> 8010617b: 90 nop 8010617c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi ideintr(); 80106180: e8 fb be ff ff call 80102080 <ideintr> 80106185: e9 63 ff ff ff jmp 801060ed <trap+0x15d> 8010618a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi exit(); 80106190: e8 8b da ff ff call 80103c20 <exit> 80106195: e9 0e ff ff ff jmp 801060a8 <trap+0x118> 8010619a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi exit(); 801061a0: e8 7b da ff ff call 80103c20 <exit> 801061a5: e9 aa fe ff ff jmp 80106054 <trap+0xc4> 801061aa: 8d b6 00 00 00 00 lea 0x0(%esi),%esi acquire(&tickslock); 801061b0: 83 ec 0c sub $0xc,%esp 801061b3: 68 40 59 11 80 push $0x80115940 801061b8: e8 c3 e2 ff ff call 80104480 <acquire> wakeup(&ticks); 801061bd: c7 04 24 80 61 11 80 movl $0x80116180,(%esp) ticks++; 801061c4: 83 05 80 61 11 80 01 addl $0x1,0x80116180 wakeup(&ticks); 801061cb: e8 80 dd ff ff call 80103f50 <wakeup> release(&tickslock); 801061d0: c7 04 24 40 59 11 80 movl $0x80115940,(%esp) 801061d7: e8 64 e3 ff ff call 80104540 <release> 801061dc: 83 c4 10 add $0x10,%esp 801061df: e9 09 ff ff ff jmp 801060ed <trap+0x15d> 801061e4: 0f 20 d6 mov %cr2,%esi cprintf("unexpected trap %d from cpu %d eip %x (cr2=0x%x)\n", 801061e7: e8 d4 d5 ff ff call 801037c0 <cpuid> 801061ec: 83 ec 0c sub $0xc,%esp 801061ef: 56 push %esi 801061f0: 53 push %ebx 801061f1: 50 push %eax 801061f2: ff 77 30 pushl 0x30(%edi) 801061f5: 68 c4 80 10 80 push $0x801080c4 801061fa: e8 61 a4 ff ff call 80100660 <cprintf> panic("trap"); 801061ff: 83 c4 14 add $0x14,%esp 80106202: 68 9b 80 10 80 push $0x8010809b 80106207: e8 84 a1 ff ff call 80100390 <panic> 8010620c: 66 90 xchg %ax,%ax 8010620e: 66 90 xchg %ax,%ax 80106210 <uartgetc>: } static int uartgetc(void) { if(!uart) 80106210: a1 bc b5 10 80 mov 0x8010b5bc,%eax { 80106215: 55 push %ebp 80106216: 89 e5 mov %esp,%ebp if(!uart) 80106218: 85 c0 test %eax,%eax 8010621a: 74 1c je 80106238 <uartgetc+0x28> asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 8010621c: ba fd 03 00 00 mov $0x3fd,%edx 80106221: ec in (%dx),%al return -1; if(!(inb(COM1+5) & 0x01)) 80106222: a8 01 test $0x1,%al 80106224: 74 12 je 80106238 <uartgetc+0x28> 80106226: ba f8 03 00 00 mov $0x3f8,%edx 8010622b: ec in (%dx),%al return -1; return inb(COM1+0); 8010622c: 0f b6 c0 movzbl %al,%eax } 8010622f: 5d pop %ebp 80106230: c3 ret 80106231: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi return -1; 80106238: b8 ff ff ff ff mov $0xffffffff,%eax } 8010623d: 5d pop %ebp 8010623e: c3 ret 8010623f: 90 nop 80106240 <uartputc.part.0>: uartputc(int c) 80106240: 55 push %ebp 80106241: 89 e5 mov %esp,%ebp 80106243: 57 push %edi 80106244: 56 push %esi 80106245: 53 push %ebx 80106246: 89 c7 mov %eax,%edi 80106248: bb 80 00 00 00 mov $0x80,%ebx 8010624d: be fd 03 00 00 mov $0x3fd,%esi 80106252: 83 ec 0c sub $0xc,%esp 80106255: eb 1b jmp 80106272 <uartputc.part.0+0x32> 80106257: 89 f6 mov %esi,%esi 80106259: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi microdelay(10); 80106260: 83 ec 0c sub $0xc,%esp 80106263: 6a 0a push $0xa 80106265: e8 06 c5 ff ff call 80102770 <microdelay> for(i = 0; i < 128 && !(inb(COM1+5) & 0x20); i++) 8010626a: 83 c4 10 add $0x10,%esp 8010626d: 83 eb 01 sub $0x1,%ebx 80106270: 74 07 je 80106279 <uartputc.part.0+0x39> 80106272: 89 f2 mov %esi,%edx 80106274: ec in (%dx),%al 80106275: a8 20 test $0x20,%al 80106277: 74 e7 je 80106260 <uartputc.part.0+0x20> asm volatile("out %0,%1" : : "a" (data), "d" (port)); 80106279: ba f8 03 00 00 mov $0x3f8,%edx 8010627e: 89 f8 mov %edi,%eax 80106280: ee out %al,(%dx) } 80106281: 8d 65 f4 lea -0xc(%ebp),%esp 80106284: 5b pop %ebx 80106285: 5e pop %esi 80106286: 5f pop %edi 80106287: 5d pop %ebp 80106288: c3 ret 80106289: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80106290 <uartinit>: { 80106290: 55 push %ebp 80106291: 31 c9 xor %ecx,%ecx 80106293: 89 c8 mov %ecx,%eax 80106295: 89 e5 mov %esp,%ebp 80106297: 57 push %edi 80106298: 56 push %esi 80106299: 53 push %ebx 8010629a: bb fa 03 00 00 mov $0x3fa,%ebx 8010629f: 89 da mov %ebx,%edx 801062a1: 83 ec 0c sub $0xc,%esp 801062a4: ee out %al,(%dx) 801062a5: bf fb 03 00 00 mov $0x3fb,%edi 801062aa: b8 80 ff ff ff mov $0xffffff80,%eax 801062af: 89 fa mov %edi,%edx 801062b1: ee out %al,(%dx) 801062b2: b8 0c 00 00 00 mov $0xc,%eax 801062b7: ba f8 03 00 00 mov $0x3f8,%edx 801062bc: ee out %al,(%dx) 801062bd: be f9 03 00 00 mov $0x3f9,%esi 801062c2: 89 c8 mov %ecx,%eax 801062c4: 89 f2 mov %esi,%edx 801062c6: ee out %al,(%dx) 801062c7: b8 03 00 00 00 mov $0x3,%eax 801062cc: 89 fa mov %edi,%edx 801062ce: ee out %al,(%dx) 801062cf: ba fc 03 00 00 mov $0x3fc,%edx 801062d4: 89 c8 mov %ecx,%eax 801062d6: ee out %al,(%dx) 801062d7: b8 01 00 00 00 mov $0x1,%eax 801062dc: 89 f2 mov %esi,%edx 801062de: ee out %al,(%dx) asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 801062df: ba fd 03 00 00 mov $0x3fd,%edx 801062e4: ec in (%dx),%al if(inb(COM1+5) == 0xFF) 801062e5: 3c ff cmp $0xff,%al 801062e7: 74 5a je 80106343 <uartinit+0xb3> uart = 1; 801062e9: c7 05 bc b5 10 80 01 movl $0x1,0x8010b5bc 801062f0: 00 00 00 801062f3: 89 da mov %ebx,%edx 801062f5: ec in (%dx),%al 801062f6: ba f8 03 00 00 mov $0x3f8,%edx 801062fb: ec in (%dx),%al ioapicenable(IRQ_COM1, 0); 801062fc: 83 ec 08 sub $0x8,%esp for(p="xv6...\n"; *p; p++) 801062ff: bb bc 81 10 80 mov $0x801081bc,%ebx ioapicenable(IRQ_COM1, 0); 80106304: 6a 00 push $0x0 80106306: 6a 04 push $0x4 80106308: e8 c3 bf ff ff call 801022d0 <ioapicenable> 8010630d: 83 c4 10 add $0x10,%esp for(p="xv6...\n"; *p; p++) 80106310: b8 78 00 00 00 mov $0x78,%eax 80106315: eb 13 jmp 8010632a <uartinit+0x9a> 80106317: 89 f6 mov %esi,%esi 80106319: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80106320: 83 c3 01 add $0x1,%ebx 80106323: 0f be 03 movsbl (%ebx),%eax 80106326: 84 c0 test %al,%al 80106328: 74 19 je 80106343 <uartinit+0xb3> if(!uart) 8010632a: 8b 15 bc b5 10 80 mov 0x8010b5bc,%edx 80106330: 85 d2 test %edx,%edx 80106332: 74 ec je 80106320 <uartinit+0x90> for(p="xv6...\n"; *p; p++) 80106334: 83 c3 01 add $0x1,%ebx 80106337: e8 04 ff ff ff call 80106240 <uartputc.part.0> 8010633c: 0f be 03 movsbl (%ebx),%eax 8010633f: 84 c0 test %al,%al 80106341: 75 e7 jne 8010632a <uartinit+0x9a> } 80106343: 8d 65 f4 lea -0xc(%ebp),%esp 80106346: 5b pop %ebx 80106347: 5e pop %esi 80106348: 5f pop %edi 80106349: 5d pop %ebp 8010634a: c3 ret 8010634b: 90 nop 8010634c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80106350 <uartputc>: if(!uart) 80106350: 8b 15 bc b5 10 80 mov 0x8010b5bc,%edx { 80106356: 55 push %ebp 80106357: 89 e5 mov %esp,%ebp if(!uart) 80106359: 85 d2 test %edx,%edx { 8010635b: 8b 45 08 mov 0x8(%ebp),%eax if(!uart) 8010635e: 74 10 je 80106370 <uartputc+0x20> } 80106360: 5d pop %ebp 80106361: e9 da fe ff ff jmp 80106240 <uartputc.part.0> 80106366: 8d 76 00 lea 0x0(%esi),%esi 80106369: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80106370: 5d pop %ebp 80106371: c3 ret 80106372: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80106379: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80106380 <uartintr>: void uartintr(void) { 80106380: 55 push %ebp 80106381: 89 e5 mov %esp,%ebp 80106383: 83 ec 14 sub $0x14,%esp consoleintr(uartgetc); 80106386: 68 10 62 10 80 push $0x80106210 8010638b: e8 80 a4 ff ff call 80100810 <consoleintr> } 80106390: 83 c4 10 add $0x10,%esp 80106393: c9 leave 80106394: c3 ret 80106395 <vector0>: # generated by vectors.pl - do not edit # handlers .globl alltraps .globl vector0 vector0: pushl $0 80106395: 6a 00 push $0x0 pushl $0 80106397: 6a 00 push $0x0 jmp alltraps 80106399: e9 19 fb ff ff jmp 80105eb7 <alltraps> 8010639e <vector1>: .globl vector1 vector1: pushl $0 8010639e: 6a 00 push $0x0 pushl $1 801063a0: 6a 01 push $0x1 jmp alltraps 801063a2: e9 10 fb ff ff jmp 80105eb7 <alltraps> 801063a7 <vector2>: .globl vector2 vector2: pushl $0 801063a7: 6a 00 push $0x0 pushl $2 801063a9: 6a 02 push $0x2 jmp alltraps 801063ab: e9 07 fb ff ff jmp 80105eb7 <alltraps> 801063b0 <vector3>: .globl vector3 vector3: pushl $0 801063b0: 6a 00 push $0x0 pushl $3 801063b2: 6a 03 push $0x3 jmp alltraps 801063b4: e9 fe fa ff ff jmp 80105eb7 <alltraps> 801063b9 <vector4>: .globl vector4 vector4: pushl $0 801063b9: 6a 00 push $0x0 pushl $4 801063bb: 6a 04 push $0x4 jmp alltraps 801063bd: e9 f5 fa ff ff jmp 80105eb7 <alltraps> 801063c2 <vector5>: .globl vector5 vector5: pushl $0 801063c2: 6a 00 push $0x0 pushl $5 801063c4: 6a 05 push $0x5 jmp alltraps 801063c6: e9 ec fa ff ff jmp 80105eb7 <alltraps> 801063cb <vector6>: .globl vector6 vector6: pushl $0 801063cb: 6a 00 push $0x0 pushl $6 801063cd: 6a 06 push $0x6 jmp alltraps 801063cf: e9 e3 fa ff ff jmp 80105eb7 <alltraps> 801063d4 <vector7>: .globl vector7 vector7: pushl $0 801063d4: 6a 00 push $0x0 pushl $7 801063d6: 6a 07 push $0x7 jmp alltraps 801063d8: e9 da fa ff ff jmp 80105eb7 <alltraps> 801063dd <vector8>: .globl vector8 vector8: pushl $8 801063dd: 6a 08 push $0x8 jmp alltraps 801063df: e9 d3 fa ff ff jmp 80105eb7 <alltraps> 801063e4 <vector9>: .globl vector9 vector9: pushl $0 801063e4: 6a 00 push $0x0 pushl $9 801063e6: 6a 09 push $0x9 jmp alltraps 801063e8: e9 ca fa ff ff jmp 80105eb7 <alltraps> 801063ed <vector10>: .globl vector10 vector10: pushl $10 801063ed: 6a 0a push $0xa jmp alltraps 801063ef: e9 c3 fa ff ff jmp 80105eb7 <alltraps> 801063f4 <vector11>: .globl vector11 vector11: pushl $11 801063f4: 6a 0b push $0xb jmp alltraps 801063f6: e9 bc fa ff ff jmp 80105eb7 <alltraps> 801063fb <vector12>: .globl vector12 vector12: pushl $12 801063fb: 6a 0c push $0xc jmp alltraps 801063fd: e9 b5 fa ff ff jmp 80105eb7 <alltraps> 80106402 <vector13>: .globl vector13 vector13: pushl $13 80106402: 6a 0d push $0xd jmp alltraps 80106404: e9 ae fa ff ff jmp 80105eb7 <alltraps> 80106409 <vector14>: .globl vector14 vector14: pushl $14 80106409: 6a 0e push $0xe jmp alltraps 8010640b: e9 a7 fa ff ff jmp 80105eb7 <alltraps> 80106410 <vector15>: .globl vector15 vector15: pushl $0 80106410: 6a 00 push $0x0 pushl $15 80106412: 6a 0f push $0xf jmp alltraps 80106414: e9 9e fa ff ff jmp 80105eb7 <alltraps> 80106419 <vector16>: .globl vector16 vector16: pushl $0 80106419: 6a 00 push $0x0 pushl $16 8010641b: 6a 10 push $0x10 jmp alltraps 8010641d: e9 95 fa ff ff jmp 80105eb7 <alltraps> 80106422 <vector17>: .globl vector17 vector17: pushl $17 80106422: 6a 11 push $0x11 jmp alltraps 80106424: e9 8e fa ff ff jmp 80105eb7 <alltraps> 80106429 <vector18>: .globl vector18 vector18: pushl $0 80106429: 6a 00 push $0x0 pushl $18 8010642b: 6a 12 push $0x12 jmp alltraps 8010642d: e9 85 fa ff ff jmp 80105eb7 <alltraps> 80106432 <vector19>: .globl vector19 vector19: pushl $0 80106432: 6a 00 push $0x0 pushl $19 80106434: 6a 13 push $0x13 jmp alltraps 80106436: e9 7c fa ff ff jmp 80105eb7 <alltraps> 8010643b <vector20>: .globl vector20 vector20: pushl $0 8010643b: 6a 00 push $0x0 pushl $20 8010643d: 6a 14 push $0x14 jmp alltraps 8010643f: e9 73 fa ff ff jmp 80105eb7 <alltraps> 80106444 <vector21>: .globl vector21 vector21: pushl $0 80106444: 6a 00 push $0x0 pushl $21 80106446: 6a 15 push $0x15 jmp alltraps 80106448: e9 6a fa ff ff jmp 80105eb7 <alltraps> 8010644d <vector22>: .globl vector22 vector22: pushl $0 8010644d: 6a 00 push $0x0 pushl $22 8010644f: 6a 16 push $0x16 jmp alltraps 80106451: e9 61 fa ff ff jmp 80105eb7 <alltraps> 80106456 <vector23>: .globl vector23 vector23: pushl $0 80106456: 6a 00 push $0x0 pushl $23 80106458: 6a 17 push $0x17 jmp alltraps 8010645a: e9 58 fa ff ff jmp 80105eb7 <alltraps> 8010645f <vector24>: .globl vector24 vector24: pushl $0 8010645f: 6a 00 push $0x0 pushl $24 80106461: 6a 18 push $0x18 jmp alltraps 80106463: e9 4f fa ff ff jmp 80105eb7 <alltraps> 80106468 <vector25>: .globl vector25 vector25: pushl $0 80106468: 6a 00 push $0x0 pushl $25 8010646a: 6a 19 push $0x19 jmp alltraps 8010646c: e9 46 fa ff ff jmp 80105eb7 <alltraps> 80106471 <vector26>: .globl vector26 vector26: pushl $0 80106471: 6a 00 push $0x0 pushl $26 80106473: 6a 1a push $0x1a jmp alltraps 80106475: e9 3d fa ff ff jmp 80105eb7 <alltraps> 8010647a <vector27>: .globl vector27 vector27: pushl $0 8010647a: 6a 00 push $0x0 pushl $27 8010647c: 6a 1b push $0x1b jmp alltraps 8010647e: e9 34 fa ff ff jmp 80105eb7 <alltraps> 80106483 <vector28>: .globl vector28 vector28: pushl $0 80106483: 6a 00 push $0x0 pushl $28 80106485: 6a 1c push $0x1c jmp alltraps 80106487: e9 2b fa ff ff jmp 80105eb7 <alltraps> 8010648c <vector29>: .globl vector29 vector29: pushl $0 8010648c: 6a 00 push $0x0 pushl $29 8010648e: 6a 1d push $0x1d jmp alltraps 80106490: e9 22 fa ff ff jmp 80105eb7 <alltraps> 80106495 <vector30>: .globl vector30 vector30: pushl $0 80106495: 6a 00 push $0x0 pushl $30 80106497: 6a 1e push $0x1e jmp alltraps 80106499: e9 19 fa ff ff jmp 80105eb7 <alltraps> 8010649e <vector31>: .globl vector31 vector31: pushl $0 8010649e: 6a 00 push $0x0 pushl $31 801064a0: 6a 1f push $0x1f jmp alltraps 801064a2: e9 10 fa ff ff jmp 80105eb7 <alltraps> 801064a7 <vector32>: .globl vector32 vector32: pushl $0 801064a7: 6a 00 push $0x0 pushl $32 801064a9: 6a 20 push $0x20 jmp alltraps 801064ab: e9 07 fa ff ff jmp 80105eb7 <alltraps> 801064b0 <vector33>: .globl vector33 vector33: pushl $0 801064b0: 6a 00 push $0x0 pushl $33 801064b2: 6a 21 push $0x21 jmp alltraps 801064b4: e9 fe f9 ff ff jmp 80105eb7 <alltraps> 801064b9 <vector34>: .globl vector34 vector34: pushl $0 801064b9: 6a 00 push $0x0 pushl $34 801064bb: 6a 22 push $0x22 jmp alltraps 801064bd: e9 f5 f9 ff ff jmp 80105eb7 <alltraps> 801064c2 <vector35>: .globl vector35 vector35: pushl $0 801064c2: 6a 00 push $0x0 pushl $35 801064c4: 6a 23 push $0x23 jmp alltraps 801064c6: e9 ec f9 ff ff jmp 80105eb7 <alltraps> 801064cb <vector36>: .globl vector36 vector36: pushl $0 801064cb: 6a 00 push $0x0 pushl $36 801064cd: 6a 24 push $0x24 jmp alltraps 801064cf: e9 e3 f9 ff ff jmp 80105eb7 <alltraps> 801064d4 <vector37>: .globl vector37 vector37: pushl $0 801064d4: 6a 00 push $0x0 pushl $37 801064d6: 6a 25 push $0x25 jmp alltraps 801064d8: e9 da f9 ff ff jmp 80105eb7 <alltraps> 801064dd <vector38>: .globl vector38 vector38: pushl $0 801064dd: 6a 00 push $0x0 pushl $38 801064df: 6a 26 push $0x26 jmp alltraps 801064e1: e9 d1 f9 ff ff jmp 80105eb7 <alltraps> 801064e6 <vector39>: .globl vector39 vector39: pushl $0 801064e6: 6a 00 push $0x0 pushl $39 801064e8: 6a 27 push $0x27 jmp alltraps 801064ea: e9 c8 f9 ff ff jmp 80105eb7 <alltraps> 801064ef <vector40>: .globl vector40 vector40: pushl $0 801064ef: 6a 00 push $0x0 pushl $40 801064f1: 6a 28 push $0x28 jmp alltraps 801064f3: e9 bf f9 ff ff jmp 80105eb7 <alltraps> 801064f8 <vector41>: .globl vector41 vector41: pushl $0 801064f8: 6a 00 push $0x0 pushl $41 801064fa: 6a 29 push $0x29 jmp alltraps 801064fc: e9 b6 f9 ff ff jmp 80105eb7 <alltraps> 80106501 <vector42>: .globl vector42 vector42: pushl $0 80106501: 6a 00 push $0x0 pushl $42 80106503: 6a 2a push $0x2a jmp alltraps 80106505: e9 ad f9 ff ff jmp 80105eb7 <alltraps> 8010650a <vector43>: .globl vector43 vector43: pushl $0 8010650a: 6a 00 push $0x0 pushl $43 8010650c: 6a 2b push $0x2b jmp alltraps 8010650e: e9 a4 f9 ff ff jmp 80105eb7 <alltraps> 80106513 <vector44>: .globl vector44 vector44: pushl $0 80106513: 6a 00 push $0x0 pushl $44 80106515: 6a 2c push $0x2c jmp alltraps 80106517: e9 9b f9 ff ff jmp 80105eb7 <alltraps> 8010651c <vector45>: .globl vector45 vector45: pushl $0 8010651c: 6a 00 push $0x0 pushl $45 8010651e: 6a 2d push $0x2d jmp alltraps 80106520: e9 92 f9 ff ff jmp 80105eb7 <alltraps> 80106525 <vector46>: .globl vector46 vector46: pushl $0 80106525: 6a 00 push $0x0 pushl $46 80106527: 6a 2e push $0x2e jmp alltraps 80106529: e9 89 f9 ff ff jmp 80105eb7 <alltraps> 8010652e <vector47>: .globl vector47 vector47: pushl $0 8010652e: 6a 00 push $0x0 pushl $47 80106530: 6a 2f push $0x2f jmp alltraps 80106532: e9 80 f9 ff ff jmp 80105eb7 <alltraps> 80106537 <vector48>: .globl vector48 vector48: pushl $0 80106537: 6a 00 push $0x0 pushl $48 80106539: 6a 30 push $0x30 jmp alltraps 8010653b: e9 77 f9 ff ff jmp 80105eb7 <alltraps> 80106540 <vector49>: .globl vector49 vector49: pushl $0 80106540: 6a 00 push $0x0 pushl $49 80106542: 6a 31 push $0x31 jmp alltraps 80106544: e9 6e f9 ff ff jmp 80105eb7 <alltraps> 80106549 <vector50>: .globl vector50 vector50: pushl $0 80106549: 6a 00 push $0x0 pushl $50 8010654b: 6a 32 push $0x32 jmp alltraps 8010654d: e9 65 f9 ff ff jmp 80105eb7 <alltraps> 80106552 <vector51>: .globl vector51 vector51: pushl $0 80106552: 6a 00 push $0x0 pushl $51 80106554: 6a 33 push $0x33 jmp alltraps 80106556: e9 5c f9 ff ff jmp 80105eb7 <alltraps> 8010655b <vector52>: .globl vector52 vector52: pushl $0 8010655b: 6a 00 push $0x0 pushl $52 8010655d: 6a 34 push $0x34 jmp alltraps 8010655f: e9 53 f9 ff ff jmp 80105eb7 <alltraps> 80106564 <vector53>: .globl vector53 vector53: pushl $0 80106564: 6a 00 push $0x0 pushl $53 80106566: 6a 35 push $0x35 jmp alltraps 80106568: e9 4a f9 ff ff jmp 80105eb7 <alltraps> 8010656d <vector54>: .globl vector54 vector54: pushl $0 8010656d: 6a 00 push $0x0 pushl $54 8010656f: 6a 36 push $0x36 jmp alltraps 80106571: e9 41 f9 ff ff jmp 80105eb7 <alltraps> 80106576 <vector55>: .globl vector55 vector55: pushl $0 80106576: 6a 00 push $0x0 pushl $55 80106578: 6a 37 push $0x37 jmp alltraps 8010657a: e9 38 f9 ff ff jmp 80105eb7 <alltraps> 8010657f <vector56>: .globl vector56 vector56: pushl $0 8010657f: 6a 00 push $0x0 pushl $56 80106581: 6a 38 push $0x38 jmp alltraps 80106583: e9 2f f9 ff ff jmp 80105eb7 <alltraps> 80106588 <vector57>: .globl vector57 vector57: pushl $0 80106588: 6a 00 push $0x0 pushl $57 8010658a: 6a 39 push $0x39 jmp alltraps 8010658c: e9 26 f9 ff ff jmp 80105eb7 <alltraps> 80106591 <vector58>: .globl vector58 vector58: pushl $0 80106591: 6a 00 push $0x0 pushl $58 80106593: 6a 3a push $0x3a jmp alltraps 80106595: e9 1d f9 ff ff jmp 80105eb7 <alltraps> 8010659a <vector59>: .globl vector59 vector59: pushl $0 8010659a: 6a 00 push $0x0 pushl $59 8010659c: 6a 3b push $0x3b jmp alltraps 8010659e: e9 14 f9 ff ff jmp 80105eb7 <alltraps> 801065a3 <vector60>: .globl vector60 vector60: pushl $0 801065a3: 6a 00 push $0x0 pushl $60 801065a5: 6a 3c push $0x3c jmp alltraps 801065a7: e9 0b f9 ff ff jmp 80105eb7 <alltraps> 801065ac <vector61>: .globl vector61 vector61: pushl $0 801065ac: 6a 00 push $0x0 pushl $61 801065ae: 6a 3d push $0x3d jmp alltraps 801065b0: e9 02 f9 ff ff jmp 80105eb7 <alltraps> 801065b5 <vector62>: .globl vector62 vector62: pushl $0 801065b5: 6a 00 push $0x0 pushl $62 801065b7: 6a 3e push $0x3e jmp alltraps 801065b9: e9 f9 f8 ff ff jmp 80105eb7 <alltraps> 801065be <vector63>: .globl vector63 vector63: pushl $0 801065be: 6a 00 push $0x0 pushl $63 801065c0: 6a 3f push $0x3f jmp alltraps 801065c2: e9 f0 f8 ff ff jmp 80105eb7 <alltraps> 801065c7 <vector64>: .globl vector64 vector64: pushl $0 801065c7: 6a 00 push $0x0 pushl $64 801065c9: 6a 40 push $0x40 jmp alltraps 801065cb: e9 e7 f8 ff ff jmp 80105eb7 <alltraps> 801065d0 <vector65>: .globl vector65 vector65: pushl $0 801065d0: 6a 00 push $0x0 pushl $65 801065d2: 6a 41 push $0x41 jmp alltraps 801065d4: e9 de f8 ff ff jmp 80105eb7 <alltraps> 801065d9 <vector66>: .globl vector66 vector66: pushl $0 801065d9: 6a 00 push $0x0 pushl $66 801065db: 6a 42 push $0x42 jmp alltraps 801065dd: e9 d5 f8 ff ff jmp 80105eb7 <alltraps> 801065e2 <vector67>: .globl vector67 vector67: pushl $0 801065e2: 6a 00 push $0x0 pushl $67 801065e4: 6a 43 push $0x43 jmp alltraps 801065e6: e9 cc f8 ff ff jmp 80105eb7 <alltraps> 801065eb <vector68>: .globl vector68 vector68: pushl $0 801065eb: 6a 00 push $0x0 pushl $68 801065ed: 6a 44 push $0x44 jmp alltraps 801065ef: e9 c3 f8 ff ff jmp 80105eb7 <alltraps> 801065f4 <vector69>: .globl vector69 vector69: pushl $0 801065f4: 6a 00 push $0x0 pushl $69 801065f6: 6a 45 push $0x45 jmp alltraps 801065f8: e9 ba f8 ff ff jmp 80105eb7 <alltraps> 801065fd <vector70>: .globl vector70 vector70: pushl $0 801065fd: 6a 00 push $0x0 pushl $70 801065ff: 6a 46 push $0x46 jmp alltraps 80106601: e9 b1 f8 ff ff jmp 80105eb7 <alltraps> 80106606 <vector71>: .globl vector71 vector71: pushl $0 80106606: 6a 00 push $0x0 pushl $71 80106608: 6a 47 push $0x47 jmp alltraps 8010660a: e9 a8 f8 ff ff jmp 80105eb7 <alltraps> 8010660f <vector72>: .globl vector72 vector72: pushl $0 8010660f: 6a 00 push $0x0 pushl $72 80106611: 6a 48 push $0x48 jmp alltraps 80106613: e9 9f f8 ff ff jmp 80105eb7 <alltraps> 80106618 <vector73>: .globl vector73 vector73: pushl $0 80106618: 6a 00 push $0x0 pushl $73 8010661a: 6a 49 push $0x49 jmp alltraps 8010661c: e9 96 f8 ff ff jmp 80105eb7 <alltraps> 80106621 <vector74>: .globl vector74 vector74: pushl $0 80106621: 6a 00 push $0x0 pushl $74 80106623: 6a 4a push $0x4a jmp alltraps 80106625: e9 8d f8 ff ff jmp 80105eb7 <alltraps> 8010662a <vector75>: .globl vector75 vector75: pushl $0 8010662a: 6a 00 push $0x0 pushl $75 8010662c: 6a 4b push $0x4b jmp alltraps 8010662e: e9 84 f8 ff ff jmp 80105eb7 <alltraps> 80106633 <vector76>: .globl vector76 vector76: pushl $0 80106633: 6a 00 push $0x0 pushl $76 80106635: 6a 4c push $0x4c jmp alltraps 80106637: e9 7b f8 ff ff jmp 80105eb7 <alltraps> 8010663c <vector77>: .globl vector77 vector77: pushl $0 8010663c: 6a 00 push $0x0 pushl $77 8010663e: 6a 4d push $0x4d jmp alltraps 80106640: e9 72 f8 ff ff jmp 80105eb7 <alltraps> 80106645 <vector78>: .globl vector78 vector78: pushl $0 80106645: 6a 00 push $0x0 pushl $78 80106647: 6a 4e push $0x4e jmp alltraps 80106649: e9 69 f8 ff ff jmp 80105eb7 <alltraps> 8010664e <vector79>: .globl vector79 vector79: pushl $0 8010664e: 6a 00 push $0x0 pushl $79 80106650: 6a 4f push $0x4f jmp alltraps 80106652: e9 60 f8 ff ff jmp 80105eb7 <alltraps> 80106657 <vector80>: .globl vector80 vector80: pushl $0 80106657: 6a 00 push $0x0 pushl $80 80106659: 6a 50 push $0x50 jmp alltraps 8010665b: e9 57 f8 ff ff jmp 80105eb7 <alltraps> 80106660 <vector81>: .globl vector81 vector81: pushl $0 80106660: 6a 00 push $0x0 pushl $81 80106662: 6a 51 push $0x51 jmp alltraps 80106664: e9 4e f8 ff ff jmp 80105eb7 <alltraps> 80106669 <vector82>: .globl vector82 vector82: pushl $0 80106669: 6a 00 push $0x0 pushl $82 8010666b: 6a 52 push $0x52 jmp alltraps 8010666d: e9 45 f8 ff ff jmp 80105eb7 <alltraps> 80106672 <vector83>: .globl vector83 vector83: pushl $0 80106672: 6a 00 push $0x0 pushl $83 80106674: 6a 53 push $0x53 jmp alltraps 80106676: e9 3c f8 ff ff jmp 80105eb7 <alltraps> 8010667b <vector84>: .globl vector84 vector84: pushl $0 8010667b: 6a 00 push $0x0 pushl $84 8010667d: 6a 54 push $0x54 jmp alltraps 8010667f: e9 33 f8 ff ff jmp 80105eb7 <alltraps> 80106684 <vector85>: .globl vector85 vector85: pushl $0 80106684: 6a 00 push $0x0 pushl $85 80106686: 6a 55 push $0x55 jmp alltraps 80106688: e9 2a f8 ff ff jmp 80105eb7 <alltraps> 8010668d <vector86>: .globl vector86 vector86: pushl $0 8010668d: 6a 00 push $0x0 pushl $86 8010668f: 6a 56 push $0x56 jmp alltraps 80106691: e9 21 f8 ff ff jmp 80105eb7 <alltraps> 80106696 <vector87>: .globl vector87 vector87: pushl $0 80106696: 6a 00 push $0x0 pushl $87 80106698: 6a 57 push $0x57 jmp alltraps 8010669a: e9 18 f8 ff ff jmp 80105eb7 <alltraps> 8010669f <vector88>: .globl vector88 vector88: pushl $0 8010669f: 6a 00 push $0x0 pushl $88 801066a1: 6a 58 push $0x58 jmp alltraps 801066a3: e9 0f f8 ff ff jmp 80105eb7 <alltraps> 801066a8 <vector89>: .globl vector89 vector89: pushl $0 801066a8: 6a 00 push $0x0 pushl $89 801066aa: 6a 59 push $0x59 jmp alltraps 801066ac: e9 06 f8 ff ff jmp 80105eb7 <alltraps> 801066b1 <vector90>: .globl vector90 vector90: pushl $0 801066b1: 6a 00 push $0x0 pushl $90 801066b3: 6a 5a push $0x5a jmp alltraps 801066b5: e9 fd f7 ff ff jmp 80105eb7 <alltraps> 801066ba <vector91>: .globl vector91 vector91: pushl $0 801066ba: 6a 00 push $0x0 pushl $91 801066bc: 6a 5b push $0x5b jmp alltraps 801066be: e9 f4 f7 ff ff jmp 80105eb7 <alltraps> 801066c3 <vector92>: .globl vector92 vector92: pushl $0 801066c3: 6a 00 push $0x0 pushl $92 801066c5: 6a 5c push $0x5c jmp alltraps 801066c7: e9 eb f7 ff ff jmp 80105eb7 <alltraps> 801066cc <vector93>: .globl vector93 vector93: pushl $0 801066cc: 6a 00 push $0x0 pushl $93 801066ce: 6a 5d push $0x5d jmp alltraps 801066d0: e9 e2 f7 ff ff jmp 80105eb7 <alltraps> 801066d5 <vector94>: .globl vector94 vector94: pushl $0 801066d5: 6a 00 push $0x0 pushl $94 801066d7: 6a 5e push $0x5e jmp alltraps 801066d9: e9 d9 f7 ff ff jmp 80105eb7 <alltraps> 801066de <vector95>: .globl vector95 vector95: pushl $0 801066de: 6a 00 push $0x0 pushl $95 801066e0: 6a 5f push $0x5f jmp alltraps 801066e2: e9 d0 f7 ff ff jmp 80105eb7 <alltraps> 801066e7 <vector96>: .globl vector96 vector96: pushl $0 801066e7: 6a 00 push $0x0 pushl $96 801066e9: 6a 60 push $0x60 jmp alltraps 801066eb: e9 c7 f7 ff ff jmp 80105eb7 <alltraps> 801066f0 <vector97>: .globl vector97 vector97: pushl $0 801066f0: 6a 00 push $0x0 pushl $97 801066f2: 6a 61 push $0x61 jmp alltraps 801066f4: e9 be f7 ff ff jmp 80105eb7 <alltraps> 801066f9 <vector98>: .globl vector98 vector98: pushl $0 801066f9: 6a 00 push $0x0 pushl $98 801066fb: 6a 62 push $0x62 jmp alltraps 801066fd: e9 b5 f7 ff ff jmp 80105eb7 <alltraps> 80106702 <vector99>: .globl vector99 vector99: pushl $0 80106702: 6a 00 push $0x0 pushl $99 80106704: 6a 63 push $0x63 jmp alltraps 80106706: e9 ac f7 ff ff jmp 80105eb7 <alltraps> 8010670b <vector100>: .globl vector100 vector100: pushl $0 8010670b: 6a 00 push $0x0 pushl $100 8010670d: 6a 64 push $0x64 jmp alltraps 8010670f: e9 a3 f7 ff ff jmp 80105eb7 <alltraps> 80106714 <vector101>: .globl vector101 vector101: pushl $0 80106714: 6a 00 push $0x0 pushl $101 80106716: 6a 65 push $0x65 jmp alltraps 80106718: e9 9a f7 ff ff jmp 80105eb7 <alltraps> 8010671d <vector102>: .globl vector102 vector102: pushl $0 8010671d: 6a 00 push $0x0 pushl $102 8010671f: 6a 66 push $0x66 jmp alltraps 80106721: e9 91 f7 ff ff jmp 80105eb7 <alltraps> 80106726 <vector103>: .globl vector103 vector103: pushl $0 80106726: 6a 00 push $0x0 pushl $103 80106728: 6a 67 push $0x67 jmp alltraps 8010672a: e9 88 f7 ff ff jmp 80105eb7 <alltraps> 8010672f <vector104>: .globl vector104 vector104: pushl $0 8010672f: 6a 00 push $0x0 pushl $104 80106731: 6a 68 push $0x68 jmp alltraps 80106733: e9 7f f7 ff ff jmp 80105eb7 <alltraps> 80106738 <vector105>: .globl vector105 vector105: pushl $0 80106738: 6a 00 push $0x0 pushl $105 8010673a: 6a 69 push $0x69 jmp alltraps 8010673c: e9 76 f7 ff ff jmp 80105eb7 <alltraps> 80106741 <vector106>: .globl vector106 vector106: pushl $0 80106741: 6a 00 push $0x0 pushl $106 80106743: 6a 6a push $0x6a jmp alltraps 80106745: e9 6d f7 ff ff jmp 80105eb7 <alltraps> 8010674a <vector107>: .globl vector107 vector107: pushl $0 8010674a: 6a 00 push $0x0 pushl $107 8010674c: 6a 6b push $0x6b jmp alltraps 8010674e: e9 64 f7 ff ff jmp 80105eb7 <alltraps> 80106753 <vector108>: .globl vector108 vector108: pushl $0 80106753: 6a 00 push $0x0 pushl $108 80106755: 6a 6c push $0x6c jmp alltraps 80106757: e9 5b f7 ff ff jmp 80105eb7 <alltraps> 8010675c <vector109>: .globl vector109 vector109: pushl $0 8010675c: 6a 00 push $0x0 pushl $109 8010675e: 6a 6d push $0x6d jmp alltraps 80106760: e9 52 f7 ff ff jmp 80105eb7 <alltraps> 80106765 <vector110>: .globl vector110 vector110: pushl $0 80106765: 6a 00 push $0x0 pushl $110 80106767: 6a 6e push $0x6e jmp alltraps 80106769: e9 49 f7 ff ff jmp 80105eb7 <alltraps> 8010676e <vector111>: .globl vector111 vector111: pushl $0 8010676e: 6a 00 push $0x0 pushl $111 80106770: 6a 6f push $0x6f jmp alltraps 80106772: e9 40 f7 ff ff jmp 80105eb7 <alltraps> 80106777 <vector112>: .globl vector112 vector112: pushl $0 80106777: 6a 00 push $0x0 pushl $112 80106779: 6a 70 push $0x70 jmp alltraps 8010677b: e9 37 f7 ff ff jmp 80105eb7 <alltraps> 80106780 <vector113>: .globl vector113 vector113: pushl $0 80106780: 6a 00 push $0x0 pushl $113 80106782: 6a 71 push $0x71 jmp alltraps 80106784: e9 2e f7 ff ff jmp 80105eb7 <alltraps> 80106789 <vector114>: .globl vector114 vector114: pushl $0 80106789: 6a 00 push $0x0 pushl $114 8010678b: 6a 72 push $0x72 jmp alltraps 8010678d: e9 25 f7 ff ff jmp 80105eb7 <alltraps> 80106792 <vector115>: .globl vector115 vector115: pushl $0 80106792: 6a 00 push $0x0 pushl $115 80106794: 6a 73 push $0x73 jmp alltraps 80106796: e9 1c f7 ff ff jmp 80105eb7 <alltraps> 8010679b <vector116>: .globl vector116 vector116: pushl $0 8010679b: 6a 00 push $0x0 pushl $116 8010679d: 6a 74 push $0x74 jmp alltraps 8010679f: e9 13 f7 ff ff jmp 80105eb7 <alltraps> 801067a4 <vector117>: .globl vector117 vector117: pushl $0 801067a4: 6a 00 push $0x0 pushl $117 801067a6: 6a 75 push $0x75 jmp alltraps 801067a8: e9 0a f7 ff ff jmp 80105eb7 <alltraps> 801067ad <vector118>: .globl vector118 vector118: pushl $0 801067ad: 6a 00 push $0x0 pushl $118 801067af: 6a 76 push $0x76 jmp alltraps 801067b1: e9 01 f7 ff ff jmp 80105eb7 <alltraps> 801067b6 <vector119>: .globl vector119 vector119: pushl $0 801067b6: 6a 00 push $0x0 pushl $119 801067b8: 6a 77 push $0x77 jmp alltraps 801067ba: e9 f8 f6 ff ff jmp 80105eb7 <alltraps> 801067bf <vector120>: .globl vector120 vector120: pushl $0 801067bf: 6a 00 push $0x0 pushl $120 801067c1: 6a 78 push $0x78 jmp alltraps 801067c3: e9 ef f6 ff ff jmp 80105eb7 <alltraps> 801067c8 <vector121>: .globl vector121 vector121: pushl $0 801067c8: 6a 00 push $0x0 pushl $121 801067ca: 6a 79 push $0x79 jmp alltraps 801067cc: e9 e6 f6 ff ff jmp 80105eb7 <alltraps> 801067d1 <vector122>: .globl vector122 vector122: pushl $0 801067d1: 6a 00 push $0x0 pushl $122 801067d3: 6a 7a push $0x7a jmp alltraps 801067d5: e9 dd f6 ff ff jmp 80105eb7 <alltraps> 801067da <vector123>: .globl vector123 vector123: pushl $0 801067da: 6a 00 push $0x0 pushl $123 801067dc: 6a 7b push $0x7b jmp alltraps 801067de: e9 d4 f6 ff ff jmp 80105eb7 <alltraps> 801067e3 <vector124>: .globl vector124 vector124: pushl $0 801067e3: 6a 00 push $0x0 pushl $124 801067e5: 6a 7c push $0x7c jmp alltraps 801067e7: e9 cb f6 ff ff jmp 80105eb7 <alltraps> 801067ec <vector125>: .globl vector125 vector125: pushl $0 801067ec: 6a 00 push $0x0 pushl $125 801067ee: 6a 7d push $0x7d jmp alltraps 801067f0: e9 c2 f6 ff ff jmp 80105eb7 <alltraps> 801067f5 <vector126>: .globl vector126 vector126: pushl $0 801067f5: 6a 00 push $0x0 pushl $126 801067f7: 6a 7e push $0x7e jmp alltraps 801067f9: e9 b9 f6 ff ff jmp 80105eb7 <alltraps> 801067fe <vector127>: .globl vector127 vector127: pushl $0 801067fe: 6a 00 push $0x0 pushl $127 80106800: 6a 7f push $0x7f jmp alltraps 80106802: e9 b0 f6 ff ff jmp 80105eb7 <alltraps> 80106807 <vector128>: .globl vector128 vector128: pushl $0 80106807: 6a 00 push $0x0 pushl $128 80106809: 68 80 00 00 00 push $0x80 jmp alltraps 8010680e: e9 a4 f6 ff ff jmp 80105eb7 <alltraps> 80106813 <vector129>: .globl vector129 vector129: pushl $0 80106813: 6a 00 push $0x0 pushl $129 80106815: 68 81 00 00 00 push $0x81 jmp alltraps 8010681a: e9 98 f6 ff ff jmp 80105eb7 <alltraps> 8010681f <vector130>: .globl vector130 vector130: pushl $0 8010681f: 6a 00 push $0x0 pushl $130 80106821: 68 82 00 00 00 push $0x82 jmp alltraps 80106826: e9 8c f6 ff ff jmp 80105eb7 <alltraps> 8010682b <vector131>: .globl vector131 vector131: pushl $0 8010682b: 6a 00 push $0x0 pushl $131 8010682d: 68 83 00 00 00 push $0x83 jmp alltraps 80106832: e9 80 f6 ff ff jmp 80105eb7 <alltraps> 80106837 <vector132>: .globl vector132 vector132: pushl $0 80106837: 6a 00 push $0x0 pushl $132 80106839: 68 84 00 00 00 push $0x84 jmp alltraps 8010683e: e9 74 f6 ff ff jmp 80105eb7 <alltraps> 80106843 <vector133>: .globl vector133 vector133: pushl $0 80106843: 6a 00 push $0x0 pushl $133 80106845: 68 85 00 00 00 push $0x85 jmp alltraps 8010684a: e9 68 f6 ff ff jmp 80105eb7 <alltraps> 8010684f <vector134>: .globl vector134 vector134: pushl $0 8010684f: 6a 00 push $0x0 pushl $134 80106851: 68 86 00 00 00 push $0x86 jmp alltraps 80106856: e9 5c f6 ff ff jmp 80105eb7 <alltraps> 8010685b <vector135>: .globl vector135 vector135: pushl $0 8010685b: 6a 00 push $0x0 pushl $135 8010685d: 68 87 00 00 00 push $0x87 jmp alltraps 80106862: e9 50 f6 ff ff jmp 80105eb7 <alltraps> 80106867 <vector136>: .globl vector136 vector136: pushl $0 80106867: 6a 00 push $0x0 pushl $136 80106869: 68 88 00 00 00 push $0x88 jmp alltraps 8010686e: e9 44 f6 ff ff jmp 80105eb7 <alltraps> 80106873 <vector137>: .globl vector137 vector137: pushl $0 80106873: 6a 00 push $0x0 pushl $137 80106875: 68 89 00 00 00 push $0x89 jmp alltraps 8010687a: e9 38 f6 ff ff jmp 80105eb7 <alltraps> 8010687f <vector138>: .globl vector138 vector138: pushl $0 8010687f: 6a 00 push $0x0 pushl $138 80106881: 68 8a 00 00 00 push $0x8a jmp alltraps 80106886: e9 2c f6 ff ff jmp 80105eb7 <alltraps> 8010688b <vector139>: .globl vector139 vector139: pushl $0 8010688b: 6a 00 push $0x0 pushl $139 8010688d: 68 8b 00 00 00 push $0x8b jmp alltraps 80106892: e9 20 f6 ff ff jmp 80105eb7 <alltraps> 80106897 <vector140>: .globl vector140 vector140: pushl $0 80106897: 6a 00 push $0x0 pushl $140 80106899: 68 8c 00 00 00 push $0x8c jmp alltraps 8010689e: e9 14 f6 ff ff jmp 80105eb7 <alltraps> 801068a3 <vector141>: .globl vector141 vector141: pushl $0 801068a3: 6a 00 push $0x0 pushl $141 801068a5: 68 8d 00 00 00 push $0x8d jmp alltraps 801068aa: e9 08 f6 ff ff jmp 80105eb7 <alltraps> 801068af <vector142>: .globl vector142 vector142: pushl $0 801068af: 6a 00 push $0x0 pushl $142 801068b1: 68 8e 00 00 00 push $0x8e jmp alltraps 801068b6: e9 fc f5 ff ff jmp 80105eb7 <alltraps> 801068bb <vector143>: .globl vector143 vector143: pushl $0 801068bb: 6a 00 push $0x0 pushl $143 801068bd: 68 8f 00 00 00 push $0x8f jmp alltraps 801068c2: e9 f0 f5 ff ff jmp 80105eb7 <alltraps> 801068c7 <vector144>: .globl vector144 vector144: pushl $0 801068c7: 6a 00 push $0x0 pushl $144 801068c9: 68 90 00 00 00 push $0x90 jmp alltraps 801068ce: e9 e4 f5 ff ff jmp 80105eb7 <alltraps> 801068d3 <vector145>: .globl vector145 vector145: pushl $0 801068d3: 6a 00 push $0x0 pushl $145 801068d5: 68 91 00 00 00 push $0x91 jmp alltraps 801068da: e9 d8 f5 ff ff jmp 80105eb7 <alltraps> 801068df <vector146>: .globl vector146 vector146: pushl $0 801068df: 6a 00 push $0x0 pushl $146 801068e1: 68 92 00 00 00 push $0x92 jmp alltraps 801068e6: e9 cc f5 ff ff jmp 80105eb7 <alltraps> 801068eb <vector147>: .globl vector147 vector147: pushl $0 801068eb: 6a 00 push $0x0 pushl $147 801068ed: 68 93 00 00 00 push $0x93 jmp alltraps 801068f2: e9 c0 f5 ff ff jmp 80105eb7 <alltraps> 801068f7 <vector148>: .globl vector148 vector148: pushl $0 801068f7: 6a 00 push $0x0 pushl $148 801068f9: 68 94 00 00 00 push $0x94 jmp alltraps 801068fe: e9 b4 f5 ff ff jmp 80105eb7 <alltraps> 80106903 <vector149>: .globl vector149 vector149: pushl $0 80106903: 6a 00 push $0x0 pushl $149 80106905: 68 95 00 00 00 push $0x95 jmp alltraps 8010690a: e9 a8 f5 ff ff jmp 80105eb7 <alltraps> 8010690f <vector150>: .globl vector150 vector150: pushl $0 8010690f: 6a 00 push $0x0 pushl $150 80106911: 68 96 00 00 00 push $0x96 jmp alltraps 80106916: e9 9c f5 ff ff jmp 80105eb7 <alltraps> 8010691b <vector151>: .globl vector151 vector151: pushl $0 8010691b: 6a 00 push $0x0 pushl $151 8010691d: 68 97 00 00 00 push $0x97 jmp alltraps 80106922: e9 90 f5 ff ff jmp 80105eb7 <alltraps> 80106927 <vector152>: .globl vector152 vector152: pushl $0 80106927: 6a 00 push $0x0 pushl $152 80106929: 68 98 00 00 00 push $0x98 jmp alltraps 8010692e: e9 84 f5 ff ff jmp 80105eb7 <alltraps> 80106933 <vector153>: .globl vector153 vector153: pushl $0 80106933: 6a 00 push $0x0 pushl $153 80106935: 68 99 00 00 00 push $0x99 jmp alltraps 8010693a: e9 78 f5 ff ff jmp 80105eb7 <alltraps> 8010693f <vector154>: .globl vector154 vector154: pushl $0 8010693f: 6a 00 push $0x0 pushl $154 80106941: 68 9a 00 00 00 push $0x9a jmp alltraps 80106946: e9 6c f5 ff ff jmp 80105eb7 <alltraps> 8010694b <vector155>: .globl vector155 vector155: pushl $0 8010694b: 6a 00 push $0x0 pushl $155 8010694d: 68 9b 00 00 00 push $0x9b jmp alltraps 80106952: e9 60 f5 ff ff jmp 80105eb7 <alltraps> 80106957 <vector156>: .globl vector156 vector156: pushl $0 80106957: 6a 00 push $0x0 pushl $156 80106959: 68 9c 00 00 00 push $0x9c jmp alltraps 8010695e: e9 54 f5 ff ff jmp 80105eb7 <alltraps> 80106963 <vector157>: .globl vector157 vector157: pushl $0 80106963: 6a 00 push $0x0 pushl $157 80106965: 68 9d 00 00 00 push $0x9d jmp alltraps 8010696a: e9 48 f5 ff ff jmp 80105eb7 <alltraps> 8010696f <vector158>: .globl vector158 vector158: pushl $0 8010696f: 6a 00 push $0x0 pushl $158 80106971: 68 9e 00 00 00 push $0x9e jmp alltraps 80106976: e9 3c f5 ff ff jmp 80105eb7 <alltraps> 8010697b <vector159>: .globl vector159 vector159: pushl $0 8010697b: 6a 00 push $0x0 pushl $159 8010697d: 68 9f 00 00 00 push $0x9f jmp alltraps 80106982: e9 30 f5 ff ff jmp 80105eb7 <alltraps> 80106987 <vector160>: .globl vector160 vector160: pushl $0 80106987: 6a 00 push $0x0 pushl $160 80106989: 68 a0 00 00 00 push $0xa0 jmp alltraps 8010698e: e9 24 f5 ff ff jmp 80105eb7 <alltraps> 80106993 <vector161>: .globl vector161 vector161: pushl $0 80106993: 6a 00 push $0x0 pushl $161 80106995: 68 a1 00 00 00 push $0xa1 jmp alltraps 8010699a: e9 18 f5 ff ff jmp 80105eb7 <alltraps> 8010699f <vector162>: .globl vector162 vector162: pushl $0 8010699f: 6a 00 push $0x0 pushl $162 801069a1: 68 a2 00 00 00 push $0xa2 jmp alltraps 801069a6: e9 0c f5 ff ff jmp 80105eb7 <alltraps> 801069ab <vector163>: .globl vector163 vector163: pushl $0 801069ab: 6a 00 push $0x0 pushl $163 801069ad: 68 a3 00 00 00 push $0xa3 jmp alltraps 801069b2: e9 00 f5 ff ff jmp 80105eb7 <alltraps> 801069b7 <vector164>: .globl vector164 vector164: pushl $0 801069b7: 6a 00 push $0x0 pushl $164 801069b9: 68 a4 00 00 00 push $0xa4 jmp alltraps 801069be: e9 f4 f4 ff ff jmp 80105eb7 <alltraps> 801069c3 <vector165>: .globl vector165 vector165: pushl $0 801069c3: 6a 00 push $0x0 pushl $165 801069c5: 68 a5 00 00 00 push $0xa5 jmp alltraps 801069ca: e9 e8 f4 ff ff jmp 80105eb7 <alltraps> 801069cf <vector166>: .globl vector166 vector166: pushl $0 801069cf: 6a 00 push $0x0 pushl $166 801069d1: 68 a6 00 00 00 push $0xa6 jmp alltraps 801069d6: e9 dc f4 ff ff jmp 80105eb7 <alltraps> 801069db <vector167>: .globl vector167 vector167: pushl $0 801069db: 6a 00 push $0x0 pushl $167 801069dd: 68 a7 00 00 00 push $0xa7 jmp alltraps 801069e2: e9 d0 f4 ff ff jmp 80105eb7 <alltraps> 801069e7 <vector168>: .globl vector168 vector168: pushl $0 801069e7: 6a 00 push $0x0 pushl $168 801069e9: 68 a8 00 00 00 push $0xa8 jmp alltraps 801069ee: e9 c4 f4 ff ff jmp 80105eb7 <alltraps> 801069f3 <vector169>: .globl vector169 vector169: pushl $0 801069f3: 6a 00 push $0x0 pushl $169 801069f5: 68 a9 00 00 00 push $0xa9 jmp alltraps 801069fa: e9 b8 f4 ff ff jmp 80105eb7 <alltraps> 801069ff <vector170>: .globl vector170 vector170: pushl $0 801069ff: 6a 00 push $0x0 pushl $170 80106a01: 68 aa 00 00 00 push $0xaa jmp alltraps 80106a06: e9 ac f4 ff ff jmp 80105eb7 <alltraps> 80106a0b <vector171>: .globl vector171 vector171: pushl $0 80106a0b: 6a 00 push $0x0 pushl $171 80106a0d: 68 ab 00 00 00 push $0xab jmp alltraps 80106a12: e9 a0 f4 ff ff jmp 80105eb7 <alltraps> 80106a17 <vector172>: .globl vector172 vector172: pushl $0 80106a17: 6a 00 push $0x0 pushl $172 80106a19: 68 ac 00 00 00 push $0xac jmp alltraps 80106a1e: e9 94 f4 ff ff jmp 80105eb7 <alltraps> 80106a23 <vector173>: .globl vector173 vector173: pushl $0 80106a23: 6a 00 push $0x0 pushl $173 80106a25: 68 ad 00 00 00 push $0xad jmp alltraps 80106a2a: e9 88 f4 ff ff jmp 80105eb7 <alltraps> 80106a2f <vector174>: .globl vector174 vector174: pushl $0 80106a2f: 6a 00 push $0x0 pushl $174 80106a31: 68 ae 00 00 00 push $0xae jmp alltraps 80106a36: e9 7c f4 ff ff jmp 80105eb7 <alltraps> 80106a3b <vector175>: .globl vector175 vector175: pushl $0 80106a3b: 6a 00 push $0x0 pushl $175 80106a3d: 68 af 00 00 00 push $0xaf jmp alltraps 80106a42: e9 70 f4 ff ff jmp 80105eb7 <alltraps> 80106a47 <vector176>: .globl vector176 vector176: pushl $0 80106a47: 6a 00 push $0x0 pushl $176 80106a49: 68 b0 00 00 00 push $0xb0 jmp alltraps 80106a4e: e9 64 f4 ff ff jmp 80105eb7 <alltraps> 80106a53 <vector177>: .globl vector177 vector177: pushl $0 80106a53: 6a 00 push $0x0 pushl $177 80106a55: 68 b1 00 00 00 push $0xb1 jmp alltraps 80106a5a: e9 58 f4 ff ff jmp 80105eb7 <alltraps> 80106a5f <vector178>: .globl vector178 vector178: pushl $0 80106a5f: 6a 00 push $0x0 pushl $178 80106a61: 68 b2 00 00 00 push $0xb2 jmp alltraps 80106a66: e9 4c f4 ff ff jmp 80105eb7 <alltraps> 80106a6b <vector179>: .globl vector179 vector179: pushl $0 80106a6b: 6a 00 push $0x0 pushl $179 80106a6d: 68 b3 00 00 00 push $0xb3 jmp alltraps 80106a72: e9 40 f4 ff ff jmp 80105eb7 <alltraps> 80106a77 <vector180>: .globl vector180 vector180: pushl $0 80106a77: 6a 00 push $0x0 pushl $180 80106a79: 68 b4 00 00 00 push $0xb4 jmp alltraps 80106a7e: e9 34 f4 ff ff jmp 80105eb7 <alltraps> 80106a83 <vector181>: .globl vector181 vector181: pushl $0 80106a83: 6a 00 push $0x0 pushl $181 80106a85: 68 b5 00 00 00 push $0xb5 jmp alltraps 80106a8a: e9 28 f4 ff ff jmp 80105eb7 <alltraps> 80106a8f <vector182>: .globl vector182 vector182: pushl $0 80106a8f: 6a 00 push $0x0 pushl $182 80106a91: 68 b6 00 00 00 push $0xb6 jmp alltraps 80106a96: e9 1c f4 ff ff jmp 80105eb7 <alltraps> 80106a9b <vector183>: .globl vector183 vector183: pushl $0 80106a9b: 6a 00 push $0x0 pushl $183 80106a9d: 68 b7 00 00 00 push $0xb7 jmp alltraps 80106aa2: e9 10 f4 ff ff jmp 80105eb7 <alltraps> 80106aa7 <vector184>: .globl vector184 vector184: pushl $0 80106aa7: 6a 00 push $0x0 pushl $184 80106aa9: 68 b8 00 00 00 push $0xb8 jmp alltraps 80106aae: e9 04 f4 ff ff jmp 80105eb7 <alltraps> 80106ab3 <vector185>: .globl vector185 vector185: pushl $0 80106ab3: 6a 00 push $0x0 pushl $185 80106ab5: 68 b9 00 00 00 push $0xb9 jmp alltraps 80106aba: e9 f8 f3 ff ff jmp 80105eb7 <alltraps> 80106abf <vector186>: .globl vector186 vector186: pushl $0 80106abf: 6a 00 push $0x0 pushl $186 80106ac1: 68 ba 00 00 00 push $0xba jmp alltraps 80106ac6: e9 ec f3 ff ff jmp 80105eb7 <alltraps> 80106acb <vector187>: .globl vector187 vector187: pushl $0 80106acb: 6a 00 push $0x0 pushl $187 80106acd: 68 bb 00 00 00 push $0xbb jmp alltraps 80106ad2: e9 e0 f3 ff ff jmp 80105eb7 <alltraps> 80106ad7 <vector188>: .globl vector188 vector188: pushl $0 80106ad7: 6a 00 push $0x0 pushl $188 80106ad9: 68 bc 00 00 00 push $0xbc jmp alltraps 80106ade: e9 d4 f3 ff ff jmp 80105eb7 <alltraps> 80106ae3 <vector189>: .globl vector189 vector189: pushl $0 80106ae3: 6a 00 push $0x0 pushl $189 80106ae5: 68 bd 00 00 00 push $0xbd jmp alltraps 80106aea: e9 c8 f3 ff ff jmp 80105eb7 <alltraps> 80106aef <vector190>: .globl vector190 vector190: pushl $0 80106aef: 6a 00 push $0x0 pushl $190 80106af1: 68 be 00 00 00 push $0xbe jmp alltraps 80106af6: e9 bc f3 ff ff jmp 80105eb7 <alltraps> 80106afb <vector191>: .globl vector191 vector191: pushl $0 80106afb: 6a 00 push $0x0 pushl $191 80106afd: 68 bf 00 00 00 push $0xbf jmp alltraps 80106b02: e9 b0 f3 ff ff jmp 80105eb7 <alltraps> 80106b07 <vector192>: .globl vector192 vector192: pushl $0 80106b07: 6a 00 push $0x0 pushl $192 80106b09: 68 c0 00 00 00 push $0xc0 jmp alltraps 80106b0e: e9 a4 f3 ff ff jmp 80105eb7 <alltraps> 80106b13 <vector193>: .globl vector193 vector193: pushl $0 80106b13: 6a 00 push $0x0 pushl $193 80106b15: 68 c1 00 00 00 push $0xc1 jmp alltraps 80106b1a: e9 98 f3 ff ff jmp 80105eb7 <alltraps> 80106b1f <vector194>: .globl vector194 vector194: pushl $0 80106b1f: 6a 00 push $0x0 pushl $194 80106b21: 68 c2 00 00 00 push $0xc2 jmp alltraps 80106b26: e9 8c f3 ff ff jmp 80105eb7 <alltraps> 80106b2b <vector195>: .globl vector195 vector195: pushl $0 80106b2b: 6a 00 push $0x0 pushl $195 80106b2d: 68 c3 00 00 00 push $0xc3 jmp alltraps 80106b32: e9 80 f3 ff ff jmp 80105eb7 <alltraps> 80106b37 <vector196>: .globl vector196 vector196: pushl $0 80106b37: 6a 00 push $0x0 pushl $196 80106b39: 68 c4 00 00 00 push $0xc4 jmp alltraps 80106b3e: e9 74 f3 ff ff jmp 80105eb7 <alltraps> 80106b43 <vector197>: .globl vector197 vector197: pushl $0 80106b43: 6a 00 push $0x0 pushl $197 80106b45: 68 c5 00 00 00 push $0xc5 jmp alltraps 80106b4a: e9 68 f3 ff ff jmp 80105eb7 <alltraps> 80106b4f <vector198>: .globl vector198 vector198: pushl $0 80106b4f: 6a 00 push $0x0 pushl $198 80106b51: 68 c6 00 00 00 push $0xc6 jmp alltraps 80106b56: e9 5c f3 ff ff jmp 80105eb7 <alltraps> 80106b5b <vector199>: .globl vector199 vector199: pushl $0 80106b5b: 6a 00 push $0x0 pushl $199 80106b5d: 68 c7 00 00 00 push $0xc7 jmp alltraps 80106b62: e9 50 f3 ff ff jmp 80105eb7 <alltraps> 80106b67 <vector200>: .globl vector200 vector200: pushl $0 80106b67: 6a 00 push $0x0 pushl $200 80106b69: 68 c8 00 00 00 push $0xc8 jmp alltraps 80106b6e: e9 44 f3 ff ff jmp 80105eb7 <alltraps> 80106b73 <vector201>: .globl vector201 vector201: pushl $0 80106b73: 6a 00 push $0x0 pushl $201 80106b75: 68 c9 00 00 00 push $0xc9 jmp alltraps 80106b7a: e9 38 f3 ff ff jmp 80105eb7 <alltraps> 80106b7f <vector202>: .globl vector202 vector202: pushl $0 80106b7f: 6a 00 push $0x0 pushl $202 80106b81: 68 ca 00 00 00 push $0xca jmp alltraps 80106b86: e9 2c f3 ff ff jmp 80105eb7 <alltraps> 80106b8b <vector203>: .globl vector203 vector203: pushl $0 80106b8b: 6a 00 push $0x0 pushl $203 80106b8d: 68 cb 00 00 00 push $0xcb jmp alltraps 80106b92: e9 20 f3 ff ff jmp 80105eb7 <alltraps> 80106b97 <vector204>: .globl vector204 vector204: pushl $0 80106b97: 6a 00 push $0x0 pushl $204 80106b99: 68 cc 00 00 00 push $0xcc jmp alltraps 80106b9e: e9 14 f3 ff ff jmp 80105eb7 <alltraps> 80106ba3 <vector205>: .globl vector205 vector205: pushl $0 80106ba3: 6a 00 push $0x0 pushl $205 80106ba5: 68 cd 00 00 00 push $0xcd jmp alltraps 80106baa: e9 08 f3 ff ff jmp 80105eb7 <alltraps> 80106baf <vector206>: .globl vector206 vector206: pushl $0 80106baf: 6a 00 push $0x0 pushl $206 80106bb1: 68 ce 00 00 00 push $0xce jmp alltraps 80106bb6: e9 fc f2 ff ff jmp 80105eb7 <alltraps> 80106bbb <vector207>: .globl vector207 vector207: pushl $0 80106bbb: 6a 00 push $0x0 pushl $207 80106bbd: 68 cf 00 00 00 push $0xcf jmp alltraps 80106bc2: e9 f0 f2 ff ff jmp 80105eb7 <alltraps> 80106bc7 <vector208>: .globl vector208 vector208: pushl $0 80106bc7: 6a 00 push $0x0 pushl $208 80106bc9: 68 d0 00 00 00 push $0xd0 jmp alltraps 80106bce: e9 e4 f2 ff ff jmp 80105eb7 <alltraps> 80106bd3 <vector209>: .globl vector209 vector209: pushl $0 80106bd3: 6a 00 push $0x0 pushl $209 80106bd5: 68 d1 00 00 00 push $0xd1 jmp alltraps 80106bda: e9 d8 f2 ff ff jmp 80105eb7 <alltraps> 80106bdf <vector210>: .globl vector210 vector210: pushl $0 80106bdf: 6a 00 push $0x0 pushl $210 80106be1: 68 d2 00 00 00 push $0xd2 jmp alltraps 80106be6: e9 cc f2 ff ff jmp 80105eb7 <alltraps> 80106beb <vector211>: .globl vector211 vector211: pushl $0 80106beb: 6a 00 push $0x0 pushl $211 80106bed: 68 d3 00 00 00 push $0xd3 jmp alltraps 80106bf2: e9 c0 f2 ff ff jmp 80105eb7 <alltraps> 80106bf7 <vector212>: .globl vector212 vector212: pushl $0 80106bf7: 6a 00 push $0x0 pushl $212 80106bf9: 68 d4 00 00 00 push $0xd4 jmp alltraps 80106bfe: e9 b4 f2 ff ff jmp 80105eb7 <alltraps> 80106c03 <vector213>: .globl vector213 vector213: pushl $0 80106c03: 6a 00 push $0x0 pushl $213 80106c05: 68 d5 00 00 00 push $0xd5 jmp alltraps 80106c0a: e9 a8 f2 ff ff jmp 80105eb7 <alltraps> 80106c0f <vector214>: .globl vector214 vector214: pushl $0 80106c0f: 6a 00 push $0x0 pushl $214 80106c11: 68 d6 00 00 00 push $0xd6 jmp alltraps 80106c16: e9 9c f2 ff ff jmp 80105eb7 <alltraps> 80106c1b <vector215>: .globl vector215 vector215: pushl $0 80106c1b: 6a 00 push $0x0 pushl $215 80106c1d: 68 d7 00 00 00 push $0xd7 jmp alltraps 80106c22: e9 90 f2 ff ff jmp 80105eb7 <alltraps> 80106c27 <vector216>: .globl vector216 vector216: pushl $0 80106c27: 6a 00 push $0x0 pushl $216 80106c29: 68 d8 00 00 00 push $0xd8 jmp alltraps 80106c2e: e9 84 f2 ff ff jmp 80105eb7 <alltraps> 80106c33 <vector217>: .globl vector217 vector217: pushl $0 80106c33: 6a 00 push $0x0 pushl $217 80106c35: 68 d9 00 00 00 push $0xd9 jmp alltraps 80106c3a: e9 78 f2 ff ff jmp 80105eb7 <alltraps> 80106c3f <vector218>: .globl vector218 vector218: pushl $0 80106c3f: 6a 00 push $0x0 pushl $218 80106c41: 68 da 00 00 00 push $0xda jmp alltraps 80106c46: e9 6c f2 ff ff jmp 80105eb7 <alltraps> 80106c4b <vector219>: .globl vector219 vector219: pushl $0 80106c4b: 6a 00 push $0x0 pushl $219 80106c4d: 68 db 00 00 00 push $0xdb jmp alltraps 80106c52: e9 60 f2 ff ff jmp 80105eb7 <alltraps> 80106c57 <vector220>: .globl vector220 vector220: pushl $0 80106c57: 6a 00 push $0x0 pushl $220 80106c59: 68 dc 00 00 00 push $0xdc jmp alltraps 80106c5e: e9 54 f2 ff ff jmp 80105eb7 <alltraps> 80106c63 <vector221>: .globl vector221 vector221: pushl $0 80106c63: 6a 00 push $0x0 pushl $221 80106c65: 68 dd 00 00 00 push $0xdd jmp alltraps 80106c6a: e9 48 f2 ff ff jmp 80105eb7 <alltraps> 80106c6f <vector222>: .globl vector222 vector222: pushl $0 80106c6f: 6a 00 push $0x0 pushl $222 80106c71: 68 de 00 00 00 push $0xde jmp alltraps 80106c76: e9 3c f2 ff ff jmp 80105eb7 <alltraps> 80106c7b <vector223>: .globl vector223 vector223: pushl $0 80106c7b: 6a 00 push $0x0 pushl $223 80106c7d: 68 df 00 00 00 push $0xdf jmp alltraps 80106c82: e9 30 f2 ff ff jmp 80105eb7 <alltraps> 80106c87 <vector224>: .globl vector224 vector224: pushl $0 80106c87: 6a 00 push $0x0 pushl $224 80106c89: 68 e0 00 00 00 push $0xe0 jmp alltraps 80106c8e: e9 24 f2 ff ff jmp 80105eb7 <alltraps> 80106c93 <vector225>: .globl vector225 vector225: pushl $0 80106c93: 6a 00 push $0x0 pushl $225 80106c95: 68 e1 00 00 00 push $0xe1 jmp alltraps 80106c9a: e9 18 f2 ff ff jmp 80105eb7 <alltraps> 80106c9f <vector226>: .globl vector226 vector226: pushl $0 80106c9f: 6a 00 push $0x0 pushl $226 80106ca1: 68 e2 00 00 00 push $0xe2 jmp alltraps 80106ca6: e9 0c f2 ff ff jmp 80105eb7 <alltraps> 80106cab <vector227>: .globl vector227 vector227: pushl $0 80106cab: 6a 00 push $0x0 pushl $227 80106cad: 68 e3 00 00 00 push $0xe3 jmp alltraps 80106cb2: e9 00 f2 ff ff jmp 80105eb7 <alltraps> 80106cb7 <vector228>: .globl vector228 vector228: pushl $0 80106cb7: 6a 00 push $0x0 pushl $228 80106cb9: 68 e4 00 00 00 push $0xe4 jmp alltraps 80106cbe: e9 f4 f1 ff ff jmp 80105eb7 <alltraps> 80106cc3 <vector229>: .globl vector229 vector229: pushl $0 80106cc3: 6a 00 push $0x0 pushl $229 80106cc5: 68 e5 00 00 00 push $0xe5 jmp alltraps 80106cca: e9 e8 f1 ff ff jmp 80105eb7 <alltraps> 80106ccf <vector230>: .globl vector230 vector230: pushl $0 80106ccf: 6a 00 push $0x0 pushl $230 80106cd1: 68 e6 00 00 00 push $0xe6 jmp alltraps 80106cd6: e9 dc f1 ff ff jmp 80105eb7 <alltraps> 80106cdb <vector231>: .globl vector231 vector231: pushl $0 80106cdb: 6a 00 push $0x0 pushl $231 80106cdd: 68 e7 00 00 00 push $0xe7 jmp alltraps 80106ce2: e9 d0 f1 ff ff jmp 80105eb7 <alltraps> 80106ce7 <vector232>: .globl vector232 vector232: pushl $0 80106ce7: 6a 00 push $0x0 pushl $232 80106ce9: 68 e8 00 00 00 push $0xe8 jmp alltraps 80106cee: e9 c4 f1 ff ff jmp 80105eb7 <alltraps> 80106cf3 <vector233>: .globl vector233 vector233: pushl $0 80106cf3: 6a 00 push $0x0 pushl $233 80106cf5: 68 e9 00 00 00 push $0xe9 jmp alltraps 80106cfa: e9 b8 f1 ff ff jmp 80105eb7 <alltraps> 80106cff <vector234>: .globl vector234 vector234: pushl $0 80106cff: 6a 00 push $0x0 pushl $234 80106d01: 68 ea 00 00 00 push $0xea jmp alltraps 80106d06: e9 ac f1 ff ff jmp 80105eb7 <alltraps> 80106d0b <vector235>: .globl vector235 vector235: pushl $0 80106d0b: 6a 00 push $0x0 pushl $235 80106d0d: 68 eb 00 00 00 push $0xeb jmp alltraps 80106d12: e9 a0 f1 ff ff jmp 80105eb7 <alltraps> 80106d17 <vector236>: .globl vector236 vector236: pushl $0 80106d17: 6a 00 push $0x0 pushl $236 80106d19: 68 ec 00 00 00 push $0xec jmp alltraps 80106d1e: e9 94 f1 ff ff jmp 80105eb7 <alltraps> 80106d23 <vector237>: .globl vector237 vector237: pushl $0 80106d23: 6a 00 push $0x0 pushl $237 80106d25: 68 ed 00 00 00 push $0xed jmp alltraps 80106d2a: e9 88 f1 ff ff jmp 80105eb7 <alltraps> 80106d2f <vector238>: .globl vector238 vector238: pushl $0 80106d2f: 6a 00 push $0x0 pushl $238 80106d31: 68 ee 00 00 00 push $0xee jmp alltraps 80106d36: e9 7c f1 ff ff jmp 80105eb7 <alltraps> 80106d3b <vector239>: .globl vector239 vector239: pushl $0 80106d3b: 6a 00 push $0x0 pushl $239 80106d3d: 68 ef 00 00 00 push $0xef jmp alltraps 80106d42: e9 70 f1 ff ff jmp 80105eb7 <alltraps> 80106d47 <vector240>: .globl vector240 vector240: pushl $0 80106d47: 6a 00 push $0x0 pushl $240 80106d49: 68 f0 00 00 00 push $0xf0 jmp alltraps 80106d4e: e9 64 f1 ff ff jmp 80105eb7 <alltraps> 80106d53 <vector241>: .globl vector241 vector241: pushl $0 80106d53: 6a 00 push $0x0 pushl $241 80106d55: 68 f1 00 00 00 push $0xf1 jmp alltraps 80106d5a: e9 58 f1 ff ff jmp 80105eb7 <alltraps> 80106d5f <vector242>: .globl vector242 vector242: pushl $0 80106d5f: 6a 00 push $0x0 pushl $242 80106d61: 68 f2 00 00 00 push $0xf2 jmp alltraps 80106d66: e9 4c f1 ff ff jmp 80105eb7 <alltraps> 80106d6b <vector243>: .globl vector243 vector243: pushl $0 80106d6b: 6a 00 push $0x0 pushl $243 80106d6d: 68 f3 00 00 00 push $0xf3 jmp alltraps 80106d72: e9 40 f1 ff ff jmp 80105eb7 <alltraps> 80106d77 <vector244>: .globl vector244 vector244: pushl $0 80106d77: 6a 00 push $0x0 pushl $244 80106d79: 68 f4 00 00 00 push $0xf4 jmp alltraps 80106d7e: e9 34 f1 ff ff jmp 80105eb7 <alltraps> 80106d83 <vector245>: .globl vector245 vector245: pushl $0 80106d83: 6a 00 push $0x0 pushl $245 80106d85: 68 f5 00 00 00 push $0xf5 jmp alltraps 80106d8a: e9 28 f1 ff ff jmp 80105eb7 <alltraps> 80106d8f <vector246>: .globl vector246 vector246: pushl $0 80106d8f: 6a 00 push $0x0 pushl $246 80106d91: 68 f6 00 00 00 push $0xf6 jmp alltraps 80106d96: e9 1c f1 ff ff jmp 80105eb7 <alltraps> 80106d9b <vector247>: .globl vector247 vector247: pushl $0 80106d9b: 6a 00 push $0x0 pushl $247 80106d9d: 68 f7 00 00 00 push $0xf7 jmp alltraps 80106da2: e9 10 f1 ff ff jmp 80105eb7 <alltraps> 80106da7 <vector248>: .globl vector248 vector248: pushl $0 80106da7: 6a 00 push $0x0 pushl $248 80106da9: 68 f8 00 00 00 push $0xf8 jmp alltraps 80106dae: e9 04 f1 ff ff jmp 80105eb7 <alltraps> 80106db3 <vector249>: .globl vector249 vector249: pushl $0 80106db3: 6a 00 push $0x0 pushl $249 80106db5: 68 f9 00 00 00 push $0xf9 jmp alltraps 80106dba: e9 f8 f0 ff ff jmp 80105eb7 <alltraps> 80106dbf <vector250>: .globl vector250 vector250: pushl $0 80106dbf: 6a 00 push $0x0 pushl $250 80106dc1: 68 fa 00 00 00 push $0xfa jmp alltraps 80106dc6: e9 ec f0 ff ff jmp 80105eb7 <alltraps> 80106dcb <vector251>: .globl vector251 vector251: pushl $0 80106dcb: 6a 00 push $0x0 pushl $251 80106dcd: 68 fb 00 00 00 push $0xfb jmp alltraps 80106dd2: e9 e0 f0 ff ff jmp 80105eb7 <alltraps> 80106dd7 <vector252>: .globl vector252 vector252: pushl $0 80106dd7: 6a 00 push $0x0 pushl $252 80106dd9: 68 fc 00 00 00 push $0xfc jmp alltraps 80106dde: e9 d4 f0 ff ff jmp 80105eb7 <alltraps> 80106de3 <vector253>: .globl vector253 vector253: pushl $0 80106de3: 6a 00 push $0x0 pushl $253 80106de5: 68 fd 00 00 00 push $0xfd jmp alltraps 80106dea: e9 c8 f0 ff ff jmp 80105eb7 <alltraps> 80106def <vector254>: .globl vector254 vector254: pushl $0 80106def: 6a 00 push $0x0 pushl $254 80106df1: 68 fe 00 00 00 push $0xfe jmp alltraps 80106df6: e9 bc f0 ff ff jmp 80105eb7 <alltraps> 80106dfb <vector255>: .globl vector255 vector255: pushl $0 80106dfb: 6a 00 push $0x0 pushl $255 80106dfd: 68 ff 00 00 00 push $0xff jmp alltraps 80106e02: e9 b0 f0 ff ff jmp 80105eb7 <alltraps> 80106e07: 66 90 xchg %ax,%ax 80106e09: 66 90 xchg %ax,%ax 80106e0b: 66 90 xchg %ax,%ax 80106e0d: 66 90 xchg %ax,%ax 80106e0f: 90 nop 80106e10 <walkpgdir>: // Return the address of the PTE in page table pgdir // that corresponds to virtual address va. If alloc!=0, // create any required page table pages. static pte_t * walkpgdir(pde_t *pgdir, const void *va, int alloc) { 80106e10: 55 push %ebp 80106e11: 89 e5 mov %esp,%ebp 80106e13: 57 push %edi 80106e14: 56 push %esi 80106e15: 53 push %ebx pde_t *pde; pte_t *pgtab; pde = &pgdir[PDX(va)]; 80106e16: 89 d3 mov %edx,%ebx { 80106e18: 89 d7 mov %edx,%edi pde = &pgdir[PDX(va)]; 80106e1a: c1 eb 16 shr $0x16,%ebx 80106e1d: 8d 34 98 lea (%eax,%ebx,4),%esi { 80106e20: 83 ec 0c sub $0xc,%esp if(*pde & PTE_P){ 80106e23: 8b 06 mov (%esi),%eax 80106e25: a8 01 test $0x1,%al 80106e27: 74 27 je 80106e50 <walkpgdir+0x40> pgtab = (pte_t*)P2V(PTE_ADDR(*pde)); 80106e29: 25 00 f0 ff ff and $0xfffff000,%eax 80106e2e: 8d 98 00 00 00 80 lea -0x80000000(%eax),%ebx // The permissions here are overly generous, but they can // be further restricted by the permissions in the page table // entries, if necessary. *pde = V2P(pgtab) | PTE_P | PTE_W | PTE_U; } return &pgtab[PTX(va)]; 80106e34: c1 ef 0a shr $0xa,%edi } 80106e37: 8d 65 f4 lea -0xc(%ebp),%esp return &pgtab[PTX(va)]; 80106e3a: 89 fa mov %edi,%edx 80106e3c: 81 e2 fc 0f 00 00 and $0xffc,%edx 80106e42: 8d 04 13 lea (%ebx,%edx,1),%eax } 80106e45: 5b pop %ebx 80106e46: 5e pop %esi 80106e47: 5f pop %edi 80106e48: 5d pop %ebp 80106e49: c3 ret 80106e4a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi if(!alloc || (pgtab = (pte_t*)kalloc()) == 0) 80106e50: 85 c9 test %ecx,%ecx 80106e52: 74 2c je 80106e80 <walkpgdir+0x70> 80106e54: e8 67 b6 ff ff call 801024c0 <kalloc> 80106e59: 85 c0 test %eax,%eax 80106e5b: 89 c3 mov %eax,%ebx 80106e5d: 74 21 je 80106e80 <walkpgdir+0x70> memset(pgtab, 0, PGSIZE); 80106e5f: 83 ec 04 sub $0x4,%esp 80106e62: 68 00 10 00 00 push $0x1000 80106e67: 6a 00 push $0x0 80106e69: 50 push %eax 80106e6a: e8 21 d7 ff ff call 80104590 <memset> *pde = V2P(pgtab) | PTE_P | PTE_W | PTE_U; 80106e6f: 8d 83 00 00 00 80 lea -0x80000000(%ebx),%eax 80106e75: 83 c4 10 add $0x10,%esp 80106e78: 83 c8 07 or $0x7,%eax 80106e7b: 89 06 mov %eax,(%esi) 80106e7d: eb b5 jmp 80106e34 <walkpgdir+0x24> 80106e7f: 90 nop } 80106e80: 8d 65 f4 lea -0xc(%ebp),%esp return 0; 80106e83: 31 c0 xor %eax,%eax } 80106e85: 5b pop %ebx 80106e86: 5e pop %esi 80106e87: 5f pop %edi 80106e88: 5d pop %ebp 80106e89: c3 ret 80106e8a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 80106e90 <mappages>: // Create PTEs for virtual addresses starting at va that refer to // physical addresses starting at pa. va and size might not // be page-aligned. static int mappages(pde_t *pgdir, void *va, uint size, uint pa, int perm) { 80106e90: 55 push %ebp 80106e91: 89 e5 mov %esp,%ebp 80106e93: 57 push %edi 80106e94: 56 push %esi 80106e95: 53 push %ebx char *a, *last; pte_t *pte; a = (char*)PGROUNDDOWN((uint)va); 80106e96: 89 d3 mov %edx,%ebx 80106e98: 81 e3 00 f0 ff ff and $0xfffff000,%ebx { 80106e9e: 83 ec 1c sub $0x1c,%esp 80106ea1: 89 45 e4 mov %eax,-0x1c(%ebp) last = (char*)PGROUNDDOWN(((uint)va) + size - 1); 80106ea4: 8d 44 0a ff lea -0x1(%edx,%ecx,1),%eax 80106ea8: 8b 7d 08 mov 0x8(%ebp),%edi 80106eab: 25 00 f0 ff ff and $0xfffff000,%eax 80106eb0: 89 45 e0 mov %eax,-0x20(%ebp) for(;;){ if((pte = walkpgdir(pgdir, a, 1)) == 0) return -1; if(*pte & PTE_P) panic("remap"); *pte = pa | perm | PTE_P; 80106eb3: 8b 45 0c mov 0xc(%ebp),%eax 80106eb6: 29 df sub %ebx,%edi 80106eb8: 83 c8 01 or $0x1,%eax 80106ebb: 89 45 dc mov %eax,-0x24(%ebp) 80106ebe: eb 15 jmp 80106ed5 <mappages+0x45> if(*pte & PTE_P) 80106ec0: f6 00 01 testb $0x1,(%eax) 80106ec3: 75 45 jne 80106f0a <mappages+0x7a> *pte = pa | perm | PTE_P; 80106ec5: 0b 75 dc or -0x24(%ebp),%esi if(a == last) 80106ec8: 3b 5d e0 cmp -0x20(%ebp),%ebx *pte = pa | perm | PTE_P; 80106ecb: 89 30 mov %esi,(%eax) if(a == last) 80106ecd: 74 31 je 80106f00 <mappages+0x70> break; a += PGSIZE; 80106ecf: 81 c3 00 10 00 00 add $0x1000,%ebx if((pte = walkpgdir(pgdir, a, 1)) == 0) 80106ed5: 8b 45 e4 mov -0x1c(%ebp),%eax 80106ed8: b9 01 00 00 00 mov $0x1,%ecx 80106edd: 89 da mov %ebx,%edx 80106edf: 8d 34 3b lea (%ebx,%edi,1),%esi 80106ee2: e8 29 ff ff ff call 80106e10 <walkpgdir> 80106ee7: 85 c0 test %eax,%eax 80106ee9: 75 d5 jne 80106ec0 <mappages+0x30> pa += PGSIZE; } return 0; } 80106eeb: 8d 65 f4 lea -0xc(%ebp),%esp return -1; 80106eee: b8 ff ff ff ff mov $0xffffffff,%eax } 80106ef3: 5b pop %ebx 80106ef4: 5e pop %esi 80106ef5: 5f pop %edi 80106ef6: 5d pop %ebp 80106ef7: c3 ret 80106ef8: 90 nop 80106ef9: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80106f00: 8d 65 f4 lea -0xc(%ebp),%esp return 0; 80106f03: 31 c0 xor %eax,%eax } 80106f05: 5b pop %ebx 80106f06: 5e pop %esi 80106f07: 5f pop %edi 80106f08: 5d pop %ebp 80106f09: c3 ret panic("remap"); 80106f0a: 83 ec 0c sub $0xc,%esp 80106f0d: 68 c4 81 10 80 push $0x801081c4 80106f12: e8 79 94 ff ff call 80100390 <panic> 80106f17: 89 f6 mov %esi,%esi 80106f19: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80106f20 <deallocuvm.part.0>: // Deallocate user pages to bring the process size from oldsz to // newsz. oldsz and newsz need not be page-aligned, nor does newsz // need to be less than oldsz. oldsz can be larger than the actual // process size. Returns the new process size. int deallocuvm(pde_t *pgdir, uint oldsz, uint newsz) 80106f20: 55 push %ebp 80106f21: 89 e5 mov %esp,%ebp 80106f23: 57 push %edi 80106f24: 56 push %esi 80106f25: 53 push %ebx uint a, pa; if(newsz >= oldsz) return oldsz; a = PGROUNDUP(newsz); 80106f26: 8d 99 ff 0f 00 00 lea 0xfff(%ecx),%ebx deallocuvm(pde_t *pgdir, uint oldsz, uint newsz) 80106f2c: 89 c7 mov %eax,%edi a = PGROUNDUP(newsz); 80106f2e: 81 e3 00 f0 ff ff and $0xfffff000,%ebx deallocuvm(pde_t *pgdir, uint oldsz, uint newsz) 80106f34: 83 ec 1c sub $0x1c,%esp 80106f37: 89 4d e0 mov %ecx,-0x20(%ebp) for(; a < oldsz; a += PGSIZE){ 80106f3a: 39 d3 cmp %edx,%ebx 80106f3c: 73 66 jae 80106fa4 <deallocuvm.part.0+0x84> 80106f3e: 89 d6 mov %edx,%esi 80106f40: eb 3d jmp 80106f7f <deallocuvm.part.0+0x5f> 80106f42: 8d b6 00 00 00 00 lea 0x0(%esi),%esi pte = walkpgdir(pgdir, (char*)a, 0); if(!pte) a = PGADDR(PDX(a) + 1, 0, 0) - PGSIZE; else if((*pte & PTE_P) != 0){ 80106f48: 8b 10 mov (%eax),%edx 80106f4a: f6 c2 01 test $0x1,%dl 80106f4d: 74 26 je 80106f75 <deallocuvm.part.0+0x55> pa = PTE_ADDR(*pte); if(pa == 0) 80106f4f: 81 e2 00 f0 ff ff and $0xfffff000,%edx 80106f55: 74 58 je 80106faf <deallocuvm.part.0+0x8f> panic("kfree"); char *v = P2V(pa); kfree(v); 80106f57: 83 ec 0c sub $0xc,%esp char *v = P2V(pa); 80106f5a: 81 c2 00 00 00 80 add $0x80000000,%edx 80106f60: 89 45 e4 mov %eax,-0x1c(%ebp) kfree(v); 80106f63: 52 push %edx 80106f64: e8 a7 b3 ff ff call 80102310 <kfree> *pte = 0; 80106f69: 8b 45 e4 mov -0x1c(%ebp),%eax 80106f6c: 83 c4 10 add $0x10,%esp 80106f6f: c7 00 00 00 00 00 movl $0x0,(%eax) for(; a < oldsz; a += PGSIZE){ 80106f75: 81 c3 00 10 00 00 add $0x1000,%ebx 80106f7b: 39 f3 cmp %esi,%ebx 80106f7d: 73 25 jae 80106fa4 <deallocuvm.part.0+0x84> pte = walkpgdir(pgdir, (char*)a, 0); 80106f7f: 31 c9 xor %ecx,%ecx 80106f81: 89 da mov %ebx,%edx 80106f83: 89 f8 mov %edi,%eax 80106f85: e8 86 fe ff ff call 80106e10 <walkpgdir> if(!pte) 80106f8a: 85 c0 test %eax,%eax 80106f8c: 75 ba jne 80106f48 <deallocuvm.part.0+0x28> a = PGADDR(PDX(a) + 1, 0, 0) - PGSIZE; 80106f8e: 81 e3 00 00 c0 ff and $0xffc00000,%ebx 80106f94: 81 c3 00 f0 3f 00 add $0x3ff000,%ebx for(; a < oldsz; a += PGSIZE){ 80106f9a: 81 c3 00 10 00 00 add $0x1000,%ebx 80106fa0: 39 f3 cmp %esi,%ebx 80106fa2: 72 db jb 80106f7f <deallocuvm.part.0+0x5f> } } return newsz; } 80106fa4: 8b 45 e0 mov -0x20(%ebp),%eax 80106fa7: 8d 65 f4 lea -0xc(%ebp),%esp 80106faa: 5b pop %ebx 80106fab: 5e pop %esi 80106fac: 5f pop %edi 80106fad: 5d pop %ebp 80106fae: c3 ret panic("kfree"); 80106faf: 83 ec 0c sub $0xc,%esp 80106fb2: 68 a6 79 10 80 push $0x801079a6 80106fb7: e8 d4 93 ff ff call 80100390 <panic> 80106fbc: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80106fc0 <seginit>: { 80106fc0: 55 push %ebp 80106fc1: 89 e5 mov %esp,%ebp 80106fc3: 83 ec 18 sub $0x18,%esp c = &cpus[cpuid()]; 80106fc6: e8 f5 c7 ff ff call 801037c0 <cpuid> 80106fcb: 69 c0 b0 00 00 00 imul $0xb0,%eax,%eax pd[0] = size-1; 80106fd1: ba 2f 00 00 00 mov $0x2f,%edx 80106fd6: 66 89 55 f2 mov %dx,-0xe(%ebp) c->gdt[SEG_KCODE] = SEG(STA_X|STA_R, 0, 0xffffffff, 0); 80106fda: c7 80 f8 37 11 80 ff movl $0xffff,-0x7feec808(%eax) 80106fe1: ff 00 00 80106fe4: c7 80 fc 37 11 80 00 movl $0xcf9a00,-0x7feec804(%eax) 80106feb: 9a cf 00 c->gdt[SEG_KDATA] = SEG(STA_W, 0, 0xffffffff, 0); 80106fee: c7 80 00 38 11 80 ff movl $0xffff,-0x7feec800(%eax) 80106ff5: ff 00 00 80106ff8: c7 80 04 38 11 80 00 movl $0xcf9200,-0x7feec7fc(%eax) 80106fff: 92 cf 00 c->gdt[SEG_UCODE] = SEG(STA_X|STA_R, 0, 0xffffffff, DPL_USER); 80107002: c7 80 08 38 11 80 ff movl $0xffff,-0x7feec7f8(%eax) 80107009: ff 00 00 8010700c: c7 80 0c 38 11 80 00 movl $0xcffa00,-0x7feec7f4(%eax) 80107013: fa cf 00 c->gdt[SEG_UDATA] = SEG(STA_W, 0, 0xffffffff, DPL_USER); 80107016: c7 80 10 38 11 80 ff movl $0xffff,-0x7feec7f0(%eax) 8010701d: ff 00 00 80107020: c7 80 14 38 11 80 00 movl $0xcff200,-0x7feec7ec(%eax) 80107027: f2 cf 00 lgdt(c->gdt, sizeof(c->gdt)); 8010702a: 05 f0 37 11 80 add $0x801137f0,%eax pd[1] = (uint)p; 8010702f: 66 89 45 f4 mov %ax,-0xc(%ebp) pd[2] = (uint)p >> 16; 80107033: c1 e8 10 shr $0x10,%eax 80107036: 66 89 45 f6 mov %ax,-0xa(%ebp) asm volatile("lgdt (%0)" : : "r" (pd)); 8010703a: 8d 45 f2 lea -0xe(%ebp),%eax 8010703d: 0f 01 10 lgdtl (%eax) } 80107040: c9 leave 80107041: c3 ret 80107042: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80107049: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80107050 <switchkvm>: lcr3(V2P(kpgdir)); // switch to the kernel page table 80107050: a1 84 61 11 80 mov 0x80116184,%eax { 80107055: 55 push %ebp 80107056: 89 e5 mov %esp,%ebp lcr3(V2P(kpgdir)); // switch to the kernel page table 80107058: 05 00 00 00 80 add $0x80000000,%eax } static inline void lcr3(uint val) { asm volatile("movl %0,%%cr3" : : "r" (val)); 8010705d: 0f 22 d8 mov %eax,%cr3 } 80107060: 5d pop %ebp 80107061: c3 ret 80107062: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80107069: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80107070 <switchuvm>: { 80107070: 55 push %ebp 80107071: 89 e5 mov %esp,%ebp 80107073: 57 push %edi 80107074: 56 push %esi 80107075: 53 push %ebx 80107076: 83 ec 1c sub $0x1c,%esp 80107079: 8b 5d 08 mov 0x8(%ebp),%ebx if(p == 0) 8010707c: 85 db test %ebx,%ebx 8010707e: 0f 84 cb 00 00 00 je 8010714f <switchuvm+0xdf> if(p->kstack == 0) 80107084: 8b 43 08 mov 0x8(%ebx),%eax 80107087: 85 c0 test %eax,%eax 80107089: 0f 84 da 00 00 00 je 80107169 <switchuvm+0xf9> if(p->pgdir == 0) 8010708f: 8b 43 04 mov 0x4(%ebx),%eax 80107092: 85 c0 test %eax,%eax 80107094: 0f 84 c2 00 00 00 je 8010715c <switchuvm+0xec> pushcli(); 8010709a: e8 11 d3 ff ff call 801043b0 <pushcli> mycpu()->gdt[SEG_TSS] = SEG16(STS_T32A, &mycpu()->ts, 8010709f: e8 ac c6 ff ff call 80103750 <mycpu> 801070a4: 89 c6 mov %eax,%esi 801070a6: e8 a5 c6 ff ff call 80103750 <mycpu> 801070ab: 89 c7 mov %eax,%edi 801070ad: e8 9e c6 ff ff call 80103750 <mycpu> 801070b2: 89 45 e4 mov %eax,-0x1c(%ebp) 801070b5: 83 c7 08 add $0x8,%edi 801070b8: e8 93 c6 ff ff call 80103750 <mycpu> 801070bd: 8b 4d e4 mov -0x1c(%ebp),%ecx 801070c0: 83 c0 08 add $0x8,%eax 801070c3: ba 67 00 00 00 mov $0x67,%edx 801070c8: c1 e8 18 shr $0x18,%eax 801070cb: 66 89 96 98 00 00 00 mov %dx,0x98(%esi) 801070d2: 66 89 be 9a 00 00 00 mov %di,0x9a(%esi) 801070d9: 88 86 9f 00 00 00 mov %al,0x9f(%esi) mycpu()->ts.iomb = (ushort) 0xFFFF; 801070df: bf ff ff ff ff mov $0xffffffff,%edi mycpu()->gdt[SEG_TSS] = SEG16(STS_T32A, &mycpu()->ts, 801070e4: 83 c1 08 add $0x8,%ecx 801070e7: c1 e9 10 shr $0x10,%ecx 801070ea: 88 8e 9c 00 00 00 mov %cl,0x9c(%esi) 801070f0: b9 99 40 00 00 mov $0x4099,%ecx 801070f5: 66 89 8e 9d 00 00 00 mov %cx,0x9d(%esi) mycpu()->ts.ss0 = SEG_KDATA << 3; 801070fc: be 10 00 00 00 mov $0x10,%esi mycpu()->gdt[SEG_TSS].s = 0; 80107101: e8 4a c6 ff ff call 80103750 <mycpu> 80107106: 80 a0 9d 00 00 00 ef andb $0xef,0x9d(%eax) mycpu()->ts.ss0 = SEG_KDATA << 3; 8010710d: e8 3e c6 ff ff call 80103750 <mycpu> 80107112: 66 89 70 10 mov %si,0x10(%eax) mycpu()->ts.esp0 = (uint)p->kstack + KSTACKSIZE; 80107116: 8b 73 08 mov 0x8(%ebx),%esi 80107119: e8 32 c6 ff ff call 80103750 <mycpu> 8010711e: 81 c6 00 10 00 00 add $0x1000,%esi 80107124: 89 70 0c mov %esi,0xc(%eax) mycpu()->ts.iomb = (ushort) 0xFFFF; 80107127: e8 24 c6 ff ff call 80103750 <mycpu> 8010712c: 66 89 78 6e mov %di,0x6e(%eax) asm volatile("ltr %0" : : "r" (sel)); 80107130: b8 28 00 00 00 mov $0x28,%eax 80107135: 0f 00 d8 ltr %ax lcr3(V2P(p->pgdir)); // switch to process's address space 80107138: 8b 43 04 mov 0x4(%ebx),%eax 8010713b: 05 00 00 00 80 add $0x80000000,%eax asm volatile("movl %0,%%cr3" : : "r" (val)); 80107140: 0f 22 d8 mov %eax,%cr3 } 80107143: 8d 65 f4 lea -0xc(%ebp),%esp 80107146: 5b pop %ebx 80107147: 5e pop %esi 80107148: 5f pop %edi 80107149: 5d pop %ebp popcli(); 8010714a: e9 a1 d2 ff ff jmp 801043f0 <popcli> panic("switchuvm: no process"); 8010714f: 83 ec 0c sub $0xc,%esp 80107152: 68 ca 81 10 80 push $0x801081ca 80107157: e8 34 92 ff ff call 80100390 <panic> panic("switchuvm: no pgdir"); 8010715c: 83 ec 0c sub $0xc,%esp 8010715f: 68 f5 81 10 80 push $0x801081f5 80107164: e8 27 92 ff ff call 80100390 <panic> panic("switchuvm: no kstack"); 80107169: 83 ec 0c sub $0xc,%esp 8010716c: 68 e0 81 10 80 push $0x801081e0 80107171: e8 1a 92 ff ff call 80100390 <panic> 80107176: 8d 76 00 lea 0x0(%esi),%esi 80107179: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80107180 <inituvm>: { 80107180: 55 push %ebp 80107181: 89 e5 mov %esp,%ebp 80107183: 57 push %edi 80107184: 56 push %esi 80107185: 53 push %ebx 80107186: 83 ec 1c sub $0x1c,%esp 80107189: 8b 75 10 mov 0x10(%ebp),%esi 8010718c: 8b 45 08 mov 0x8(%ebp),%eax 8010718f: 8b 7d 0c mov 0xc(%ebp),%edi if(sz >= PGSIZE) 80107192: 81 fe ff 0f 00 00 cmp $0xfff,%esi { 80107198: 89 45 e4 mov %eax,-0x1c(%ebp) if(sz >= PGSIZE) 8010719b: 77 49 ja 801071e6 <inituvm+0x66> mem = kalloc(); 8010719d: e8 1e b3 ff ff call 801024c0 <kalloc> memset(mem, 0, PGSIZE); 801071a2: 83 ec 04 sub $0x4,%esp mem = kalloc(); 801071a5: 89 c3 mov %eax,%ebx memset(mem, 0, PGSIZE); 801071a7: 68 00 10 00 00 push $0x1000 801071ac: 6a 00 push $0x0 801071ae: 50 push %eax 801071af: e8 dc d3 ff ff call 80104590 <memset> mappages(pgdir, 0, PGSIZE, V2P(mem), PTE_W|PTE_U); 801071b4: 58 pop %eax 801071b5: 8d 83 00 00 00 80 lea -0x80000000(%ebx),%eax 801071bb: b9 00 10 00 00 mov $0x1000,%ecx 801071c0: 5a pop %edx 801071c1: 6a 06 push $0x6 801071c3: 50 push %eax 801071c4: 31 d2 xor %edx,%edx 801071c6: 8b 45 e4 mov -0x1c(%ebp),%eax 801071c9: e8 c2 fc ff ff call 80106e90 <mappages> memmove(mem, init, sz); 801071ce: 89 75 10 mov %esi,0x10(%ebp) 801071d1: 89 7d 0c mov %edi,0xc(%ebp) 801071d4: 83 c4 10 add $0x10,%esp 801071d7: 89 5d 08 mov %ebx,0x8(%ebp) } 801071da: 8d 65 f4 lea -0xc(%ebp),%esp 801071dd: 5b pop %ebx 801071de: 5e pop %esi 801071df: 5f pop %edi 801071e0: 5d pop %ebp memmove(mem, init, sz); 801071e1: e9 5a d4 ff ff jmp 80104640 <memmove> panic("inituvm: more than a page"); 801071e6: 83 ec 0c sub $0xc,%esp 801071e9: 68 09 82 10 80 push $0x80108209 801071ee: e8 9d 91 ff ff call 80100390 <panic> 801071f3: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 801071f9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80107200 <loaduvm>: { 80107200: 55 push %ebp 80107201: 89 e5 mov %esp,%ebp 80107203: 57 push %edi 80107204: 56 push %esi 80107205: 53 push %ebx 80107206: 83 ec 0c sub $0xc,%esp if((uint) addr % PGSIZE != 0) 80107209: f7 45 0c ff 0f 00 00 testl $0xfff,0xc(%ebp) 80107210: 0f 85 91 00 00 00 jne 801072a7 <loaduvm+0xa7> for(i = 0; i < sz; i += PGSIZE){ 80107216: 8b 75 18 mov 0x18(%ebp),%esi 80107219: 31 db xor %ebx,%ebx 8010721b: 85 f6 test %esi,%esi 8010721d: 75 1a jne 80107239 <loaduvm+0x39> 8010721f: eb 6f jmp 80107290 <loaduvm+0x90> 80107221: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80107228: 81 c3 00 10 00 00 add $0x1000,%ebx 8010722e: 81 ee 00 10 00 00 sub $0x1000,%esi 80107234: 39 5d 18 cmp %ebx,0x18(%ebp) 80107237: 76 57 jbe 80107290 <loaduvm+0x90> if((pte = walkpgdir(pgdir, addr+i, 0)) == 0) 80107239: 8b 55 0c mov 0xc(%ebp),%edx 8010723c: 8b 45 08 mov 0x8(%ebp),%eax 8010723f: 31 c9 xor %ecx,%ecx 80107241: 01 da add %ebx,%edx 80107243: e8 c8 fb ff ff call 80106e10 <walkpgdir> 80107248: 85 c0 test %eax,%eax 8010724a: 74 4e je 8010729a <loaduvm+0x9a> pa = PTE_ADDR(*pte); 8010724c: 8b 00 mov (%eax),%eax if(readi(ip, P2V(pa), offset+i, n) != n) 8010724e: 8b 4d 14 mov 0x14(%ebp),%ecx if(sz - i < PGSIZE) 80107251: bf 00 10 00 00 mov $0x1000,%edi pa = PTE_ADDR(*pte); 80107256: 25 00 f0 ff ff and $0xfffff000,%eax if(sz - i < PGSIZE) 8010725b: 81 fe ff 0f 00 00 cmp $0xfff,%esi 80107261: 0f 46 fe cmovbe %esi,%edi if(readi(ip, P2V(pa), offset+i, n) != n) 80107264: 01 d9 add %ebx,%ecx 80107266: 05 00 00 00 80 add $0x80000000,%eax 8010726b: 57 push %edi 8010726c: 51 push %ecx 8010726d: 50 push %eax 8010726e: ff 75 10 pushl 0x10(%ebp) 80107271: e8 ea a6 ff ff call 80101960 <readi> 80107276: 83 c4 10 add $0x10,%esp 80107279: 39 f8 cmp %edi,%eax 8010727b: 74 ab je 80107228 <loaduvm+0x28> } 8010727d: 8d 65 f4 lea -0xc(%ebp),%esp return -1; 80107280: b8 ff ff ff ff mov $0xffffffff,%eax } 80107285: 5b pop %ebx 80107286: 5e pop %esi 80107287: 5f pop %edi 80107288: 5d pop %ebp 80107289: c3 ret 8010728a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 80107290: 8d 65 f4 lea -0xc(%ebp),%esp return 0; 80107293: 31 c0 xor %eax,%eax } 80107295: 5b pop %ebx 80107296: 5e pop %esi 80107297: 5f pop %edi 80107298: 5d pop %ebp 80107299: c3 ret panic("loaduvm: address should exist"); 8010729a: 83 ec 0c sub $0xc,%esp 8010729d: 68 23 82 10 80 push $0x80108223 801072a2: e8 e9 90 ff ff call 80100390 <panic> panic("loaduvm: addr must be page aligned"); 801072a7: 83 ec 0c sub $0xc,%esp 801072aa: 68 c4 82 10 80 push $0x801082c4 801072af: e8 dc 90 ff ff call 80100390 <panic> 801072b4: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 801072ba: 8d bf 00 00 00 00 lea 0x0(%edi),%edi 801072c0 <allocuvm>: { 801072c0: 55 push %ebp 801072c1: 89 e5 mov %esp,%ebp 801072c3: 57 push %edi 801072c4: 56 push %esi 801072c5: 53 push %ebx 801072c6: 83 ec 1c sub $0x1c,%esp if(newsz >= KERNBASE) 801072c9: 8b 7d 10 mov 0x10(%ebp),%edi 801072cc: 85 ff test %edi,%edi 801072ce: 0f 88 8e 00 00 00 js 80107362 <allocuvm+0xa2> if(newsz < oldsz) 801072d4: 3b 7d 0c cmp 0xc(%ebp),%edi 801072d7: 0f 82 93 00 00 00 jb 80107370 <allocuvm+0xb0> a = PGROUNDUP(oldsz); 801072dd: 8b 45 0c mov 0xc(%ebp),%eax 801072e0: 8d 98 ff 0f 00 00 lea 0xfff(%eax),%ebx 801072e6: 81 e3 00 f0 ff ff and $0xfffff000,%ebx for(; a < newsz; a += PGSIZE){ 801072ec: 39 5d 10 cmp %ebx,0x10(%ebp) 801072ef: 0f 86 7e 00 00 00 jbe 80107373 <allocuvm+0xb3> 801072f5: 89 7d e4 mov %edi,-0x1c(%ebp) 801072f8: 8b 7d 08 mov 0x8(%ebp),%edi 801072fb: eb 42 jmp 8010733f <allocuvm+0x7f> 801072fd: 8d 76 00 lea 0x0(%esi),%esi memset(mem, 0, PGSIZE); 80107300: 83 ec 04 sub $0x4,%esp 80107303: 68 00 10 00 00 push $0x1000 80107308: 6a 00 push $0x0 8010730a: 50 push %eax 8010730b: e8 80 d2 ff ff call 80104590 <memset> if(mappages(pgdir, (char*)a, PGSIZE, V2P(mem), PTE_W|PTE_U) < 0){ 80107310: 58 pop %eax 80107311: 8d 86 00 00 00 80 lea -0x80000000(%esi),%eax 80107317: b9 00 10 00 00 mov $0x1000,%ecx 8010731c: 5a pop %edx 8010731d: 6a 06 push $0x6 8010731f: 50 push %eax 80107320: 89 da mov %ebx,%edx 80107322: 89 f8 mov %edi,%eax 80107324: e8 67 fb ff ff call 80106e90 <mappages> 80107329: 83 c4 10 add $0x10,%esp 8010732c: 85 c0 test %eax,%eax 8010732e: 78 50 js 80107380 <allocuvm+0xc0> for(; a < newsz; a += PGSIZE){ 80107330: 81 c3 00 10 00 00 add $0x1000,%ebx 80107336: 39 5d 10 cmp %ebx,0x10(%ebp) 80107339: 0f 86 81 00 00 00 jbe 801073c0 <allocuvm+0x100> mem = kalloc(); 8010733f: e8 7c b1 ff ff call 801024c0 <kalloc> if(mem == 0){ 80107344: 85 c0 test %eax,%eax mem = kalloc(); 80107346: 89 c6 mov %eax,%esi if(mem == 0){ 80107348: 75 b6 jne 80107300 <allocuvm+0x40> cprintf("allocuvm out of memory\n"); 8010734a: 83 ec 0c sub $0xc,%esp 8010734d: 68 41 82 10 80 push $0x80108241 80107352: e8 09 93 ff ff call 80100660 <cprintf> if(newsz >= oldsz) 80107357: 83 c4 10 add $0x10,%esp 8010735a: 8b 45 0c mov 0xc(%ebp),%eax 8010735d: 39 45 10 cmp %eax,0x10(%ebp) 80107360: 77 6e ja 801073d0 <allocuvm+0x110> } 80107362: 8d 65 f4 lea -0xc(%ebp),%esp return 0; 80107365: 31 ff xor %edi,%edi } 80107367: 89 f8 mov %edi,%eax 80107369: 5b pop %ebx 8010736a: 5e pop %esi 8010736b: 5f pop %edi 8010736c: 5d pop %ebp 8010736d: c3 ret 8010736e: 66 90 xchg %ax,%ax return oldsz; 80107370: 8b 7d 0c mov 0xc(%ebp),%edi } 80107373: 8d 65 f4 lea -0xc(%ebp),%esp 80107376: 89 f8 mov %edi,%eax 80107378: 5b pop %ebx 80107379: 5e pop %esi 8010737a: 5f pop %edi 8010737b: 5d pop %ebp 8010737c: c3 ret 8010737d: 8d 76 00 lea 0x0(%esi),%esi cprintf("allocuvm out of memory (2)\n"); 80107380: 83 ec 0c sub $0xc,%esp 80107383: 68 59 82 10 80 push $0x80108259 80107388: e8 d3 92 ff ff call 80100660 <cprintf> if(newsz >= oldsz) 8010738d: 83 c4 10 add $0x10,%esp 80107390: 8b 45 0c mov 0xc(%ebp),%eax 80107393: 39 45 10 cmp %eax,0x10(%ebp) 80107396: 76 0d jbe 801073a5 <allocuvm+0xe5> 80107398: 89 c1 mov %eax,%ecx 8010739a: 8b 55 10 mov 0x10(%ebp),%edx 8010739d: 8b 45 08 mov 0x8(%ebp),%eax 801073a0: e8 7b fb ff ff call 80106f20 <deallocuvm.part.0> kfree(mem); 801073a5: 83 ec 0c sub $0xc,%esp return 0; 801073a8: 31 ff xor %edi,%edi kfree(mem); 801073aa: 56 push %esi 801073ab: e8 60 af ff ff call 80102310 <kfree> return 0; 801073b0: 83 c4 10 add $0x10,%esp } 801073b3: 8d 65 f4 lea -0xc(%ebp),%esp 801073b6: 89 f8 mov %edi,%eax 801073b8: 5b pop %ebx 801073b9: 5e pop %esi 801073ba: 5f pop %edi 801073bb: 5d pop %ebp 801073bc: c3 ret 801073bd: 8d 76 00 lea 0x0(%esi),%esi 801073c0: 8b 7d e4 mov -0x1c(%ebp),%edi 801073c3: 8d 65 f4 lea -0xc(%ebp),%esp 801073c6: 5b pop %ebx 801073c7: 89 f8 mov %edi,%eax 801073c9: 5e pop %esi 801073ca: 5f pop %edi 801073cb: 5d pop %ebp 801073cc: c3 ret 801073cd: 8d 76 00 lea 0x0(%esi),%esi 801073d0: 89 c1 mov %eax,%ecx 801073d2: 8b 55 10 mov 0x10(%ebp),%edx 801073d5: 8b 45 08 mov 0x8(%ebp),%eax return 0; 801073d8: 31 ff xor %edi,%edi 801073da: e8 41 fb ff ff call 80106f20 <deallocuvm.part.0> 801073df: eb 92 jmp 80107373 <allocuvm+0xb3> 801073e1: eb 0d jmp 801073f0 <deallocuvm> 801073e3: 90 nop 801073e4: 90 nop 801073e5: 90 nop 801073e6: 90 nop 801073e7: 90 nop 801073e8: 90 nop 801073e9: 90 nop 801073ea: 90 nop 801073eb: 90 nop 801073ec: 90 nop 801073ed: 90 nop 801073ee: 90 nop 801073ef: 90 nop 801073f0 <deallocuvm>: { 801073f0: 55 push %ebp 801073f1: 89 e5 mov %esp,%ebp 801073f3: 8b 55 0c mov 0xc(%ebp),%edx 801073f6: 8b 4d 10 mov 0x10(%ebp),%ecx 801073f9: 8b 45 08 mov 0x8(%ebp),%eax if(newsz >= oldsz) 801073fc: 39 d1 cmp %edx,%ecx 801073fe: 73 10 jae 80107410 <deallocuvm+0x20> } 80107400: 5d pop %ebp 80107401: e9 1a fb ff ff jmp 80106f20 <deallocuvm.part.0> 80107406: 8d 76 00 lea 0x0(%esi),%esi 80107409: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80107410: 89 d0 mov %edx,%eax 80107412: 5d pop %ebp 80107413: c3 ret 80107414: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 8010741a: 8d bf 00 00 00 00 lea 0x0(%edi),%edi 80107420 <freevm>: // Free a page table and all the physical memory pages // in the user part. void freevm(pde_t *pgdir) { 80107420: 55 push %ebp 80107421: 89 e5 mov %esp,%ebp 80107423: 57 push %edi 80107424: 56 push %esi 80107425: 53 push %ebx 80107426: 83 ec 0c sub $0xc,%esp 80107429: 8b 75 08 mov 0x8(%ebp),%esi uint i; if(pgdir == 0) 8010742c: 85 f6 test %esi,%esi 8010742e: 74 59 je 80107489 <freevm+0x69> 80107430: 31 c9 xor %ecx,%ecx 80107432: ba 00 00 00 80 mov $0x80000000,%edx 80107437: 89 f0 mov %esi,%eax 80107439: e8 e2 fa ff ff call 80106f20 <deallocuvm.part.0> 8010743e: 89 f3 mov %esi,%ebx 80107440: 8d be 00 10 00 00 lea 0x1000(%esi),%edi 80107446: eb 0f jmp 80107457 <freevm+0x37> 80107448: 90 nop 80107449: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80107450: 83 c3 04 add $0x4,%ebx panic("freevm: no pgdir"); deallocuvm(pgdir, KERNBASE, 0); for(i = 0; i < NPDENTRIES; i++){ 80107453: 39 fb cmp %edi,%ebx 80107455: 74 23 je 8010747a <freevm+0x5a> if(pgdir[i] & PTE_P){ 80107457: 8b 03 mov (%ebx),%eax 80107459: a8 01 test $0x1,%al 8010745b: 74 f3 je 80107450 <freevm+0x30> char * v = P2V(PTE_ADDR(pgdir[i])); 8010745d: 25 00 f0 ff ff and $0xfffff000,%eax kfree(v); 80107462: 83 ec 0c sub $0xc,%esp 80107465: 83 c3 04 add $0x4,%ebx char * v = P2V(PTE_ADDR(pgdir[i])); 80107468: 05 00 00 00 80 add $0x80000000,%eax kfree(v); 8010746d: 50 push %eax 8010746e: e8 9d ae ff ff call 80102310 <kfree> 80107473: 83 c4 10 add $0x10,%esp for(i = 0; i < NPDENTRIES; i++){ 80107476: 39 fb cmp %edi,%ebx 80107478: 75 dd jne 80107457 <freevm+0x37> } } kfree((char*)pgdir); 8010747a: 89 75 08 mov %esi,0x8(%ebp) } 8010747d: 8d 65 f4 lea -0xc(%ebp),%esp 80107480: 5b pop %ebx 80107481: 5e pop %esi 80107482: 5f pop %edi 80107483: 5d pop %ebp kfree((char*)pgdir); 80107484: e9 87 ae ff ff jmp 80102310 <kfree> panic("freevm: no pgdir"); 80107489: 83 ec 0c sub $0xc,%esp 8010748c: 68 75 82 10 80 push $0x80108275 80107491: e8 fa 8e ff ff call 80100390 <panic> 80107496: 8d 76 00 lea 0x0(%esi),%esi 80107499: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 801074a0 <setupkvm>: { 801074a0: 55 push %ebp 801074a1: 89 e5 mov %esp,%ebp 801074a3: 56 push %esi 801074a4: 53 push %ebx if((pgdir = (pde_t*)kalloc()) == 0) 801074a5: e8 16 b0 ff ff call 801024c0 <kalloc> 801074aa: 85 c0 test %eax,%eax 801074ac: 89 c6 mov %eax,%esi 801074ae: 74 42 je 801074f2 <setupkvm+0x52> memset(pgdir, 0, PGSIZE); 801074b0: 83 ec 04 sub $0x4,%esp for(k = kmap; k < &kmap[NELEM(kmap)]; k++) 801074b3: bb 20 b4 10 80 mov $0x8010b420,%ebx memset(pgdir, 0, PGSIZE); 801074b8: 68 00 10 00 00 push $0x1000 801074bd: 6a 00 push $0x0 801074bf: 50 push %eax 801074c0: e8 cb d0 ff ff call 80104590 <memset> 801074c5: 83 c4 10 add $0x10,%esp (uint)k->phys_start, k->perm) < 0) { 801074c8: 8b 43 04 mov 0x4(%ebx),%eax if(mappages(pgdir, k->virt, k->phys_end - k->phys_start, 801074cb: 8b 4b 08 mov 0x8(%ebx),%ecx 801074ce: 83 ec 08 sub $0x8,%esp 801074d1: 8b 13 mov (%ebx),%edx 801074d3: ff 73 0c pushl 0xc(%ebx) 801074d6: 50 push %eax 801074d7: 29 c1 sub %eax,%ecx 801074d9: 89 f0 mov %esi,%eax 801074db: e8 b0 f9 ff ff call 80106e90 <mappages> 801074e0: 83 c4 10 add $0x10,%esp 801074e3: 85 c0 test %eax,%eax 801074e5: 78 19 js 80107500 <setupkvm+0x60> for(k = kmap; k < &kmap[NELEM(kmap)]; k++) 801074e7: 83 c3 10 add $0x10,%ebx 801074ea: 81 fb 60 b4 10 80 cmp $0x8010b460,%ebx 801074f0: 75 d6 jne 801074c8 <setupkvm+0x28> } 801074f2: 8d 65 f8 lea -0x8(%ebp),%esp 801074f5: 89 f0 mov %esi,%eax 801074f7: 5b pop %ebx 801074f8: 5e pop %esi 801074f9: 5d pop %ebp 801074fa: c3 ret 801074fb: 90 nop 801074fc: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi freevm(pgdir); 80107500: 83 ec 0c sub $0xc,%esp 80107503: 56 push %esi return 0; 80107504: 31 f6 xor %esi,%esi freevm(pgdir); 80107506: e8 15 ff ff ff call 80107420 <freevm> return 0; 8010750b: 83 c4 10 add $0x10,%esp } 8010750e: 8d 65 f8 lea -0x8(%ebp),%esp 80107511: 89 f0 mov %esi,%eax 80107513: 5b pop %ebx 80107514: 5e pop %esi 80107515: 5d pop %ebp 80107516: c3 ret 80107517: 89 f6 mov %esi,%esi 80107519: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80107520 <kvmalloc>: { 80107520: 55 push %ebp 80107521: 89 e5 mov %esp,%ebp 80107523: 83 ec 08 sub $0x8,%esp kpgdir = setupkvm(); 80107526: e8 75 ff ff ff call 801074a0 <setupkvm> 8010752b: a3 84 61 11 80 mov %eax,0x80116184 lcr3(V2P(kpgdir)); // switch to the kernel page table 80107530: 05 00 00 00 80 add $0x80000000,%eax 80107535: 0f 22 d8 mov %eax,%cr3 } 80107538: c9 leave 80107539: c3 ret 8010753a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 80107540 <clearpteu>: // Clear PTE_U on a page. Used to create an inaccessible // page beneath the user stack. void clearpteu(pde_t *pgdir, char *uva) { 80107540: 55 push %ebp pte_t *pte; pte = walkpgdir(pgdir, uva, 0); 80107541: 31 c9 xor %ecx,%ecx { 80107543: 89 e5 mov %esp,%ebp 80107545: 83 ec 08 sub $0x8,%esp pte = walkpgdir(pgdir, uva, 0); 80107548: 8b 55 0c mov 0xc(%ebp),%edx 8010754b: 8b 45 08 mov 0x8(%ebp),%eax 8010754e: e8 bd f8 ff ff call 80106e10 <walkpgdir> if(pte == 0) 80107553: 85 c0 test %eax,%eax 80107555: 74 05 je 8010755c <clearpteu+0x1c> panic("clearpteu"); *pte &= ~PTE_U; 80107557: 83 20 fb andl $0xfffffffb,(%eax) } 8010755a: c9 leave 8010755b: c3 ret panic("clearpteu"); 8010755c: 83 ec 0c sub $0xc,%esp 8010755f: 68 86 82 10 80 push $0x80108286 80107564: e8 27 8e ff ff call 80100390 <panic> 80107569: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80107570 <copyuvm>: // Given a parent process's page table, create a copy // of it for a child. pde_t* copyuvm(pde_t *pgdir, uint sz) { 80107570: 55 push %ebp 80107571: 89 e5 mov %esp,%ebp 80107573: 57 push %edi 80107574: 56 push %esi 80107575: 53 push %ebx 80107576: 83 ec 1c sub $0x1c,%esp pde_t *d; pte_t *pte; uint pa, i, flags; char *mem; if((d = setupkvm()) == 0) 80107579: e8 22 ff ff ff call 801074a0 <setupkvm> 8010757e: 85 c0 test %eax,%eax 80107580: 89 45 e0 mov %eax,-0x20(%ebp) 80107583: 0f 84 9f 00 00 00 je 80107628 <copyuvm+0xb8> return 0; for(i = 0; i < sz; i += PGSIZE){ 80107589: 8b 4d 0c mov 0xc(%ebp),%ecx 8010758c: 85 c9 test %ecx,%ecx 8010758e: 0f 84 94 00 00 00 je 80107628 <copyuvm+0xb8> 80107594: 31 ff xor %edi,%edi 80107596: eb 4a jmp 801075e2 <copyuvm+0x72> 80107598: 90 nop 80107599: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi panic("copyuvm: page not present"); pa = PTE_ADDR(*pte); flags = PTE_FLAGS(*pte); if((mem = kalloc()) == 0) goto bad; memmove(mem, (char*)P2V(pa), PGSIZE); 801075a0: 83 ec 04 sub $0x4,%esp 801075a3: 81 c3 00 00 00 80 add $0x80000000,%ebx 801075a9: 68 00 10 00 00 push $0x1000 801075ae: 53 push %ebx 801075af: 50 push %eax 801075b0: e8 8b d0 ff ff call 80104640 <memmove> if(mappages(d, (void*)i, PGSIZE, V2P(mem), flags) < 0) { 801075b5: 58 pop %eax 801075b6: 8d 86 00 00 00 80 lea -0x80000000(%esi),%eax 801075bc: b9 00 10 00 00 mov $0x1000,%ecx 801075c1: 5a pop %edx 801075c2: ff 75 e4 pushl -0x1c(%ebp) 801075c5: 50 push %eax 801075c6: 89 fa mov %edi,%edx 801075c8: 8b 45 e0 mov -0x20(%ebp),%eax 801075cb: e8 c0 f8 ff ff call 80106e90 <mappages> 801075d0: 83 c4 10 add $0x10,%esp 801075d3: 85 c0 test %eax,%eax 801075d5: 78 61 js 80107638 <copyuvm+0xc8> for(i = 0; i < sz; i += PGSIZE){ 801075d7: 81 c7 00 10 00 00 add $0x1000,%edi 801075dd: 39 7d 0c cmp %edi,0xc(%ebp) 801075e0: 76 46 jbe 80107628 <copyuvm+0xb8> if((pte = walkpgdir(pgdir, (void *) i, 0)) == 0) 801075e2: 8b 45 08 mov 0x8(%ebp),%eax 801075e5: 31 c9 xor %ecx,%ecx 801075e7: 89 fa mov %edi,%edx 801075e9: e8 22 f8 ff ff call 80106e10 <walkpgdir> 801075ee: 85 c0 test %eax,%eax 801075f0: 74 61 je 80107653 <copyuvm+0xe3> if(!(*pte & PTE_P)) 801075f2: 8b 00 mov (%eax),%eax 801075f4: a8 01 test $0x1,%al 801075f6: 74 4e je 80107646 <copyuvm+0xd6> pa = PTE_ADDR(*pte); 801075f8: 89 c3 mov %eax,%ebx flags = PTE_FLAGS(*pte); 801075fa: 25 ff 0f 00 00 and $0xfff,%eax pa = PTE_ADDR(*pte); 801075ff: 81 e3 00 f0 ff ff and $0xfffff000,%ebx flags = PTE_FLAGS(*pte); 80107605: 89 45 e4 mov %eax,-0x1c(%ebp) if((mem = kalloc()) == 0) 80107608: e8 b3 ae ff ff call 801024c0 <kalloc> 8010760d: 85 c0 test %eax,%eax 8010760f: 89 c6 mov %eax,%esi 80107611: 75 8d jne 801075a0 <copyuvm+0x30> } } return d; bad: freevm(d); 80107613: 83 ec 0c sub $0xc,%esp 80107616: ff 75 e0 pushl -0x20(%ebp) 80107619: e8 02 fe ff ff call 80107420 <freevm> return 0; 8010761e: 83 c4 10 add $0x10,%esp 80107621: c7 45 e0 00 00 00 00 movl $0x0,-0x20(%ebp) } 80107628: 8b 45 e0 mov -0x20(%ebp),%eax 8010762b: 8d 65 f4 lea -0xc(%ebp),%esp 8010762e: 5b pop %ebx 8010762f: 5e pop %esi 80107630: 5f pop %edi 80107631: 5d pop %ebp 80107632: c3 ret 80107633: 90 nop 80107634: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi kfree(mem); 80107638: 83 ec 0c sub $0xc,%esp 8010763b: 56 push %esi 8010763c: e8 cf ac ff ff call 80102310 <kfree> goto bad; 80107641: 83 c4 10 add $0x10,%esp 80107644: eb cd jmp 80107613 <copyuvm+0xa3> panic("copyuvm: page not present"); 80107646: 83 ec 0c sub $0xc,%esp 80107649: 68 aa 82 10 80 push $0x801082aa 8010764e: e8 3d 8d ff ff call 80100390 <panic> panic("copyuvm: pte should exist"); 80107653: 83 ec 0c sub $0xc,%esp 80107656: 68 90 82 10 80 push $0x80108290 8010765b: e8 30 8d ff ff call 80100390 <panic> 80107660 <uva2ka>: //PAGEBREAK! // Map user virtual address to kernel address. char* uva2ka(pde_t *pgdir, char *uva) { 80107660: 55 push %ebp pte_t *pte; pte = walkpgdir(pgdir, uva, 0); 80107661: 31 c9 xor %ecx,%ecx { 80107663: 89 e5 mov %esp,%ebp 80107665: 83 ec 08 sub $0x8,%esp pte = walkpgdir(pgdir, uva, 0); 80107668: 8b 55 0c mov 0xc(%ebp),%edx 8010766b: 8b 45 08 mov 0x8(%ebp),%eax 8010766e: e8 9d f7 ff ff call 80106e10 <walkpgdir> if((*pte & PTE_P) == 0) 80107673: 8b 00 mov (%eax),%eax return 0; if((*pte & PTE_U) == 0) return 0; return (char*)P2V(PTE_ADDR(*pte)); } 80107675: c9 leave if((*pte & PTE_U) == 0) 80107676: 89 c2 mov %eax,%edx return (char*)P2V(PTE_ADDR(*pte)); 80107678: 25 00 f0 ff ff and $0xfffff000,%eax if((*pte & PTE_U) == 0) 8010767d: 83 e2 05 and $0x5,%edx return (char*)P2V(PTE_ADDR(*pte)); 80107680: 05 00 00 00 80 add $0x80000000,%eax 80107685: 83 fa 05 cmp $0x5,%edx 80107688: ba 00 00 00 00 mov $0x0,%edx 8010768d: 0f 45 c2 cmovne %edx,%eax } 80107690: c3 ret 80107691: eb 0d jmp 801076a0 <copyout> 80107693: 90 nop 80107694: 90 nop 80107695: 90 nop 80107696: 90 nop 80107697: 90 nop 80107698: 90 nop 80107699: 90 nop 8010769a: 90 nop 8010769b: 90 nop 8010769c: 90 nop 8010769d: 90 nop 8010769e: 90 nop 8010769f: 90 nop 801076a0 <copyout>: // Copy len bytes from p to user address va in page table pgdir. // Most useful when pgdir is not the current page table. // uva2ka ensures this only works for PTE_U pages. int copyout(pde_t *pgdir, uint va, void *p, uint len) { 801076a0: 55 push %ebp 801076a1: 89 e5 mov %esp,%ebp 801076a3: 57 push %edi 801076a4: 56 push %esi 801076a5: 53 push %ebx 801076a6: 83 ec 1c sub $0x1c,%esp 801076a9: 8b 5d 14 mov 0x14(%ebp),%ebx 801076ac: 8b 55 0c mov 0xc(%ebp),%edx 801076af: 8b 7d 10 mov 0x10(%ebp),%edi char *buf, *pa0; uint n, va0; buf = (char*)p; while(len > 0){ 801076b2: 85 db test %ebx,%ebx 801076b4: 75 40 jne 801076f6 <copyout+0x56> 801076b6: eb 70 jmp 80107728 <copyout+0x88> 801076b8: 90 nop 801076b9: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi va0 = (uint)PGROUNDDOWN(va); pa0 = uva2ka(pgdir, (char*)va0); if(pa0 == 0) return -1; n = PGSIZE - (va - va0); 801076c0: 8b 55 e4 mov -0x1c(%ebp),%edx 801076c3: 89 f1 mov %esi,%ecx 801076c5: 29 d1 sub %edx,%ecx 801076c7: 81 c1 00 10 00 00 add $0x1000,%ecx 801076cd: 39 d9 cmp %ebx,%ecx 801076cf: 0f 47 cb cmova %ebx,%ecx if(n > len) n = len; memmove(pa0 + (va - va0), buf, n); 801076d2: 29 f2 sub %esi,%edx 801076d4: 83 ec 04 sub $0x4,%esp 801076d7: 01 d0 add %edx,%eax 801076d9: 51 push %ecx 801076da: 57 push %edi 801076db: 50 push %eax 801076dc: 89 4d e4 mov %ecx,-0x1c(%ebp) 801076df: e8 5c cf ff ff call 80104640 <memmove> len -= n; buf += n; 801076e4: 8b 4d e4 mov -0x1c(%ebp),%ecx while(len > 0){ 801076e7: 83 c4 10 add $0x10,%esp va = va0 + PGSIZE; 801076ea: 8d 96 00 10 00 00 lea 0x1000(%esi),%edx buf += n; 801076f0: 01 cf add %ecx,%edi while(len > 0){ 801076f2: 29 cb sub %ecx,%ebx 801076f4: 74 32 je 80107728 <copyout+0x88> va0 = (uint)PGROUNDDOWN(va); 801076f6: 89 d6 mov %edx,%esi pa0 = uva2ka(pgdir, (char*)va0); 801076f8: 83 ec 08 sub $0x8,%esp va0 = (uint)PGROUNDDOWN(va); 801076fb: 89 55 e4 mov %edx,-0x1c(%ebp) 801076fe: 81 e6 00 f0 ff ff and $0xfffff000,%esi pa0 = uva2ka(pgdir, (char*)va0); 80107704: 56 push %esi 80107705: ff 75 08 pushl 0x8(%ebp) 80107708: e8 53 ff ff ff call 80107660 <uva2ka> if(pa0 == 0) 8010770d: 83 c4 10 add $0x10,%esp 80107710: 85 c0 test %eax,%eax 80107712: 75 ac jne 801076c0 <copyout+0x20> } return 0; } 80107714: 8d 65 f4 lea -0xc(%ebp),%esp return -1; 80107717: b8 ff ff ff ff mov $0xffffffff,%eax } 8010771c: 5b pop %ebx 8010771d: 5e pop %esi 8010771e: 5f pop %edi 8010771f: 5d pop %ebp 80107720: c3 ret 80107721: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80107728: 8d 65 f4 lea -0xc(%ebp),%esp return 0; 8010772b: 31 c0 xor %eax,%eax } 8010772d: 5b pop %ebx 8010772e: 5e pop %esi 8010772f: 5f pop %edi 80107730: 5d pop %ebp 80107731: c3 ret
oeis/105/A105309.asm
neoneye/loda-programs
11
12617
<reponame>neoneye/loda-programs<filename>oeis/105/A105309.asm<gh_stars>10-100 ; A105309: a(n) = |b(n)|^2 = x^2 + 3*y*2 where (x,y,y,y) is the quaternion b(n) of the sequence b of quaternions defined by b(0)=1,b(1)=1, b(n) = b(n-1) + b(n-2)*(0,c,c,c) where c = 1/sqrt(3). ; Submitted by <NAME> ; 1,1,2,5,9,20,41,85,178,369,769,1600,3329,6929,14418,30005,62441,129940,270409,562725,1171042,2436961,5071361,10553600,21962241,45703841,95110562,197926885,411889609,857150100,1783745641,3712008565 trn $0,1 seq $0,240513 ; Number of n X 2 0..1 arrays with no element equal to exactly two horizontal and vertical neighbors, with new values 0..1 introduced in row major order. sub $0,1
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/opt25_pkg1.ads
best08618/asylo
7
18809
<reponame>best08618/asylo generic type T is private; Init_Value : T; package Opt25_Pkg1 is Var : T := Init_Value; procedure Swap (A, B : in out T); end Opt25_Pkg1;
BASE.asm
makhotkin/dc-2002
0
84618
; Project DC 2002 ; Contsins basic functions as String Output (Screen and other Strings), ; Integer to string/hex conversion and back .model small .stack 80h include bios.inc .data cols_count equ 80 ; 80 Columns in VGA mode 3 line_count equ 25 ; 25 lines ---"--- .code .386 PUBLIC strcat, strcat_x, strcpy, strcpy_x, strlen, strnext, sFillUp, StrPos ; String Copy/Append/GetLen/Fill PUBLIC Int2Hex8, Int2Hex16, Int2Hex32, Hex2IntDX ; Hex number displaying and parsing PUBLIC Int2Hex8f, Int2Hex16f, Int2Hex32f ; Hex number display with leading zero PUBLIC OutStringAt, OutStringAt_x, OutString, OutString_x ; Display strings with attribute/positioning PUBLIC OutCharsAt_x, OutChars_x ; Display character chains PUBLIC FormatOutAt_x, FormatOutAt ; Formatted output PUBLIC OutStringCntr, OutStringCntrAt ; Display string in center of given line PUBLIC FillLine, FillLineAt, TabulateAt, Tabulate, FillUpAt ; Tabulation, line and screen filling PUBLIC Fill2ColumnAt, Fill2Column ; Screen filling PUBLIC SetAttrib_x, SetAttrib ; Set Character attributes PUBLIC GetVideoOffset, GetVideoCoords ; Video pointer positioning PUBLIC PrintAtCursor, TypeAtCursor, HideCursor, ShowCursor ; Typing Emulation ; Great macro to convert lowest 4 bits of al into ascii-code ; Respect to Zubkov S.V. AL4_2ASCII MACRO and al, 0fh cmp al, 10 sbb al, 69h das endm ; Function StrCat ; Purpose Append string at ds:si to the end of string at es:di strcat: push si push di push cx xor cx,cx dec cx ; make cycle "infinite" xor al, al repe scasb ; this should deliver to end of string dec di ; if got zero-byte, must overwrite it @strcat_loop: lodsb ; Send byte from ds:si stosb ; to es:di through al test al, al jnz @strcat_loop ; Repeat until got zero-byte in src string pop cx pop di pop si ret strcat_x: xor cx,cx dec cx ; make cycle "infinite" xor al, al repe scasb ; this should deliver to end of string dec di ; if got zero-byte, must overwrite it @strcat_x_loop: lodsb ; Send byte from ds:si stosb ; to es:di through al test al, al jnz @strcat_x_loop ; Repeat until got zero-byte in src string ret ; Function StrNext ; Purpose Set ds:di pointer behind current line zero-byte (ideal for searching trough strings) strnext: lodsb ; repne would involve cx, sometimes we should save it test al, al jnz strnext ret ; Procedure StrCpy ; Purpose Copy String at es:di to ds:si ; Input ds:si source string, es:di destination string ; Output ds:si untouched; es:di contains ds:si + ending zero-byte strcpy: push si push di push ax @strcpy_loop: lodsb ; Send byte from ds:si stosb ; to es:di through al test al, al jnz @strcpy_loop ; Repeat until got zero-byte in src string pop ax pop di pop si ret strcpy_x: ; The fastest (but not safest) lodsb ; Send byte from ds:si stosb ; to es:di through al test al, al jnz strcpy_x ; Repeat until got zero-byte in src string ret ; Procedure StrLen ; Purpose Get length of non-zero bytes chain ; Input ds:si - source string ; Output cx - string length StrLen: push si xor cx, cx ; Rep not used here @StrLen_loop: lodsb inc cx test al, al jnz @StrLen_loop dec cx pop si ret ; Procedure StrPos ; Purpose Get index of desired item in string ; Input ds:si - source string ; Output cx = index if found, else -1 StrPos: push di ; save di mov di, si push ax ; save symbol to find xor cx, cx xor ax, ax ; find zero-byte (end of string) dec cx ; scan up to 65535 bytes push cx ; save std ; go forward repe scasb ; find end of line cld ; go backward pop ax ; extract starting postion sub ax, cx ; ax = string length xchg cx, ax ; cx = strlen pop ax ; ax = symbol to find repe scasb ; find! - cx will become zero if not found! pop di ; restore di std ; set normal direction ret ; Procedure Int2Hex8 ; Purpose Type number in AL into es:di in hexadecimal form, close with zero Int2Hex8: push dx xchg ax, dx rol dl, 4 mov al, dl AL4_2ASCII stosb rol dl, 4 mov al, dl AL4_2ASCII stosb xor ax, ax stosb xchg ax, dx pop dx ret ; Procedure Int2Hex16 ; Purpose Type number in AX into es:di in hexadecimal form, close with zero Int2Hex16: push dx xchg ax, dx mov cx, 4 @Int2Hex16_loop: rol dx, 4 mov al, dl AL4_2ASCII stosb loop @Int2Hex16_loop xor ax, ax stosb xchg ax, dx pop dx ; Procedure Int2Hex32 ; Purpose Type number in EAX into es:di in hexadecimal form, close with zero Int2Hex32: push edx xchg eax, edx mov cx, 8 @Int2Hex32_loop: rol edx, 4 mov al, dl AL4_2ASCII stosb loop @Int2Hex32_loop xor ax, ax stosb xchg eax, edx pop edx ret ; Procedure Int2Hex8f ; Purpose Store @ es:di 8-bit number in 0xxh format ; Input al - byte ; Output es:di - zero terminated string Int2Hex8f: push dx xchg ax, dx rol dl, 4 mov al, dl AL4_2ASCII cmp al, 39h jbe @I2H8f_1 push ax mov al, '0' stosb pop ax @I2H8f_1: stosb rol dl, 4 mov al, dl AL4_2ASCII stosb mov al, 'h' stosb xor ax, ax stosb xchg ax, dx pop dx ret ; Procedure Int2Hex16f ; Purpose Store @ es:di 16-bit number in 0xxh format ; Input ax - word ; Output es:di - zero terminated string Int2Hex16f: push dx xchg ax, dx rol dx, 4 mov al, dl AL4_2ASCII cmp al, 39h jbe @I2H16f_1 push ax mov al, '0' stosb pop ax @I2H16f_1: stosb mov cx, 3 @I2H16f_2: rol dx, 4 mov al, dl ; 2 bytes AL4_2ASCII stosb ; 1 byte loop @I2H16f_2 mov al, 'h' stosb xor ax, ax stosb xchg ax, dx pop dx ret ; Procedure Int2Hex32f ; Purpose Store @ es:di 16-bit number in 0xxh format ; Input Eax - word ; Output es:di - zero terminated string Int2Hex32f: push edx xchg eax, edx rol edx, 4 mov al, dl AL4_2ASCII cmp al, 39h jbe @I2H32f_1 push ax mov al, '0' stosb pop ax @I2H32f_1: stosb mov cx, 7 @I2H32f_2: rol edx, 4 mov al, dl ; 2 bytes AL4_2ASCII stosb ; 1 byte loop @I2H32f_2 mov al, 'h' stosb xor ax, ax stosb xchg eax, edx pop edx ret ; String output ; Procedure OutStingAt ; Purpose Display String at given Position with attribute ; Input ds:si - string adress ; es - video page segment ; (dl; dh) - screen coordinates (x, y) ; ah - attribute OutStringAt: push ax mov ax, dx call GetVideoOffset mov di, ax pop ax ; Procedure OutStingAt_x ; Purpose Display String at current Position with attribute ; Input ds:si - string adress ; es:di - video memory address ; ah - attribute OutStringAt_x: lodsb test al, al jz @OutStringAt_x_Done stosw jmp short OutStringAt_x @OutStringAt_x_Done: ret ; Procedure OutSting ; Purpose Display String at given Position w/o attribute ; Input ds:si - string adress ; es - video page segment ; dx - screen coordinates (dl=x, dh=y) ; Output ds:si points behind zero-byte, useful for sequent calls, when string arrays processed OutString: mov ax, dx call GetVideoOffset mov di, ax ; Procedure OutSting ; Purpose Display String at current Position don't change attribute ; Input ds:si - string adress ; es - video page segment ; Output ds:si points behind zero-byte, useful for sequent calls, when string arrays processed OutString_x: lodsb test al, al jz @OutString_x_Done stosb inc di jmp short OutString_x @OutString_x_Done: ret ; Procedure GetVideoOffset ; Purpose Calculate screen output pointer offset, corresponding to needed position ; Input AL - x-coord, AH - y-coord ; Output AX - Buffer offset ; Registers All preserved GetVideoOffset: push cx ; Save CX (we didn't mention it would change) mov ch, al ; Save x-coordinate in counter-high mov al, ah ; Move y to multiplier mov cl, cols_count ; Prepare yet another multiplier mul cl ; ax = cl * al (ch stays untouched) add al, ch ; Add x-coordinate to offset adc ah, 0 ; make carry if needed shl ax, 1 ; must multiply, 'cause 2 bytes per character pop cx ret ; Procedure GetVideoCoords ; Purpose return screen coordinates from pointer ; Input AX - Buffer offset ; Output AL - x-coord, AH - y-coord ; Registers All preserved GetVideoCoords: push cx shr ax, 1 ; "2-byte per character" fix mov cl, cols_count div cl xchg ah, al ; ah = remainder (x), must swap "x" and "y" in ax pop cx ret ; Procedure FillLineAt ; Purpose Fill line, pointed by di with spaces with given attribute ; Input ax - character with attribute ; di - character to start with: (x + y*cols_count)*2 ; Output Line filled with spaces of given attribute. ; All Registers preserved FillLineAt: push cx push ax mov ax, di call GetVideoCoords movzx cx, al neg cx add cx, cols_count pop ax rep stosw pop cx ret ; Procedure FillLine ; Purpose Fill line, pointed by di with spaces with given attribute ; Input ax - character with attribute ; di - character to start with: (x + y*cols_count)*2 ; Output Line filled with spaces of given attribute. ; All Registers preserved FillLine: push cx push ax mov ax, di call GetVideoCoords movzx cx, al neg cx add cx, cols_count pop ax @FillL_loop: stosb inc di loop @FillL_loop pop cx ret ; Procedure SetAttrib ; Purpose Set Attributes for given number of bytes, start @ dl, dh ; Input ah - attribute ; dx - coordinates to start filling ; cx - number of bytes to change attribute SetAttrib: push ax mov ax, dx call GetVideoOffset mov di, ax pop ax ; Procedure SetAttrib_x ; Purpose Set Attributes for given number of bytes at curent position ; Input ah - attribute ; cx - number of byte sto change attribute SetAttrib_x: xchg al, ah @SetAttr_loop: inc di stosb loop @SetAttr_loop xchg al, ah ret ; Procedure Fill2ColumnAt ; Purpose Fill with spaces, until given column reached * attribute set by ah ; Input ax - character with attribute ; cx - column to tabulate by ; di - character to start with: (x + y*cols_count)*2 ; Output Line filled with spaces of given attribute. ; All Registers preserved Fill2ColumnAt: push ax push cx mov ax, di call GetVideoCoords movzx cx, al neg cx pop ax add cx, ax pop ax rep stosw ret ; Procedure Fill2Column ; Purpose Fill line, pointed by di with spaces with given attribute ; Input ax - character with attribute ; cx - column to tabulate by ; di - character to start with: (x + y*cols_count)*2 ; Output Line filled with spaces of given attribute. ; All Registers preserved Fill2Column: push ax push cx mov ax, di call GetVideoCoords movzx cx, al neg cx pop ax add cx, ax pop ax @Fill2C_Loop: stosb inc di loop @Fill2C_Loop ret ; Procedure FillUpAt ; Purpose Fill Screen with ax-given character and attribute, stop at dx coordinate ; Input ax - character with attribute ; dx - coordinates for ending point ; di - character to start with: (x + y*cols_count)*2 ; Output Line filled with spaces of given attribute. ; All Registers preserved FillUpAt: push cx push ax mov ax, dx call GetVideoOffset sub ax, di shr ax, 1 mov cx, ax pop ax rep stosw pop cx ret ; Procedure sFillUp ; Purpose Fill String, until its size becomes dl ; Input al - character ; cx - coordinates for ending point ; di - line beginning ; Output Line filled with spaces of given attribute. ; All Registers preserved sFillUp: push si ; save si push ax mov si, di call strnext ; find ending zero-byte of "di" sub si, di ; si = length of "di" add di, si ; di = coord of end for string dec di ; to overwrite ending zero sub cx, si ; cx = number of bytes to fill inc cx ; fixed strlen pop ax js @sFillUp_1 ; skip if negative jz @sFillUp_1 ; skip if zero rep stosb ; fill xor al, al stosb ; close string @sFillUp_1: pop si ; restore si ret ; Procedure TabulateAt ; Purpose Fill up to 8 bytes with spaces with given attribute ; Input ax - character with attribute ; Output Line filled with spaces of given attribute. ; All Registers preserved TabulateAt: mov al, 32 @TabA_loop: stosw test di, 0fh jnz @TabA_loop ret ; Procedure Tabulate ; Purpose Fill up to 8 bytes with spaces ; Input ax - character with attribute ; Output Line filled with spaces of given attribute. ; All Registers preserved Tabulate: mov al, 32 @Tab_loop: stosb inc di test di, 0fh jnz @Tab_loop ret ; Procedure OutStringCntr / ; Purpose Display an ASCIIZ string without attributes at es:di ; Input string - string offset in it's segment ; ds:si - segment & offset containing string ; dh - Line Number ; es - video page segment ; Output String on video RAM or buffer at given coordinates ; Resiters Kept untouched, ; AH - destroyed ; si - points behind string zero-byte OutStringCntr proc push di ; save registers - they'll get changed push cx xor cl, cl call strlen xor ch, ch sub cl, Cols_Count neg cl shr cl, 1 dec cl movzx ax, cl mov ah, dh call GetVideoOffset mov di, ax pop cx mov al, ' ' stosb inc di call OutString_x mov al, ' ' stosb inc di pop di ret OutStringCntr Endp ; Procedure OutStringCntrAt ; Purpose Display an ASCIIZ string without attributes at es:di ; Input string - string offset in it's segment ; ds:si - segment & offset containing string ; dh - Line Number ; ah - Attribute ; es - video page segment ; Output String on video RAM or buffer at given coordinates ; Resiters Kept untouched, ; AH - destroyed ; si - points behind string zero-byte OutStringCntrAt proc ; check centering! push di ; save registers - they'll get changed push ax push cx xor cl, cl call strlen xor ch, ch sub cl, Cols_Count neg cl shr cl, 1 dec cl movzx ax, cl mov ah, dh call GetVideoOffset mov di, ax pop cx pop ax mov al, ' ' stosw call OutStringAt_x mov al, ' ' stosw pop di ret OutStringCntrAt Endp PrintAtCursor: push di push ax ; Character is sent via 'al' @GetCur mov ax, dx call GetVideoOffset mov di, ax pop ax stosb pop di ret TypeAtCursor: push dx ; dx used is. push di push ax ; Character is sent via 'al' @GetCur push dx inc dl @SetCurPos pop ax call GetVideoOffset mov di, ax pop ax stosb pop di pop dx ret HideCursor: push ax ; maybe pusha is better? push cx push dx push bx @SetCurPos 0, 25 pop bx pop dx pop cx pop ax ret ; Input (dl, dh) - (x;y) ShowCursor: push bx xor bh,bh mov ah,02h int 10h pop bx ret ; Print a serie of chars with attribute ; cx - length OutCharsAt_x: lodsb stosw loop OutCharsAt_x ret OutChars_x: movsb inc di loop OutChars_x ret ; Procedure FormatOutAt_x ; Purpose Display String at current Position with attribute ; Input ds:si - string adress ; es: - video memory page ; ah - attribute ; dx - coordinates FormatOutAt: push ax mov ax, dx call GetVideoOffset mov di, ax pop ax ; Procedure FormatOutAt_x ; Purpose Display String at current Position with attribute ; Input ds:si - string adress ; es:di - video memory address ; ah - attribute FormatOutAt_x: lodsb test al, al jz @FmtOutAt_done cmp al, 09h ; tabulation jnz @FmtOutAt_Ord call TabulateAt jmp short FormatOutAt_x @FmtOutAt_Ord: stosw jmp short FormatOutAt_x @FmtOutAt_done: ret ret ; Procedure Hex2IntDX ; Purpose Covert ASCIIZ string (8 first chars) into CPU-understandable number. ; Input ds:si - string with ASCIIZ number ; Output edx - decoded value Hex2IntDX: xor edx, edx mov cx, 8 @H2I_Loop: lodsb test al, al jz @H2I_Done shl edx, 4 sub al, 30h cmp al, 31h jbe @H2I_CaseOk sub al, 20h @H2I_CaseOk: cmp al, 9 jbe @H2I_Fix sub al, 7 @H2I_Fix: cbw cwde add edx, eax loop @H2I_Loop @H2I_Done: ret end
programs/oeis/308/A308137.asm
neoneye/loda
22
172976
<reponame>neoneye/loda ; A308137: Number of (undirected) Hamiltonian paths on the n-prism graph. ; 30,72,130,228,350,528,738,1020,1342,1752,2210,2772,3390,4128,4930,5868,6878,8040,9282,10692,12190,13872,15650,17628,19710,22008,24418,27060,29822,32832,35970,39372,42910,46728,50690,54948,59358,64080,68962,74172,79550,85272,91170,97428,103870,110688,117698,125100,132702,140712,148930,157572,166430,175728,185250,195228,205438,216120,227042,238452,250110,262272,274690,287628,300830,314568,328578,343140,357982,373392,389090,405372,421950,439128,456610,474708,493118,512160,531522,551532,571870,592872,614210,636228,658590,681648,705058,729180,753662,778872,804450,830772,857470,884928,912770,941388,970398,1000200,1030402,1061412 mul $0,2 add $0,6 div $0,2 mov $1,$0 pow $0,2 add $0,2 div $0,2 mul $0,$1 mul $0,2
libsrc/_DEVELOPMENT/l/sccz80/crt0/l_getptr.asm
jpoikela/z88dk
38
172710
; Z88 Small C+ Run Time Library ; ; Get Long Pointer from Near Memory SECTION code_clib SECTION code_l_sccz80 PUBLIC l_getptr l_getptr: ; fetch far ptr from address hl ld e,(hl) inc hl ld d,(hl) inc hl ld l,(hl) ld h,0 ex de,hl ret
agda/binding-preserve.agda
florence/esterel-calculus
3
8850
module binding-preserve where open import utility renaming (_U̬_ to _∪_ ; _|̌_ to _-_) open import sn-calculus open import Function using (_∋_ ; _$_ ; _∘_) open import Esterel.Lang open import Esterel.Lang.Binding open import Esterel.Lang.Properties using (done; halted ; paused ; value-max) open import Esterel.Context open import Esterel.Context.Properties open import Esterel.Environment open import Esterel.Variable.Signal as Signal using (Signal ; _ₛ) open import Esterel.Variable.Shared as SharedVar using (SharedVar ; _ₛₕ) open import Esterel.Variable.Sequential as SeqVar using (SeqVar ; _ᵥ) open done open halted open paused open Context1 open EvaluationContext1 open import Data.Empty using (⊥ ; ⊥-elim) open import Data.List using (List ; [] ; _∷_ ; [_] ; _++_) open import Data.List.Any using (Any ; any ; here ; there) open import Data.List.Any.Properties using (++⁻) renaming ( ++⁺ˡ to ++ˡ ; ++⁺ʳ to ++ʳ ) open import Data.Nat using (ℕ ; zero ; suc ; _≟_ ; _+_) open import Data.Product using (Σ ; proj₁ ; proj₂ ; ∃ ; _,_ ; _,′_ ; _×_) open import Data.Sum using (_⊎_ ; inj₁ ; inj₂) open import Function using (_∘_ ; id) open import Relation.Nullary using (Dec ; yes ; no) open import Relation.Binary.PropositionalEquality using (_≡_ ; refl ; cong ; sym ; module ≡-Reasoning ; subst) open ≡-Reasoning using (_≡⟨_⟩_ ; _≡⟨⟩_ ; _∎) open ListSet Data.Nat._≟_ using (set-subtract ; set-subtract-merge ; set-subtract-notin; set-subtract-[]; set-subtract-split) ++-distribute-subtract : ∀ xs ys zs → set-subtract (xs ++ ys) zs ≡ set-subtract xs zs ++ set-subtract ys zs ++-distribute-subtract [] ys zs = refl ++-distribute-subtract (x ∷ xs) ys zs with any (_≟_ x) zs ... | yes x∈zs = ++-distribute-subtract xs ys zs ... | no x∉zs = cong (x ∷_) (++-distribute-subtract xs ys zs) subtract-⊆¹ : ∀ xs ys → set-subtract xs ys ⊆¹ xs subtract-⊆¹ [] ys = ⊆¹-refl subtract-⊆¹ (x ∷ xs) ys with any (_≟_ x) ys ... | yes x∈ys = λ w w∈xs-ys → ++ʳ [ x ] (subtract-⊆¹ xs ys w w∈xs-ys) ... | no x∉ys = λ { w (here refl) → here refl ; w (there w∈xs-ys) → there (subtract-⊆¹ xs ys w w∈xs-ys) } R-maintain-raise-shared-0 : ∀{xs θ e} → ∀ s e' → (ShrMap.keys (ShrMap.[ s ↦ SharedVar.old ,′ δ {θ} {e} e' ]) ++ xs) ⊆¹ (SharedVar.unwrap s ∷ xs) R-maintain-raise-shared-0 s e' s' s'∈[s]++BV rewrite ShrMap.keys-1map s (SharedVar.old ,′ δ e') = s'∈[s]++BV R-maintain-raise-shared-1 : ∀ ys {θ e} → ∀ s e' → set-subtract ys (ShrMap.keys ShrMap.[ s ↦ SharedVar.old ,′ δ {θ} {e} e' ]) ⊆¹ set-subtract ys (SharedVar.unwrap s ∷ []) R-maintain-raise-shared-1 ys s e' s' s'∈ys-[s] rewrite ShrMap.keys-1map s (SharedVar.old ,′ δ e') = s'∈ys-[s] R-maintain-raise-sig-0 : ∀{xs} → ∀ S → (SigMap.keys (SigMap.[ S ↦ Signal.unknown ]) ++ xs) ⊆¹ (Signal.unwrap S ∷ xs) R-maintain-raise-sig-0 S S' S'∈[S]++BV rewrite SigMap.keys-1map S Signal.unknown = S'∈[S]++BV R-maintain-raise-sig-1 : ∀ ys → ∀ S → set-subtract ys (SigMap.keys SigMap.[ S ↦ Signal.unknown ]) ⊆¹ set-subtract ys (Signal.unwrap S ∷ []) R-maintain-raise-sig-1 ys S S' S'∈ys-[S] rewrite SigMap.keys-1map S Signal.unknown = S'∈ys-[S] R-maintain-lift-1 : ∀ S xs ys {zs} → set-subtract xs ys ⊆¹ zs → set-subtract (S ∷ xs) ys ⊆¹ (S ∷ zs) R-maintain-lift-1 S xs ys xs-ys⊆zs S' S'∈⟨S∷xs⟩-ys with any (_≟_ S) ys R-maintain-lift-1 S xs ys xs-ys⊆zs S' (here refl) | no _ = here refl R-maintain-lift-1 S xs ys xs-ys⊆zs S' (there S'∈xs-ys) | no _ = there (xs-ys⊆zs S' S'∈xs-ys) ... | yes _ = there (xs-ys⊆zs S' S'∈⟨S∷xs⟩-ys) R-maintain-lift-2' : ∀ {zs ws} xs ys → set-subtract xs ys ⊆¹ zs → set-subtract (xs ++ ws) ys ⊆¹ (zs ++ ws) R-maintain-lift-2' {zs} {ws} xs ys xs-ys⊆zs rewrite ++-distribute-subtract xs ws ys = ∪¹-join-⊆¹ (λ u → ++ˡ ∘ xs-ys⊆zs u) (⊆¹-trans (subtract-⊆¹ ws ys) (λ u → ++ʳ zs ∘ ⊆¹-refl u)) R-maintain-lift-6' : ∀ {zs} ws xs ys → set-subtract xs ys ⊆¹ zs → set-subtract (ws ++ xs) ys ⊆¹ (ws ++ zs) R-maintain-lift-6' {zs} ws xs ys xs-ys⊆zs rewrite ++-distribute-subtract ws xs ys = ∪¹-join-⊆¹ (⊆¹-trans (subtract-⊆¹ ws ys) (λ u → ++ˡ ∘ ⊆¹-refl u)) (λ u → ++ʳ ws ∘ xs-ys⊆zs u) R-maintain-lift-2 : ∀ {zs³ ws³} xs³ ys³ → (xs³ - ys³) ⊆ zs³ → ((xs³ ∪ ws³) - ys³) ⊆ (zs³ ∪ ws³) R-maintain-lift-2 xs³ ys³ xs³-ys³⊆zs³ = R-maintain-lift-2' ,′ R-maintain-lift-2' ,′ R-maintain-lift-2' # xs³ # ys³ # xs³-ys³⊆zs³ R-maintain-lift-6 : ∀ {zs³} ws³ xs³ ys³ → (xs³ - ys³) ⊆ zs³ → ((ws³ ∪ xs³) - ys³) ⊆ (ws³ ∪ zs³) R-maintain-lift-6 ws³ xs³ ys³ xs³-ys³⊆zs³ = R-maintain-lift-6' ,′ R-maintain-lift-6' ,′ R-maintain-lift-6' # ws³ # xs³ # ys³ # xs³-ys³⊆zs³ R-maintain-lift-3' : ∀ {ys zs ws} xs → (xs ++ ys) ⊆¹ zs → distinct' zs ws → distinct' ys ws R-maintain-lift-3' xs xs++ys⊆zs zs≠ws x x∈ys x∈ws = zs≠ws x (xs++ys⊆zs x (++ʳ xs x∈ys)) x∈ws R-maintain-lift-3 : ∀ {ys³ zs³ ws³} xs³ → (xs³ ∪ ys³) ⊆ zs³ → distinct zs³ ws³ → distinct ys³ ws³ R-maintain-lift-3 xs³ xs³∪ys³⊆zs³ zs³≠ws³ = R-maintain-lift-3' ,′ R-maintain-lift-3' ,′ R-maintain-lift-3' # xs³ # xs³∪ys³⊆zs³ # zs³≠ws³ R-maintain-lift-4' : ∀ {xs ws us vs zs} ys → set-subtract xs ys ⊆¹ us → distinct' us zs → (ys ++ ws) ⊆¹ vs → distinct' vs zs → distinct' xs zs R-maintain-lift-4' {.a ∷ xs} ys xs-ys⊆us us≠zs ys++ws⊆vs vs≠zs a (here refl) a∈zs with any (_≟_ a) ys ... | yes a∈ys = vs≠zs a (ys++ws⊆vs a (++ˡ a∈ys)) a∈zs ... | no a∉ys = us≠zs a (xs-ys⊆us a (here refl)) a∈zs R-maintain-lift-4' {x ∷ xs} ys xs-ys⊆us us≠zs ys++ws⊆vs vs≠zs a (there a∈xs) a∈zs with any (_≟_ x) ys ... | yes x∈ys = R-maintain-lift-4' ys xs-ys⊆us us≠zs ys++ws⊆vs vs≠zs a a∈xs a∈zs ... | no x∉ys = R-maintain-lift-4' ys (proj₂ (∪¹-unjoin-⊆¹ [ x ] xs-ys⊆us)) us≠zs ys++ws⊆vs vs≠zs a a∈xs a∈zs R-maintain-lift-4 : ∀ {ws³ us³ vs³ xs³ zs³} ys³ → (xs³ - ys³) ⊆ us³ → distinct us³ zs³ → (ys³ ∪ ws³) ⊆ vs³ → distinct vs³ zs³ → distinct xs³ zs³ R-maintain-lift-4 ys³ xs³-ys³⊆us³ us³≠zs³ ys³∪ws³⊆vs³ vs³≠zs³ = R-maintain-lift-4' ,′ R-maintain-lift-4' ,′ R-maintain-lift-4' # ys³ # xs³-ys³⊆us³ # us³≠zs³ # ys³∪ws³⊆vs³ # vs³≠zs³ R-maintain-lift-5 : ∀ xs³ ys³ {zs³ ws³} → (ys³ ∪ zs³) ⊆ ws³ → (ys³ ∪ (xs³ ∪ zs³)) ⊆ (xs³ ∪ ws³) R-maintain-lift-5 xs³ ys³ ys³∪zs³⊆ws³ with ∪-unjoin-⊆ ys³ ys³∪zs³⊆ws³ ... | ys³⊆ws³ , zs³⊆ws³ = ∪-join-⊆ (∪ʳ xs³ ys³⊆ws³) (∪-respect-⊆-right xs³ zs³⊆ws³) R-maintain-lift-0 : ∀{p θ q BVp FVp E A} → CorrectBinding p BVp FVp → p ≐ E ⟦ ρ⟨ θ , A ⟩· q ⟧e → Σ (VarList × VarList) λ { (BV' , FV') → (BV' ⊆ BVp × FV' ⊆ FVp) × CorrectBinding (ρ⟨ θ , A ⟩· E ⟦ q ⟧e) BV' FV' } R-maintain-lift-0 cbp dehole = _ , (⊆-refl , ⊆-refl) , cbp R-maintain-lift-0 (CBpar {BVq = BVq'} {FVq = FVq'} cbp' cbq' BVp'≠BVq' FVp'≠BVq' BVp'≠FVq' Xp'≠Xq') (depar₁ p'≐E⟦ρθ⟧) with R-maintain-lift-0 cbp' p'≐E⟦ρθ⟧ ... | (BV' , FV') , (BV'⊆BVp' , FV'⊆FVp') , CBρ {θ} {_} {_} {BVp''} {FVp''} cbp'' = _ , (⊆-subst-left (∪-assoc (Dom θ) BVp'' BVq') (∪-respect-⊆-left BV'⊆BVp') ,′ R-maintain-lift-2 FVp'' (Dom θ) FV'⊆FVp') ,′ CBρ (CBpar cbp'' cbq' (R-maintain-lift-3 (Dom θ) BV'⊆BVp' BVp'≠BVq') (R-maintain-lift-4 (Dom θ) FV'⊆FVp' FVp'≠BVq' BV'⊆BVp' BVp'≠BVq') (R-maintain-lift-3 (Dom θ) BV'⊆BVp' BVp'≠FVq') (R-maintain-lift-4' (proj₂ (proj₂ (Dom θ))) (proj₂ (proj₂ FV'⊆FVp')) Xp'≠Xq' (proj₂ (proj₂ BV'⊆BVp')) (proj₂ (proj₂ BVp'≠FVq')))) R-maintain-lift-0 (CBpar {BVp = BVp'} {FVp = FVp'} cbp' cbq' BVp'≠BVq' FVp'≠BVq' BVp'≠FVq' Xp'≠Xq') (depar₂ q'≐E⟦ρθ⟧) with R-maintain-lift-0 cbq' q'≐E⟦ρθ⟧ ... | (BV' , FV') , (BV'⊆BVq' , FV'⊆FVq') , CBρ {θ} {_} {_} {BVq''} {FVq''} cbq'' = _ , (R-maintain-lift-5 BVp' (Dom θ) BV'⊆BVq' ,′ R-maintain-lift-6 FVp' FVq'' (Dom θ) FV'⊆FVq') ,′ CBρ (CBpar cbp' cbq'' (distinct-sym (R-maintain-lift-3 (Dom θ) BV'⊆BVq' (distinct-sym BVp'≠BVq'))) (distinct-sym (R-maintain-lift-3 (Dom θ) BV'⊆BVq' (distinct-sym FVp'≠BVq'))) (distinct-sym (R-maintain-lift-4 (Dom θ) FV'⊆FVq' (distinct-sym BVp'≠FVq') BV'⊆BVq' (distinct-sym BVp'≠BVq'))) (distinct'-sym (R-maintain-lift-4' (proj₂ (proj₂ (Dom θ))) (proj₂ (proj₂ FV'⊆FVq')) (distinct'-sym Xp'≠Xq') (proj₂ (proj₂ BV'⊆BVq')) (distinct'-sym (proj₂ (proj₂ FVp'≠BVq')))))) R-maintain-lift-0 (CBseq cbp' cbq' BV≠FV) (deseq p'≐E⟦ρθ⟧) with R-maintain-lift-0 cbp' p'≐E⟦ρθ⟧ ... | (BV' , FV') , (BV'⊆BVp' , FV'⊆FVp') , CBρ {θ} {_} {_} {BVp''} {FVp''} cbp'' = _ , (∪-join-⊆ (∪ˡ (∪-unjoin-⊆ˡ {Dom θ} BV'⊆BVp')) (∪-respect-⊆-left (∪-unjoin-⊆ʳ (Dom θ) BV'⊆BVp')) ,′ R-maintain-lift-2 FVp'' (Dom θ) FV'⊆FVp') ,′ CBρ (CBseq cbp'' cbq' (⊆-respect-distinct-left (∪-unjoin-⊆ʳ (Dom θ) BV'⊆BVp') BV≠FV)) R-maintain-lift-0 (CBloopˢ cbp' cbq' BVp'≠FVq' BVq'≠FVq') (deloopˢ p'≐E⟦ρθ⟧) with R-maintain-lift-0 cbp' p'≐E⟦ρθ⟧ ... | (BV' , FV') , (BV'⊆BVp' , FV'⊆FVp') , CBρ {θ} {_} {_} {BVp''} {FVp''} cbp'' = _ , (∪-join-⊆ (∪ˡ (∪-unjoin-⊆ˡ {Dom θ} BV'⊆BVp')) (∪-respect-⊆-left (∪-unjoin-⊆ʳ (Dom θ) BV'⊆BVp')) ,′ R-maintain-lift-2 FVp'' (Dom θ) FV'⊆FVp') ,′ CBρ (CBloopˢ cbp'' cbq' (⊆-respect-distinct-left (∪-unjoin-⊆ʳ (Dom θ) BV'⊆BVp') BVp'≠FVq') BVq'≠FVq') R-maintain-lift-0 (CBsusp {S = S} cbp' S∉BV) (desuspend p'≐E⟦ρθ⟧) with R-maintain-lift-0 cbp' p'≐E⟦ρθ⟧ ... | (BV' , FV') , (BV'⊆BVp' , FV'⊆FVp') , CBρ {θ} {_} {_} {BVp''} {FVp''} cbp'' = _ , (BV'⊆BVp' ,′ (R-maintain-lift-1 (Signal.unwrap S) (proj₁ FVp'') (proj₁ (Dom θ)) (proj₁ FV'⊆FVp') ,′ proj₁ (proj₂ FV'⊆FVp') ,′ proj₂ (proj₂ FV'⊆FVp'))) ,′ CBρ (CBsusp cbp'' (λ S' S'∈[S] S'∈BV → S∉BV S' S'∈[S] (proj₁ BV'⊆BVp' S' (++ʳ (proj₁ (Dom θ)) S'∈BV)))) R-maintain-lift-0 (CBtrap cbp') (detrap p'≐E⟦ρθ⟧) with R-maintain-lift-0 cbp' p'≐E⟦ρθ⟧ ... | (BV' , FV') , ⟨BV'⊆BVp'⟩×⟨FV'⊆FVp'⟩ , CBρ cbp'' = _ , ⟨BV'⊆BVp'⟩×⟨FV'⊆FVp'⟩ ,′ CBρ (CBtrap cbp'') R-maintain-raise-var-0 : ∀{xs θ e} → ∀ x e' → (VarMap.keys (VarMap.[ x ↦ δ {θ} {e} e' ]) ++ xs) ⊆¹ (SeqVar.unwrap x ∷ xs) R-maintain-raise-var-0 x e' x' x'∈[x]++BV rewrite VarMap.keys-1map x (δ e') = x'∈[x]++BV R-maintain-raise-var-1 : ∀ ys {θ e} → ∀ x e' → set-subtract ys (VarMap.keys VarMap.[ x ↦ δ {θ} {e} e' ]) ⊆¹ set-subtract ys (SeqVar.unwrap x ∷ []) R-maintain-raise-var-1 ys x e' x' x'∈ys-[x] rewrite VarMap.keys-1map x (δ e') = x'∈ys-[x] R-maintains-binding : ∀{p q BV FV} → CorrectBinding p BV FV → p sn⟶₁ q → Σ (VarList × VarList) λ { (BV' , FV') → CorrectBinding q BV' FV' × BV' ⊆ BV × FV' ⊆ FV} R-maintains-binding (CBpar{BVp = BVp}{FVp = FVp} cbp cbq BVp≠BVq FVp≠BVq BVp≠FVq Xp≠Xq) (rpar-done-right hnothin (dhalted q')) = _ , cbq , ∪ʳ BVp ((λ x x₁ → x₁) , (λ x x₁ → x₁) , (λ x x₁ → x₁)) , ∪ʳ FVp ((λ x x₁ → x₁) , (λ x x₁ → x₁) , (λ x x₁ → x₁)) R-maintains-binding (CBpar cbp cbq BVp≠BVq FVp≠BVq BVp≠FVq Xp≠Xq) (rpar-done-right (hexit _) (dhalted hnothin)) = _ , CBexit , ((λ x → λ ()) , ((λ x → λ ()) , (λ x → λ ()))) , ((λ x → λ ()) , ((λ x → λ ()) , (λ x → λ ()))) R-maintains-binding (CBpar cbp cbq BVp≠BVq FVp≠BVq BVp≠FVq Xp≠Xq) (rpar-done-right (hexit _) (dhalted (hexit _))) = _ , CBexit , (((λ x → λ ()) , ((λ x → λ ()) , (λ x → λ ())))) , ((λ x → λ ()) , ((λ x → λ ()) , (λ x → λ ()))) R-maintains-binding (CBpar{BVp = BVp}{FVp = FVp} cbp cbq BVp≠BVq FVp≠BVq BVp≠FVq Xp≠Xq) (rpar-done-right hnothin (dpaused q')) = _ , cbq , ∪ʳ BVp ((λ x x₁ → x₁) , (λ x x₁ → x₁) , (λ x x₁ → x₁)) , ∪ʳ FVp ((λ x x₁ → x₁) , (λ x x₁ → x₁) , (λ x x₁ → x₁)) R-maintains-binding (CBpar cbp cbq BVp≠BVq FVp≠BVq BVp≠FVq Xp≠Xq) (rpar-done-right (hexit _) (dpaused q')) = _ , CBexit , (((λ x → λ ()) , ((λ x → λ ()) , (λ x → λ ())))) , ((λ x → λ ()) , ((λ x → λ ()) , (λ x → λ ()))) R-maintains-binding (CBpar{BVp = BVp}{FVp = FVp} cbp cbq BVp≠BVq FVp≠BVq BVp≠FVq Xp≠Xq) (rpar-done-left (dhalted hnothin) q') = _ , cbq , ∪ʳ BVp ((λ x x₁ → x₁) , (λ x x₁ → x₁) , (λ x x₁ → x₁)) , ∪ʳ FVp ((λ x x₁ → x₁) , (λ x x₁ → x₁) , (λ x x₁ → x₁)) R-maintains-binding (CBpar cbp cbq BVp≠BVq FVp≠BVq BVp≠FVq Xp≠Xq) (rpar-done-left (dhalted (hexit _)) hnothin) = _ , CBexit , (((λ x → λ ()) , ((λ x → λ ()) , (λ x → λ ())))) , ((λ x → λ ()) , ((λ x → λ ()) , (λ x → λ ()))) R-maintains-binding (CBpar cbp cbq BVp≠BVq FVp≠BVq BVp≠FVq Xp≠Xq) (rpar-done-left (dhalted (hexit _)) (hexit _)) = _ , CBexit , (((λ x → λ ()) , ((λ x → λ ()) , (λ x → λ ())))) , ((λ x → λ ()) , ((λ x → λ ()) , (λ x → λ ()))) R-maintains-binding (CBpar cbp cbq BVp≠BVq FVp≠BVq BVp≠FVq Xp≠Xq) (rpar-done-left (dpaused p') hnothin) = _ , cbp , ∪ˡ ((λ x x₁ → x₁) , (λ x x₁ → x₁) , (λ x x₁ → x₁)), ∪ˡ ((λ x x₁ → x₁) , (λ x x₁ → x₁) , (λ x x₁ → x₁)) R-maintains-binding (CBpar cbp cbq BVp≠BVq FVp≠BVq BVp≠FVq Xp≠Xq) (rpar-done-left (dpaused p') (hexit _)) = _ , CBexit , (((λ x → λ ()) , ((λ x → λ ()) , (λ x → λ ())))) , ((λ x → λ ()) , ((λ x → λ ()) , (λ x → λ ()))) R-maintains-binding {(ρ⟨ θ , A ⟩· p)} (CBρ cb) red@(ris-present S∈ θS≡present p≐E⟦presentS⟧) with binding-extract cb p≐E⟦presentS⟧ ... | _ , _ , cbpresent@(CBpresent {S = S} cbp' cbq') with binding-subst cb p≐E⟦presentS⟧ cbpresent (∪ˡ ⊆-refl) (∪ʳ (+S S base) (∪ˡ ⊆-refl)) cbp' ... | _ , (a , b) , cb' = _ , CBρ cb' , ∪-respect-⊆-right (Dom θ) a , ⊆-respect-|̌ (Dom θ) b R-maintains-binding {(ρ⟨ θ , A ⟩· p)} (CBρ cb) red@(ris-absent S∈ θS≡absent p≐E⟦presentS⟧) with binding-extract cb p≐E⟦presentS⟧ ... | _ , _ , cbpresent@(CBpresent {S = S} {BVp = BVp'} {FVp = FVp'} cbp' cbq') with binding-subst cb p≐E⟦presentS⟧ cbpresent (∪ʳ BVp' ⊆-refl) (∪ʳ (+S S base) (∪ʳ FVp' ⊆-refl)) cbq' ... | _ , (a , b) , cb' = _ , CBρ cb' , ∪-respect-⊆-right (Dom θ) a , ⊆-respect-|̌ (Dom θ) b R-maintains-binding {(ρ⟨ θ , A ⟩· p)} (CBρ cb) (remit{S = S} S∈ θS≢absent p≐E⟦emitS⟧) with binding-extract cb p≐E⟦emitS⟧ ... | _ , _ , cbemit with binding-subst cb p≐E⟦emitS⟧ cbemit ⊆-empty-left ⊆-empty-left CBnothing ... | _ , (a , b) , cbp' rewrite cong fst (sig-set-dom-eq S Signal.present θ S∈) = _ , CBρ cbp' , ∪-respect-⊆-right (Dom θ') a , ⊆-respect-|̌ (Dom θ') b where θ' = (set-sig{S} θ S∈ Signal.present) R-maintains-binding {(loop p)} {FV = FV2} (CBloop {BV = BV}{FV = FV} cb BV≠FV) rloop-unroll = _ , (CBloopˢ cb cb BV≠FV BV≠FV) , (sub BV , sub FV) where sub1 : ∀ x → (x ++ x) ⊆¹ x sub1 x z y with ++⁻ x y ... | inj₁ a = a ... | inj₂ a = a sub : ∀ x → (x ∪ x) ⊆ x sub x = sub1 , sub1 , sub1 # x R-maintains-binding (CBseq{BVp = BVp}{FVp = FVp} cbp cbq BV≠FV) rseq-done = _ , cbq , ∪ʳ BVp ⊆-refl , ∪ʳ FVp ⊆-refl R-maintains-binding (CBseq cbp cbq BV≠FV) rseq-exit = _ , CBexit , ⊆-empty-left , ⊆-empty-left R-maintains-binding (CBloopˢ cbp cbq BV≠FV _) rloopˢ-exit = _ , CBexit , ⊆-empty-left , ⊆-empty-left R-maintains-binding (CBsusp cb _) (rsuspend-done _) = _ , cb , ⊆-refl , ((λ x x₁ → there x₁) , (λ x z → z) , (λ x z → z)) R-maintains-binding (CBtrap cb) (rtrap-done hnothin) = _ , CBnothing , ⊆-empty-left , ⊆-empty-left R-maintains-binding (CBtrap cb) (rtrap-done (hexit zero)) = _ , CBnothing , ⊆-empty-left , ⊆-empty-left R-maintains-binding (CBtrap cb) (rtrap-done (hexit (suc n))) = _ , CBexit , ⊆-empty-left , ⊆-empty-left R-maintains-binding (CBsig{S = S}{FV = FV} cb) rraise-signal = _ , CBρ cb , ( (R-maintain-raise-sig-0 S) ,′ ⊆¹-refl ,′ ⊆¹-refl) , ((R-maintain-raise-sig-1 (fst FV) S) ,′ ⊆¹-refl ,′ ⊆¹-refl) R-maintains-binding (CBρ{θ = θ} cb) (rraise-shared {s = s} {e} e' p≐E⟦shared⟧) with binding-extract cb p≐E⟦shared⟧ ... | _ , _ , cbshr@(CBshared {FV = FV} cbp) with binding-subst cb p≐E⟦shared⟧ cbshr (⊆¹-refl ,′ -- S'∈BVp R-maintain-raise-shared-0 s e' ,′ ⊆¹-refl) -- x'∈BVp (∪ʳ (FVₑ e) (⊆¹-refl ,′ -- S'∈FVe+⟨FVp-s⟩ R-maintain-raise-shared-1 (proj₁ (proj₂ FV)) s e' ,′ ⊆¹-refl)) -- x'∈FVe+⟨FVp-s⟩ (CBρ cbp) ... | _ , (a , b) , cbp' = _ , CBρ cbp' , ∪-respect-⊆-right (Dom θ) a , ⊆-respect-|̌ (Dom θ) b R-maintains-binding (CBρ{θ = θ} cb) (rset-shared-value-old{s = s} e' s∈ θs≡old p≐E⟦s⇐e⟧) with binding-extract cb p≐E⟦s⇐e⟧ ... | _ , _ , cbshrset with binding-subst cb p≐E⟦s⇐e⟧ cbshrset ⊆-empty-left ⊆-empty-left CBnothing ... | _ , (a , b) , cb' rewrite cong snd (shr-set-dom-eq s SharedVar.new (δ e') θ s∈) = _ , CBρ cb' , ∪-respect-⊆-right (Dom (set-shr{s = s} θ s∈ SharedVar.new (δ e'))) a , ⊆-respect-|̌ (Dom (set-shr{s = s} θ s∈ SharedVar.new (δ e'))) b R-maintains-binding (CBρ{θ = θ} cb) (rset-shared-value-new{s = s} e' s∈ θs≡new p≐E⟦s⇐e⟧) with binding-extract cb p≐E⟦s⇐e⟧ ... | _ , _ , cbshrset with binding-subst cb p≐E⟦s⇐e⟧ cbshrset ⊆-empty-left ⊆-empty-left CBnothing ... | _ , (a , b) , cb' rewrite cong snd (shr-set-dom-eq s SharedVar.new ((shr-vals{s} θ s∈) + (δ e')) θ s∈) = _ , CBρ cb' , ( ∪-respect-⊆-right (Dom (set-shr{s = s} θ s∈ SharedVar.new _)) a) , ⊆-respect-|̌ (Dom (set-shr{s = s} θ s∈ SharedVar.new _)) b R-maintains-binding (CBρ{θ = θ} cb) (rraise-var {x = x} {e = e} e' p≐E⟦var⟧) with binding-extract cb p≐E⟦var⟧ ... | _ , _ , cbvar@(CBvar {FV = FV} cbp) with binding-subst cb p≐E⟦var⟧ cbvar (⊆¹-refl ,′ ⊆¹-refl ,′ R-maintain-raise-var-0 x e') (∪ʳ (FVₑ e) (⊆¹-refl ,′ ⊆¹-refl ,′ R-maintain-raise-var-1 (proj₂ (proj₂ FV)) x e')) (CBρ cbp) ... | _ , (a , b) , cb' = _ , CBρ cb' , ( ∪-respect-⊆-right (Dom θ) a) , ⊆-respect-|̌ (Dom θ) b R-maintains-binding (CBρ{θ = θ} cb) (rset-var{x = x} x∈ e' p≐E⟦x≔e⟧) with binding-extract cb p≐E⟦x≔e⟧ ... | _ , _ , cbvarset with binding-subst cb p≐E⟦x≔e⟧ cbvarset ⊆-empty-left ⊆-empty-left CBnothing ... | _ , (a , b) , cb' rewrite cong thd (seq-set-dom-eq x (δ e') θ x∈) = _ , CBρ cb' , ∪-respect-⊆-right (Dom (set-var{x} θ x∈ (δ e'))) a , ⊆-respect-|̌ (Dom (set-var{x} θ x∈ (δ e'))) b R-maintains-binding (CBρ{θ = θ} cb) (rif-false x∈ θx≡zero p≐E⟦if⟧) with binding-extract cb p≐E⟦if⟧ ... | _ , _ , cbif@(CBif {x = x} {BVp = BVp} {FVp = FVp} cbp cbq) with binding-subst cb p≐E⟦if⟧ cbif (∪ʳ BVp ⊆-refl) (∪ʳ (+x x base) (∪ʳ FVp ⊆-refl)) cbq ... | _ , (a , b) , cb' = _ , CBρ cb' , ( ∪-respect-⊆-right (Dom θ) a) , ( ⊆-respect-|̌ (Dom θ) b) R-maintains-binding (CBρ{θ = θ} cb) (rif-true x∈ θx≡suc p≐E⟦if⟧) with binding-extract cb p≐E⟦if⟧ ... | _ , _ , cbif@(CBif {x = x} cbp cbq) with binding-subst cb p≐E⟦if⟧ cbif (∪ˡ ⊆-refl) (∪ʳ (+x x base) (∪ˡ ⊆-refl)) cbp ... | _ , (a , b) , cb' = _ , CBρ cb' , ∪-respect-⊆-right (Dom θ) a , ( ⊆-respect-|̌ (Dom θ) b) R-maintains-binding (CBρ{θ = θ} cb) (rabsence{S = S} S∈ θS≡unknown S∉canₛ) rewrite cong fst (sig-set-dom-eq S Signal.absent θ S∈) = _ , CBρ cb , ⊆-refl , ⊆-refl R-maintains-binding (CBρ{θ = θ} cb) (rreadyness{s = s} s∈ θs≡old⊎θs≡new s∉canₛₕ) rewrite cong snd (shr-set-dom-eq s SharedVar.ready (shr-vals{s} θ s∈) θ s∈) = _ , CBρ cb , ⊆-refl , ⊆-refl R-maintains-binding (CBρ{θ = θo}{BV = BVo}{FV = FVo} cb) (rmerge{θ₂ = θi} p≐E⟦ρθ⟧) with R-maintain-lift-0 cb p≐E⟦ρθ⟧ ... | _ , (a , b) , cb'@(CBρ{BV = BVi}{FV = FVi} cbp'') = _ , CBρ cbp'' , bvsub , fvsub where fvsubS : (set-subtract (fst FVi) (fst (Dom (θo ← θi)))) ⊆¹ (set-subtract (fst FVo) (fst (Dom θo))) fvsubS x x∈FVi\Dom⟨θo←θi⟩ with set-subtract-merge{fst FVi}{(fst (Dom (θo ← θi)))}{x} x∈FVi\Dom⟨θo←θi⟩ ... | (x∈FVi , x∉Dom⟨θo←θi⟩) = set-subtract-notin ((fst b) x (set-subtract-notin x∈FVi x∉Dom⟨θi⟩)) x∉Dom⟨θo⟩ where x∉Dom⟨θo⟩ : x ∉ fst (Dom θo) x∉Dom⟨θo⟩ x∈Dom⟨θo⟩ = x∉Dom⟨θo←θi⟩ (sig-←-monoˡ (x ₛ) θo θi x∈Dom⟨θo⟩) x∉Dom⟨θi⟩ : x ∉ fst (Dom θi) x∉Dom⟨θi⟩ x∈Dom⟨θi⟩ = x∉Dom⟨θo←θi⟩ (sig-←-monoʳ (x ₛ) θi θo x∈Dom⟨θi⟩) fvsubs : (set-subtract (snd FVi) (snd (Dom (θo ← θi)))) ⊆¹ (set-subtract (snd FVo) (snd (Dom θo))) fvsubs x x∈FVi\Dom⟨θo←θi⟩ with set-subtract-merge{snd FVi}{(snd (Dom (θo ← θi)))}{x} x∈FVi\Dom⟨θo←θi⟩ ... | (x∈FVi , x∉Dom⟨θo←θi⟩) = set-subtract-notin ((snd b) x (set-subtract-notin x∈FVi x∉Dom⟨θi⟩)) x∉Dom⟨θo⟩ where x∉Dom⟨θo⟩ : x ∉ snd (Dom θo) x∉Dom⟨θo⟩ x∈Dom⟨θo⟩ = x∉Dom⟨θo←θi⟩ (shr-←-monoˡ (x ₛₕ) θo θi x∈Dom⟨θo⟩) x∉Dom⟨θi⟩ : x ∉ snd (Dom θi) x∉Dom⟨θi⟩ x∈Dom⟨θi⟩ = x∉Dom⟨θo←θi⟩ (shr-←-monoʳ (x ₛₕ) θi θo x∈Dom⟨θi⟩) fvsubx : (set-subtract (thd FVi) (thd (Dom (θo ← θi)))) ⊆¹ (set-subtract (thd FVo) (thd (Dom θo))) fvsubx x x∈FVi\Dom⟨θo←θi⟩ with set-subtract-merge{thd FVi}{(thd (Dom (θo ← θi)))}{x} x∈FVi\Dom⟨θo←θi⟩ ... | (x∈FVi , x∉Dom⟨θo←θi⟩) = set-subtract-notin ((thd b) x (set-subtract-notin x∈FVi x∉Dom⟨θi⟩)) x∉Dom⟨θo⟩ where x∉Dom⟨θo⟩ : x ∉ thd (Dom θo) x∉Dom⟨θo⟩ x∈Dom⟨θo⟩ = x∉Dom⟨θo←θi⟩ (seq-←-monoˡ (x ᵥ) θo θi x∈Dom⟨θo⟩) x∉Dom⟨θi⟩ : x ∉ thd (Dom θi) x∉Dom⟨θi⟩ x∈Dom⟨θi⟩ = x∉Dom⟨θo←θi⟩ (seq-←-monoʳ (x ᵥ) θi θo x∈Dom⟨θi⟩) fvsub : (FVi - (Dom (θo ← θi))) ⊆ (FVo - (Dom θo)) fvsub = fvsubS , fvsubs , fvsubx bvsubS : ((fst (Dom (θo ← θi))) ++ (fst BVi)) ⊆¹ ((fst (Dom θo)) ++ (fst BVo)) bvsubS x y with ++⁻ (fst (Dom (θo ← θi))) y ... | inj₂ x∈BVi = ++ʳ (fst $ Dom θo) ((fst a) x (++ʳ (fst $ Dom θi) x∈BVi)) ... | inj₁ x∈⟨θo←θi⟩ with sig-←⁻{θo}{θi} (x ₛ) x∈⟨θo←θi⟩ ... | inj₁ x∈θo = ++ˡ x∈θo ... | inj₂ x∈θi = ++ʳ (fst $ Dom θo) ((fst a) x (++ˡ x∈θi)) bvsubs : ((snd (Dom (θo ← θi))) ++ (snd BVi)) ⊆¹ ((snd (Dom θo)) ++ (snd BVo)) bvsubs x y with ++⁻ (snd (Dom (θo ← θi))) y ... | inj₂ x∈BVi = ++ʳ (snd $ Dom θo) ((snd a) x (++ʳ (snd $ Dom θi) x∈BVi)) ... | inj₁ x∈⟨θo←θi⟩ with shr-←⁻{θo}{θi} (x ₛₕ) x∈⟨θo←θi⟩ ... | inj₁ x∈θo = ++ˡ x∈θo ... | inj₂ x∈θi = ++ʳ (snd $ Dom θo) ((snd a) x (++ˡ x∈θi)) bvsubx : ((thd (Dom (θo ← θi))) ++ (thd BVi)) ⊆¹ ((thd (Dom θo)) ++ (thd BVo)) bvsubx x y with ++⁻ (thd (Dom (θo ← θi))) y ... | inj₂ x∈BVi = ++ʳ (thd $ Dom θo) ((thd a) x (++ʳ (thd $ Dom θi) x∈BVi)) ... | inj₁ x∈⟨θo←θi⟩ with seq-←⁻{θo}{θi} (x ᵥ) x∈⟨θo←θi⟩ ... | inj₁ x∈θo = ++ˡ x∈θo ... | inj₂ x∈θi = ++ʳ (thd $ Dom θo) ((thd a) x (++ˡ x∈θi)) bvsub : ((Dom (θo ← θi)) ∪ BVi) ⊆ ((Dom θo) ∪ BVo) bvsub = bvsubS , bvsubs , bvsubx -- R-maintains-binding : ∀{p q BV FV} → CorrectBinding p BV FV → p sn⟶₁ q → Σ (VarList × VarList) λ { (BV' , FV') → CorrectBinding q BV' FV' } sn⟶-maintains-binding : ∀ {p BV FV q} → CorrectBinding p BV FV → p sn⟶ q → Σ (VarList × VarList) λ {(BVq , FVq) → CorrectBinding q BVq FVq × BVq ⊆ BV × FVq ⊆ FV } sn⟶-maintains-binding CBp (rcontext C dc p₁sn⟶₁q₁) with binding-extractc' CBp dc ... | (BVp₁ , FVp₁) , CBp₁ with R-maintains-binding CBp₁ p₁sn⟶₁q₁ ... | (BVq₁ , FVq₁) , (CBq₁ , BVq₁⊆BVp₁ , FVq₁⊆FVp₁) with binding-substc' CBp dc CBp₁ BVq₁⊆BVp₁ FVq₁⊆FVp₁ CBq₁ ... | (BVq , FVq) , ((BVq⊆BVp , FVq⊆FVp), CBq) = (BVq , FVq) , (CBq , BVq⊆BVp , FVq⊆FVp) sn⟶*-maintains-binding : ∀ {p BV FV q} → CorrectBinding p BV FV → p sn⟶* q → Σ (VarList × VarList) λ {(BVq , FVq) → CorrectBinding q BVq FVq} sn⟶*-maintains-binding cb rrefl = _ , cb sn⟶*-maintains-binding cb (rstep x psn⟶*q) = sn⟶*-maintains-binding (proj₁ (proj₂ (sn⟶-maintains-binding cb x))) psn⟶*q CB-preservation : ∀ p q C → CB (C ⟦ p ⟧c) → p sn⟶₁ q → CB (C ⟦ q ⟧c) CB-preservation p q C CBp psn⟶₁q with sn⟶-maintains-binding{p = C ⟦ p ⟧c}{q = C ⟦ q ⟧c} CBp (rcontext C Crefl psn⟶₁q) ... | (BV , FV) , CBq , _ with BVFVcorrect (C ⟦ q ⟧c) BV FV CBq ... | refl , refl = CBq CB-preservation* : ∀ p q → CB p → p sn⟶* q → CB q CB-preservation* p q CBp psn⟶*q with sn⟶*-maintains-binding CBp psn⟶*q ... | (BV , FV) , CBq with BVFVcorrect q BV FV CBq ... | refl , refl = CBq
2 - chave e valor (recursivo)/TLexer.g4
melchisedech333/antlr4-experiments
1
3264
<reponame>melchisedech333/antlr4-experiments lexer grammar TLexer; @lexer::postinclude { #ifndef _WIN32 #pragma GCC diagnostic ignored "-Wunused-parameter" #endif } /* Tokens. */ STRING : '"' .*? '"' ; NUMBER : [0-9]+ ; OPEN : '{' ; CLOSE : '}' ; ATTR : ':' ; SEPARATOR : ',' ; /* Ignora-os... */ SPACETABS : (' ' | '\t' | '\r' | '\n' ) -> skip; /* Tokens desconhecidos. */ UNKNOWN : . ;
bundles/org.pgcase.xobot.parsers/grammar/org/pgcase/xobot/parsers/postgres/PlPgSqlKeyWords.g4
pgcase/xobot-ide
2
1775
lexer grammar PlPgSqlKeyWords; // PG_KEYWORD("all", K_ALL, RESERVED_KEYWORD) // PG_KEYWORD("begin", K_BEGIN, RESERVED_KEYWORD) // PG_KEYWORD("by", K_BY, RESERVED_KEYWORD) // PG_KEYWORD("case", K_CASE, RESERVED_KEYWORD) // PG_KEYWORD("close", K_CLOSE, RESERVED_KEYWORD) // PG_KEYWORD("collate", K_COLLATE, RESERVED_KEYWORD) // PG_KEYWORD("continue", K_CONTINUE, RESERVED_KEYWORD) // PG_KEYWORD("declare", K_DECLARE, RESERVED_KEYWORD) // PG_KEYWORD("default", K_DEFAULT, RESERVED_KEYWORD) // PG_KEYWORD("diagnostics", K_DIAGNOSTICS, RESERVED_KEYWORD) // PG_KEYWORD("else", K_ELSE, RESERVED_KEYWORD) // PG_KEYWORD("elseif", K_ELSIF, RESERVED_KEYWORD) // PG_KEYWORD("elsif", K_ELSIF, RESERVED_KEYWORD) // PG_KEYWORD("end", K_END, RESERVED_KEYWORD) // PG_KEYWORD("exception", K_EXCEPTION, RESERVED_KEYWORD) // PG_KEYWORD("execute", K_EXECUTE, RESERVED_KEYWORD) // PG_KEYWORD("exit", K_EXIT, RESERVED_KEYWORD) // PG_KEYWORD("fetch", K_FETCH, RESERVED_KEYWORD) // PG_KEYWORD("for", K_FOR, RESERVED_KEYWORD) // PG_KEYWORD("foreach", K_FOREACH, RESERVED_KEYWORD) // PG_KEYWORD("from", K_FROM, RESERVED_KEYWORD) // PG_KEYWORD("get", K_GET, RESERVED_KEYWORD) // PG_KEYWORD("if", K_IF, RESERVED_KEYWORD) // PG_KEYWORD("in", K_IN, RESERVED_KEYWORD) // PG_KEYWORD("insert", K_INSERT, RESERVED_KEYWORD) // PG_KEYWORD("into", K_INTO, RESERVED_KEYWORD) // PG_KEYWORD("loop", K_LOOP, RESERVED_KEYWORD) // PG_KEYWORD("move", K_MOVE, RESERVED_KEYWORD) // PG_KEYWORD("not", K_NOT, RESERVED_KEYWORD) // PG_KEYWORD("null", K_NULL, RESERVED_KEYWORD) // PG_KEYWORD("open", K_OPEN, RESERVED_KEYWORD) // PG_KEYWORD("or", K_OR, RESERVED_KEYWORD) // PG_KEYWORD("perform", K_PERFORM, RESERVED_KEYWORD) // PG_KEYWORD("raise", K_RAISE, RESERVED_KEYWORD) // PG_KEYWORD("return", K_RETURN, RESERVED_KEYWORD) // PG_KEYWORD("strict", K_STRICT, RESERVED_KEYWORD) // PG_KEYWORD("then", K_THEN, RESERVED_KEYWORD) // PG_KEYWORD("to", K_TO, RESERVED_KEYWORD) // PG_KEYWORD("using", K_USING, RESERVED_KEYWORD) // PG_KEYWORD("when", K_WHEN, RESERVED_KEYWORD) // PG_KEYWORD("while", K_WHILE, RESERVED_KEYWORD) // PG_KEYWORD("absolute", K_ABSOLUTE, UNRESERVED_KEYWORD) // PG_KEYWORD("alias", K_ALIAS, UNRESERVED_KEYWORD) // PG_KEYWORD("array", K_ARRAY, UNRESERVED_KEYWORD) // PG_KEYWORD("backward", K_BACKWARD, UNRESERVED_KEYWORD) // PG_KEYWORD("constant", K_CONSTANT, UNRESERVED_KEYWORD) // PG_KEYWORD("current", K_CURRENT, UNRESERVED_KEYWORD) // PG_KEYWORD("cursor", K_CURSOR, UNRESERVED_KEYWORD) // PG_KEYWORD("debug", K_DEBUG, UNRESERVED_KEYWORD) // PG_KEYWORD("detail", K_DETAIL, UNRESERVED_KEYWORD) // PG_KEYWORD("dump", K_DUMP, UNRESERVED_KEYWORD) // PG_KEYWORD("errcode", K_ERRCODE, UNRESERVED_KEYWORD) // PG_KEYWORD("error", K_ERROR, UNRESERVED_KEYWORD) // PG_KEYWORD("first", K_FIRST, UNRESERVED_KEYWORD) // PG_KEYWORD("forward", K_FORWARD, UNRESERVED_KEYWORD) // PG_KEYWORD("hint", K_HINT, UNRESERVED_KEYWORD) // PG_KEYWORD("info", K_INFO, UNRESERVED_KEYWORD) // PG_KEYWORD("is", K_IS, UNRESERVED_KEYWORD) // PG_KEYWORD("last", K_LAST, UNRESERVED_KEYWORD) // PG_KEYWORD("log", K_LOG, UNRESERVED_KEYWORD) // PG_KEYWORD("message", K_MESSAGE, UNRESERVED_KEYWORD) // PG_KEYWORD("message_text", K_MESSAGE_TEXT, UNRESERVED_KEYWORD) // PG_KEYWORD("next", K_NEXT, UNRESERVED_KEYWORD) // PG_KEYWORD("no", K_NO, UNRESERVED_KEYWORD) // PG_KEYWORD("notice", K_NOTICE, UNRESERVED_KEYWORD) // PG_KEYWORD("option", K_OPTION, UNRESERVED_KEYWORD) // PG_KEYWORD("pg_exception_context", K_PG_EXCEPTION_CONTEXT, UNRESERVED_KEYWORD) // PG_KEYWORD("pg_exception_detail", K_PG_EXCEPTION_DETAIL, UNRESERVED_KEYWORD) // PG_KEYWORD("pg_exception_hint", K_PG_EXCEPTION_HINT, UNRESERVED_KEYWORD) // PG_KEYWORD("prior", K_PRIOR, UNRESERVED_KEYWORD) // PG_KEYWORD("query", K_QUERY, UNRESERVED_KEYWORD) // PG_KEYWORD("relative", K_RELATIVE, UNRESERVED_KEYWORD) // PG_KEYWORD("result_oid", K_RESULT_OID, UNRESERVED_KEYWORD) // PG_KEYWORD("returned_sqlstate", K_RETURNED_SQLSTATE, UNRESERVED_KEYWORD) // PG_KEYWORD("reverse", K_REVERSE, UNRESERVED_KEYWORD) // PG_KEYWORD("row_count", K_ROW_COUNT, UNRESERVED_KEYWORD) // PG_KEYWORD("rowtype", K_ROWTYPE, UNRESERVED_KEYWORD) // PG_KEYWORD("scroll", K_SCROLL, UNRESERVED_KEYWORD) // PG_KEYWORD("slice", K_SLICE, UNRESERVED_KEYWORD) // PG_KEYWORD("sqlstate", K_SQLSTATE, UNRESERVED_KEYWORD) // PG_KEYWORD("stacked", K_STACKED, UNRESERVED_KEYWORD) // PG_KEYWORD("type", K_TYPE, UNRESERVED_KEYWORD) // PG_KEYWORD("use_column", K_USE_COLUMN, UNRESERVED_KEYWORD) // PG_KEYWORD("use_variable", K_USE_VARIABLE, UNRESERVED_KEYWORD) // PG_KEYWORD("variable_conflict", K_VARIABLE_CONFLICT, UNRESERVED_KEYWORD) // PG_KEYWORD("warning", K_WARNING, UNRESERVED_KEYWORD) //K_THEN : [tT][hH][eE][nN]; K_MESSAGE : [mM][eE][sS][sS][aA][gG][eE]; K_NEXT : [nN][eE][xX][tT]; // K_CASE : [cC][aA][sS][eE]; K_MESSAGE_TEXT : [mM][eE][sS][sS][aA][gG][eE][__][tT][eE][xX][tT]; //K_IS : [iI][sS]; K_STACKED : [sS][tT][aA][cC][kK][eE][dD]; // K_OR : [oO][rR]; K_DIAGNOSTICS : [dD][iI][aA][gG][nN][oO][sS][tT][iI][cC][sS]; K_PG_EXCEPTION_CONTEXT : [pP][gG][__][eE][xX][cC][eE][pP][tT][iI][oO][nN][__][cC][oO][nN][tT][eE][xX][tT]; K_LOOP : [lL][oO][oO][pP]; //K_NULL : [nN][uU][lL][lL]; K_USE_COLUMN : [uU][sS][eE][__][cC][oO][lL][uU][mM][nN]; //K_BEGIN : [bB][eE][gG][iI][nN]; //K_IN : [iI][nN]; //K_DEFAULT : [dD][eE][fF][aA][uU][lL][tT]; K_DUMP : [dD][uU][mM][pP]; K_SLICE : [sS][lL][iI][cC][eE]; //K_END : [eE][nN][dD]; K_EXECUTE : [eE][xX][eE][cC][uU][tT][eE]; //K_IF : [iI][fF]; K_COLLATE : [cC][oO][lL][lL][aA][tT][eE]; K_RESULT_OID : [rR][eE][sS][uU][lL][tT][__][oO][iI][dD]; // K_WHEN : [wW][hH][eE][nN]; K_WHILE : [wW][hH][iI][lL][eE]; K_ERROR : [eE][rR][rR][oO][rR]; K_FORWARD : [fF][oO][rR][wW][aA][rR][dD]; K_FOREACH : [fF][oO][rR][eE][aA][cC][hH]; K_RETURNED_SQLSTATE : [rR][eE][tT][uU][rR][nN][eE][dD][__][sS][qQ][lL][sS][tT][aA][tT][eE]; K_BACKWARD : [bB][aA][cC][kK][wW][aA][rR][dD]; K_EXCEPTION : [eE][xX][cC][eE][pP][tT][iI][oO][nN]; K_HINT : [hH][iI][nN][tT]; K_CURRENT : [cC][uU][rR][rR][eE][nN][tT]; K_RAISE : [rR][aA][iI][sS][eE]; K_OPEN : [oO][pP][eE][nN]; K_DETAIL : [dD][eE][tT][aA][iI][lL]; K_RETURN : [rR][eE][tT][uU][rR][nN]; K_CLOSE : [cC][lL][oO][sS][eE]; K_SCROLL : [sS][cC][rR][oO][lL][lL]; //K_TYPE : [tT][yY][pP][eE]; K_MOVE : [mM][oO][vV][eE]; K_USE_VARIABLE : [uU][sS][eE][__][vV][aA][rR][iI][aA][bB][lL][eE]; //K_DECLARE : [dD][eE][cC][lL][aA][rR][eE]; //K_ALL : [aA][lL][lL]; K_ALIAS : [aA][lL][iI][aA][sS]; K_INFO : [iI][nN][fF][oO]; //K_TO : [tT][oO]; K_NO : [nN][oO]; //K_ELSE : [eE][lL][sS][eE]; K_RELATIVE : [rR][eE][lL][aA][tT][iI][vV][eE]; K_LOG : [lL][oO][gG]; K_QUERY : [qQ][uU][eE][rR][yY]; K_GET : [gG][eE][tT]; //K_INSERT : [iI][nN][sS][eE][rR][tT]; K_CONTINUE : [cC][oO][nN][tT][iI][nN][uU][eE]; K_FETCH : [fF][eE][tT][cC][hH]; K_ROW_COUNT : [rR][oO][wW][__][cC][oO][uU][nN][tT]; K_DEBUG : [dD][eE][bB][uU][gG]; //K_SQLSTATE : [sS][qQ][lL][sS][tT][aA][tT][eE]; K_CONSTANT : [cC][oO][nN][sS][tT][aA][nN][tT]; //K_ARRAY : [aA][rR][rR][aA][yY]; K_CURSOR : [cC][uU][rR][sS][oO][rR]; K_PG_EXCEPTION_DETAIL : [pP][gG][__][eE][xX][cC][eE][pP][tT][iI][oO][nN][__][dD][eE][tT][aA][iI][lL]; K_ELSIF : [eE][lL][sS][eE][iI][fF] | [eE][lL][sS][iI][fF]; K_PRIOR : [pP][rR][iI][oO][rR]; //K_USING : [uU][sS][iI][nN][gG]; K_EXIT : [eE][xX][iI][tT]; //K_STRICT : [sS][tT][rR][iI][cC][tT]; K_ABSOLUTE : [aA][bB][sS][oO][lL][uU][tT][eE]; //K_FOR : [fF][oO][rR]; K_FIRST : [fF][iI][rR][sS][tT]; //K_NOT : [nN][oO][tT]; K_LAST : [lL][aA][sS][tT]; K_ROWTYPE : [rR][oO][wW][tT][yY][pP][eE]; K_VARIABLE_CONFLICT : [vV][aA][rR][iI][aA][bB][lL][eE][__][cC][oO][nN][fF][lL][iI][cC][tT]; K_PG_EXCEPTION_HINT : [pP][gG][__][eE][xX][cC][eE][pP][tT][iI][oO][nN][__][hH][iI][nN][tT]; K_OPTION : [oO][pP][tT][iI][oO][nN]; //K_BY : [bB][yY]; K_NOTICE : [nN][oO][tT][iI][cC][eE]; K_PERFORM : [pP][eE][rR][fF][oO][rR][mM]; // K_INTO : [iI][nN][tT][oO]; K_WARNING : [wW][aA][rR][nN][iI][nN][gG]; //K_FROM : [fF][rR][oO][mM]; //K_ERRCODE : [eE][rR][rR][cC][oO][dD][eE]; K_REVERSE : [rR][eE][vV][eE][rR][sS][eE];
source/core/lace-generic_engines.ads
reznikmm/lace
0
27440
<filename>source/core/lace-generic_engines.ads -- SPDX-FileCopyrightText: 2021 <NAME> <<EMAIL>> -- -- SPDX-License-Identifier: MIT ------------------------------------------------------------- with Ada.Containers.Hashed_Maps; with Program.Elements; with Program.Element_Vectors; with Lace.Element_Flat_Kinds; generic type Property_Name is (<>); type Property_Value is private; type Abstract_Context; type Variant_Kind is private; with function Hash (Value : Variant_Kind) return Ada.Containers.Hash_Type is <>; package Lace.Generic_Engines is pragma Preelaborate; type Engine (Context : access Abstract_Context) is tagged limited private; function Get_Property (Self : access Engine; Element : Program.Elements.Element_Access; Name : Property_Name) return Property_Value; -- Evaluate a property (with Name) for given Element function Get_Property (Self : access Engine; List : Program.Element_Vectors.Element_Vector_Access; Name : Property_Name; Empty : Property_Value; Sum : access function (Left, Right : Property_Value) return Property_Value) return Property_Value; -- Evaluate a property (with Name) for each Element and aggregate results -- with Sum function taking Empty as a start value. type Formula_Access is access function (Engine : access Abstract_Context; Element : Program.Elements.Element_Access; Name : Property_Name) return Property_Value; procedure Register_Formula (Self : in out Engine; Kind : Lace.Element_Flat_Kinds.Element_Flat_Kind; Name : Property_Name; Formula : not null Formula_Access); -- Register given function (Formula) as a calculator given property (with -- Name) for elements of given Kind. No selector could be set if there is -- a formula. type Selector_Access is access function (Engine : access Abstract_Context; Element : Program.Elements.Element_Access; Name : Property_Name) return Variant_Kind; procedure Register_Selector (Self : in out Engine; Kind : Lace.Element_Flat_Kinds.Element_Flat_Kind; Name : Property_Name; Selector : not null Selector_Access); -- Turn property with Name to multivariant form. Use Selector to choose -- a variant for particular Element. No formula could be set if there is -- a selector. procedure Register_Variant (Self : in out Engine; Kind : Lace.Element_Flat_Kinds.Element_Flat_Kind; Name : Property_Name; Variant : Variant_Kind; Formula : access function (Engine : access Abstract_Context; Element : Program.Elements.Element_Access; Name : Property_Name) return Property_Value); -- Register given function (Formula) as a calculator of the property -- Variant. The property should have a selector. private type Property_Key is record Kind : Lace.Element_Flat_Kinds.Element_Flat_Kind; Name : Property_Name; end record; function Hash (Value : Property_Key) return Ada.Containers.Hash_Type; type Property_Descriptor is record Formula : Formula_Access; -- Formula, only if no variant selector Selector : Selector_Access; -- Selector, only if no formula end record; package Property_Descriptor_Maps is new Ada.Containers.Hashed_Maps (Key_Type => Property_Key, Element_Type => Property_Descriptor, Hash => Hash, Equivalent_Keys => "=", "=" => "="); type Varian_Key is record Property : Property_Key; Variant : Variant_Kind; end record; function Hash (Value : Varian_Key) return Ada.Containers.Hash_Type; package Varian_Descriptor_Maps is new Ada.Containers.Hashed_Maps (Key_Type => Varian_Key, Element_Type => Formula_Access, Hash => Hash, Equivalent_Keys => "=", "=" => "="); type Engine (Context : access Abstract_Context) is tagged limited record Descriptor : Property_Descriptor_Maps.Map; Varian : Varian_Descriptor_Maps.Map; end record; end Lace.Generic_Engines;
text/maps/viridian_forest_exit.asm
adhi-thirumala/EvoYellow
9
99449
<filename>text/maps/viridian_forest_exit.asm _ViridianForestExitText1:: text "Many #MON live" line "only in forests " cont "and caves." para "You need to look" line "everywhere to get" cont "different kinds!" done _ViridianForestExitText2:: text "Have you noticed" line "the bushes on the" cont "roadside?" para "They can be cut" line "down by a special" cont "#MON move." done
proofs/AKS/Primality/Base.agda
mckeankylej/thesis
1
6706
<filename>proofs/AKS/Primality/Base.agda open import Relation.Binary.PropositionalEquality using (_≡_) module AKS.Primality.Base where open import AKS.Nat using (ℕ; _<_) open import AKS.Nat.GCD using (_∣_; _∤_) record IsPrime (p : ℕ) : Set where constructor IsPrime✓ field 1<p : 1 < p ∀i∣p[i≡p] : ∀ {i} → 1 < i → i ∣ p → i ≡ p record IsComposite (c : ℕ) : Set where constructor IsComposite✓ field p : ℕ p<c : p < c p-isPrime : IsPrime p p∣c : p ∣ c record Prime : Set where constructor Prime✓ field prime : ℕ isPrime : IsPrime prime record Composite : Set where constructor Composite✓ field composite : ℕ isComposite : IsComposite composite data Compositionality (n : ℕ) : Set where Composite✓ : IsComposite n → Compositionality n Prime✓ : (∀ {p} → p < n → IsPrime p → p ∤ n) → Compositionality n data Primality (n : ℕ) : Set where Composite✓ : IsComposite n → Primality n Prime✓ : IsPrime n → Primality n
Library/GrObj/GrObj/grobjClass.asm
steakknife/pcgeos
504
95221
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) GeoWorks 1989 -- All Rights Reserved PROJECT: PC GEOS MODULE: FILE: objectClass.asm AUTHOR: <NAME>, Nov 15, 1989 ROUTINES: Name Description ---- ----------- REVISION HISTORY: Name Date Description ---- ---- ----------- Steve 11/15/89 Initial revision DESCRIPTION: $Id: grobjClass.asm,v 1.1 97/04/04 18:07:22 newdeal Exp $ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ GrObjClassStructures segment resource GrObjClass ;Define the class record GrObjClassStructures ends
include/bits_struct_stat_h.ads
docandrew/troodon
5
8799
<gh_stars>1-10 pragma Ada_2012; pragma Style_Checks (Off); with Interfaces.C; use Interfaces.C; with bits_types_h; with bits_types_struct_timespec_h; package bits_struct_stat_h is -- unsupported macro: st_atime st_atim.tv_sec -- unsupported macro: st_mtime st_mtim.tv_sec -- unsupported macro: st_ctime st_ctim.tv_sec -- Definition for struct stat. -- Copyright (C) 2020-2021 Free Software Foundation, Inc. -- This file is part of the GNU C Library. -- The GNU C Library is free software; you can redistribute it and/or -- modify it under the terms of the GNU Lesser General Public -- License as published by the Free Software Foundation; either -- version 2.1 of the License, or (at your option) any later version. -- The GNU C Library 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 -- Lesser General Public License for more details. -- You should have received a copy of the GNU Lesser General Public -- License along with the GNU C Library. If not, see -- <https://www.gnu.org/licenses/>. -- Device. type stat_array1037 is array (0 .. 2) of aliased bits_types_h.uu_syscall_slong_t; type stat is record st_dev : aliased bits_types_h.uu_dev_t; -- /usr/include/bits/struct_stat.h:28 st_ino : aliased bits_types_h.uu_ino_t; -- /usr/include/bits/struct_stat.h:33 st_nlink : aliased bits_types_h.uu_nlink_t; -- /usr/include/bits/struct_stat.h:41 st_mode : aliased bits_types_h.uu_mode_t; -- /usr/include/bits/struct_stat.h:42 st_uid : aliased bits_types_h.uu_uid_t; -- /usr/include/bits/struct_stat.h:44 st_gid : aliased bits_types_h.uu_gid_t; -- /usr/include/bits/struct_stat.h:45 uu_pad0 : aliased int; -- /usr/include/bits/struct_stat.h:47 st_rdev : aliased bits_types_h.uu_dev_t; -- /usr/include/bits/struct_stat.h:49 st_size : aliased bits_types_h.uu_off_t; -- /usr/include/bits/struct_stat.h:54 st_blksize : aliased bits_types_h.uu_blksize_t; -- /usr/include/bits/struct_stat.h:58 st_blocks : aliased bits_types_h.uu_blkcnt_t; -- /usr/include/bits/struct_stat.h:60 st_atim : aliased bits_types_struct_timespec_h.timespec; -- /usr/include/bits/struct_stat.h:71 st_mtim : aliased bits_types_struct_timespec_h.timespec; -- /usr/include/bits/struct_stat.h:72 st_ctim : aliased bits_types_struct_timespec_h.timespec; -- /usr/include/bits/struct_stat.h:73 uu_glibc_reserved : aliased stat_array1037; -- /usr/include/bits/struct_stat.h:86 end record with Convention => C_Pass_By_Copy; -- /usr/include/bits/struct_stat.h:26 -- File serial number. -- 32bit file serial number. -- File mode. -- Link count. -- Link count. -- File mode. -- User ID of the file's owner. -- Group ID of the file's group. -- Device number, if device. -- Size of file, in bytes. -- Size of file, in bytes. -- Optimal block size for I/O. -- Number 512-byte blocks allocated. -- Number 512-byte blocks allocated. -- Nanosecond resolution timestamps are stored in a format -- equivalent to 'struct timespec'. This is the type used -- whenever possible but the Unix namespace rules do not allow the -- identifier 'timespec' to appear in the <sys/stat.h> header. -- Therefore we have to handle the use of this header in strictly -- standard-compliant sources special. -- Time of last access. -- Time of last modification. -- Time of last status change. -- Time of last access. -- Nscecs of last access. -- Time of last modification. -- Nsecs of last modification. -- Time of last status change. -- Nsecs of last status change. -- File serial number. -- Note stat64 has the same shape as stat for x86-64. -- Device. type stat64_array1037 is array (0 .. 2) of aliased bits_types_h.uu_syscall_slong_t; type stat64 is record st_dev : aliased bits_types_h.uu_dev_t; -- /usr/include/bits/struct_stat.h:101 st_ino : aliased bits_types_h.uu_ino64_t; -- /usr/include/bits/struct_stat.h:103 st_nlink : aliased bits_types_h.uu_nlink_t; -- /usr/include/bits/struct_stat.h:104 st_mode : aliased bits_types_h.uu_mode_t; -- /usr/include/bits/struct_stat.h:105 st_uid : aliased bits_types_h.uu_uid_t; -- /usr/include/bits/struct_stat.h:112 st_gid : aliased bits_types_h.uu_gid_t; -- /usr/include/bits/struct_stat.h:113 uu_pad0 : aliased int; -- /usr/include/bits/struct_stat.h:115 st_rdev : aliased bits_types_h.uu_dev_t; -- /usr/include/bits/struct_stat.h:116 st_size : aliased bits_types_h.uu_off_t; -- /usr/include/bits/struct_stat.h:117 st_blksize : aliased bits_types_h.uu_blksize_t; -- /usr/include/bits/struct_stat.h:123 st_blocks : aliased bits_types_h.uu_blkcnt64_t; -- /usr/include/bits/struct_stat.h:124 st_atim : aliased bits_types_struct_timespec_h.timespec; -- /usr/include/bits/struct_stat.h:132 st_mtim : aliased bits_types_struct_timespec_h.timespec; -- /usr/include/bits/struct_stat.h:133 st_ctim : aliased bits_types_struct_timespec_h.timespec; -- /usr/include/bits/struct_stat.h:134 uu_glibc_reserved : aliased stat64_array1037; -- /usr/include/bits/struct_stat.h:144 end record with Convention => C_Pass_By_Copy; -- /usr/include/bits/struct_stat.h:99 -- File serial number. -- Link count. -- File mode. -- 32bit file serial number. -- File mode. -- Link count. -- User ID of the file's owner. -- Group ID of the file's group. -- Device number, if device. -- Size of file, in bytes. -- Device number, if device. -- Size of file, in bytes. -- Optimal block size for I/O. -- Nr. 512-byte blocks allocated. -- Nanosecond resolution timestamps are stored in a format -- equivalent to 'struct timespec'. This is the type used -- whenever possible but the Unix namespace rules do not allow the -- identifier 'timespec' to appear in the <sys/stat.h> header. -- Therefore we have to handle the use of this header in strictly -- standard-compliant sources special. -- Time of last access. -- Time of last modification. -- Time of last status change. -- Time of last access. -- Nscecs of last access. -- Time of last modification. -- Nsecs of last modification. -- Time of last status change. -- Nsecs of last status change. -- File serial number. -- Tell code we have these members. -- Nanosecond resolution time values are supported. end bits_struct_stat_h;
LibraBFT/Yasm/Base.agda
cwjnkins/bft-consensus-agda
0
11138
<reponame>cwjnkins/bft-consensus-agda {- Byzantine Fault Tolerant Consensus Verification in Agda, version 0.9. Copyright (c) 2020, 2021, Oracle and/or its affiliates. Licensed under the Universal Permissive License v 1.0 as shown at https://opensource.oracle.com/licenses/upl -} open import LibraBFT.Prelude open import LibraBFT.Base.PKCS open import LibraBFT.Yasm.Types -- This module defines the types used to define a SystemModel. module LibraBFT.Yasm.Base (ℓ-PeerState : Level) where -- Our system is configured through a value of type -- SystemParameters where we specify: record SystemParameters : Set (ℓ+1 ℓ-PeerState) where constructor mkSysParms field PeerId : Set _≟PeerId_ : ∀ (p₁ p₂ : PeerId) → Dec (p₁ ≡ p₂) Genesis : Set genInfo : Genesis -- The same genesis information is given to any uninitialised peer before -- it can handle any messages. PeerState : Set ℓ-PeerState initPS : PeerState -- Represents an uninitialised PeerState, about which we know nothing whatsoever Msg : Set Part : Set -- Types of interest that can be represented in Msgs -- The messages must be able to carry signatures instance Part-sig : WithSig Part -- A relation specifying what Parts are included in a Msg. _⊂Msg_ : Part → Msg → Set -- A relation specifying what Signatures are included in genInfo ∈GenInfo : Signature → Set -- Initializes a potentially-empty state with an EpochConfig init : PeerId → Genesis → PeerState × List (Action Msg) -- Handles a message on a previously initialized peer. handle : PeerId → Msg → PeerState → PeerState × List (Action Msg)
main.asm
aKhfagy/Assembly-Course-Task
0
244562
INCLUDE Irvine32.inc ;DO NOT CHANGE THIS LINE ;###################################################################################;# ; AUTOGRADER RELATED .DATA ;# ; DO NOT MODIFY, DELETE NOR ADD ANY LINE HERE ;# ;###################################################################################;# .data ;# ;# prmpt byte "Please enter question number 1, 2, 3, 4, 5, 6 or enter 0 to exit:", 0 ;# wrongChoice byte "Please enter a valid question number!", 0 ;# tmpstr byte 5 dup(?), 0 ;# ;###################################################################################;# ;####################################################### ; STUDENTS .DATA SECTION # ; THIS SECTION MADE FOR STUDENTS' DATA # ; YOU CAN MODIFY, ADD OR EDIT TO THIS SECTION # ;####################################################### .data ;-------------------------Q1 DATA----------------------- strQ1 BYTE 10 DUP(?), 0 ;-----------------------Q1 DATA End--------------------- ;-------------------------Q2 DATA----------------------- infoToEnterPrompt BYTE "Enter the number of elements: ", 0 ;-----------------------Q2 DATA End--------------------- ;-------------------------Q3 DATA----------------------- numberCharsToEnterPrompt BYTE "Enter the number of characters you want to check: ", 0 firstCharPrompt BYTE "First char: ", 0 lastCharPrompt BYTE "Last char: ", 0 enterCharPrompt BYTE "Enter character: ", 0 answerPrompt BYTE "Number of characters in range is : ", 0 ;-----------------------Q3 DATA End--------------------- ;-------------------------Q4 DATA----------------------- numberLowerCasePrompt BYTE "The number of lowercase characters in the original string: ", 0 lowerCaseCharsPrompt BYTE "The lowercase characters are: ", 0 strQ4 BYTE 30 DUP(?), 0 lowerCaseChars BYTE 26 DUP(?), 0 ;-----------------------Q4 DATA End--------------------- ;-------------------------Q5 DATA----------------------- isItPalindromePrompt BYTE "Is it a palindrome?: ", 0 enterStringToCheckPlanindromePrompt BYTE "Enter the string: ", 0 strQ5 BYTE 30 DUP(?), 0 ;-----------------------Q5 DATA End--------------------- ;-------------------------Q6 DATA----------------------- strQ6 BYTE 39 DUP(?), 0 ;-----------------------Q6 DATA End--------------------- .code ;######################################################## ; AUTOGRADER RELATED METHOD ;# ; DO NOT MODIFY, DELETE ;# ; NOR ADD ANY LINE HERE ;# ;####################################################### ;####################################################### MAIN PROC ;# PROGLOOP: ;# MOV EDX, OFFSET PRMPT ;# CALL WRITESTRING ;# CALL CRLF ;# CALL READINT ;# CMP EAX, 0 ;# JE FIN ;# ;# CMP EAX, 1 ;# JE _Q1 ;# ;# CMP EAX, 2 ;# JE _Q2 ;# ;# CMP EAX, 3 ;# JE _Q3 ;# ;# CMP EAX, 4 ;# JE _Q4 ;# ;# CMP EAX, 5 ;# JE _Q5 ;# ;# CMP EAX, 6 ;# JE _Q6 ;# JMP WRONG ;# ;# _Q1: ;# CALL Q1 ;# JMP CONT ;# ;# _Q2: ;# CALL Q2 ;# JMP CONT ;# ;# _Q3: ;# CALL Q3 ;# JMP CONT ;# ;# _Q4: ;# CALL Q4 ;# JMP CONT ;# ;# _Q5: ;# CALL Q5 ;# JMP CONT ;# ;# _Q6: ;# CALL Q6 ;# JMP CONT ;# ;# WRONG: ;# MOV EDX, OFFSET wrongChoice ;# CALL WRITESTRING ;# CALL CRLF ;# ;# CONT: ;# JMP PROGLOOP ;# ;# FIN: ;# ;# EXIT ;# MAIN ENDP ;# ;####################################################### ;---------------------------------------------------------- ;DO NOT CHANGE THE FUNCTION NAME ; ; Student's procedure ; Question one procedure here ;---------------------------------------------------------- ;Built-In functions used: ; ReadString: ; edx -> OFFSET of the string ; ecx -> max number of characters allowed ; eax -> lenght of actual string ; ReadInt: ; eax -> number entered by user ; WriteString: ; edx -> OFFSET of the string ; CRLF: ; Writes new line ; ;Registers Used: ; edx -> OFFSET of string ; eax -> length of string ; esi -> first char to replace (index) ; edi -> second char to be replaced (index) ; ebx -> used in swaping (only bl and bh are used) ;---------------------------------------------------------- Q1 PROC uses edx ecx eax esi edi ebx ; reading the indices of the chars to replace CALL ReadInt ; first index MOV esi, eax CALL ReadInt ; second index MOV edi, eax ; turn index from one based to zero based DEC esi DEC edi ; reading the string MOV edx, OFFSET strQ1 MOV ecx, LENGTHOF strQ1 CALL ReadString ; swapping part MOV bh, [edx + esi] ; store first char in bh MOV bl, [edx + edi] ; store second char in bl MOV [edx + esi], bl MOV [edx + edi], bh ; write string to console CALL WriteString CALL CRLF RET Q1 ENDP ;---------------------------------------------------------- ;DO NOT CHANGE THE FUNCTION NAME ; ; Student's procedure ; Question two procedure here ;---------------------------------------------------------- ;Built-In functions used: ; ReadInt: ; eax -> number entered by user ; WriteInt: ; eax -> number entered by user ; WriteString: ; edx -> OFFSET of the string ; CRLF: ; Writes new line ;Registers Used: ; ecx -> loop counter ; ebx -> previous fib number ; eax -> current fib number ; esi -> temp variable ; edx -> OFFSET of infoToEnter ;---------------------------------------------------------- Q2 PROC uses ecx eax ebx edx ; print information string MOV edx, OFFSET infoToEnterPrompt CALL WriteString ; Read Number N CALL ReadInt MOV ecx, eax ; move it to loop register MOV ebx, +0 ; first fib number MOV eax, ebx ; +0 is always printed CALL WriteInt CALL CRLF INC eax ; first fib number ; start of loop FIB: ; write ith fib number CALL WriteInt CALL CRLF ; move numbers MOV esi, eax ADD eax, ebx MOV ebx, esi LOOP FIB RET Q2 ENDP ;---------------------------------------------------------- ;DO NOT CHANGE THE FUNCTION NAME ; ; Student's procedure ; Question three procedure here ;---------------------------------------------------------- ;Built-In functions used: ; ReadInt: ; eax -> number entered by user ; ReadChar: ; al -> char entered by user ; WriteInt: ; eax -> number entered by user ; WriteString: ; edx -> OFFSET of the string ; CRLF: ; Writes new line ;Registers Used: ; ecx -> loop counter ; edx -> OFFSET of string to print to screen ; eax -> Read integer into ; ebx -> store low and high integers in bl and bh ; esi -> Counter ; al -> Read Char ;---------------------------------------------------------- Q3 PROC uses edx ecx eax ebx esi ; get number of chars MOV edx, OFFSET numberCharsToEnterPrompt CALL WriteString CALL ReadInt MOV ecx, eax ; get first char MOV edx, OFFSET firstCharPrompt CALL WriteString CALL ReadChar MOV bl, al ; get last char MOV edx, OFFSET lastCharPrompt CALL WriteString CALL ReadChar MOV bh, al ; initialize counter MOV esi, +0 CHARS_TO_CHECK: ; get chars MOV edx, OFFSET enterCharPrompt CALL WriteString CALL ReadChar ; check in range CMP al, bl JB END_IF CMP al, bh JA END_IF INC esi END_IF: LOOP CHARS_TO_CHECK ; display answer MOV edx, OFFSET answerPrompt CALL WriteString MOV eax, esi CALL WriteInt CALL CRLF RET Q3 ENDP ;---------------------------------------------------------- ;DO NOT CHANGE THE FUNCTION NAME ; ; Student's procedure ; Question four procedure here ;---------------------------------------------------------- ;Built-In functions used: ; WriteDec: ; eax -> unsigned integer ; WriteChar: ; al -> has char to be written ; ReadString: ; edx -> OFFSET of the string ; ecx -> max number of characters allowed ; eax -> lenght of actual string ; WriteString: ; edx -> OFFSET of the string ; CRLF: ; Writes new line ;Registers Used: ; ecx -> loop counter ; edx -> OFFSET of string to print to screen ; eax -> the actual size of the input array ; ebx -> store low and high integers in bl and bh ; esi -> OFFSET of result string ; edi -> counter of lower case chars ;---------------------------------------------------------- Q4 PROC uses edx ecx eax ebx esi edi ; Read input string MOV edx, OFFSET strQ4 MOV ecx, LENGTHOF strQ4 CALL ReadString ; initialize loop iterator MOV ecx, eax ; initialize counter MOV edi, 0 MOV esi, OFFSET lowerCaseChars ; bh -> last char MOV bh, 'z' ; bl -> first char MOV bl, 'a' STRING_LOOP: MOV al, [edx] ; mpve char to al ; IF CMP al, bl JB END_IF CMP al, bh JA END_IF ; add char to answer array and add one to counter ; also move the start of the answer array MOV [esi], al INC edi INC esi END_IF: INC edx LOOP STRING_LOOP MOV edx, OFFSET numberLowerCasePrompt CALL WriteString MOV eax, edi CALL WriteDec CALL CRLF MOV edx, OFFSET lowerCaseCharsPrompt CALL WriteString ; MOV start to edx MOV esi, OFFSET lowerCaseChars ; init loop counter again MOV ecx, edi ; to prevent errors with loop CMP ecx, 0 JE END_OUTPUT ; init index MOV edi, 0 OUTPUT_LOOP: CMP edi, 0 ; IF JE ELSE_COND ; any other index print comma before letter MOV al, ',' CALL WriteChar MOV al, [esi] CALL WriteChar JMP INC_COND ELSE_COND: ; start index only print letter MOV al, [esi] CALL WriteChar INC_COND: INC edi INC esi LOOP OUTPUT_LOOP CALL CRLF END_OUTPUT: RET Q4 ENDP ;---------------------------------------------------------- ;DO NOT CHANGE THE FUNCTION NAME ; ; Student's procedure ; Question five procedure here ;---------------------------------------------------------- ;Built-In functions used: ; WriteChar: ; al -> has char to be written ; ReadString: ; edx -> OFFSET of the string ; ecx -> max number of characters allowed ; eax -> lenght of actual string ; WriteString: ; edx -> OFFSET of the string ; CRLF: ; Writes new line ;Registers Used: ; ecx -> loop counter ; edx -> OFFSET of string to print to screen ; eax -> the actual size of the input array ; ebx -> boolean to see if it is palindrome or not ; esi -> start index of string (initially) ; edi -> end index of string (initially) ;---------------------------------------------------------- Q5 PROC uses edx ecx eax esi edi ebx ; prompt to take string MOV edx, OFFSET enterStringToCheckPlanindromePrompt CALL WriteString ; read string and get it ready to be looped on MOV edx, OFFSET strQ5 MOV ecx, LENGTHOF strQ5 CALL ReadString MOV ecx, eax ; set start and end indexies respectively MOV esi, 0 MOV edi, eax DEC edi ; initialize boolean MOV ebx, 1 PALINDROME_CHECK: MOV al, [edx + esi] CMP al, [edx + edi] JE END_CHECK MOV ebx, 0 END_CHECK: ; move indecies INC esi DEC edi LOOP PALINDROME_CHECK CMP ebx, 1 JE IS_PALINDROME MOV al, 'N' JMP NEXT IS_PALINDROME: MOV al, 'Y' NEXT: MOV edx, OFFSET isItPalindromePrompt CALL WriteString CALL WriteChar CALL CRLF RET Q5 ENDP ;---------------------------------------------------------- ;DO NOT CHANGE THE FUNCTION NAME ; ; Student's procedure ; Question six procedure here ;---------------------------------------------------------- ;Built-In functions used: ; ReadInt: ; eax -> read number to it ; WriteString: ; edx -> OFFSET of the string ; CRLF: ; Writes new line ;Registers Used: ; ecx -> loop counter ; edx -> OFFSET of string to print to screen ; eax -> N, number of lines required ; bl -> Char to place in array ; esi -> index offset ; edi -> OFFSET of middle of array ;---------------------------------------------------------- Q6 PROC uses edx ecx eax esi edi ; Read N CALL ReadInt ; Init counter MOV ecx, eax ; set offset MOV edx, OFFSET strQ6 FILL_N_SPACES: MOV bl, ' ' MOV [edx], bl INC edx LOOP FILL_N_SPACES ; get last index and move * to it DEC edx MOV bl, '*' MOV [edx], bl ; set to correct offset MOV edx, OFFSET strQ6 CALL WriteString CALL CRLF ; prevent errors CMP eax, 1 JE NEXT ; set loop counter DEC eax MOV ecx, eax ; set index offset MOV esi, 1 ; set char to set to * MOV bl, '*' ; set offset of mid char MOV edi, OFFSET strQ6 ADD edi, eax ; set one character before and after the last and first * in the array ; print the array to the screen after that ITERATE: MOV [edi + esi], bl SUB edi, esi MOV [edi], bl ADD edi, esi INC esi CALL WriteString CALL CRLF LOOP ITERATE NEXT: RET Q6 ENDP END MAIN
data/pokemon/base_stats/luvdisc.asm
TastySnax12/pokecrystal16-493-plus
2
23443
db 0 ; species ID placeholder db 43, 30, 55, 97, 40, 65 ; hp atk def spd sat sdf db WATER, WATER ; type db 225 ; catch rate db 110 ; base exp db STAR_PIECE, STAR_PIECE ; items (Should be Heart Scale, not sure if including) db GENDER_F75 ; gender ratio db 100 ; unknown 1 db 20 ; step cycles to hatch db 5 ; unknown 2 INCBIN "gfx/pokemon/luvdisc/front.dimensions" db 0, 0, 0, 0 ; padding db GROWTH_FAST ; growth rate dn EGG_WATER_2, EGG_WATER_2 ; egg groups ; tm/hm learnset tmhm CURSE, TOXIC, PSYCH_UP, HIDDEN_POWER, SNORE, BLIZZARD, ICY_WIND, PROTECT, RAIN_DANCE, ENDURE, FRUSTRATION, RETURN, DOUBLE_TEAM, SWAGGER, SLEEP_TALK, SWIFT, REST, ATTRACT, SURF, WHIRLPOOL, WATERFALL, ICE_BEAM ; end
programs/oeis/184/A184747.asm
karttu/loda
0
161445
; A184747: floor(n*s+h-h*s), where s=1+sqrt(5), h=1/2; complement of A184746. ; 2,5,8,11,15,18,21,24,28,31,34,37,40,44,47,50,53,57,60,63,66,70,73,76,79,83,86,89,92,95,99,102,105,108,112,115,118,121,125,128,131,134,138,141,144,147,150,154,157,160,163,167,170,173,176,180,183,186,189,193,196,199,202,205,209,212,215,218,222,225,228,231,235,238,241,244,248,251,254,257,261,264,267,270,273,277,280,283,286,290,293,296,299,303,306,309,312,316,319,322,325,328,332,335,338,341,345,348,351,354,358,361,364,367,371,374,377,380,383,387 mov $5,$0 add $5,1 mov $11,$0 lpb $5,1 mov $0,$11 sub $5,1 sub $0,$5 mov $7,$0 mov $9,2 lpb $9,1 mov $0,$7 sub $9,1 add $0,$9 sub $0,1 mov $3,$0 add $3,1 mul $0,$3 mov $2,4 mov $4,$0 mul $4,5 add $4,1 mov $6,1 lpb $2,1 lpb $4,1 add $6,2 trn $4,$6 lpe sub $2,1 lpe div $6,2 mov $10,$9 lpb $10,1 mov $8,$6 sub $10,1 lpe lpe lpb $7,1 mov $7,0 sub $8,$6 lpe mov $6,$8 add $6,1 add $1,$6 lpe
Lab Assessment Submission/Lab 2/1.asm
kayesIbnaQayumNSU/CSE331L-Section-10-Fall20-NSU
1
88865
; You may customize this and other start-up templates; ; The location of this template is c:\emu8086\inc\0_com_template.txt org 100h K EQU 3 Q EQU 2 P EQU 3 ADD AX, K ADD AX, Q ADD AX, P MOV BX, AX ret
oeis/201/A201837.asm
neoneye/loda-programs
11
241389
<filename>oeis/201/A201837.asm ; A201837: G.f.: real part of 1/(1 - i*x - i*x^2) where i=sqrt(-1). ; Submitted by <NAME> ; 1,0,-1,-2,0,4,5,-2,-13,-12,12,40,25,-52,-117,-38,196,324,-3,-678,-841,360,2200,2000,-2079,-6760,-4121,8918,19720,6084,-33435,-54442,1547,115228,140772,-63880,-372775,-332892,359763,1142322,678796,-1528956,-3323203,-970958,5702319,9146320,-437200,-19580000,-23557759,11308080,63154959,55387438,-62213360,-193005436,-111716475,262044718,559940707,154393668,-972313668,-1536319800,103585625,3326553468,3941367643,-1997404918,-10698060204,-9211883836,10751502397,32605409162,18370325479,-44896530120 mov $2,1 lpb $0 sub $0,1 sub $3,$4 mov $5,$4 mov $4,$2 mov $2,$3 add $2,$1 mov $1,$3 mul $5,-1 mov $3,$5 lpe mov $0,$2
shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-mysql/src/main/antlr4/imports/mysql/MySQLKeyword.g4
leewangq/shardingsphere
0
355
<reponame>leewangq/shardingsphere<filename>shardingsphere-sql-parser/shardingsphere-sql-parser-dialect/shardingsphere-sql-parser-mysql/src/main/antlr4/imports/mysql/MySQLKeyword.g4<gh_stars>0 /* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You under the Apache License, Version 2.0 * (the "License"); you may not use this file except in compliance with * the License. You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ lexer grammar MySQLKeyword; import Alphabet; ACCESSIBLE : A C C E S S I B L E ; ACCOUNT : A C C O U N T ; ACTION : A C T I O N ; ACTIVE : A C T I V E ; ADD : A D D ; ADMIN : A D M I N ; AFTER : A F T E R ; AGAINST : A G A I N S T ; AGGREGATE : A G G R E G A T E ; ALGORITHM : A L G O R I T H M ; ALL : A L L ; ALTER : A L T E R ; ALWAYS : A L W A Y S ; ANALYZE : A N A L Y Z E ; AND : A N D ; ANY : A N Y ; ARRAY : A R R A Y ; AS : A S ; ASC : A S C ; ASCII : A S C I I ; ASENSITIVE : A S E N S I T I V E ; AT : A T ; ATTRIBUTE : A T T R I B U T E ; AUTOEXTEND_SIZE : A U T O E X T E N D UL_ S I Z E ; AUTO_INCREMENT : A U T O UL_ I N C R E M E N T ; AVG : A V G ; BIT_XOR : B I T UL_ X O R ; AVG_ROW_LENGTH : A V G UL_ R O W UL_ L E N G T H ; BACKUP : B A C K U P ; BEFORE : B E F O R E ; BEGIN : B E G I N ; BETWEEN : B E T W E E N ; BIGINT : B I G I N T ; BINARY : B I N A R Y ; BINLOG : B I N L O G ; BIT : B I T ; BLOB : B L O B ; BLOCK : B L O C K ; BOOL : B O O L ; BOOLEAN : B O O L E A N ; BOTH : B O T H ; BTREE : B T R E E ; BUCKETS : B U C K E T S ; BY : B Y ; BYTE : B Y T E ; CACHE : C A C H E ; CALL : C A L L ; CASCADE : C A S C A D E ; CASCADED : C A S C A D E D ; CASE : C A S E ; CATALOG_NAME : C A T A L O G UL_ N A M E ; CHAIN : C H A I N ; CHANGE : C H A N G E ; CHANGED : C H A N G E D ; CHANNEL : C H A N N E L ; CHAR : C H A R ; CHARACTER : C H A R A C T E R ; CHARSET : C H A R S E T ; CHECK : C H E C K ; CHECKSUM : C H E C K S U M ; CIPHER : C I P H E R ; CLASS_ORIGIN : C L A S S UL_ O R I G I N ; CLIENT : C L I E N T ; CLONE : C L O N E ; CLOSE : C L O S E ; COALESCE : C O A L E S C E ; CODE : C O D E ; COLLATE : C O L L A T E ; COLLATION : C O L L A T I O N ; COLUMN : C O L U M N ; COLUMNS : C O L U M N S ; COLUMN_FORMAT : C O L U M N UL_ F O R M A T ; COLUMN_NAME : C O L U M N UL_ N A M E ; COMMENT : C O M M E N T ; COMMIT : C O M M I T ; COMMITTED : C O M M I T T E D ; COMPACT : C O M P A C T ; COMPLETION : C O M P L E T I O N ; COMPONENT : C O M P O N E N T ; COMPRESSED : C O M P R E S S E D ; COMPRESSION : C O M P R E S S I O N ; CONCURRENT : C O N C U R R E N T ; CONDITION : C O N D I T I O N ; CONNECTION : C O N N E C T I O N ; CONSISTENT : C O N S I S T E N T ; CONSTRAINT : C O N S T R A I N T ; CONSTRAINT_CATALOG : C O N S T R A I N T UL_ C A T A L O G ; CONSTRAINT_NAME : C O N S T R A I N T UL_ N A M E ; CONSTRAINT_SCHEMA : C O N S T R A I N T UL_ S C H E M A ; CONTAINS : C O N T A I N S ; CONTEXT : C O N T E X T ; CONTINUE : C O N T I N U E ; CONVERT : C O N V E R T ; CPU : C P U ; CREATE : C R E A T E ; CROSS : C R O S S ; CUBE : C U B E ; CUME_DIST : C U M E UL_ D I S T ; CURRENT : C U R R E N T ; CURRENT_DATE : C U R R E N T UL_ D A T E ; CURRENT_TIME : C U R R E N T UL_ T I M E ; CURRENT_TIMESTAMP : C U R R E N T UL_ T I M E S T A M P ; CURRENT_USER : C U R R E N T UL_ U S E R ; CURSOR : C U R S O R ; CURSOR_NAME : C U R S O R UL_ N A M E ; DATA : D A T A ; DATABASE : D A T A B A S E ; DATABASES : D A T A B A S E S ; DATAFILE : D A T A F I L E ; DATE : D A T E ; DATETIME : D A T E T I M E ; DAY : D A Y ; DAY_HOUR : D A Y UL_ H O U R ; DAY_MICROSECOND : D A Y UL_ M I C R O S E C O N D ; DAY_MINUTE : D A Y UL_ M I N U T E ; DAY_SECOND : D A Y UL_ S E C O N D ; DEALLOCATE : D E A L L O C A T E ; DEC : D E C ; DECIMAL : D E C I M A L ; DECLARE : D E C L A R E ; DEFAULT : D E F A U L T ; DEFAULT_AUTH : D E F A U L T UL_ A U T H ; DEFINER : D E F I N E R ; DEFINITION : D E F I N I T I O N ; DELAYED : D E L A Y E D ; DELAY_KEY_WRITE : D E L A Y UL_ K E Y UL_ W R I T E ; DELETE : D E L E T E ; DENSE_RANK : D E N S E UL_ R A N K ; DESC : D E S C ; DESCRIBE : D E S C R I B E ; DESCRIPTION : D E S C R I P T I O N ; DETERMINISTIC : D E T E R M I N I S T I C ; DIAGNOSTICS : D I A G N O S T I C S ; DIRECTORY : D I R E C T O R Y ; DISABLE : D I S A B L E ; DISCARD : D I S C A R D ; DISK : D I S K ; DISTINCT : D I S T I N C T ; DISTINCTROW : D I S T I N C T R O W ; DIV : D I V ; DO : D O ; DOUBLE : D O U B L E ; DROP : D R O P ; DUAL : D U A L ; DUMPFILE : D U M P F I L E ; DUPLICATE : D U P L I C A T E ; DYNAMIC : D Y N A M I C ; EACH : E A C H ; ELSE : E L S E ; ELSEIF : E L S E I F ; EMPTY : E M P T Y ; ENABLE : E N A B L E ; ENCLOSED : E N C L O S E D ; ENCRYPTION : E N C R Y P T I O N ; END : E N D ; ENDS : E N D S ; ENFORCED : E N F O R C E D ; ENGINE : E N G I N E ; ENGINES : E N G I N E S ; ENGINE_ATTRIBUTE : E N G I N E UL_ A T T R I B U T E ; ENUM : E N U M ; ERROR : E R R O R ; ERRORS : E R R O R S ; ESCAPE : E S C A P E ; ESCAPED : E S C A P E D ; EVENT : E V E N T ; EVENTS : E V E N T S ; EVERY : E V E R Y ; EXCEPT : E X C E P T ; EXCHANGE : E X C H A N G E ; EXCLUDE : E X C L U D E ; EXECUTE : E X E C U T E ; EXISTS : E X I S T S ; EXIT : E X I T ; EXPANSION : E X P A N S I O N ; EXPIRE : E X P I R E ; EXPLAIN : E X P L A I N ; EXPORT : E X P O R T ; EXTENDED : E X T E N D E D ; EXTENT_SIZE : E X T E N T UL_ S I Z E ; FAILED_LOGIN_ATTEMPTS : F A I L E D UL_ L O G I N UL_ A T T E M P T S ; FALSE : F A L S E ; FAST : F A S T ; FAULTS : F A U L T S ; FETCH : F E T C H ; FIELDS : F I E L D S -> type(COLUMNS) ; FILE : F I L E ; FILE_BLOCK_SIZE : F I L E UL_ B L O C K UL_ S I Z E ; FILTER : F I L T E R ; FIRST : F I R S T ; FIRST_VALUE : F I R S T UL_ V A L U E ; FIXED : F I X E D ; FLOAT : F L O A T ; FLOAT4 : F L O A T '4' ; FLOAT8 : F L O A T '8' ; FLUSH : F L U S H ; FOLLOWING : F O L L O W I N G ; FOLLOWS : F O L L O W S ; FOR : F O R ; FORCE : F O R C E ; FOREIGN : F O R E I G N ; FORMAT : F O R M A T ; FOUND : F O U N D ; FROM : F R O M ; FULL : F U L L ; FULLTEXT : F U L L T E X T ; FUNCTION : F U N C T I O N ; GENERAL : G E N E R A L ; GENERATED : G E N E R A T E D ; GEOMETRY : G E O M E T R Y ; GEOMETRYCOLLECTION : G E O M E T R Y C O L L E C T I O N ; GET : G E T ; GET_FORMAT : G E T UL_ F O R M A T ; GET_MASTER_PUBLIC_KEY : G E T UL_ M A S T E R UL_ P U B L I C UL_ K E Y ; GLOBAL : G L O B A L ; GRANT : G R A N T ; GRANTS : G R A N T S ; GROUP : G R O U P ; GROUPING : G R O U P I N G ; GROUPS : G R O U P S ; GROUP_REPLICATION : G R O U P UL_ R E P L I C A T I O N ; HANDLER : H A N D L E R ; HASH : H A S H ; HAVING : H A V I N G ; HELP : H E L P ; HIGH_PRIORITY : H I G H UL_ P R I O R I T Y ; HISTOGRAM : H I S T O G R A M ; HISTORY : H I S T O R Y ; HOST : H O S T ; HOSTS : H O S T S ; HOUR : H O U R ; HOUR_MICROSECOND : H O U R UL_ M I C R O S E C O N D ; HOUR_MINUTE : H O U R UL_ M I N U T E ; HOUR_SECOND : H O U R UL_ S E C O N D ; IDENTIFIED : I D E N T I F I E D ; IF : I F ; IGNORE : I G N O R E ; IGNORE_SERVER_IDS : I G N O R E UL_ S E R V E R UL_ I D S ; IMPORT : I M P O R T ; IN : I N ; INACTIVE : I N A C T I V E ; INDEX : I N D E X ; INDEXES : I N D E X E S ; INFILE : I N F I L E ; INITIAL_SIZE : I N I T I A L UL_ S I Z E ; INNER : I N N E R ; INOUT : I N O U T ; INSENSITIVE : I N S E N S I T I V E ; INSERT : I N S E R T ; INSERT_METHOD : I N S E R T UL_ M E T H O D ; INSTALL : I N S T A L L ; INSTANCE : I N S T A N C E ; INT : I N T ; INT1 : I N T '1' ; INT2 : I N T '2' ; INT3 : I N T '3' ; INT4 : I N T '4' ; INT8 : I N T '8' ; INTEGER : I N T E G E R ; INTERVAL : I N T E R V A L ; INTO : I N T O ; INVISIBLE : I N V I S I B L E ; INVOKER : I N V O K E R ; IO : I O ; IO_AFTER_GTIDS : I O UL_ A F T E R UL_ G T I D S ; IO_BEFORE_GTIDS : I O UL_ B E F O R E UL_ G T I D S ; IO_THREAD : I O UL_ T H R E A D -> type(RELAY_THREAD) ; IPC : I P C ; IS : I S ; ISOLATION : I S O L A T I O N ; ISSUER : I S S U E R ; ITERATE : I T E R A T E ; JOIN : J O I N ; JSON : J S O N ; JSON_TABLE : J S O N UL_ T A B L E ; JSON_VALUE : J S O N UL_ V A L U E ; KEY : K E Y ; KEYS : K E Y S ; KEY_BLOCK_SIZE : K E Y UL_ B L O C K UL_ S I Z E ; KILL : K I L L ; LAG : L A G ; LANGUAGE : L A N G U A G E ; LAST : L A S T ; LAST_VALUE : L A S T UL_ V A L U E ; LATERAL : L A T E R A L ; LEAD : L E A D ; LEADING : L E A D I N G ; LEAVE : L E A V E ; LEAVES : L E A V E S ; LEFT : L E F T ; LESS : L E S S ; LEVEL : L E V E L ; LIKE : L I K E ; LIMIT : L I M I T ; LINEAR : L I N E A R ; LINES : L I N E S ; LINESTRING : L I N E S T R I N G ; LIST : L I S T ; LOAD : L O A D ; LOCAL : L O C A L ; LOCALTIME : L O C A L T I M E ; LOCALTIMESTAMP : L O C A L T I M E S T A M P ; LOCK : L O C K ; LOCKED : L O C K E D ; LOCKS : L O C K S ; LOGFILE : L O G F I L E ; LOGS : L O G S ; LONG : L O N G ; LONGBLOB : L O N G B L O B ; LONGTEXT : L O N G T E X T ; LOOP : L O O P ; LOW_PRIORITY : L O W UL_ P R I O R I T Y ; MASTER : M A S T E R ; MASTER_AUTO_POSITION : M A S T E R UL_ A U T O UL_ P O S I T I O N ; MASTER_BIND : M A S T E R UL_ B I N D ; MASTER_COMPRESSION_ALGORITHM : M A S T E R UL_ C O M P R E S S I O N UL_ A L G O R I T H M S ; MASTER_CONNECT_RETRY : M A S T E R UL_ C O N N E C T UL_ R E T R Y ; MASTER_DELAY : M A S T E R UL_ D E L A Y ; MASTER_HEARTBEAT_PERIOD : M A S T E R UL_ H E A R T B E A T UL_ P E R I O D ; MASTER_HOST : M A S T E R UL_ H O S T ; MASTER_LOG_FILE : M A S T E R UL_ L O G UL_ F I L E ; MASTER_LOG_POS : M A S T E R UL_ L O G UL_ P O S ; MASTER_PASSWORD : <PASSWORD> ; MASTER_PORT : M A S T E R UL_ P O R T ; MASTER_PUBLIC_KEY_PATH : M A S T E R UL_ P U B L I C UL_ K E Y UL_ P A T H ; MASTER_RETRY_COUNT : M A S T E R UL_ R E T R Y UL_ C O U N T ; MASTER_SERVER_ID : M A S T E R UL_ S E R V E R UL_ I D ; MASTER_SSL : M A S T E R UL_ S S L ; MASTER_SSL_CA : M A S T E R UL_ S S L UL_ C A ; MASTER_SSL_CAPATH : M A S T E R UL_ S S L UL_ C A P A T H ; MASTER_SSL_CERT : M A S T E R UL_ S S L UL_ C E R T ; MASTER_SSL_CIPHER : M A S T E R UL_ S S L UL_ C I P H E R ; MASTER_SSL_CRL : M A S T E R UL_ S S L UL_ C R L ; MASTER_SSL_CRLPATH : M A S T E R UL_ S S L UL_ C R L P A T H ; MASTER_SSL_KEY : M A S T E R UL_ S S L UL_ K E Y ; MASTER_SSL_VERIFY_SERVER_CERT : M A S T E R UL_ S S L UL_ V E R I F Y UL_ S E R V E R UL_ C E R T ; MASTER_TLS_CIPHERSUITES : M A S T E R UL_ T L S UL_ C I P H E R S U I T E S ; MASTER_TLS_VERSION : M A S T E R UL_ T L S UL_ V E R S I O N ; MASTER_USER : M A S T E R UL_ U S E R ; MASTER_ZSTD_COMPRESSION_LEVEL : M A S T E R UL_ Z S T D UL_ C O M P R E S S I O N UL_ L E V E L ; MATCH : M A T C H ; MAXVALUE : M A X V A L U E ; MAX_CONNECTIONS_PER_HOUR : M A X UL_ C O N N E C T I O N S UL_ P E R UL_ H O U R ; MAX_QUERIES_PER_HOUR : M A X UL_ Q U E R I E S UL_ P E R UL_ H O U R ; MAX_ROWS : M A X UL_ R O W S ; MAX_SIZE : M A X UL_ S I Z E ; MAX_UPDATES_PER_HOUR : M A X UL_ U P D A T E S UL_ P E R UL_ H O U R ; MAX_USER_CONNECTIONS : M A X UL_ U S E R UL_ C O N N E C T I O N S ; MEDIUM : M E D I U M ; MEDIUMBLOB : M E D I U M B L O B ; MEDIUMINT : M E D I U M I N T ; MEDIUMTEXT : M E D I U M T E X T ; MEMBER : M E M B E R ; MEMORY : M E M O R Y ; MERGE : M E R G E ; MESSAGE_TEXT : M E S S A G E UL_ T E X T ; MICROSECOND : M I C R O S E C O N D ; MIDDLEINT : M I D D L E I N T ; MIGRATE : M I G R A T E ; MINUTE : M I N U T E ; MINUTE_MICROSECOND : M I N U T E UL_ M I C R O S E C O N D ; MINUTE_SECOND : M I N U T E UL_ S E C O N D ; MIN_ROWS : M I N UL_ R O W S ; MOD : M O D ; MODE : M O D E ; MODIFIES : M O D I F I E S ; MODIFY : M O D I F Y ; MONTH : M O N T H ; MULTILINESTRING : M U L T I L I N E S T R I N G ; MULTIPOINT : M U L T I P O I N T ; MULTIPOLYGON : M U L T I P O L Y G O N ; MUTEX : M U T E X ; MYSQL_ERRNO : M Y S Q L UL_ E R R N O ; NAME : N A M E ; NAMES : N A M E S ; NATIONAL : N A T I O N A L ; NATURAL : N A T U R A L ; NCHAR : N C H A R ; NDB : N D B -> type(NDBCLUSTER) ; NDBCLUSTER : N D B C L U S T E R ; NESTED : N E S T E D ; NETWORK_NAMESPACE : N E T W O R K UL_ N A M E S P A C E ; NEVER : N E V E R ; NEW : N E W ; NEXT : N E X T ; NO : N O ; NODEGROUP : N O D E G R O U P ; NONE : N O N E ; NOT : N O T ; NOWAIT : N O W A I T ; NO_WAIT : N O UL_ W A I T ; NO_WRITE_TO_BINLOG : N O UL_ W R I T E UL_ T O UL_ B I N L O G ; NTH_VALUE : N T H UL_ V A L U E ; NTILE : N T I L E ; NULL : N U L L ; NULLS : N U L L S ; NUMBER : N U M B E R ; NUMERIC : N U M E R I C ; NVARCHAR : N V A R C H A R ; OF : O F ; OFF : O F F ; OFFSET : O F F S E T ; OJ : O J ; OLD : O L D ; ON : O N ; ONE : O N E ; ONLY : O N L Y ; OPEN : O P E N ; OPTIMIZE : O P T I M I Z E ; OPTIMIZER_COSTS : O P T I M I Z E R UL_ C O S T S ; OPTION : O P T I O N ; OPTIONAL : O P T I O N A L ; OPTIONALLY : O P T I O N A L L Y ; OPTIONS : O P T I O N S ; OR : O R ; ORDER : O R D E R ; ORDINALITY : O R D I N A L I T Y ; ORGANIZATION : O R G A N I Z A T I O N ; OTHERS : O T H E R S ; OUT : O U T ; OUTER : O U T E R ; OUTFILE : O U T F I L E ; OVER : O V E R ; OWNER : O W N E R ; PACK_KEYS : P A C K UL_ K E Y S ; PAGE : P A G E ; PARSER : P A R S E R ; PARTIAL : P A R T I A L ; PARTITION : P A R T I T I O N ; PARTITIONING : P A R T I T I O N I N G ; PARTITIONS : P A R T I T I O N S ; PASSWORD : <NAME> ; PASSWORD_LOCK_TIME : P A S S W O R D UL_ L O C K UL_ T I M E ; PATH : P A T H ; PERCENT_RANK : P E R C E N T UL_ R A N K ; PERSIST : P E R S I S T ; PERSIST_ONLY : P E R S I S T UL_ O N L Y ; PHASE : P H A S E ; PLUGIN : P L U G I N ; PLUGINS : P L U G I N S ; PLUGIN_DIR : P L U G I N UL_ D I R ; POINT : P O I N T ; POLYGON : P O L Y G O N ; PORT : P O R T ; PRECEDES : P R E C E D E S ; PRECEDING : P R E C E D I N G ; PRECISION : P R E C I S I O N ; PREPARE : P R E P A R E ; PRESERVE : P R E S E R V E ; PREV : P R E V ; PRIMARY : P R I M A R Y ; PRIVILEGES : P R I V I L E G E S ; PRIVILEGE_CHECKS_USER : P R I V I L E G E UL_ C H E C K S UL_ U S E R ; PROCEDURE : P R O C E D U R E ; PROCESS : P R O C E S S ; PROCESSLIST : P R O C E S S L I S T ; PROFILE : P R O F I L E ; PROFILES : P R O F I L E S ; PROXY : P R O X Y ; PURGE : P U R G E ; QUARTER : Q U A R T E R ; QUERY : Q U E R Y ; QUICK : Q U I C K ; RANDOM : R A N D O M ; RANGE : R A N G E ; RANK : R A N K ; READ : R E A D ; READS : R E A D S ; READ_ONLY : R E A D UL_ O N L Y ; READ_WRITE : R E A D UL_ W R I T E ; REAL : R E A L ; REBUILD : R E B U I L D ; RECOVER : R E C O V E R ; RECURSIVE : R E C U R S I V E ; REDO_BUFFER_SIZE : R E D O UL_ B U F F E R UL_ S I Z E ; REDUNDANT : R E D U N D A N T ; REFERENCE : R E F E R E N C E ; REFERENCES : R E F E R E N C E S ; REGEXP : R E G E X P ; RELAY : R E L A Y ; RELAYLOG : R E L A Y L O G ; RELAY_LOG_FILE : R E L A Y UL_ L O G UL_ F I L E ; RELAY_LOG_POS : R E L A Y UL_ L O G UL_ P O S ; RELAY_THREAD : R E L A Y UL_ T H R E A D ; RELEASE : R E L E A S E ; RELOAD : R E L O A D ; REMOVE : R E M O V E ; RENAME : R E N A M E ; REORGANIZE : R E O R G A N I Z E ; REPAIR : R E P A I R ; REPEAT : R E P E A T ; REPEATABLE : R E P E A T A B L E ; REPLACE : R E P L A C E ; REPLICAS : R E P L I C A S ; REPLICATE_DO_DB : R E P L I C A T E UL_ D O UL_ D B ; REPLICATE_DO_TABLE : R E P L I C A T E UL_ D O UL_ T A B L E ; REPLICATE_IGNORE_DB : R E P L I C A T E UL_ I G N O R E UL_ D B ; REPLICATE_IGNORE_TABLE : R E P L I C A T E UL_ I G N O R E UL_ T A B L E ; REPLICATE_REWRITE_DB : R E P L I C A T E UL_ R E W R I T E UL_ D B ; REPLICATE_WILD_DO_TABLE : R E P L I C A T E UL_ W I L D UL_ D O UL_ T A B L E ; REPLICATE_WILD_IGNORE_TABLE : R E P L I C A T E UL_ W I L D UL_ I G N O R E UL_ T A B L E ; REPLICATION : R E P L I C A T I O N ; REQUIRE : R E Q U I R E ; REQUIRE_ROW_FORMAT : R E Q U I R E UL_ R O W UL_ F O R M A T ; RESET : R E S E T ; RESIGNAL : R E S I G N A L ; RESOURCE : R E S O U R C E ; RESPECT : R E S P E C T ; RESTART : R E S T A R T ; RESTORE : R E S T O R E ; RESTRICT : R E S T R I C T ; RESUME : R E S U M E ; RETAIN : R E T A I N ; RETURN : R E T U R N ; RETURNED_SQLSTATE : R E T U R N E D UL_ S Q L S T A T E ; RETURNING : R E T U R N I N G ; RETURNS : R E T U R N S ; REUSE : R E U S E ; REVERSE : R E V E R S E ; REVOKE : R E V O K E ; RIGHT : R I G H T ; RLIKE : R L I K E ; ROLE : R O L E ; ROLLBACK : R O L L B A C K ; ROLLUP : R O L L U P ; ROTATE : R O T A T E ; ROUTINE : R O U T I N E ; ROW : R O W ; ROWS : R O W S ; ROW_COUNT : R O W UL_ C O U N T ; ROW_FORMAT : R O W UL_ F O R M A T ; ROW_NUMBER : R O W UL_ N U M B E R ; RTREE : R T R E E ; SAVEPOINT : S A V E P O I N T ; SCHEDULE : S C H E D U L E ; SCHEMA : S C H E M A ; SCHEMAS : S C H E M A S ; SCHEMA_NAME : S C H E M A UL_ N A M E ; SECOND : S E C O N D ; SECONDARY : S E C O N D A R Y ; SECONDARY_ENGINE : S E C O N D A R Y UL_ E N G I N E ; SECONDARY_ENGINE_ATTRIBUTE : S E C O N D A R Y UL_ E N G I N E UL_ A T T R I B U T E ; SECONDARY_LOAD : S E C O N D A R Y UL_ L O A D ; SECONDARY_UNLOAD : S E C O N D A R Y UL_ U N L O A D ; SECOND_MICROSECOND : S E C O N D UL_ M I C R O S E C O N D ; SECURITY : S E C U R I T Y ; SELECT : S E L E C T ; SENSITIVE : S E N S I T I V E ; SEPARATOR : S E P A R A T O R ; SERIAL : S E R I A L ; SERIALIZABLE : S E R I A L I Z A B L E ; SERVER : S E R V E R ; SESSION : S E S S I O N ; SET : S E T ; SHARE : S H A R E ; SHOW : S H O W ; SHUTDOWN : S H U T D O W N ; SIGNAL : S I G N A L ; SIGNED : S I G N E D ; SIMPLE : S I M P L E ; SKIP_SYMBOL : S K I P ; SLAVE : S L A V E ; SLOW : S L O W ; SMALLINT : S M A L L I N T ; SNAPSHOT : S N A P S H O T ; SOCKET : S O C K E T ; SOME : S O M E -> type(ANY) ; SONAME : S O N A M E ; SOUNDS : S O U N D S ; SOURCE : S O U R C E ; SPATIAL : S P A T I A L ; SPECIFIC : S P E C I F I C ; SQL : S Q L ; SQLEXCEPTION : S Q L E X C E P T I O N ; SQLSTATE : S Q L S T A T E ; SQLWARNING : S Q L W A R N I N G ; SQL_AFTER_GTIDS : S Q L UL_ A F T E R UL_ G T I D S ; SQL_AFTER_MTS_GAPS : S Q L UL_ A F T E R UL_ M T S UL_ G A P S ; SQL_BEFORE_GTIDS : S Q L UL_ B E F O R E UL_ G T I D S ; SQL_BIG_RESULT : S Q L UL_ B I G UL_ R E S U L T ; SQL_BUFFER_RESULT : S Q L UL_ B U F F E R UL_ R E S U L T ; SQL_CALC_FOUND_ROWS : S Q L UL_ C A L C UL_ F O U N D UL_ R O W S ; SQL_NO_CACHE : S Q L UL_ N O UL_ C A C H E ; SQL_SMALL_RESULT : S Q L UL_ S M A L L UL_ R E S U L T ; SQL_THREAD : S Q L UL_ T H R E A D ; SQL_TSI_DAY : S Q L UL_ T S I UL_ D A Y -> type(DAY) ; SQL_TSI_HOUR : S Q L UL_ T S I UL_ H O U R -> type(HOUR) ; SQL_TSI_MINUTE : S Q L UL_ T S I UL_ M I N U T E -> type(MINUTE) ; SQL_TSI_MONTH : S Q L UL_ T S I UL_ M O N T H -> type(MONTH) ; SQL_TSI_QUARTER : S Q L UL_ T S I UL_ Q U A R T E R -> type(QUARTER) ; SQL_TSI_SECOND : S Q L UL_ T S I UL_ S E C O N D -> type(SECOND) ; SQL_TSI_WEEK : S Q L UL_ T S I UL_ W E E K -> type(WEEK) ; SQL_TSI_YEAR : S Q L UL_ T S I UL_ Y E A R -> type(YEAR) ; SRID : S R I D ; SSL : S S L ; STACKED : S T A C K E D ; START : S T A R T ; STARTING : S T A R T I N G ; STARTS : S T A R T S ; STATS_AUTO_RECALC : S T A T S UL_ A U T O UL_ R E C A L C ; STATS_PERSISTENT : S T A T S UL_ P E R S I S T E N T ; STATS_SAMPLE_PAGES : S T A T S UL_ S A M P L E UL_ P A G E S ; STATUS : S T A T U S ; STOP : S T O P ; STORAGE : S T O R A G E ; STORED : S T O R E D ; STRAIGHT_JOIN : S T R A I G H T UL_ J O I N ; STREAM : S T R E A M ; STRING : S T R I N G ; SUBCLASS_ORIGIN : S U B C L A S S UL_ O R I G I N ; SUBJECT : S U B J E C T ; SUBPARTITION : S U B P A R T I T I O N ; SUBPARTITIONS : S U B P A R T I T I O N S ; SUPER : S U P E R ; SUSPEND : S U S P E N D ; SWAPS : S W A P S ; SWITCHES : S W I T C H E S ; SYSTEM : S Y S T E M ; TABLE : T A B L E ; TABLES : T A B L E S ; TABLESPACE : T A B L E S P A C E ; TABLE_CHECKSUM : T A B L E UL_ C H E C K S U M ; TABLE_NAME : T A B L E UL_ N A M E ; TEMPORARY : T E M P O R A R Y ; TEMPTABLE : T E M P T A B L E ; TERMINATED : T E R M I N A T E D ; TEXT : T E X T ; THAN : T H A N ; THEN : T H E N ; THREAD_PRIORITY : T H R E A D UL_ P R I O R I T Y ; TIES : T I E S ; TIME : T I M E ; TIMESTAMP : T I M E S T A M P ; TIMESTAMP_ADD : T I M E S T A M P UL_ A D D ; TIMESTAMP_DIFF : T I M E S T A M P UL_ D I F F ; TINYBLOB : T I N Y B L O B ; TINYINT : T I N Y I N T ; TINYTEXT : T I N Y T E X T ; TLS : T L S ; TO : T O ; TRAILING : T R A I L I N G ; TRANSACTION : T R A N S A C T I O N ; TRIGGER : T R I G G E R ; TRIGGERS : T R I G G E R S ; TRUE : T R U E ; TRUNCATE : T R U N C A T E ; TYPE : T Y P E ; TYPES : T Y P E S ; UNBOUNDED : U N B O U N D E D ; UNCOMMITTED : U N C O M M I T T E D ; UNDEFINED : U N D E F I N E D ; UNDO : U N D O ; UNDOFILE : U N D O F I L E ; UNDO_BUFFER_SIZE : U N D O UL_ B U F F E R UL_ S I Z E ; UNICODE : U N I C O D E ; UNINSTALL : U N I N S T A L L ; UNION : U N I O N ; UNIQUE : U N I Q U E ; UNKNOWN : U N K N O W N ; UNLOCK : U N L O C K ; UNSIGNED : U N S I G N E D ; UNTIL : U N T I L ; UPDATE : U P D A T E ; UPGRADE : U P G R A D E ; USAGE : U S A G E ; USE : U S E ; USER : U S E R ; USER_RESOURCES : U S E R UL_ R E S O U R C E S ; USE_FRM : U S E UL_ F R M ; USING : U S I N G ; UTC_DATE : U T C UL_ D A T E ; UTC_TIME : U T C UL_ T I M E ; UTC_TIMESTAMP : U T C UL_ T I M E S T A M P ; VALIDATION : V A L I D A T I O N ; VALUE : V A L U E ; VALUES : V A L U E S ; VARBINARY : V A R B I N A R Y ; VARCHAR : V A R C H A R ; VARCHARACTER : V A R C H A R A C T E R ; VARIABLES : V A R I A B L E S ; VARYING : V A R Y I N G ; VCPU : V C P U ; VIEW : V I E W ; VIRTUAL : V I R T U A L ; VISIBLE : V I S I B L E ; WAIT : W A I T ; WARNINGS : W A R N I N G S ; WEEK : W E E K ; WEIGHT_STRING : W E I G H T UL_ S T R I N G ; WHEN : W H E N ; WHERE : W H E R E ; WHILE : W H I L E ; WINDOW : W I N D O W ; WITH : W I T H ; WITHOUT : W I T H O U T ; WORK : W O R K ; WRAPPER : W R A P P E R ; WRITE : W R I T E ; X509 : X '509' ; XA : X A ; XID : X I D ; XML : X M L ; XOR : X O R ; YEAR : Y E A R ; YEAR_MONTH : Y E A R UL_ M O N T H ; ZEROFILL : Z E R O F I L L ;
oeis/182/A182432.asm
neoneye/loda-programs
11
87094
; A182432: Recurrence a(n)*a(n-2) = a(n-1)*(a(n-1)+3) with a(0) = 1, a(1) = 4. ; 1,4,28,217,1705,13420,105652,831793,6548689,51557716,405913036,3195746569,25160059513,198084729532,1559517776740,12278057484385,96664942098337,761041479302308,5991666892320124,47172293659258681,371386682381749321,2923921165394735884,23019982640776137748,181235939960814366097,1426867537045738791025,11233704356405095962100,88442767314195028905772,696308434157155135284073,5482024705943046053366809,43159889213387213291650396,339797089001154660279836356,2675216822795850068947040449 seq $0,253654 ; Indices of pentagonal numbers (A000326) which are also centered pentagonal numbers (A005891). div $0,5 mul $0,3 add $0,1
Task/Filter/AppleScript/filter-2.applescript
LaudateCorpus1/RosettaCodeData
1
2884
<filename>Task/Filter/AppleScript/filter-2.applescript<gh_stars>1-10 to filter(inList, acceptor) set outList to {} repeat with anItem in inList if acceptor's accept(anItem) then set end of outList to contents of anItem end end return outList end script isEven to accept(aNumber) aNumber mod 2 = 0 end accept end script filter({1,2,3,4,5,6}, isEven)
programs/oeis/295/A295664.asm
neoneye/loda
22
168191
; A295664: Exponent of the highest power of 2 dividing number of divisors of n: a(n) = A007814(A000005(n)); 2-adic valuation of tau(n). ; 0,1,1,0,1,2,1,2,0,2,1,1,1,2,2,0,1,1,1,1,2,2,1,3,0,2,2,1,1,3,1,1,2,2,2,0,1,2,2,3,1,3,1,1,1,2,1,1,0,1,2,1,1,3,2,3,2,2,1,2,1,2,1,0,2,3,1,1,2,3,1,2,1,2,1,1,2,3,1,1,0,2,1,2,2,2,2,3,1,2,2,1,2,2,2,2,1,1,1,0 seq $0,5 ; d(n) (also called tau(n) or sigma_0(n)), the number of divisors of n. lpb $0 dif $0,2 add $1,1 lpe mov $0,$1
oeis/090/A090345.asm
neoneye/loda-programs
11
95981
<reponame>neoneye/loda-programs ; A090345: Number of Motzkin paths of length n with no level steps at even level. ; Submitted by <NAME>(w4) ; 1,0,1,1,3,5,12,24,55,119,272,612,1411,3247,7565,17667,41561,98099,232696,553784,1322813,3169065,7614583,18342921,44294991,107200829,259983346,631718606,1537737567,3749440151,9156561590,22394270034,54845701243,134497468359,330232547654,811765175526,1997647751499,4921080224179,12134785568837,29951088628675,73991572782137,182945911599011,452706680336094,1121111805777986,2778458503307849,6890773329927073,17101257571341830,42468991330992098,105532974612374085,262401280980751297,652822467195891786 mov $3,2 mov $5,$0 lpb $3 sub $3,1 add $0,$3 sub $0,1 mov $2,$3 mov $4,$0 max $4,0 seq $4,90344 ; Number of Motzkin paths of length n with no level steps at odd level. mul $2,$4 add $1,$2 lpe min $5,1 mul $5,$4 sub $1,$5 mov $0,$1
libsrc/_DEVELOPMENT/l/sccz80/9-common/i32/l_long_add_mhl.asm
ahjelm/z88dk
4
22814
; Z88 Small C+ Run Time Library ; Long functions ; ; feilipu 10/2021 SECTION code_clib SECTION code_l_sccz80 PUBLIC l_long_add_mhl ;primary = primary + secondary ;enter with secondary in (hl), primary in (de) .l_long_add_mhl ld a,(de) add a,(hl) ld (de),a inc de inc hl ld a,(de) adc a,(hl) ld (de),a inc de inc hl ld a,(de) adc a,(hl) ld (de),a inc de inc hl ld a,(de) adc a,(hl) ld (de),a ret
developer_parameters.ads
ddugovic/words
4
16759
with TEXT_IO; package DEVELOPER_PARAMETERS is -- These are a few strange declarations to be used in diagnostics; SRA_MAX, SRAA_MAX, DMA_MAX : INTEGER := 0; PA_LAST_MAX, FINAL_PA_LAST_MAX : INTEGER := 0; -- This package defines a number of parameters that areused in the program -- The default values are set in the body, so that they may be changed easily -- These files are used by the program if requested, but not necessary -- They are all text files and human readable -- DEVELOPER MODE_FILE is used by the program to remember values MDEV_FILE : TEXT_IO.FILE_TYPE; MDEV_FULL_NAME : constant STRING := "WORD.MDV"; -- Debug not currently in use -- -- DBG collects debug output for one entry at a time -- DBG : TEXT_IO.FILE_TYPE; -- DEBUG_FULL_NAME : constant STRING := "WORD.DBG"; -- STATS collects statistics on the program, stems used, inflections, etc. STATS : TEXT_IO.FILE_TYPE; STATS_FULL_NAME : constant STRING := "WORD.STA"; type MDEV_TYPE is ( -- HAVE_DEBUG_FILE, -- No longer in use -- WRITE_DEBUG_FILE, HAVE_STATISTICS_FILE, WRITE_STATISTICS_FILE, SHOW_DICTIONARY, SHOW_DICTIONARY_LINE, SHOW_DICTIONARY_CODES, DO_PEARSE_CODES, DO_ONLY_INITIAL_WORD, FOR_WORD_LIST_CHECK, DO_ONLY_FIXES, DO_FIXES_ANYWAY, USE_PREFIXES, USE_SUFFIXES, USE_TACKONS, DO_MEDIEVAL_TRICKS, DO_SYNCOPE, DO_TWO_WORDS, INCLUDE_UNKNOWN_CONTEXT, NO_MEANINGS, OMIT_ARCHAIC, OMIT_MEDIEVAL, OMIT_UNCOMMON, DO_I_FOR_J, DO_U_FOR_V, PAUSE_IN_SCREEN_OUTPUT, NO_SCREEN_ACTIVITY, UPDATE_LOCAL_DICTIONARY, UPDATE_MEANINGS, MINIMIZE_OUTPUT ); package MDEV_TYPE_IO is new TEXT_IO.ENUMERATION_IO(MDEV_TYPE); type MDEV_ARRAY is array (MDEV_TYPE) of BOOLEAN; WORDS_MDEV : MDEV_ARRAY; -- Initialized in body START_FILE_CHARACTER : CHARACTER := '@'; CHANGE_DEVELOPER_MODES_CHARACTER : CHARACTER := '!'; procedure CHANGE_DEVELOPER_MODES; procedure UPDATE_LOCAL_DICTIONARY_FILE; procedure INITIALIZE_DEVELOPER_PARAMETERS; end DEVELOPER_PARAMETERS;
examples/shared/serial_ports/src/serial_io-blocking.adb
RREE/Ada_Drivers_Library
0
1784
<gh_stars>0 ------------------------------------------------------------------------------ -- -- -- Copyright (C) 2015-2022, AdaCore -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- 1. Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- 2. Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in -- -- the documentation and/or other materials provided with the -- -- distribution. -- -- 3. Neither the name of the copyright holder nor the names of its -- -- contributors may be used to endorse or promote products derived -- -- from this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -- -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -- -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -- -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ with STM32.Device; use STM32.Device; with HAL; use HAL; package body Serial_IO.Blocking is ------------------------- -- Initialize_Hardware -- ------------------------- procedure Initialize_Hardware (This : out Serial_Port) is begin Serial_IO.Initialize_Hardware (This.Device); end Initialize_Hardware; --------------- -- Configure -- --------------- procedure Configure (This : in out Serial_Port; Baud_Rate : Baud_Rates; Parity : Parities := No_Parity; Data_Bits : Word_Lengths := Word_Length_8; End_Bits : Stop_Bits := Stopbits_1; Control : Flow_Control := No_Flow_Control) is begin Serial_IO.Configure (This.Device, Baud_Rate, Parity, Data_Bits, End_Bits, Control); end Configure; ---------- -- Send -- ---------- procedure Send (This : in out Serial_Port; Msg : not null access Message) is begin for Next in 1 .. Msg.Length loop Await_Send_Ready (This.Device.Transceiver.all); Transmit (This.Device.Transceiver.all, Character'Pos (Msg.Content_At (Next))); end loop; end Send; ------------- -- Receive -- ------------- procedure Receive (This : in out Serial_Port; Msg : not null access Message) is Received_Char : Character; Raw : UInt9; begin Msg.Clear; Receiving : for K in 1 .. Msg.Physical_Size loop Await_Data_Available (This.Device.Transceiver.all); Receive (This.Device.Transceiver.all, Raw); Received_Char := Character'Val (Raw); exit Receiving when Received_Char = Msg.Terminator; Msg.Append (Received_Char); end loop Receiving; end Receive; ---------------------- -- Await_Send_Ready -- ---------------------- procedure Await_Send_Ready (This : USART) is begin loop exit when Tx_Ready (This); end loop; end Await_Send_Ready; -------------------------- -- Await_Data_Available -- -------------------------- procedure Await_Data_Available (This : USART) is begin loop exit when Rx_Ready (This); end loop; end Await_Data_Available; end Serial_IO.Blocking;
Kernel/asm/mutex.asm
R0L02796/TP2_SO
0
7448
<reponame>R0L02796/TP2_SO GLOBAL _mutexAcquire section .text _mutexAcquire: push rbp mov rbp, rsp mov eax, 1 xchg eax, [rdi] mov rsp, rbp pop rbp ret
innovative questions/ques1/prog.asm
Amanskywalker/mp-lab
0
23778
<gh_stars>0 ; program code .model small .data ;typedef ;defining few c word to feel like c language byte typedef db char typedef byte pchar typedef ptr char ; pointer to char ipmsg char 10,13,"Enter your the review about the product :$" rop char 10,13,"User review is :$" uip char 100h dup(0) ;user input is stored in it tstr char 100h dup(0) ;temp string to hold the words for comparison ; defining the words for positive review g1 char "awesome" g2 char "good" g3 char "excellent" ; defining words for negative review b1 char "bad" b2 char "worst" ;pointer to the arrays gptr pchar g1,g2,g3 bptr pchar b1,b2 ;number of words for positive and negative review gw db 03h bw db 02h ; counter to count the score gc db 00h bc db 00h ;size of user input n db 00h ;some temp vars to store temp values all of integer types (alternate stack can be used) t1 db 00h t2 db 00h ; including the macros include read.mac include strcmp.mac ;macro for comparing the stings .code mov ax,@data mov ds,ax mov es,ax ; required for string comparison read uip n ;macro to read from user mov si,00h ; process to read from user input string using space as delimiter lp1: cmp uip[si],20h je compare mov ax,uip[si] mov tstr[si],ax mov ax,n cmp si,ax je exit clp: inc si jmp lp1 bclp: mov si,t1 jmp clp ;using strcmp to find wether give word matches or not and increment the appropriate counter compare: mov ax,t1 dec ax mov t1,si sub ax,si mov si,00h cpg: strcmp tstr gptr[si] ax t2 mov ax,t2 cmp ax,00h ; if result is true je loc1 mov ax,gw cmp si,gw je bclp inc si jmp cpg cpb: strcmp tstr bptr[si] ax t2 mov ax,t2 cmp ax,00h ; if result is true je loc2 mov ax,bw cmp si,bw je bclp inc si jmp cpb loc1: inc gc jmp bclp loc2: inc bc jmp bclp ;at last printing the result stop: mov ax,gc mov bx,bc sub ax,bx lea dx,rop mov ah,09h int 21h mov dx,ax mov ah,09h int 21h mov ah,4ch int 21h end ; end of program
alloy4fun_models/trashltl/models/15/JyKdqmSJ3iADZZAWc.als
Kaixi26/org.alloytools.alloy
0
982
<gh_stars>0 open main pred idJyKdqmSJ3iADZZAWc_prop16 { all f:Protected | always f in Protected } pred __repair { idJyKdqmSJ3iADZZAWc_prop16 } check __repair { idJyKdqmSJ3iADZZAWc_prop16 <=> prop16o }
libsrc/graphics/oz/clg.asm
meesokim/z88dk
0
96134
<reponame>meesokim/z88dk ; ; Sharp OZ family port (graphics routines) ; <NAME> - Aug 2002 ; ; ; Clear the graph. screen ; ; ; $Id: clg.asm,v 1.4 2015/01/19 01:32:49 pauloscustodio Exp $ ; PUBLIC clg EXTERN base_graphics EXTERN swapgfxbk EXTERN swapgfxbk1 .clg call swapgfxbk ld hl,(base_graphics) ld d,h ld e,l inc de ld bc,2400-1 xor a ld (hl),a ldir jp swapgfxbk1
oeis/037/A037745.asm
neoneye/loda-programs
11
95659
<reponame>neoneye/loda-programs ; A037745: Base 5 digits are, in order, the first n terms of the periodic sequence with initial period 2,3,0,1. ; Submitted by <NAME> ; 2,13,65,326,1632,8163,40815,204076,1020382,5101913,25509565,127547826,637739132,3188695663,15943478315,79717391576,398586957882,1992934789413,9964673947065,49823369735326,249116848676632,1245584243383163 mov $2,2 lpb $0 sub $0,1 add $1,$2 mul $1,5 add $2,21 mod $2,4 lpe add $1,$2 mov $0,$1
source/miscellany/renumber.asm
paulscottrobson/rpl-32
0
166247
; ****************************************************************************** ; ****************************************************************************** ; ; Name : renumber.asm ; Purpose : Renumber lines ; Author : <NAME> (<EMAIL>) ; Created : 8th October 2019 ; ; ****************************************************************************** ; ****************************************************************************** ; ****************************************************************************** ; ; Line Renumber ; ; (simple, as the line numbers are purely for editing) ; ; ****************************************************************************** Cmd_Renumber: ;; [renumber] lda #ProgramStart & $FF ; zTemp1 line number being changed sta zTemp1 lda #ProgramStart >> 8 sta zTemp1+1 ; lda #1000 & $FF ; zTemp2 new number sta zTemp2 lda #1000 >> 8 sta zTemp2+1 _CRLoop: lda (zTemp1) ; check end of program beq _CRExit ldy #1 ; copy new number in lda zTemp2 sta (zTemp1),y iny lda zTemp2+1 sta (zTemp1),y ; clc ; add 10 to new number lda zTemp2 adc #10 sta zTemp2 bcc _CRNoCarry inc zTemp2+1 _CRNoCarry: ; clc ; go to next line lda (zTemp1) adc zTemp1 sta zTemp1 bcc _CRLoop inc zTemp1+1 bra _CRLoop _CRExit: rts
include/sf-window-cursor.ads
Fabien-Chouteau/ASFML
0
9112
--////////////////////////////////////////////////////////// -- SFML - Simple and Fast Multimedia Library -- Copyright (C) 2007-2018 <NAME> (<EMAIL>) -- This software is provided 'as-is', without any express or implied warranty. -- In no event will the authors be held liable for any damages arising from the use of this software. -- Permission is granted to anyone to use this software for any purpose, -- including commercial applications, and to alter it and redistribute it freely, -- subject to the following restrictions: -- 1. The origin of this software must not be misrepresented; -- you must not claim that you wrote the original software. -- If you use this software in a product, an acknowledgment -- in the product documentation would be appreciated but is not required. -- 2. Altered source versions must be plainly marked as such, -- and must not be misrepresented as being the original software. -- 3. This notice may not be removed or altered from any source distribution. --////////////////////////////////////////////////////////// --////////////////////////////////////////////////////////// with Sf.System.Vector2; package Sf.Window.Cursor is --////////////////////////////////////////////////////////// --////////////////////////////////////////////////////////// --////////////////////////////////////////////////////////// --////////////////////////////////////////////////////////// --////////////////////////////////////////////////////////// --/ @brief Enumeration of the native system cursor types --/ --/ Refer to the following table to determine which cursor --/ is available on which platform. --/ --/ Type | Linux | Mac OS X | Windows --/ ------------------------------------|:-----:|:--------:|:--------: --/ sfCursorArrow | yes | yes | yes --/ sfCursorArrowWait | no | no | yes --/ sfCursorWait | yes | no | yes --/ sfCursorText | yes | yes | yes --/ sfCursorHand | yes | yes | yes --/ sfCursorSizeHorizontal | yes | yes | yes --/ sfCursorSizeVertical | yes | yes | yes --/ sfCursorSizeTopLeftBottomRight | no | no | yes --/ sfCursorSizeBottomLeftTopRight | no | no | yes --/ sfCursorSizeAll | yes | no | yes --/ sfCursorCross | yes | yes | yes --/ sfCursorHelp | yes | no | yes --/ sfCursorNotAllowed | yes | yes | yes --/ --////////////////////////////////////////////////////////// --/< Arrow cursor (default) --/< Busy arrow cursor --/< Busy cursor --/< I-beam, cursor when hovering over a field allowing text entry --/< Pointing hand cursor --/< Horizontal double arrow cursor --/< Vertical double arrow cursor --/< Double arrow cursor going from top-left to bottom-right --/< Double arrow cursor going from bottom-left to top-right --/< Combination of SizeHorizontal and SizeVertical --/< Crosshair cursor --/< Help cursor --/< Action not allowed cursor type sfCursorType is (sfCursorArrow, sfCursorArrowWait, sfCursorWait, sfCursorText, sfCursorHand, sfCursorSizeHorizontal, sfCursorSizeVertical, sfCursorSizeTopLeftBottomRight, sfCursorSizeBottomLeftTopRight, sfCursorSizeAll, sfCursorCross, sfCursorHelp, sfCursorNotAllowed); --////////////////////////////////////////////////////////// --/ @brief Create a cursor with the provided image --/ --/ @a pixels must be an array of @a width by @a height pixels --/ in 32-bit RGBA format. If not, this will cause undefined behavior. --/ --/ If @a pixels is null or either @a width or @a height are 0, --/ the current cursor is left unchanged and the function will --/ return false. --/ --/ In addition to specifying the pixel data, you can also --/ specify the location of the hotspot of the cursor. The --/ hotspot is the pixel coordinate within the cursor image --/ which will be located exactly where the mouse pointer --/ position is. Any mouse actions that are performed will --/ return the window/screen location of the hotspot. --/ --/ @warning On Unix, the pixels are mapped into a monochrome --/ bitmap: pixels with an alpha channel to 0 are --/ transparent, black if the RGB channel are close --/ to zero, and white otherwise. --/ --/ @param pixels Array of pixels of the image --/ @param size Width and height of the image --/ @param hotspot (x,y) location of the hotspot --/ @return A new sfCursor object --/ --////////////////////////////////////////////////////////// function createFromPixels (pixels : access sfUint8; size : Sf.System.Vector2.sfVector2u; hotspot : Sf.System.Vector2.sfVector2u) return sfCursor_Ptr; --////////////////////////////////////////////////////////// --/ @brief Create a native system cursor --/ --/ Refer to the list of cursor available on each system --/ (see sfCursorType) to know whether a given cursor is --/ expected to load successfully or is not supported by --/ the operating system. --/ --/ @param cursorType Native system cursor type --/ @return A new sfCursor object --/ --////////////////////////////////////////////////////////// function createFromSystem (cursorType : sfCursorType) return sfCursor_Ptr; --////////////////////////////////////////////////////////// --/ @brief Destroy a cursor --/ --/ @param cursor Cursor to destroy --/ --////////////////////////////////////////////////////////// procedure destroy (cursor : sfCursor_Ptr); private pragma Convention (C, sfCursorType); pragma Import (C, createFromPixels, "sfCursor_createFromPixels"); pragma Import (C, createFromSystem, "sfCursor_createFromSystem"); pragma Import (C, destroy, "sfCursor_destroy"); end Sf.Window.Cursor;
src/main/fragment/mos6502-common/vdum1=_makelong4_(vbuaa)_(vbuxx)_(vbum2)_(vbuyy).asm
jbrandwood/kickc
2
97494
sta {m1} stx {m1}+1 lda {m2} sta {m1}+2 sty {m1}+3
tests/natools-chunked_strings-tests-cxa4011.adb
faelys/natools
0
7575
------------------------------------------------------------------------------ -- Copyright (c) 2011, <NAME> -- -- -- -- Permission to use, copy, modify, and distribute this software for any -- -- purpose with or without fee is hereby granted, provided that the above -- -- copyright notice and this permission notice appear in all copies. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -- -- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -- -- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -- -- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -- -- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -- -- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -- -- OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -- ------------------------------------------------------------------------------ with Ada.Strings; use Ada.Strings; procedure Natools.Chunked_Strings.Tests.CXA4011 (Report : in out Natools.Tests.Reporter'Class) is package NT renames Natools.Tests; procedure Test (Test_Name : String; C_1 : Character; C_2 : Character; Name_1 : String; Name_2 : String); procedure Test (Test_Name : String; C_1 : Character; C_2 : Character; Name_1 : String; Name_2 : String) is begin if C_1 = C_2 then NT.Item (Report, Test_Name, NT.Success); else NT.Item (Report, Test_Name, NT.Fail); NT.Info (Report, Name_1 & ": " & Character'Image (C_1)); NT.Info (Report, Name_2 & ": " & Character'Image (C_2)); end if; end Test; begin NT.Section (Report, "Port of ACATS CXA4011"); declare Cad_String : constant Chunked_String := To_Chunked_String ("cad"); Complete_String : constant Chunked_String := To_Chunked_String ("Incomplete") & Ada.Strings.Space & To_Chunked_String ("String"); Incomplete_String : Chunked_String := To_Chunked_String ("ncomplete Strin"); Incorrect_Spelling : Chunked_String := To_Chunked_String ("<NAME>"); Magic_String : constant Chunked_String := To_Chunked_String ("abracadabra"); Incantation : Chunked_String := Magic_String; A_Small_G : constant Character := 'g'; A_Small_D : constant Character := 'd'; ABCD_Set : constant Maps.Character_Set := Maps.To_Set ("abcd"); B_Set : constant Maps.Character_Set := Maps.To_Set ("b"); AB_Set : constant Maps.Character_Set := Maps."OR" (Maps.To_Set ('a'), B_Set); Code_Map : constant Maps.Character_Mapping := Maps.To_Mapping (From => "abcd", To => "wxyz"); Reverse_Code_Map : constant Maps.Character_Mapping := Maps.To_Mapping (From => "wxyz", To => "abcd"); Non_Existent_Map : constant Maps.Character_Mapping := Maps.To_Mapping (From => "jkl", To => "mno"); Token_Start : array (1 .. 3) of Positive; Token_End : array (1 .. 3) of Natural := (0, 0, 0); Matching_Letters : Natural := 0; Tests : array (1 .. 5) of Boolean; begin declare Name : constant String := "Operator ""&"""; Tests : array (1 .. 3) of Boolean; begin Incomplete_String := 'I' & Incomplete_String; Incomplete_String := Incomplete_String & A_Small_G; if not Is_Valid (Incomplete_String) or not Is_Valid (Complete_String) then NT.Item (Report, Name, NT.Error); if not Is_Valid (Incomplete_String) then NT.Info (Report, "Incomplete_String is invalid"); end if; if not Is_Valid (Complete_String) then NT.Info (Report, "Complete_String is invalid"); end if; else Tests (1) := Incomplete_String < Complete_String; Tests (2) := Incomplete_String > Complete_String; Tests (3) := Incomplete_String /= Complete_String; if Tests (1) or Tests (2) or Tests (3) then NT.Item (Report, Name, NT.Fail); NT.Info (Report, "Incomplete_String: """ & To_String (Incomplete_String) & '"'); NT.Info (Report, "Complete_String: """ & To_String (Complete_String) & '"'); if Tests (1) then NT.Info (Report, "-> Incomplete_String < Complete_String"); end if; if Tests (2) then NT.Info (Report, "-> Incomplete_String < Complete_String"); end if; if Tests (3) then NT.Info (Report, "-> Incomplete_String /= Complete_String"); end if; else NT.Item (Report, Name, NT.Success); end if; end if; exception when Error : others => NT.Report_Exception (Report, Name, Error); end; NT.Section (Report, "Function Element"); declare Name : constant String := "Element of complete vs constant"; begin Test (Name, Element (Incomplete_String, Length (Incomplete_String)), A_Small_G, "Element (""" & To_String (Incomplete_String) & ',' & Natural'Image (Length (Incomplete_String)) & ')', "A_Small_G"); exception when Error : others => NT.Report_Exception (Report, Name, Error); end; declare Name : constant String := "Element of complete vs Element of Tail"; begin Test (Name, Element (Incomplete_String, 2), Element (Tail (Incomplete_String, 2), 1), "Element (""" & To_String (Incomplete_String) & ", 2)", "Element (""" & To_String (Tail (Incomplete_String, 2)) & ", 1)"); exception when Error : others => NT.Report_Exception (Report, Name, Error); end; declare Name : constant String := "Element of Head vs Element of constant"; begin Test (Name, Element (Head (Incomplete_String, 4), 2), Element (To_Chunked_String ("wnqz"), 2), "Element (""" & To_String (Head (Incomplete_String, 4)) & ", 2)", "Element (""wnqz"", 2)"); exception when Error : others => NT.Report_Exception (Report, Name, Error); end; NT.End_Section (Report); declare Name : constant String := "Procedure Replace_Element"; begin Replace_Element (Incorrect_Spelling, 2, 'o'); Replace_Element (Incorrect_Spelling, Index (Incorrect_Spelling, B_Set), A_Small_D); Replace_Element (Source => Incorrect_Spelling, Index => Length (Incorrect_Spelling), By => 'y'); Test (Report, Name, Incorrect_Spelling, "Good Day"); exception when Error : others => NT.Report_Exception (Report, Name, Error); end; -- Function Count Matching_Letters := Count (Source => Magic_String, Set => ABCD_Set); NT.Item (Report, "Function Count with Set parameter", NT.To_Result (Matching_Letters = 9)); if Matching_Letters /= 9 then NT.Info (Report, "Count (""" & To_String (Magic_String) & """, ABCD_Set) " & Natural'Image (Matching_Letters) & " (should be 9)"); Dump (Report, Magic_String); end if; Tests (1) := Count (Magic_String, "ab") = Count (Magic_String, "ac") + Count (Magic_String, "ad"); Tests (2) := Count (Magic_String, "ab") = 2; NT.Item (Report, "Function Count with String parameter", NT.To_Result (Tests (1) and Tests (2))); if not Tests (1) or not Tests (2) then NT.Info (Report, "Count (""" & To_String (Magic_String) & """, ""ab"") " & Natural'Image (Count (Magic_String, "ab")) & " (should be 2)"); NT.Info (Report, "Count (""" & To_String (Magic_String) & """, ""ac"") " & Natural'Image (Count (Magic_String, "ac"))); NT.Info (Report, "Count (""" & To_String (Magic_String) & """, ""ad"") " & Natural'Image (Count (Magic_String, "ad"))); end if; -- Find_Token Find_Token (Magic_String, AB_Set, Ada.Strings.Inside, Token_Start (1), Token_End (1)); Tests (1) := Natural (Token_Start (1)) = To_String (Magic_String)'First and Token_End (1) = Index (Magic_String, B_Set); Find_Token (Source => Magic_String, Set => ABCD_Set, Test => Ada.Strings.Outside, First => Token_Start (2), Last => Token_End (2)); Tests (2) := Natural (Token_Start (2)) = 3 and Token_End (2) = 3; Find_Token (Magic_String, Maps.To_Set (A_Small_G), Ada.Strings.Inside, First => Token_Start (3), Last => Token_End (3)); Tests (3) := Token_Start (3) = To_String (Magic_String)'First and Token_End (3) = 0; NT.Item (Report, "Procedure Find_Token", NT.To_Result (Tests (1) and Tests (2) and Tests (3))); if not Tests (1) then NT.Info (Report, "Start: " & Positive'Image (Token_Start (1)) & " /= " & Positive'Image (To_String (Magic_String)'First) & " (should be both 1)"); NT.Info (Report, "End: " & Natural'Image (Token_End (1)) & " /= " & Natural'Image (Index (Magic_String, B_Set)) & " (should be both 2)"); end if; if not Tests (2) then NT.Info (Report, "Start: " & Positive'Image (Token_Start (2)) & " (should be 3)"); NT.Info (Report, "End: " & Natural'Image (Token_End (2)) & " (should be 3)"); end if; if not Tests (3) then NT.Info (Report, "Start: " & Positive'Image (Token_Start (3)) & " /= " & Positive'Image (To_String (Magic_String)'First) & " (should be 1)"); NT.Info (Report, "End: " & Natural'Image (Token_End (3)) & " (should be 0)"); end if; -- Translate Incantation := Translate (Magic_String, Code_Map); Tests (1) := Incantation = To_Chunked_String ("wxrwywzwxrw"); NT.Item (Report, "Function Translate", NT.To_Result (Tests (1))); if not Tests (1) then NT.Info (Report, '"' & To_String (Incantation) & """ /= ""wxrwywzwxrw"""); end if; Translate (Incantation, Reverse_Code_Map); Tests (1) := Incantation = Translate (Magic_String, Non_Existent_Map); NT.Item (Report, "Procedure Translate", NT.To_Result (Tests (1))); if not Tests (1) then NT.Info (Report, '"' & To_String (Incantation) & """ /= """ & To_String (Translate (Magic_String, Non_Existent_Map)) & """ (should be """ & To_String (Magic_String) & """)"); end if; -- Trim declare XYZ_Set : constant Maps.Character_Set := Maps.To_Set ("xyz"); PQR_Set : constant Maps.Character_Set := Maps.To_Set ("pqr"); Pad : constant Chunked_String := To_Chunked_String ("Pad"); The_New_Ada : constant Chunked_String := To_Chunked_String ("Ada9X"); Space_Array : constant array (1 .. 4) of Chunked_String := (To_Chunked_String (" Pad "), To_Chunked_String ("Pad "), To_Chunked_String (" Pad"), Pad); String_Array : constant array (1 .. 5) of Chunked_String := (To_Chunked_String ("xyzxAda9Xpqr"), To_Chunked_String ("Ada9Xqqrp"), To_Chunked_String ("zxyxAda9Xqpqr"), To_Chunked_String ("xxxyAda9X"), The_New_Ada); begin for I in 1 .. 4 loop Tests (I) := Trim (Space_Array (I), Ada.Strings.Both) = Pad; end loop; NT.Item (Report, "Trim spaces", NT.To_Result (Tests (1) and Tests (2) and Tests (3) and Tests (4))); for I in 1 .. 4 loop if not Tests (I) then NT.Info (Report, "Part" & Positive'Image (I) & ": Trim (""" & To_String (Space_Array (I)) & """, Both) -> """ & To_String (Trim (Space_Array (I), Ada.Strings.Both)) & """ (shoud be """ & To_String (Pad) & '"'); end if; end loop; for I in 1 .. 5 loop Tests (I) := Trim (String_Array (I), Left => XYZ_Set, Right => PQR_Set) = The_New_Ada; end loop; NT.Item (Report, "Trim sets of characters", NT.To_Result (Tests (1) and Tests (2) and Tests (3) and Tests (4) and Tests (5))); for I in 1 .. 5 loop if not Tests (I) then NT.Info (Report, "Part" & Positive'Image (I) & ": Trim (""" & To_String (String_Array (I)) & """, XYZ_Set, PQR_Set) -> """ & To_String (Trim (String_Array (I), XYZ_Set, PQR_Set)) & """ (shoud be """ & To_String (The_New_Ada) & '"'); end if; end loop; end; -- Delete Tests (1) := Delete (Source => Delete (Magic_String, 8, Length (Magic_String)), From => To_String (Magic_String)'First, Through => 4) = Cad_String; NT.Item (Report, "Function Delete", NT.To_Result (Tests (1))); if not Tests (1) then NT.Info (Report, '"' & To_String (Delete (Delete (Magic_String, 8, Length (Magic_String)), To_String (Magic_String)'First, 4)) & """ /= """ & To_String (Cad_String) & '"'); end if; -- Constructors "*" declare SOS : Chunked_String; Dot : constant Chunked_String := To_Chunked_String ("Dot_"); Dash : constant String := "Dash_"; Distress : constant Chunked_String := To_Chunked_String ("Dot_Dot_Dot_") & To_Chunked_String ("Dash_Dash_Dash_") & To_Chunked_String ("Dot_Dot_Dot"); Repeat : constant Natural := 3; Separator : constant Character := '_'; Separator_Set : constant Maps.Character_Set := Maps.To_Set (Separator); begin SOS := Repeat * Dot; SOS := SOS & Repeat * Dash & Repeat * Dot; if Trim (SOS, Maps.Null_Set, Separator_Set) /= Distress then NT.Item (Report, "Function ""*""", NT.Fail); NT.Info (Report, '"' & To_String (Trim (SOS, Maps.Null_Set, Separator_Set)) & """ /= """ & To_String (Distress) & '"'); else NT.Item (Report, "Function ""*""", NT.Success); end if; end; exception when Error : others => NT.Report_Exception (Report, "Preparation", Error); end; NT.End_Section (Report); end Natools.Chunked_Strings.Tests.CXA4011;
wof/lcs/123p/46.asm
zengfr/arcade_game_romhacking_sourcecode_top_secret_data
6
101089
copyright zengfr site:http://github.com/zengfr/romhack 01A74C dbra D7, $1a74a 01A75E dbra D4, $1a75c copyright zengfr site:http://github.com/zengfr/romhack
Data/Tree/Braun.agda
oisdk/agda-playground
6
1721
{-# OPTIONS --cubical --safe #-} module Data.Tree.Braun where open import Prelude open import Data.Nat data Bal (n : ℕ) : ℕ → ℕ → Type where one : Bal n n (1 + n * 2) two : Bal n (suc n) (2 + n * 2) data Tree {a} (A : Type a) : ℕ → Type a where leaf : Tree A 0 node : ∀ {n m r} → (bal : Bal n m r) → A → (ls : Tree A m) → (rs : Tree A n) → Tree A r private variable n : ℕ inc : A → Tree A n → Tree A (suc n) inc x leaf = node one x leaf leaf inc x (node one y ls rs) = node two x (inc y rs) ls inc x (node two y ls rs) = node one x (inc y rs) ls
Univalence/PiWithLevels/Pi-1.agda
JacquesCarette/pi-dual
14
13668
module Pi-1 where open import Data.Empty open import Data.Unit open import Data.Product open import Relation.Binary.PropositionalEquality open import Groupoid import Pi-2 as P --infixr 10 _◎_ --infixr 30 _⟷_ ------------------------------------------------------------------------------ -- Level -1: -- Types are -1 groupoids or equivalently all types are mere propositions -- -- Types and values are defined without references to programs -- Types include PATHs from the previous level in addition to the usual types data U : Set where ZERO : U ONE : U TIMES : U → U → U PATH : {t₁ t₂ : P.U•} → (t₁ P.⟷ t₂) → U data Path {t₁ t₂ : P.U•} : P.Space t₁ → P.Space t₂ → Set where path : (c : t₁ P.⟷ t₂) → Path (P.point t₁) (P.point t₂) ⟦_⟧ : U → Set ⟦ ZERO ⟧ = ⊥ ⟦ ONE ⟧ = ⊤ ⟦ TIMES t₁ t₂ ⟧ = ⟦ t₁ ⟧ × ⟦ t₂ ⟧ ⟦ PATH {t₁} {t₂} c ⟧ = Path {t₁} {t₂} (P.point t₁) (P.point t₂) -- Proof that all types are mere propositions. Def. 3.3.1 in the HoTT book isMereProposition : (t : U) → (v v' : ⟦ t ⟧) → (v ≡ v') isMereProposition ZERO () isMereProposition ONE tt tt = refl isMereProposition (TIMES t₁ t₂) (v₁ , v₂) (v₁' , v₂') = cong₂ _,′_ (isMereProposition t₁ v₁ v₁') (isMereProposition t₂ v₂ v₂') isMereProposition (PATH {t₁} {t₂} c) (path c₁) (path c₂) = {!!} -- c₁ : t₁ ⟷ t₂ in Pi-2 -- c₂ : t₁ ⟷ t₂ in Pi-2 -- Proof that every type is a groupoid; this does not depend on the -- definition of programs isGroupoid : U → 1Groupoid isGroupoid ZERO = discrete ⊥ isGroupoid ONE = discrete ⊤ isGroupoid (TIMES t₁ t₂) = isGroupoid t₁ ×G isGroupoid t₂ isGroupoid (PATH {t₁} {t₂} c) = {!!} {-- ------------------------------------------------------------------------------ -- Level -1: -- if types are non-empty they must contain one point only like above -- types may however be empty -- -- We can prove that all types are either empty or equivalent to the unit -- type (i.e., they are mere propositions) module Pi-1 where data U : Set where ZERO : U ONE : U TIMES : U → U → U ⟦_⟧ : U → Set ⟦ ZERO ⟧ = ⊥ ⟦ ONE ⟧ = ⊤ ⟦ TIMES t₁ t₂ ⟧ = ⟦ t₁ ⟧ × ⟦ t₂ ⟧ ------------------------------------------------------------------------------ -- Level 0: -- types may contain any number of points (including none) -- they are sets -- -- We define isomorphisms between these sets that are reified to paths in the -- next level (level 1). These isomorphisms are the combinators for a -- commutative semiring structure which is sound and complete for sets. module Pi0 where infixr 10 _◎_ infixr 30 _⟷_ -- types data U : Set where ZERO : U ONE : U PLUS : U → U → U TIMES : U → U → U -- values ⟦_⟧ : U → Set ⟦ ZERO ⟧ = ⊥ ⟦ ONE ⟧ = ⊤ ⟦ PLUS t₁ t₂ ⟧ = ⟦ t₁ ⟧ ⊎ ⟦ t₂ ⟧ ⟦ TIMES t₁ t₂ ⟧ = ⟦ t₁ ⟧ × ⟦ t₂ ⟧ -- pointed types record U• : Set where constructor •[_,_] field ∣_∣ : U • : ⟦ ∣_∣ ⟧ open U• Space : (t• : U•) → Set Space •[ t , v ] = ⟦ t ⟧ point : (t• : U•) → Space t• point •[ t , v ] = v -- examples ONE• : U• ONE• = •[ ONE , tt ] BOOL : U BOOL = PLUS ONE ONE BOOL² : U BOOL² = TIMES BOOL BOOL TRUE : ⟦ BOOL ⟧ TRUE = inj₁ tt FALSE : ⟦ BOOL ⟧ FALSE = inj₂ tt BOOL•F : U• BOOL•F = •[ BOOL , FALSE ] BOOL•T : U• BOOL•T = •[ BOOL , TRUE ] -- isomorphisms between pointed types data _⟷_ : U• → U• → Set where unite₊ : {t : U•} → •[ PLUS ZERO ∣ t ∣ , inj₂ (• t) ] ⟷ t uniti₊ : {t : U•} → t ⟷ •[ PLUS ZERO ∣ t ∣ , inj₂ (• t) ] swap1₊ : {t₁ t₂ : U•} → •[ PLUS ∣ t₁ ∣ ∣ t₂ ∣ , inj₁ (• t₁) ] ⟷ •[ PLUS ∣ t₂ ∣ ∣ t₁ ∣ , inj₂ (• t₁) ] swap2₊ : {t₁ t₂ : U•} → •[ PLUS ∣ t₁ ∣ ∣ t₂ ∣ , inj₂ (• t₂) ] ⟷ •[ PLUS ∣ t₂ ∣ ∣ t₁ ∣ , inj₁ (• t₂) ] assocl1₊ : {t₁ t₂ t₃ : U•} → •[ PLUS ∣ t₁ ∣ (PLUS ∣ t₂ ∣ ∣ t₃ ∣) , inj₁ (• t₁) ] ⟷ •[ PLUS (PLUS ∣ t₁ ∣ ∣ t₂ ∣) ∣ t₃ ∣ , inj₁ (inj₁ (• t₁)) ] assocl2₊ : {t₁ t₂ t₃ : U•} → •[ PLUS ∣ t₁ ∣ (PLUS ∣ t₂ ∣ ∣ t₃ ∣) , inj₂ (inj₁ (• t₂)) ] ⟷ •[ PLUS (PLUS ∣ t₁ ∣ ∣ t₂ ∣) ∣ t₃ ∣ , inj₁ (inj₂ (• t₂)) ] assocl3₊ : {t₁ t₂ t₃ : U•} → •[ PLUS ∣ t₁ ∣ (PLUS ∣ t₂ ∣ ∣ t₃ ∣) , inj₂ (inj₂ (• t₃)) ] ⟷ •[ PLUS (PLUS ∣ t₁ ∣ ∣ t₂ ∣) ∣ t₃ ∣ , inj₂ (• t₃) ] assocr1₊ : {t₁ t₂ t₃ : U•} → •[ PLUS (PLUS ∣ t₁ ∣ ∣ t₂ ∣) ∣ t₃ ∣ , inj₁ (inj₁ (• t₁)) ] ⟷ •[ PLUS ∣ t₁ ∣ (PLUS ∣ t₂ ∣ ∣ t₃ ∣) , inj₁ (• t₁) ] assocr2₊ : {t₁ t₂ t₃ : U•} → •[ PLUS (PLUS ∣ t₁ ∣ ∣ t₂ ∣) ∣ t₃ ∣ , inj₁ (inj₂ (• t₂)) ] ⟷ •[ PLUS ∣ t₁ ∣ (PLUS ∣ t₂ ∣ ∣ t₃ ∣) , inj₂ (inj₁ (• t₂)) ] assocr3₊ : {t₁ t₂ t₃ : U•} → •[ PLUS (PLUS ∣ t₁ ∣ ∣ t₂ ∣) ∣ t₃ ∣ , inj₂ (• t₃) ] ⟷ •[ PLUS ∣ t₁ ∣ (PLUS ∣ t₂ ∣ ∣ t₃ ∣) , inj₂ (inj₂ (• t₃)) ] unite⋆ : {t : U•} → •[ TIMES ONE ∣ t ∣ , (tt , • t) ] ⟷ t uniti⋆ : {t : U•} → t ⟷ •[ TIMES ONE ∣ t ∣ , (tt , • t) ] swap⋆ : {t₁ t₂ : U•} → •[ TIMES ∣ t₁ ∣ ∣ t₂ ∣ , (• t₁ , • t₂) ] ⟷ •[ TIMES ∣ t₂ ∣ ∣ t₁ ∣ , (• t₂ , • t₁) ] assocl⋆ : {t₁ t₂ t₃ : U•} → •[ TIMES ∣ t₁ ∣ (TIMES ∣ t₂ ∣ ∣ t₃ ∣) , (• t₁ , (• t₂ , • t₃)) ] ⟷ •[ TIMES (TIMES ∣ t₁ ∣ ∣ t₂ ∣) ∣ t₃ ∣ , ((• t₁ , • t₂) , • t₃) ] assocr⋆ : {t₁ t₂ t₃ : U•} → •[ TIMES (TIMES ∣ t₁ ∣ ∣ t₂ ∣) ∣ t₃ ∣ , ((• t₁ , • t₂) , • t₃) ] ⟷ •[ TIMES ∣ t₁ ∣ (TIMES ∣ t₂ ∣ ∣ t₃ ∣) , (• t₁ , (• t₂ , • t₃)) ] distz : {t : U•} {absurd : ⟦ ZERO ⟧} → •[ TIMES ZERO ∣ t ∣ , (absurd , • t) ] ⟷ •[ ZERO , absurd ] factorz : {t : U•} {absurd : ⟦ ZERO ⟧} → •[ ZERO , absurd ] ⟷ •[ TIMES ZERO ∣ t ∣ , (absurd , • t) ] dist1 : {t₁ t₂ t₃ : U•} → •[ TIMES (PLUS ∣ t₁ ∣ ∣ t₂ ∣) ∣ t₃ ∣ , (inj₁ (• t₁) , • t₃) ] ⟷ •[ PLUS (TIMES ∣ t₁ ∣ ∣ t₃ ∣) (TIMES ∣ t₂ ∣ ∣ t₃ ∣) , inj₁ (• t₁ , • t₃) ] dist2 : {t₁ t₂ t₃ : U•} → •[ TIMES (PLUS ∣ t₁ ∣ ∣ t₂ ∣) ∣ t₃ ∣ , (inj₂ (• t₂) , • t₃) ] ⟷ •[ PLUS (TIMES ∣ t₁ ∣ ∣ t₃ ∣) (TIMES ∣ t₂ ∣ ∣ t₃ ∣) , inj₂ (• t₂ , • t₃) ] factor1 : {t₁ t₂ t₃ : U•} → •[ PLUS (TIMES ∣ t₁ ∣ ∣ t₃ ∣) (TIMES ∣ t₂ ∣ ∣ t₃ ∣) , inj₁ (• t₁ , • t₃) ] ⟷ •[ TIMES (PLUS ∣ t₁ ∣ ∣ t₂ ∣) ∣ t₃ ∣ , (inj₁ (• t₁) , • t₃) ] factor2 : {t₁ t₂ t₃ : U•} → •[ PLUS (TIMES ∣ t₁ ∣ ∣ t₃ ∣) (TIMES ∣ t₂ ∣ ∣ t₃ ∣) , inj₂ (• t₂ , • t₃) ] ⟷ •[ TIMES (PLUS ∣ t₁ ∣ ∣ t₂ ∣) ∣ t₃ ∣ , (inj₂ (• t₂) , • t₃) ] id⟷ : {t : U•} → t ⟷ t sym⟷ : {t₁ t₂ : U•} → (t₁ ⟷ t₂) → (t₂ ⟷ t₁) _◎_ : {t₁ t₂ t₃ : U•} → (t₁ ⟷ t₂) → (t₂ ⟷ t₃) → (t₁ ⟷ t₃) _⊕1_ : {t₁ t₂ t₃ t₄ : U•} → (t₁ ⟷ t₃) → (t₂ ⟷ t₄) → (•[ PLUS ∣ t₁ ∣ ∣ t₂ ∣ , inj₁ (• t₁) ] ⟷ •[ PLUS ∣ t₃ ∣ ∣ t₄ ∣ , inj₁ (• t₃) ]) _⊕2_ : {t₁ t₂ t₃ t₄ : U•} → (t₁ ⟷ t₃) → (t₂ ⟷ t₄) → (•[ PLUS ∣ t₁ ∣ ∣ t₂ ∣ , inj₂ (• t₂) ] ⟷ •[ PLUS ∣ t₃ ∣ ∣ t₄ ∣ , inj₂ (• t₄) ]) _⊗_ : {t₁ t₂ t₃ t₄ : U•} → (t₁ ⟷ t₃) → (t₂ ⟷ t₄) → (•[ TIMES ∣ t₁ ∣ ∣ t₂ ∣ , (• t₁ , • t₂ ) ] ⟷ •[ TIMES ∣ t₃ ∣ ∣ t₄ ∣ , (• t₃ , • t₄ ) ]) -- examples NOT•T : •[ BOOL , TRUE ] ⟷ •[ BOOL , FALSE ] NOT•T = swap1₊ NOT•F : •[ BOOL , FALSE ] ⟷ •[ BOOL , TRUE ] NOT•F = swap2₊ CNOT•Fx : {b : ⟦ BOOL ⟧} → •[ BOOL² , (FALSE , b) ] ⟷ •[ BOOL² , (FALSE , b) ] CNOT•Fx = dist2 ◎ ((id⟷ ⊗ NOT•F) ⊕2 id⟷) ◎ factor2 CNOT•TF : •[ BOOL² , (TRUE , FALSE) ] ⟷ •[ BOOL² , (TRUE , TRUE) ] CNOT•TF = dist1 ◎ ((id⟷ ⊗ NOT•F) ⊕1 (id⟷ {•[ TIMES ONE BOOL , (tt , FALSE) ]})) ◎ factor1 CNOT•TT : •[ BOOL² , (TRUE , TRUE) ] ⟷ •[ BOOL² , (TRUE , FALSE) ] CNOT•TT = dist1 ◎ ((id⟷ ⊗ NOT•T) ⊕1 (id⟷ {•[ TIMES ONE BOOL , (tt , TRUE) ]})) ◎ factor1 ------------------------------------------------------------------------------ -- Level 1 -- types are 1groupoids; they consist of points with collections of -- non-trivial paths between them; the paths are defined at the previous -- level (level 0). -- -- We define isomorphisms between these level 1 paths that are reified as -- 2paths in the next level (level 2). These isomorphisms include groupoid -- combinators and commutative semiring combinators module Pi1 where infixr 10 _◎_ infixr 30 _⟷_ -- types data U : Set where ZERO : U ONE : U PLUS : U → U → U TIMES : U → U → U PATH : {t₁ t₂ : Pi0.U•} → (t₁ Pi0.⟷ t₂) → U -- values data Path {t₁ t₂ : Pi0.U•} : (Pi0.Space t₁) → (Pi0.Space t₂) → Set where path : (c : t₁ Pi0.⟷ t₂) → Path (Pi0.point t₁) (Pi0.point t₂) ⟦_⟧ : U → Set ⟦ ZERO ⟧ = ⊥ ⟦ ONE ⟧ = ⊤ ⟦ PLUS t₁ t₂ ⟧ = ⟦ t₁ ⟧ ⊎ ⟦ t₂ ⟧ ⟦ TIMES t₁ t₂ ⟧ = ⟦ t₁ ⟧ × ⟦ t₂ ⟧ ⟦ PATH {t₁} {t₂} c ⟧ = Path {t₁} {t₂} (Pi0.point t₁) (Pi0.point t₂) -- pointed types record U• : Set where constructor •[_,_] field ∣_∣ : U • : ⟦ ∣_∣ ⟧ open U• Space : (t• : U•) → Set Space •[ t , p ] = ⟦ t ⟧ point : (t• : U•) → Space t• point •[ t , p ] = p _∘_ : {t₁ t₂ t₃ : Pi0.U•} → Path (Pi0.point t₁) (Pi0.point t₂) → Path (Pi0.point t₂) (Pi0.point t₃) → Path (Pi0.point t₁) (Pi0.point t₃) path c₁ ∘ path c₂ = path (c₁ Pi0.◎ c₂) PathSpace : {t₁ t₂ : Pi0.U•} → (c : t₁ Pi0.⟷ t₂) → U• PathSpace c = •[ PATH c , path c ] -- examples -- several paths between T and F; some of these will be equivalent p₁ p₂ p₃ p₄ : Path Pi0.TRUE Pi0.FALSE p₁ = path Pi0.swap1₊ p₂ = path (Pi0.swap1₊ Pi0.◎ Pi0.id⟷) p₃ = path (Pi0.swap1₊ Pi0.◎ Pi0.swap2₊ Pi0.◎ Pi0.swap1₊) p₄ = path (Pi0.uniti⋆ Pi0.◎ Pi0.swap⋆ Pi0.◎ (Pi0.swap1₊ Pi0.⊗ Pi0.id⟷) Pi0.◎ Pi0.swap⋆ Pi0.◎ Pi0.unite⋆) -- groupoid combinators to reason about id, sym, and trans -- commutative semiring combinators for 0, 1, +, * data _⟷_ : U• → U• → Set where -- common combinators id⟷ : {t : U•} → t ⟷ t sym⟷ : {t₁ t₂ : U•} → (t₁ ⟷ t₂) → (t₂ ⟷ t₁) _◎_ : {t₁ t₂ t₃ : U•} → (t₁ ⟷ t₂) → (t₂ ⟷ t₃) → (t₁ ⟷ t₃) -- groupoid combinators lidl : {t₁ t₂ : Pi0.U•} {c : t₁ Pi0.⟷ t₂} → PathSpace (Pi0.id⟷ Pi0.◎ c) ⟷ PathSpace c lidr : {t₁ t₂ : Pi0.U•} {c : t₁ Pi0.⟷ t₂} → PathSpace c ⟷ PathSpace (Pi0.id⟷ Pi0.◎ c) ridl : {t₁ t₂ : Pi0.U•} {c : t₁ Pi0.⟷ t₂} → PathSpace (c Pi0.◎ Pi0.id⟷) ⟷ PathSpace c ridr : {t₁ t₂ : Pi0.U•} {c : t₁ Pi0.⟷ t₂} → PathSpace c ⟷ PathSpace (c Pi0.◎ Pi0.id⟷) invll : {t₁ t₂ : Pi0.U•} {c : t₁ Pi0.⟷ t₂} → PathSpace (Pi0.sym⟷ c Pi0.◎ c) ⟷ PathSpace {t₂} {t₂} Pi0.id⟷ invlr : {t₁ t₂ : Pi0.U•} {c : t₁ Pi0.⟷ t₂} → PathSpace {t₂} {t₂} Pi0.id⟷ ⟷ PathSpace (Pi0.sym⟷ c Pi0.◎ c) invrl : {t₁ t₂ : Pi0.U•} {c : t₁ Pi0.⟷ t₂} → PathSpace (c Pi0.◎ Pi0.sym⟷ c) ⟷ PathSpace {t₁} {t₁} Pi0.id⟷ invrr : {t₁ t₂ : Pi0.U•} {c : t₁ Pi0.⟷ t₂} → PathSpace {t₁} {t₁} Pi0.id⟷ ⟷ PathSpace (c Pi0.◎ Pi0.sym⟷ c) invinvl : {t₁ t₂ : Pi0.U•} {c : t₁ Pi0.⟷ t₂} → PathSpace (Pi0.sym⟷ (Pi0.sym⟷ c)) ⟷ PathSpace c invinvr : {t₁ t₂ : Pi0.U•} {c : t₁ Pi0.⟷ t₂} → PathSpace c ⟷ PathSpace (Pi0.sym⟷ (Pi0.sym⟷ c)) tassocl : {t₁ t₂ t₃ t₄ : Pi0.U•} {c₁ : t₁ Pi0.⟷ t₂} {c₂ : t₂ Pi0.⟷ t₃} {c₃ : t₃ Pi0.⟷ t₄} → PathSpace (c₁ Pi0.◎ (c₂ Pi0.◎ c₃)) ⟷ PathSpace ((c₁ Pi0.◎ c₂) Pi0.◎ c₃) tassocr : {t₁ t₂ t₃ t₄ : Pi0.U•} {c₁ : t₁ Pi0.⟷ t₂} {c₂ : t₂ Pi0.⟷ t₃} {c₃ : t₃ Pi0.⟷ t₄} → PathSpace ((c₁ Pi0.◎ c₂) Pi0.◎ c₃) ⟷ PathSpace (c₁ Pi0.◎ (c₂ Pi0.◎ c₃)) -- resp◎ is closely related to Eckmann-Hilton resp◎ : {t₁ t₂ t₃ : Pi0.U•} {c₁ : t₁ Pi0.⟷ t₂} {c₂ : t₂ Pi0.⟷ t₃} {c₃ : t₁ Pi0.⟷ t₂} {c₄ : t₂ Pi0.⟷ t₃} → (PathSpace c₁ ⟷ PathSpace c₃) → (PathSpace c₂ ⟷ PathSpace c₄) → PathSpace (c₁ Pi0.◎ c₂) ⟷ PathSpace (c₃ Pi0.◎ c₄) -- commutative semiring combinators unite₊ : {t : U•} → •[ PLUS ZERO ∣ t ∣ , inj₂ (• t) ] ⟷ t uniti₊ : {t : U•} → t ⟷ •[ PLUS ZERO ∣ t ∣ , inj₂ (• t) ] swap1₊ : {t₁ t₂ : U•} → •[ PLUS ∣ t₁ ∣ ∣ t₂ ∣ , inj₁ (• t₁) ] ⟷ •[ PLUS ∣ t₂ ∣ ∣ t₁ ∣ , inj₂ (• t₁) ] swap2₊ : {t₁ t₂ : U•} → •[ PLUS ∣ t₁ ∣ ∣ t₂ ∣ , inj₂ (• t₂) ] ⟷ •[ PLUS ∣ t₂ ∣ ∣ t₁ ∣ , inj₁ (• t₂) ] assocl1₊ : {t₁ t₂ t₃ : U•} → •[ PLUS ∣ t₁ ∣ (PLUS ∣ t₂ ∣ ∣ t₃ ∣) , inj₁ (• t₁) ] ⟷ •[ PLUS (PLUS ∣ t₁ ∣ ∣ t₂ ∣) ∣ t₃ ∣ , inj₁ (inj₁ (• t₁)) ] assocl2₊ : {t₁ t₂ t₃ : U•} → •[ PLUS ∣ t₁ ∣ (PLUS ∣ t₂ ∣ ∣ t₃ ∣) , inj₂ (inj₁ (• t₂)) ] ⟷ •[ PLUS (PLUS ∣ t₁ ∣ ∣ t₂ ∣) ∣ t₃ ∣ , inj₁ (inj₂ (• t₂)) ] assocl3₊ : {t₁ t₂ t₃ : U•} → •[ PLUS ∣ t₁ ∣ (PLUS ∣ t₂ ∣ ∣ t₃ ∣) , inj₂ (inj₂ (• t₃)) ] ⟷ •[ PLUS (PLUS ∣ t₁ ∣ ∣ t₂ ∣) ∣ t₃ ∣ , inj₂ (• t₃) ] assocr1₊ : {t₁ t₂ t₃ : U•} → •[ PLUS (PLUS ∣ t₁ ∣ ∣ t₂ ∣) ∣ t₃ ∣ , inj₁ (inj₁ (• t₁)) ] ⟷ •[ PLUS ∣ t₁ ∣ (PLUS ∣ t₂ ∣ ∣ t₃ ∣) , inj₁ (• t₁) ] assocr2₊ : {t₁ t₂ t₃ : U•} → •[ PLUS (PLUS ∣ t₁ ∣ ∣ t₂ ∣) ∣ t₃ ∣ , inj₁ (inj₂ (• t₂)) ] ⟷ •[ PLUS ∣ t₁ ∣ (PLUS ∣ t₂ ∣ ∣ t₃ ∣) , inj₂ (inj₁ (• t₂)) ] assocr3₊ : {t₁ t₂ t₃ : U•} → •[ PLUS (PLUS ∣ t₁ ∣ ∣ t₂ ∣) ∣ t₃ ∣ , inj₂ (• t₃) ] ⟷ •[ PLUS ∣ t₁ ∣ (PLUS ∣ t₂ ∣ ∣ t₃ ∣) , inj₂ (inj₂ (• t₃)) ] unite⋆ : {t : U•} → •[ TIMES ONE ∣ t ∣ , (tt , • t) ] ⟷ t uniti⋆ : {t : U•} → t ⟷ •[ TIMES ONE ∣ t ∣ , (tt , • t) ] swap⋆ : {t₁ t₂ : U•} → •[ TIMES ∣ t₁ ∣ ∣ t₂ ∣ , (• t₁ , • t₂) ] ⟷ •[ TIMES ∣ t₂ ∣ ∣ t₁ ∣ , (• t₂ , • t₁) ] assocl⋆ : {t₁ t₂ t₃ : U•} → •[ TIMES ∣ t₁ ∣ (TIMES ∣ t₂ ∣ ∣ t₃ ∣) , (• t₁ , (• t₂ , • t₃)) ] ⟷ •[ TIMES (TIMES ∣ t₁ ∣ ∣ t₂ ∣) ∣ t₃ ∣ , ((• t₁ , • t₂) , • t₃) ] assocr⋆ : {t₁ t₂ t₃ : U•} → •[ TIMES (TIMES ∣ t₁ ∣ ∣ t₂ ∣) ∣ t₃ ∣ , ((• t₁ , • t₂) , • t₃) ] ⟷ •[ TIMES ∣ t₁ ∣ (TIMES ∣ t₂ ∣ ∣ t₃ ∣) , (• t₁ , (• t₂ , • t₃)) ] distz : {t : U•} {absurd : ⟦ ZERO ⟧} → •[ TIMES ZERO ∣ t ∣ , (absurd , • t) ] ⟷ •[ ZERO , absurd ] factorz : {t : U•} {absurd : ⟦ ZERO ⟧} → •[ ZERO , absurd ] ⟷ •[ TIMES ZERO ∣ t ∣ , (absurd , • t) ] dist1 : {t₁ t₂ t₃ : U•} → •[ TIMES (PLUS ∣ t₁ ∣ ∣ t₂ ∣) ∣ t₃ ∣ , (inj₁ (• t₁) , • t₃) ] ⟷ •[ PLUS (TIMES ∣ t₁ ∣ ∣ t₃ ∣) (TIMES ∣ t₂ ∣ ∣ t₃ ∣) , inj₁ (• t₁ , • t₃) ] dist2 : {t₁ t₂ t₃ : U•} → •[ TIMES (PLUS ∣ t₁ ∣ ∣ t₂ ∣) ∣ t₃ ∣ , (inj₂ (• t₂) , • t₃) ] ⟷ •[ PLUS (TIMES ∣ t₁ ∣ ∣ t₃ ∣) (TIMES ∣ t₂ ∣ ∣ t₃ ∣) , inj₂ (• t₂ , • t₃) ] factor1 : {t₁ t₂ t₃ : U•} → •[ PLUS (TIMES ∣ t₁ ∣ ∣ t₃ ∣) (TIMES ∣ t₂ ∣ ∣ t₃ ∣) , inj₁ (• t₁ , • t₃) ] ⟷ •[ TIMES (PLUS ∣ t₁ ∣ ∣ t₂ ∣) ∣ t₃ ∣ , (inj₁ (• t₁) , • t₃) ] factor2 : {t₁ t₂ t₃ : U•} → •[ PLUS (TIMES ∣ t₁ ∣ ∣ t₃ ∣) (TIMES ∣ t₂ ∣ ∣ t₃ ∣) , inj₂ (• t₂ , • t₃) ] ⟷ •[ TIMES (PLUS ∣ t₁ ∣ ∣ t₂ ∣) ∣ t₃ ∣ , (inj₂ (• t₂) , • t₃) ] _⊕1_ : {t₁ t₂ t₃ t₄ : U•} → (t₁ ⟷ t₃) → (t₂ ⟷ t₄) → (•[ PLUS ∣ t₁ ∣ ∣ t₂ ∣ , inj₁ (• t₁) ] ⟷ •[ PLUS ∣ t₃ ∣ ∣ t₄ ∣ , inj₁ (• t₃) ]) _⊕2_ : {t₁ t₂ t₃ t₄ : U•} → (t₁ ⟷ t₃) → (t₂ ⟷ t₄) → (•[ PLUS ∣ t₁ ∣ ∣ t₂ ∣ , inj₂ (• t₂) ] ⟷ •[ PLUS ∣ t₃ ∣ ∣ t₄ ∣ , inj₂ (• t₄) ]) _⊗_ : {t₁ t₂ t₃ t₄ : U•} → (t₁ ⟷ t₃) → (t₂ ⟷ t₄) → (•[ TIMES ∣ t₁ ∣ ∣ t₂ ∣ , (• t₁ , • t₂ ) ] ⟷ •[ TIMES ∣ t₃ ∣ ∣ t₄ ∣ , (• t₃ , • t₄ ) ]) -- proof that we have a 1Groupoid structure G : 1Groupoid G = record { set = Pi0.U• ; _↝_ = Pi0._⟷_ ; _≈_ = λ c₀ c₁ → PathSpace c₀ ⟷ PathSpace c₁ ; id = Pi0.id⟷ ; _∘_ = λ c₀ c₁ → c₁ Pi0.◎ c₀ ; _⁻¹ = Pi0.sym⟷ ; lneutr = λ _ → ridl ; rneutr = λ _ → lidl ; assoc = λ _ _ _ → tassocl ; equiv = record { refl = id⟷ ; sym = λ c → sym⟷ c ; trans = λ c₀ c₁ → c₀ ◎ c₁ } ; linv = λ _ → invrl ; rinv = λ _ → invll ; ∘-resp-≈ = λ f⟷h g⟷i → resp◎ g⟷i f⟷h } ------------------------------------------------------------------------------ -- Level 2 -- types are 2groupoids; they are points with non-trivial paths between them -- and non-trivial 2paths between the paths module Pi2 where infixr 10 _◎_ infixr 30 _⟷_ -- types data U : Set where ZERO : U ONE : U PLUS : U → U → U TIMES : U → U → U PATH : {t₁ t₂ : Pi0.U•} → (t₁ Pi0.⟷ t₂) → U 2PATH : {t₁ t₂ : Pi1.U•} → (t₁ Pi1.⟷ t₂) → U -- values data Path {t₁ t₂ : Pi0.U•} : (Pi0.Space t₁) → (Pi0.Space t₂) → Set where path : (c : t₁ Pi0.⟷ t₂) → Path (Pi0.point t₁) (Pi0.point t₂) data 2Path {t₁ t₂ : Pi1.U•} : Pi1.Space t₁ → Pi1.Space t₂ → Set where 2path : (c : t₁ Pi1.⟷ t₂) → 2Path (Pi1.point t₁) (Pi1.point t₂) ⟦_⟧ : U → Set ⟦ ZERO ⟧ = ⊥ ⟦ ONE ⟧ = ⊤ ⟦ PLUS t₁ t₂ ⟧ = ⟦ t₁ ⟧ ⊎ ⟦ t₂ ⟧ ⟦ TIMES t₁ t₂ ⟧ = ⟦ t₁ ⟧ × ⟦ t₂ ⟧ ⟦ PATH {t₁} {t₂} c ⟧ = Path {t₁} {t₂} (Pi0.point t₁) (Pi0.point t₂) ⟦ 2PATH {t₁} {t₂} c ⟧ = 2Path {t₁} {t₂} (Pi1.point t₁) (Pi1.point t₂) -- pointed types record U• : Set where constructor •[_,_] field ∣_∣ : U • : ⟦ ∣_∣ ⟧ open U• Space : (t• : U•) → Set Space •[ t , p ] = ⟦ t ⟧ point : (t• : U•) → Space t• point •[ t , p ] = p _∘1_ : {t₁ t₂ t₃ : Pi0.U•} → Path (Pi0.point t₁) (Pi0.point t₂) → Path (Pi0.point t₂) (Pi0.point t₃) → Path (Pi0.point t₁) (Pi0.point t₃) path c₁ ∘1 path c₂ = path (c₁ Pi0.◎ c₂) _∘2_ : {t₁ t₂ t₃ : Pi1.U•} → 2Path (Pi1.point t₁) (Pi1.point t₂) → 2Path (Pi1.point t₂) (Pi1.point t₃) → 2Path (Pi1.point t₁) (Pi1.point t₃) 2path c₁ ∘2 2path c₂ = 2path (c₁ Pi1.◎ c₂) PathSpace : {t₁ t₂ : Pi0.U•} → (c : t₁ Pi0.⟷ t₂) → U• PathSpace c = •[ PATH c , path c ] 2PathSpace : {t₁ t₂ : Pi1.U•} → (c : t₁ Pi1.⟷ t₂) → U• 2PathSpace c = •[ 2PATH c , 2path c ] -- examples -- groupoid combinators to reason about id, sym, and trans -- commutative semiring combinators for 0, 1, +, * data _⟷_ : U• → U• → Set where -- common combinators id⟷ : {t : U•} → t ⟷ t sym⟷ : {t₁ t₂ : U•} → (t₁ ⟷ t₂) → (t₂ ⟷ t₁) _◎_ : {t₁ t₂ t₃ : U•} → (t₁ ⟷ t₂) → (t₂ ⟷ t₃) → (t₁ ⟷ t₃) -- 1groupoid combinators 1lidl : {t₁ t₂ : Pi0.U•} {c : t₁ Pi0.⟷ t₂} → PathSpace (Pi0.id⟷ Pi0.◎ c) ⟷ PathSpace c 1lidr : {t₁ t₂ : Pi0.U•} {c : t₁ Pi0.⟷ t₂} → PathSpace c ⟷ PathSpace (Pi0.id⟷ Pi0.◎ c) 1ridl : {t₁ t₂ : Pi0.U•} {c : t₁ Pi0.⟷ t₂} → PathSpace (c Pi0.◎ Pi0.id⟷) ⟷ PathSpace c 1ridr : {t₁ t₂ : Pi0.U•} {c : t₁ Pi0.⟷ t₂} → PathSpace c ⟷ PathSpace (c Pi0.◎ Pi0.id⟷) 1invll : {t₁ t₂ : Pi0.U•} {c : t₁ Pi0.⟷ t₂} → PathSpace (Pi0.sym⟷ c Pi0.◎ c) ⟷ PathSpace {t₂} {t₂} Pi0.id⟷ 1invlr : {t₁ t₂ : Pi0.U•} {c : t₁ Pi0.⟷ t₂} → PathSpace {t₂} {t₂} Pi0.id⟷ ⟷ PathSpace (Pi0.sym⟷ c Pi0.◎ c) 1invrl : {t₁ t₂ : Pi0.U•} {c : t₁ Pi0.⟷ t₂} → PathSpace (c Pi0.◎ Pi0.sym⟷ c) ⟷ PathSpace {t₁} {t₁} Pi0.id⟷ 1invrr : {t₁ t₂ : Pi0.U•} {c : t₁ Pi0.⟷ t₂} → PathSpace {t₁} {t₁} Pi0.id⟷ ⟷ PathSpace (c Pi0.◎ Pi0.sym⟷ c) 1invinvl : {t₁ t₂ : Pi0.U•} {c : t₁ Pi0.⟷ t₂} → PathSpace (Pi0.sym⟷ (Pi0.sym⟷ c)) ⟷ PathSpace c 1invinvr : {t₁ t₂ : Pi0.U•} {c : t₁ Pi0.⟷ t₂} → PathSpace c ⟷ PathSpace (Pi0.sym⟷ (Pi0.sym⟷ c)) 1tassocl : {t₁ t₂ t₃ t₄ : Pi0.U•} {c₁ : t₁ Pi0.⟷ t₂} {c₂ : t₂ Pi0.⟷ t₃} {c₃ : t₃ Pi0.⟷ t₄} → PathSpace (c₁ Pi0.◎ (c₂ Pi0.◎ c₃)) ⟷ PathSpace ((c₁ Pi0.◎ c₂) Pi0.◎ c₃) 1tassocr : {t₁ t₂ t₃ t₄ : Pi0.U•} {c₁ : t₁ Pi0.⟷ t₂} {c₂ : t₂ Pi0.⟷ t₃} {c₃ : t₃ Pi0.⟷ t₄} → PathSpace ((c₁ Pi0.◎ c₂) Pi0.◎ c₃) ⟷ PathSpace (c₁ Pi0.◎ (c₂ Pi0.◎ c₃)) -- resp◎ is closely related to Eckmann-Hilton 1resp◎ : {t₁ t₂ t₃ : Pi0.U•} {c₁ : t₁ Pi0.⟷ t₂} {c₂ : t₂ Pi0.⟷ t₃} {c₃ : t₁ Pi0.⟷ t₂} {c₄ : t₂ Pi0.⟷ t₃} → (PathSpace c₁ ⟷ PathSpace c₃) → (PathSpace c₂ ⟷ PathSpace c₄) → PathSpace (c₁ Pi0.◎ c₂) ⟷ PathSpace (c₃ Pi0.◎ c₄) -- 2groupoid combinators lidl : {t₁ t₂ : Pi1.U•} {c : t₁ Pi1.⟷ t₂} → 2PathSpace (Pi1.id⟷ Pi1.◎ c) ⟷ 2PathSpace c lidr : {t₁ t₂ : Pi1.U•} {c : t₁ Pi1.⟷ t₂} → 2PathSpace c ⟷ 2PathSpace (Pi1.id⟷ Pi1.◎ c) ridl : {t₁ t₂ : Pi1.U•} {c : t₁ Pi1.⟷ t₂} → 2PathSpace (c Pi1.◎ Pi1.id⟷) ⟷ 2PathSpace c ridr : {t₁ t₂ : Pi1.U•} {c : t₁ Pi1.⟷ t₂} → 2PathSpace c ⟷ 2PathSpace (c Pi1.◎ Pi1.id⟷) invll : {t₁ t₂ : Pi1.U•} {c : t₁ Pi1.⟷ t₂} → 2PathSpace (Pi1.sym⟷ c Pi1.◎ c) ⟷ 2PathSpace {t₂} {t₂} Pi1.id⟷ invlr : {t₁ t₂ : Pi1.U•} {c : t₁ Pi1.⟷ t₂} → 2PathSpace {t₂} {t₂} Pi1.id⟷ ⟷ 2PathSpace (Pi1.sym⟷ c Pi1.◎ c) invrl : {t₁ t₂ : Pi1.U•} {c : t₁ Pi1.⟷ t₂} → 2PathSpace (c Pi1.◎ Pi1.sym⟷ c) ⟷ 2PathSpace {t₁} {t₁} Pi1.id⟷ invrr : {t₁ t₂ : Pi1.U•} {c : t₁ Pi1.⟷ t₂} → 2PathSpace {t₁} {t₁} Pi1.id⟷ ⟷ 2PathSpace (c Pi1.◎ Pi1.sym⟷ c) invinvl : {t₁ t₂ : Pi1.U•} {c : t₁ Pi1.⟷ t₂} → 2PathSpace (Pi1.sym⟷ (Pi1.sym⟷ c)) ⟷ 2PathSpace c invinvr : {t₁ t₂ : Pi1.U•} {c : t₁ Pi1.⟷ t₂} → 2PathSpace c ⟷ 2PathSpace (Pi1.sym⟷ (Pi1.sym⟷ c)) tassocl : {t₁ t₂ t₃ t₄ : Pi1.U•} {c₁ : t₁ Pi1.⟷ t₂} {c₂ : t₂ Pi1.⟷ t₃} {c₃ : t₃ Pi1.⟷ t₄} → 2PathSpace (c₁ Pi1.◎ (c₂ Pi1.◎ c₃)) ⟷ 2PathSpace ((c₁ Pi1.◎ c₂) Pi1.◎ c₃) tassocr : {t₁ t₂ t₃ t₄ : Pi1.U•} {c₁ : t₁ Pi1.⟷ t₂} {c₂ : t₂ Pi1.⟷ t₃} {c₃ : t₃ Pi1.⟷ t₄} → 2PathSpace ((c₁ Pi1.◎ c₂) Pi1.◎ c₃) ⟷ 2PathSpace (c₁ Pi1.◎ (c₂ Pi1.◎ c₃)) -- resp◎ is closely related to Eckmann-Hilton resp◎ : {t₁ t₂ t₃ : Pi1.U•} {c₁ : t₁ Pi1.⟷ t₂} {c₂ : t₂ Pi1.⟷ t₃} {c₃ : t₁ Pi1.⟷ t₂} {c₄ : t₂ Pi1.⟷ t₃} → (2PathSpace c₁ ⟷ 2PathSpace c₃) → (2PathSpace c₂ ⟷ 2PathSpace c₄) → 2PathSpace (c₁ Pi1.◎ c₂) ⟷ 2PathSpace (c₃ Pi1.◎ c₄) -- commutative semiring combinators unite₊ : {t : U•} → •[ PLUS ZERO ∣ t ∣ , inj₂ (• t) ] ⟷ t uniti₊ : {t : U•} → t ⟷ •[ PLUS ZERO ∣ t ∣ , inj₂ (• t) ] swap1₊ : {t₁ t₂ : U•} → •[ PLUS ∣ t₁ ∣ ∣ t₂ ∣ , inj₁ (• t₁) ] ⟷ •[ PLUS ∣ t₂ ∣ ∣ t₁ ∣ , inj₂ (• t₁) ] swap2₊ : {t₁ t₂ : U•} → •[ PLUS ∣ t₁ ∣ ∣ t₂ ∣ , inj₂ (• t₂) ] ⟷ •[ PLUS ∣ t₂ ∣ ∣ t₁ ∣ , inj₁ (• t₂) ] assocl1₊ : {t₁ t₂ t₃ : U•} → •[ PLUS ∣ t₁ ∣ (PLUS ∣ t₂ ∣ ∣ t₃ ∣) , inj₁ (• t₁) ] ⟷ •[ PLUS (PLUS ∣ t₁ ∣ ∣ t₂ ∣) ∣ t₃ ∣ , inj₁ (inj₁ (• t₁)) ] assocl2₊ : {t₁ t₂ t₃ : U•} → •[ PLUS ∣ t₁ ∣ (PLUS ∣ t₂ ∣ ∣ t₃ ∣) , inj₂ (inj₁ (• t₂)) ] ⟷ •[ PLUS (PLUS ∣ t₁ ∣ ∣ t₂ ∣) ∣ t₃ ∣ , inj₁ (inj₂ (• t₂)) ] assocl3₊ : {t₁ t₂ t₃ : U•} → •[ PLUS ∣ t₁ ∣ (PLUS ∣ t₂ ∣ ∣ t₃ ∣) , inj₂ (inj₂ (• t₃)) ] ⟷ •[ PLUS (PLUS ∣ t₁ ∣ ∣ t₂ ∣) ∣ t₃ ∣ , inj₂ (• t₃) ] assocr1₊ : {t₁ t₂ t₃ : U•} → •[ PLUS (PLUS ∣ t₁ ∣ ∣ t₂ ∣) ∣ t₃ ∣ , inj₁ (inj₁ (• t₁)) ] ⟷ •[ PLUS ∣ t₁ ∣ (PLUS ∣ t₂ ∣ ∣ t₃ ∣) , inj₁ (• t₁) ] assocr2₊ : {t₁ t₂ t₃ : U•} → •[ PLUS (PLUS ∣ t₁ ∣ ∣ t₂ ∣) ∣ t₃ ∣ , inj₁ (inj₂ (• t₂)) ] ⟷ •[ PLUS ∣ t₁ ∣ (PLUS ∣ t₂ ∣ ∣ t₃ ∣) , inj₂ (inj₁ (• t₂)) ] assocr3₊ : {t₁ t₂ t₃ : U•} → •[ PLUS (PLUS ∣ t₁ ∣ ∣ t₂ ∣) ∣ t₃ ∣ , inj₂ (• t₃) ] ⟷ •[ PLUS ∣ t₁ ∣ (PLUS ∣ t₂ ∣ ∣ t₃ ∣) , inj₂ (inj₂ (• t₃)) ] unite⋆ : {t : U•} → •[ TIMES ONE ∣ t ∣ , (tt , • t) ] ⟷ t uniti⋆ : {t : U•} → t ⟷ •[ TIMES ONE ∣ t ∣ , (tt , • t) ] swap⋆ : {t₁ t₂ : U•} → •[ TIMES ∣ t₁ ∣ ∣ t₂ ∣ , (• t₁ , • t₂) ] ⟷ •[ TIMES ∣ t₂ ∣ ∣ t₁ ∣ , (• t₂ , • t₁) ] assocl⋆ : {t₁ t₂ t₃ : U•} → •[ TIMES ∣ t₁ ∣ (TIMES ∣ t₂ ∣ ∣ t₃ ∣) , (• t₁ , (• t₂ , • t₃)) ] ⟷ •[ TIMES (TIMES ∣ t₁ ∣ ∣ t₂ ∣) ∣ t₃ ∣ , ((• t₁ , • t₂) , • t₃) ] assocr⋆ : {t₁ t₂ t₃ : U•} → •[ TIMES (TIMES ∣ t₁ ∣ ∣ t₂ ∣) ∣ t₃ ∣ , ((• t₁ , • t₂) , • t₃) ] ⟷ •[ TIMES ∣ t₁ ∣ (TIMES ∣ t₂ ∣ ∣ t₃ ∣) , (• t₁ , (• t₂ , • t₃)) ] distz : {t : U•} {absurd : ⟦ ZERO ⟧} → •[ TIMES ZERO ∣ t ∣ , (absurd , • t) ] ⟷ •[ ZERO , absurd ] factorz : {t : U•} {absurd : ⟦ ZERO ⟧} → •[ ZERO , absurd ] ⟷ •[ TIMES ZERO ∣ t ∣ , (absurd , • t) ] dist1 : {t₁ t₂ t₃ : U•} → •[ TIMES (PLUS ∣ t₁ ∣ ∣ t₂ ∣) ∣ t₃ ∣ , (inj₁ (• t₁) , • t₃) ] ⟷ •[ PLUS (TIMES ∣ t₁ ∣ ∣ t₃ ∣) (TIMES ∣ t₂ ∣ ∣ t₃ ∣) , inj₁ (• t₁ , • t₃) ] dist2 : {t₁ t₂ t₃ : U•} → •[ TIMES (PLUS ∣ t₁ ∣ ∣ t₂ ∣) ∣ t₃ ∣ , (inj₂ (• t₂) , • t₃) ] ⟷ •[ PLUS (TIMES ∣ t₁ ∣ ∣ t₃ ∣) (TIMES ∣ t₂ ∣ ∣ t₃ ∣) , inj₂ (• t₂ , • t₃) ] factor1 : {t₁ t₂ t₃ : U•} → •[ PLUS (TIMES ∣ t₁ ∣ ∣ t₃ ∣) (TIMES ∣ t₂ ∣ ∣ t₃ ∣) , inj₁ (• t₁ , • t₃) ] ⟷ •[ TIMES (PLUS ∣ t₁ ∣ ∣ t₂ ∣) ∣ t₃ ∣ , (inj₁ (• t₁) , • t₃) ] factor2 : {t₁ t₂ t₃ : U•} → •[ PLUS (TIMES ∣ t₁ ∣ ∣ t₃ ∣) (TIMES ∣ t₂ ∣ ∣ t₃ ∣) , inj₂ (• t₂ , • t₃) ] ⟷ •[ TIMES (PLUS ∣ t₁ ∣ ∣ t₂ ∣) ∣ t₃ ∣ , (inj₂ (• t₂) , • t₃) ] _⊕1_ : {t₁ t₂ t₃ t₄ : U•} → (t₁ ⟷ t₃) → (t₂ ⟷ t₄) → (•[ PLUS ∣ t₁ ∣ ∣ t₂ ∣ , inj₁ (• t₁) ] ⟷ •[ PLUS ∣ t₃ ∣ ∣ t₄ ∣ , inj₁ (• t₃) ]) _⊕2_ : {t₁ t₂ t₃ t₄ : U•} → (t₁ ⟷ t₃) → (t₂ ⟷ t₄) → (•[ PLUS ∣ t₁ ∣ ∣ t₂ ∣ , inj₂ (• t₂) ] ⟷ •[ PLUS ∣ t₃ ∣ ∣ t₄ ∣ , inj₂ (• t₄) ]) _⊗_ : {t₁ t₂ t₃ t₄ : U•} → (t₁ ⟷ t₃) → (t₂ ⟷ t₄) → (•[ TIMES ∣ t₁ ∣ ∣ t₂ ∣ , (• t₁ , • t₂ ) ] ⟷ •[ TIMES ∣ t₃ ∣ ∣ t₄ ∣ , (• t₃ , • t₄ ) ]) -- proof that we have a 2Groupoid structure; this is 1Groupoid whose -- equivalences are themselves a 1Groupoid G : 1Groupoid G = record { set = Pi1.U• ; _↝_ = Pi1._⟷_ ; _≈_ = λ c₀ c₁ → 2PathSpace c₀ ⟷ 2PathSpace c₁ ; id = Pi1.id⟷ ; _∘_ = λ c₀ c₁ → c₁ Pi1.◎ c₀ ; _⁻¹ = Pi1.sym⟷ ; lneutr = λ _ → ridl ; rneutr = λ _ → lidl ; assoc = λ _ _ _ → tassocl ; equiv = record { refl = id⟷ ; sym = λ c → sym⟷ c ; trans = λ c₀ c₁ → c₀ ◎ c₁ } ; linv = λ _ → invrl ; rinv = λ _ → invll ; ∘-resp-≈ = λ f⟷h g⟷i → resp◎ g⟷i f⟷h } -- examples ------------------------------------------------------------------------------ --}
Library/Spreadsheet/Spreadsheet/spreadsheetScroll.asm
steakknife/pcgeos
504
246756
<filename>Library/Spreadsheet/Spreadsheet/spreadsheetScroll.asm COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) GeoWorks 1991 -- All Rights Reserved PROJECT: PC GEOS MODULE: GeoCalc FILE: spreadsheetScroll.asm AUTHOR: <NAME>, May 15, 1991 ROUTINES: Name Description ---- ----------- MSG_META_CONTENT_TRACK_SCROLLING Make scrolls on cell boundaries MSG_SPREADSHEET_SCALE Scale the spreadsheet view EXT RecalcViewDocSize Recalculate document size for view INT ReturnXScroll16 Finish word-sized x scroll INT ReturnXScroll32 Finish dword-sized x scroll INT ReturnYScroll16 Finish word-sized y scroll INT ReturnYScroll32 Finish dword-sized y scroll INT NScrollNoChange Do nothing scroll handler INT NScrollNoScroll Do not scroll handler INT NScrollLeftPage Normalized scroll left one page INT NScrollRightPage Normalized scroll right one page INT NScrollUpPage Normalized scroll up one page INT NScrollDownPage Normalized scroll down one page INT NScrollLeftColumn Normalized scroll left one column INT NScrollRightColumn Normalized scroll right one column INT NScrollUpRow Normalized scroll up one row INT NScrollDownRow Normalized scroll down one row INT NScrollGeneral Handle general normalized scroll REVISION HISTORY: Name Date Description ---- ---- ----------- Gene 5/15/91 Initial revision DESCRIPTION: $Id: spreadsheetScroll.asm,v 1.1 97/04/07 11:14:00 newdeal Exp $ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ DrawCode segment resource scrollRoutines nptr \ NScrollNoChange, ;SA_NOTHING (x) NScrollNoChange, ;SA_NOTHING (y) NScrollNoChange, ;SA_TO_BEGINNING (x) NScrollNoChange, ;SA_TO_BEGINNING (y) NScrollLeftPage, ;SA_PAGE_BACK (x) NScrollUpPage, ;SA_PAGE_BACK (y) NScrollLeftColumn, ;SA_INC_BACK (x) NScrollUpRow, ;SA_INC_BACK (y) NScrollRightColumn, ;SA_INC_FWD (x) NScrollDownRow, ;SA_INC_FWD (y) NScrollGeneral, ;SA_DRAGGING (x) NScrollGeneral, ;SA_DRAGGING (y) NScrollRightPage, ;SA_PAGE_FWD (x) NScrollDownPage, ;SA_PAGE_FWD (y) NScrollGeneral, ;SA_TO_END (x) NScrollGeneral, ;SA_TO_END (y) NScrollGeneral, ;SA_SCROLL (x) NScrollGeneral, ;SA_SCROLL (y) NScrollInto, ;SA_SCROLL_INTO (x) NScrollInto, ;SA_SCROLL_INTO (y) NScrollNoChange, ;SA_INITIAL_POS (x) NScrollNoChange, ;SA_INITIAL_POS (y) NScrollKeepVisCell, ;SA_SCALE (x) NScrollKeepVisCell, ;SA_SCALE (y) NScrollGeneral, ;SA_PAN (x) NScrollGeneral, ;SA_PAN (y) NScrollSelect, ;SA_DRAG_SCROLL (x) NScrollSelect, ;SA_DRAG_SCROLL (y) NScrollKeepVisCell, ;SA_SCROLL_FOR_SIZE_CHANGE (x) NScrollKeepVisCell ;SA_SCROLL_FOR_SIZE_CHANGE (y) CheckHack <ScrollAction eq (length scrollRoutines)/2> COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SpreadsheetNormalizePosition %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Handle normalized scrolling, to keep a cell in the upper left CALLED BY: MSG_META_CONTENT_TRACK_SCROLLING PASS: *ds:si - instance data ds:di - *ds:si es - seg addr of SpreadsheetClass ax - the method cx:dx - TrackScrollingParams RETURN: ss:bp.TSP_change - (x,y) change in position DESTROYED: bx, si, di, ds, es (method handler) PSEUDO CODE/STRATEGY: KNOWN BUGS/SIDE EFFECTS/IDEAS: REVISION HISTORY: Name Date Description ---- ---- ----------- eca 5/15/91 Initial version cbh 6/15/94 Changed to always move the selection on a page up/down. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ SpreadsheetNormalizePosition method dynamic SpreadsheetClass, MSG_META_CONTENT_TRACK_SCROLLING push si mov si, di ;ds:si <- ptr to instance data ; ; Common setup for a scroll ; call GenSetupTrackingArgs push cx ;must save cx ; ; Call the appropriate scrolling routine based on ; the ScrollAction and whether it is horizontal ; or vertical. ; clr bh mov bl, ss:[bp].TSP_action ;bx <- ScrollAction shl bx, 1 ;*2 for each (x,y) pair shl bx, 1 ;*2 for each (size nptr) = 2 test ss:[bp].TSP_flags, mask SF_VERTICAL jz horizontal add bx, (size nptr) horizontal: call cs:scrollRoutines[bx] ;call appropriate routine EC < call ECCheckTrackingArgs ;> ; ; Return adjusted scroll amount ; pop cx call GenReturnTrackingArgs ;sends NORMALIZE_COMPLETE pop si ; ; Try to keep the current selection onscreen. 8/10/93 cbh ; (Not if we have the target. 8/31/93 cbh) (And only on page up/down. ; -cbh 1/25/94). (And now only on a keyboard-induced scroll. 6/15/94) ; mov di, ds:[si] add di, ds:[di].Spreadsheet_offset test ds:[di].SSI_flags, mask SF_IS_APP_TARGET jz exit test ss:[bp].TSP_flags, mask SF_KBD_RELATED_SCROLL jz exit mov al, ss:[bp].TSP_action cmp al, SA_PAGE_FWD je adjustSelection cmp al, SA_PAGE_BACK jne exit adjustSelection: mov bl, ss:[bp].TSP_flags sub sp, size SpreadsheetRangeParams mov bp, sp mov ax, SPREADSHEET_ADDRESS_USE_SELECTION mov ss:[bp].SRP_selection.CR_start.CR_row,ax mov ss:[bp].SRP_selection.CR_start.CR_column,ax mov ss:[bp].SRP_selection.CR_end.CR_row, ax mov ss:[bp].SRP_selection.CR_end.CR_column, ax mov ax, ds:[di].SSI_active.CR_row mov dx, ds:[di].SSI_active.CR_column test bl, mask SF_VERTICAL mov bx, SPREADSHEET_ADDRESS_ON_SCREEN jz 10$ mov ax, bx ;vertical, keep row onscreen jmp short 20$ 10$: mov dx, bx ;horiz, keep col onscreen 20$: mov ss:[bp].SRP_active.CR_row, ax mov ss:[bp].SRP_active.CR_column, dx mov dx, size SpreadsheetRangeParams mov bx, ds:[LMBH_handle] mov ax, MSG_SPREADSHEET_SET_SELECTION mov di, mask MF_CALL or mask MF_STACK call ObjMessage add sp, size SpreadsheetRangeParams exit: ret SpreadsheetNormalizePosition endm if ERROR_CHECK COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% ECCheckTrackingArgs %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Verify the tracking args are valid before we return them CALLED BY: SpreadsheetNormalizePosition() PASS: ss:bp - TrackScrollingParams ds:si - ptr to Spreadsheet instance RETURN: none DESTROYED: none (flags preserved) PSEUDO CODE/STRATEGY: KNOWN BUGS/SIDE EFFECTS/IDEAS: REVISION HISTORY: Name Date Description ---- ---- ----------- gene 2/ 5/93 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ ECCheckTrackingArgs proc near uses ax, bx, cx, dx, bp class SpreadsheetClass .enter pushf mov bx, bp ;ss:bx <- TrackScrollingParams ; ; Check x offset ; clr cx ;cx <- column origin pushdw ds:[si].SSI_offset.PD_x mov bp, sp incdw ss:[bp] ;account for initial -1 offset call Pos32ToColRel ;ax <- column # cmp cx, 0 ;not at edge? je xOffsetOK cmp dx, 0 ;not at edge? je xOffsetOK WARNING SPREADSHEET_SCROLL_RETURNING_BAD_OFFSET xOffsetOK: movdw dxax, ss:[bx].TSP_oldOrigin.PD_x adddw dxax, ss:[bx].TSP_change.PD_x cmpdw dxax, ss:[bp].PD_x ;at an integral position? WARNING_NE SPREADSHEET_SCROLL_RETURNING_BAD_OFFSET add sp, (size SSI_offset.PD_x) ; ; Check y offset ; clr cx ;cx <- row origin pushdw ds:[si].SSI_offset.PD_y mov bp, sp incdw ss:[bp] ;account for initial -1 offset call Pos32ToRowRel ;ax <- row # cmp cx, 0 ;not at edge? je yOffsetOK cmp dx, 0 ;not at edge? je yOffsetOK WARNING SPREADSHEET_SCROLL_RETURNING_BAD_OFFSET yOffsetOK: movdw dxax, ss:[bx].TSP_oldOrigin.PD_y adddw dxax, ss:[bx].TSP_change.PD_y cmpdw dxax, ss:[bp].PD_x ;at an integral position? WARNING_NE SPREADSHEET_SCROLL_RETURNING_BAD_OFFSET add sp, (size SSI_offset.PD_y) popf .leave ret ECCheckTrackingArgs endp endif COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% ReturnYDelta32 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Calculate and return the delta required to get to a row CALLED BY: NScrollKeepVisCell() PASS: ss:bp - ptr to TrackScrollingParams ds:si - ptr to Spreadsheet instance ax - row to return delta for RETURN: none DESTROYED: ax, dx PSEUDO CODE/STRATEGY: KNOWN BUGS/SIDE EFFECTS/IDEAS: REVISION HISTORY: Name Date Description ---- ---- ----------- gene 2/ 7/93 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ ReturnYDelta32 proc near EC < call ECCheckInstancePtr ;> clr dx ;dx <- start row call RowGetRelPos32 ;ax:dx <- position of row subdw axdx, ss:[bp].TSP_oldOrigin.PD_y GOTO ReturnYScroll32 ReturnYDelta32 endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% ReturnXDelta32 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Calculate and return the delta required to get to a column CALLED BY: NScrollKeepVisCell() PASS: ss:bp - ptr to TrackScrollingParams ds:si - ptr to Spreadsheet instance cx - column to return delta for RETURN: none DESTROYED: ax, dx PSEUDO CODE/STRATEGY: KNOWN BUGS/SIDE EFFECTS/IDEAS: REVISION HISTORY: Name Date Description ---- ---- ----------- gene 2/ 7/93 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ ReturnXDelta32 proc near EC < call ECCheckInstancePtr ;> clr dx ;dx <- start column call ColumnGetRelPos32 ;ax:dx <- position of column subdw axdx, ss:[bp].TSP_oldOrigin.PD_x GOTO ReturnXScroll32 ReturnXDelta32 endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% ReturnXScroll16, ReturnXScroll32 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Return x scroll value CALLED BY: INTERNAL: ScrollLeftColumn(), ScrollRightColumn() PASS: ss:bp - ptr to TrackScrollingParams ds:si - ptr to Spreadsheet instance ax:dx - x scroll amount (ReturnXScroll32) dx - x scroll amount (ReturnXScroll16) RETURN: none DESTROYED: ax PSEUDO CODE/STRATEGY: KNOWN BUGS/SIDE EFFECTS/IDEAS: REVISION HISTORY: Name Date Description ---- ---- ----------- eca 5/21/91 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ ReturnXScroll16 proc near mov ax, dx cwd ;sign extend to dword xchg ax, dx ;ax:dx <- dword value FALL_THRU ReturnXScroll32 ReturnXScroll16 endp ReturnXScroll32 proc near class SpreadsheetClass uses bx, cx, dx .enter EC < call ECCheckInstancePtr ;> ; ; Added 4/10/95, -cassie ; Since the current offset is used to calculate the scroll amount, we ; want to make sure the offset is valid. It may not be if the spreadsheet ; size has changed, as when there are large point size changes. See bug ; 33261 for more info. (Though I never saw the problem in the X dimension, ; this code is added as a safeguard, and to keep this routine like its ; Y counterpart.) Set X offset to MIN(X offset, right bound - 1). ; movdw cxbx, ds:[si].SSI_bounds.RD_right decdw cxbx ; account for strangeness jgedw cxbx, ds:[si].SSI_offset.PD_x, $10 movdw ds:[si].SSI_offset.PD_x, cxbx $10: ;vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv ; Added 3/28/93, -jw ; This code is designed to ensure that we never mistakenly return an offset ; that is less than zero. This just ain't allowed. ; ; ; Now we grovel... We simply can not return an offset that is ; less than zero. To make sure this doesn't happen we force ; oldOrigin+change >= -1. ; adddw axdx, ds:[si].SSI_offset.PD_x jgedw axdx, -1, changeInBounds ; ; axdx needs to hold the final value we want if we scroll too far back. ; movdw axdx, -1 changeInBounds: ; ; So now ax.dx = The new origin. We refigure the change by subtracting ; off the old origin. ; subdw axdx, ds:[si].SSI_offset.PD_x ;^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ;vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv ; Added 3/30/93 -jw ; This code handles the fact that the origin of the view will not always ; be what we tell it to be. This messes up our idea of a cached position. ; ; To handle this we make a few assumptions: ; SSI_offset is where the view *should* have been ; TSP_oldOrigin is where the view is ; ; The idea here is that we want the origin to end up at a row/column boundary. ; SSI_offset will always hold a value that falls on a column boundary. Since ; all of the scrolling code uses this as the basis for computing the scroll ; amount, adding the suggested change (axdx) to SSI_offset will always get ; us to a cell boundary. ; ; The problem here is that we need to return a scroll amount to the view ; to allow it to scroll to the proper location. ; ; Here's how we make that work: ; (SSI_offset + 1) - TSP_oldOrigin ; This is how far off the last scroll was from where we ; told it to go. ; ; Poof, we take this amount and add it to the distance that we would suggest ; the view scrolled if TSP_oldOrigin had been where we told it to go last time. ; ; In essence we are saying "I know you screwed up last time, so here's a little ; extra to put you in the right place this time". ; ; ; Get the old "correct" origin for later computation. ; movdw cxbx, ds:[si].SSI_offset.PD_x ; cx.bx <- old value ; ; The value passed to us should always put us on a column boundary. ; adddw ds:[si].SSI_offset.PD_x, axdx ; Set new value ;=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= ; Added 4/19/95, -cassie ; This code is designed to ensure that we never mistakenly return an offset ; that is outside the spreadsheet bottom. This can happen when scaling ; (see bug 35189), by adding the change amount to the old (unscaled) origin. ; cmp ss:[bp].TSP_action, SA_SCALE jne haveOffset ; ; Calculate the offset of the last row. ; pushdw cxbx ;save old offset pushdw axdx ;save the change amount mov cx, ds:[si].SSI_maxCol clr dx ;dx <- start column call ColumnGetRelPos32 ;ax.dx <- offset of last row decdw axdx ;account for strangeness movdw cxbx, axdx ;cx.bx <- offset of last row popdw axdx ;ax.dx <- change ; ; If the new offset falls before the last column, we can use it. ; Else use the last column as the new offset. Calculate what the ; old offset would have been if adding the change amount to ; it landed on the last column. ; jledw ds:[si].SSI_offset.PD_x, cxbx, noScale movdw ds:[si].SSI_offset.PD_x, cxbx ;save it as new offset subdw cxbx, axdx ;calculate old origin add sp, size dword ;remove cx, bx from stack jmp haveOffset noScale: popdw cxbx ;restore old offset haveOffset: ;=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= ; ; Figure the amount that the view origin should change in order to get ; it to where our offset is: ; change + ((SSI_offset + 1) - TSP_oldOrigin) ; ; axdx = change amount ; adddw axdx, cxbx ; Add in the old SSI_offset incdw axdx ; Account for the strangeness subdw axdx, ss:[bp].TSP_oldOrigin.PD_x ; ; Save this as the final change amount ; movdw ss:[bp].TSP_change.PD_x, axdx ;^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ EC < jgedw ds:[si].SSI_offset.PD_x, -1, offsetOK > EC < ERROR SPREADSHEET_SCROLL_OFFSET_OFF_DOCUMENT > EC <offsetOK: > andnf ds:[si].SSI_gsRefCount, not (mask SSRCAF_TRANSFORM_VALID) .leave ret ReturnXScroll32 endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% ReturnYScroll16, ReturnYScroll32 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Return y scroll value CALLED BY: INTERNAL: ScrollUpRow(), ScrollDownRow() PASS: ss:bp - ptr to TrackScrollingParams ds:si - ptr to Spreadsheet instance ax:dx - y scroll amount (ReturnYScroll32) dx - y scroll amount (ReturnYScroll16) RETURN: none DESTROYED: ax PSEUDO CODE/STRATEGY: KNOWN BUGS/SIDE EFFECTS/IDEAS: REVISION HISTORY: Name Date Description ---- ---- ----------- eca 5/21/91 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ ReturnYScroll16 proc near mov ax, dx cwd ;sign extend to dword xchg ax, dx ;ax:dx <- dword FALL_THRU ReturnYScroll32 ReturnYScroll16 endp ReturnYScroll32 proc near class SpreadsheetClass uses bx, cx, dx .enter EC < call ECCheckInstancePtr ;> ; ; Added 4/10/95, -cassie ; Since the current offset is used to calculate the scroll amount, we ; want to make sure the offset is valid. It may not be if the spreadsheet ; size has changed, as when there are large point size changes. See bug ; 33261 for more info. Set Y offset to MIN(Y offset, bottom bound - 1). ; movdw cxbx, ds:[si].SSI_bounds.RD_bottom decdw cxbx ; account for strangeness jgedw cxbx, ds:[si].SSI_offset.PD_y, $10 movdw ds:[si].SSI_offset.PD_y, cxbx $10: ;vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv ; Added 3/28/93, -jw ; This code is designed to ensure that we never mistakenly return an offset ; that is less than zero. This just ain't allowed. ; ; ; Now we grovel... We simply can not return an offset that is ; less than zero. To make sure this doesn't happen we force ; oldOrigin+change >= -1. ; adddw axdx, ds:[si].SSI_offset.PD_y jgedw axdx, -1, changeInBounds ; ; axdx needs to hold the final value we want if we scroll too far back. ; movdw axdx, -1 changeInBounds: ; ; So now ax.dx = The new origin. We refigure the change by subtracting ; off the old origin. ; subdw axdx, ds:[si].SSI_offset.PD_y ;^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ ;vvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvvv ; Added 3/30/93 -jw ; This code handles the fact that the origin of the view will not always ; be what we tell it to be. This messes up our idea of a cached position. ; ; To handle this we make a few assumptions: ; SSI_offset is where the view *should* have been ; TSP_oldOrigin is where the view is ; ; The idea here is that we want the origin to end up at a row/column boundary. ; SSI_offset will always hold a value that falls on a column boundary. Since ; all of the scrolling code uses this as the basis for computing the scroll ; amount, adding the suggested change (axdx) to SSI_offset will always get ; us to a cell boundary. ; ; The problem here is that we need to return a scroll amount to the view ; to allow it to scroll to the proper location. ; ; Here's how we make that work: ; (SSI_offset + 1) - TSP_oldOrigin ; This is how far off the last scroll was from where we ; told it to go. ; ; Poof, we take this amount and add it to the distance that we would suggest ; the view scrolled if TSP_oldOrigin had been where we told it to go last time. ; ; In essence we are saying "I know you screwed up last time, so here's a little ; extra to put you in the right place this time". ; ; ; Get the old "correct" origin for later computation. ; movdw cxbx, ds:[si].SSI_offset.PD_y ; cx.bx <- old value ; ; The value passed to us should always put us on a row boundary. ; adddw ds:[si].SSI_offset.PD_y, axdx ; Set new value ;=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= ; Added 4/19/95, -cassie ; This code is designed to ensure that we never mistakenly return an offset ; that is outside the spreadsheet bottom. This can happen when scaling ; (see bug 35189), by adding the change amount to the old (unscaled) origin. ; cmp ss:[bp].TSP_action, SA_SCALE jne haveOffset ; ; Calculate the offset of the last row. ; pushdw cxbx ;save old offset pushdw axdx ;save the change amount mov ax, ds:[si].SSI_maxRow clr dx ;dx <- start row call RowGetRelPos32 ;ax.dx <- offset of last row decdw axdx ;account for strangeness movdw cxbx, axdx ;cx.bx <- offset of last row popdw axdx ;ax.dx <- change ; ; If the new offset falls before the last row, we can use it. ; Else use the last row as the new offset. Calculate what the ; old offset would have been if adding the change amount to ; it landed on the last row. ; jledw ds:[si].SSI_offset.PD_y, cxbx, noScale movdw ds:[si].SSI_offset.PD_y, cxbx ;save it as new offset subdw cxbx, axdx ;calculate old origin add sp, size dword ;remove cx, bx from stack jmp haveOffset noScale: popdw cxbx ;restore old offset haveOffset: ;=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-= ; ; Figure the amount that the view origin should change in order to get ; it to where our offset is: ; change + ((SSI_offset + 1) - TSP_oldOrigin) ; ; axdx = change amount ; cxbx = old SSI_offset ; adddw axdx, cxbx ; Add in the old SSI_offset incdw axdx ; Account for the strangeness subdw axdx, ss:[bp].TSP_oldOrigin.PD_y ; ; Save this as the final change amount ; movdw ss:[bp].TSP_change.PD_y, axdx ;^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ EC < jgedw ds:[si].SSI_offset.PD_y, -1, offsetOK > EC < ERROR SPREADSHEET_SCROLL_OFFSET_OFF_DOCUMENT > EC <offsetOK: > andnf ds:[si].SSI_gsRefCount, not (mask SSRCAF_TRANSFORM_VALID) .leave ret ReturnYScroll32 endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% NScrollNoChange %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Do-nothing routine for no change in passed scrolling offsets CALLED BY: SpreadsheetNormalizePosition() PASS: none RETURN: none DESTROYED: none PSEUDO CODE/STRATEGY: KNOWN BUGS/SIDE EFFECTS/IDEAS: REVISION HISTORY: Name Date Description ---- ---- ----------- eca 5/19/91 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ NScrollNoChange proc near ret NScrollNoChange endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% NScrollUpPage %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Adjust offset for scrolling up a page. CALLED BY: SpreadsheetNormalizePosition() PASS: ss:bp - ptr to TrackScrollingParams ds:si - ptr to Spreadsheet instance RETURN: none DESTROYED: ax, bx, cx, dx, di PSEUDO CODE/STRATEGY: KNOWN BUGS/SIDE EFFECTS/IDEAS: This (and NScrollLeftPage) would be much more efficient if there were a PositionToCell() routine that dealt with negative offsets. Another (perhaps easier) optimization would be adding a routine to round (actually truncate) to the nearest cell row boundary. REVISION HISTORY: Name Date Description ---- ---- ----------- eca 5/19/91 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ NScrollUpPage proc near class SpreadsheetClass locals local CellLocals .enter EC < call ECCheckInstancePtr ;> call CreateGState ;di <- handle of GState call GetWinBounds32 ;(cx,dx) <- window size call DestroyGState ; ; Figure out where the top of the window, minus the height of ; the window is. In other words, we want to move up the height ; of the window. ; dec dx ;so we don't go too far sub ss:locals.CL_docBounds.RD_top.low, dx sbb ss:locals.CL_docBounds.RD_top.high, 0 ; ; This is just wrong. We want to compute the distance ; relative to <zero> and then we want to limit ourselves ; to scrolling only as far as the minimum row. ; ;;; push bp ;;; lea bp, ss:locals.CL_docBounds.RD_top ;;; call SSGetMinRow ;;; mov cx, dx ; minimum row ;;; call Pos32ToRowRel ;ax <- nearest row ;;; pop bp push bp lea bp, ss:locals.CL_docBounds.RD_top clr cx ;relative to top call Pos32ToRowRel ;ax <- nearest row pop bp ; ; Now check that we haven't gone too far. ; call SSGetMinRow ;dx <- min row cmp ax, dx jae rowOK mov ax, dx ;use min row rowOK: mov ds:[si].SSI_visible.CR_start.CR_row, ax .leave GOTO ReturnYDelta32 NScrollUpPage endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% NScrollDownPage %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Adjust offset for scrolling down a page. CALLED BY: SpreadsheetNormalizePosition() PASS: ss:bp - ptr to TrackScrollingParams ds:si - ptr to Spreadsheet instance RETURN: none DESTROYED: ax, bx, cx, dx, di PSEUDO CODE/STRATEGY: KNOWN BUGS/SIDE EFFECTS/IDEAS: REVISION HISTORY: Name Date Description ---- ---- ----------- eca 5/19/91 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ NScrollDownPage proc near class SpreadsheetClass EC < call ECCheckInstancePtr ;> mov ax, ds:[si].SSI_visible.CR_end.CR_row mov dx, ds:[si].SSI_visible.CR_start.CR_row cmp ax, dx ;single row? ja scrollOK ;branch if more than one row cmp ax, ds:[si].SSI_maxRow ;already at max, don't bump! jae scrollOK ; (cbh 3/15/94) inc ax ;ax <- row below scrollOK: call RowGetRelPos16 ;dx <- position of bottom row mov ds:[si].SSI_visible.CR_start.CR_row, ax GOTO ReturnYScroll16 NScrollDownPage endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% NScrollLeftPage %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Adjust offset for scrolling left a page CALLED BY: SpreadsheetNormalizePosition() PASS: ss:bp - ptr to TrackScrollingParams ds:si - ptr to Spreadsheet instance RETURN: none DESTROYED: ax, bx, cx, dx, di PSEUDO CODE/STRATEGY: KNOWN BUGS/SIDE EFFECTS/IDEAS: REVISION HISTORY: Name Date Description ---- ---- ----------- eca 5/19/91 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ NScrollLeftPage proc near class SpreadsheetClass locals local CellLocals .enter EC < call ECCheckInstancePtr ;> call CreateGState ;di <- handle of GState call GetWinBounds32 ;(cx,dx) <- size call DestroyGState ; ; Figure out where the left of the window, minus the width of ; the window is. In other words, we want to move left the ; width of the window. ; dec cx ;so we don't go too far sub ss:locals.CL_docBounds.RD_left.low, cx sbb ss:locals.CL_docBounds.RD_left.high, 0 ; ; This is just wrong. We want to compute the distance ; relative to <zero> and then we want to limit ourselves ; to scrolling only as far as the minimum column. ; ;;; push bp ;;; lea bp, ss:locals.CL_docBounds.RD_left ;;; call SSGetMinColumn ;;; mov cx, dx ; minimum column ;;; call Pos32ToColRel ;ax <- nearest column ;;; pop bp push bp lea bp, ss:locals.CL_docBounds.RD_left clr cx ;relative to left call Pos32ToColRel ;ax <- nearest column pop bp ; ; Now check that we haven't gone too far. ; call SSGetMinColumn ;dx <- min column cmp ax, dx jae colOK mov ax, dx ;use min column colOK: mov ds:[si].SSI_visible.CR_start.CR_column, ax mov cx, ax ;cx <- column .leave GOTO ReturnXDelta32 NScrollLeftPage endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% NScrollRightPage %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Adjust offset for scrolling right a page CALLED BY: SpreadsheetNormalizePosition() PASS: ss:bp - ptr to TrackScrollingParams ds:si - ptr to Spreadsheet instance RETURN: none DESTROYED: ax, bx, cx, dx, di PSEUDO CODE/STRATEGY: KNOWN BUGS/SIDE EFFECTS/IDEAS: REVISION HISTORY: Name Date Description ---- ---- ----------- eca 5/19/91 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ NScrollRightPage proc near class SpreadsheetClass EC < call ECCheckInstancePtr ;> mov cx, ds:[si].SSI_visible.CR_end.CR_column mov dx, ds:[si].SSI_visible.CR_start.CR_column cmp cx, dx ;single column? ja scrollOK ;branch if more than one column cmp cx, ds:[si].SSI_maxCol ;already at max, don't bump! jae scrollOK ; (3/15/94 cbh) inc cx ;cx <- column to right scrollOK: call ColumnGetRelPos16 mov ds:[si].SSI_visible.CR_start.CR_column, cx GOTO ReturnXScroll16 NScrollRightPage endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% NScrollUpRow %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Adjust offset for scrolling up a row. CALLED BY: SpreadsheetNormalizePosition() PASS: ss:bp - ptr to TrackScrollingParams ds:si - ptr to Spreadsheet instance RETURN: none DESTROYED: ax, bx, cx, dx, di PSEUDO CODE/STRATEGY: KNOWN BUGS/SIDE EFFECTS/IDEAS: REVISION HISTORY: Name Date Description ---- ---- ----------- eca 5/19/91 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ NScrollUpRow proc near class SpreadsheetClass EC < call ECCheckInstancePtr ;> mov ax, ds:[si].SSI_visible.CR_start.CR_row ;ax <- top row call GetPreviousRow ;ax <- row above top jc noScroll mov ds:[si].SSI_visible.CR_start.CR_row, ax ;store new top call RowGetHeight ;dx <- height of row above first neg dx ;dx <- scroll up GOTO ReturnYScroll16 noScroll: clr dx ;dx <- no scroll GOTO ReturnYScroll16 NScrollUpRow endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% NScrollDownRow %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Adjust offset for scrolling down one row. CALLED BY: SpreadsheetNormalizePosition() PASS: ss:bp - ptr to TrackScrollingParams ds:si - ptr to Spreadsheet instance RETURN: none DESTROYED: ax, bx, cx, dx, di PSEUDO CODE/STRATEGY: KNOWN BUGS/SIDE EFFECTS/IDEAS: REVISION HISTORY: Name Date Description ---- ---- ----------- eca 5/19/91 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ NScrollDownRow proc near class SpreadsheetClass EC < call ECCheckInstancePtr ;> mov ax, ds:[si].SSI_visible.CR_start.CR_row call RowGetHeight ;dx <- height of first row call GetNextRow ;ax <- top row + 1 jc noScroll ;branch if at bottom mov ds:[si].SSI_visible.CR_start.CR_row, ax ;store new top GOTO ReturnYScroll16 noScroll: clr dx ;dx <- no scroll GOTO ReturnYScroll16 NScrollDownRow endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% NScrollLeftColumn %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Adjust offset for scrolling left one column CALLED BY: SpreadsheetNormalizePosition() PASS: ss:bp - ptr to TrackScrollingParams ds:si - ptr to Spreadsheet instance RETURN: none DESTROYED: ax, bx, cx, dx, di PSEUDO CODE/STRATEGY: KNOWN BUGS/SIDE EFFECTS/IDEAS: REVISION HISTORY: Name Date Description ---- ---- ----------- eca 5/19/91 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ NScrollLeftColumn proc near class SpreadsheetClass EC < call ECCheckInstancePtr ;> mov cx, ds:[si].SSI_visible.CR_start.CR_column ;cx <- left column call GetPreviousColumn ;cx <- column to left jc noScroll ;branch if at left mov ds:[si].SSI_visible.CR_start.CR_column, cx ;store new left call ColumnGetWidth ;dx <- width neg dx ;dx <- scroll left GOTO ReturnXScroll16 noScroll: clr dx ;dx <- no scroll GOTO ReturnXScroll16 NScrollLeftColumn endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% NScrollRightColumn %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Adjust offset for scrolling right one column CALLED BY: SpreadsheetNormalizePosition() PASS: ss:bp - ptr to TrackScrollingParams ds:si - ptr to Spreadsheet instance RETURN: dx:cx - x scroll amount bx:ax - y scroll amount DESTROYED: ax, bx, cx, di PSEUDO CODE/STRATEGY: KNOWN BUGS/SIDE EFFECTS/IDEAS: REVISION HISTORY: Name Date Description ---- ---- ----------- eca 5/19/91 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ NScrollRightColumn proc near class SpreadsheetClass EC < call ECCheckInstancePtr ;> mov cx, ds:[si].SSI_visible.CR_start.CR_column call ColumnGetWidth ;dx <- width of first column call GetNextColumn ;cx <- left column + 1 jc noScroll mov ds:[si].SSI_visible.CR_start.CR_column, cx ;store new left GOTO ReturnXScroll16 noScroll: clr dx ;dx <- no scroll GOTO ReturnXScroll16 NScrollRightColumn endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% NScrollGeneral %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Adjust offset for scrolling to generalized position. CALLED BY: SpreadsheetNormalizePosition() PASS: ss:bp - ptr to TrackScrollingParams ds:si - ptr to Spreadsheet instance RETURN: none DESTROYED: ax, bx, cx, dx, di PSEUDO CODE/STRATEGY: KNOWN BUGS/SIDE EFFECTS/IDEAS: optimization: As with page left and page up, this would be quicker if there were a PosRoundToCell() routine...except it would be difficult to deal with the negative positions correctly. REVISION HISTORY: Name Date Description ---- ---- ----------- eca 5/19/91 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ NScrollGeneral proc near class SpreadsheetClass EC < call ECCheckInstancePtr ;> ; ; Figure out cell we should scroll to ; push ss:[bp].TSP_newOrigin.PD_y.high push ss:[bp].TSP_newOrigin.PD_y.low push ss:[bp].TSP_newOrigin.PD_x.high push ss:[bp].TSP_newOrigin.PD_x.low mov bx, sp ;ss:bx <- ptr to PointDWord clr ax, cx ;(ax,cx) <- cell origin call Pos32ToCellRel ;(ax,cx) <- cell at position add sp, (size PointDWord) mov ds:[si].SSI_visible.CR_start.CR_row, ax mov ds:[si].SSI_visible.CR_start.CR_column, cx ; ; Round position to cell boundaries ; call ReturnYDelta32 GOTO ReturnXDelta32 NScrollGeneral endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% NScrollKeepVisCell %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Adjust offset to keep current cell in upper left, after a document size change. CALLED BY: SpreadsheetNormalizePosition() PASS: ss:bp - ptr to TrackScrollingParams TSP_oldOrigin PointDWord ds:si - ptr to Spreadsheet instance RETURN: none DESTROYED: ax, bx, cx, dx, di PSEUDO CODE/STRATEGY: NOTE: unlike NScrollKeepCell(), this may require scrolling to occur, in particular if the change in document size occurred above or to the left of the current visible area. KNOWN BUGS/SIDE EFFECTS/IDEAS: REVISION HISTORY: Name Date Description ---- ---- ----------- eca 9/18/91 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ NScrollKeepVisCell proc near class SpreadsheetClass EC < call ECCheckInstancePtr ;> ; ; Figure out where the upper-left is, and how far it has moved. ; mov ax, ds:[si].SSI_visible.CR_start.CR_row call ReturnYDelta32 mov cx, ds:[si].SSI_visible.CR_start.CR_column GOTO ReturnXDelta32 NScrollKeepVisCell endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% NScrollInto %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Adjust offset for scrolling to keep cell visible CALLED BY: SpreadsheetNormalizePosition() PASS: ss:bp - ptr to TrackScrollingParams ds:si - ptr to Spreadsheet instance RETURN: none DESTROYED: ax, bx, cx, dx, di PSEUDO CODE/STRATEGY: KNOWN BUGS/SIDE EFFECTS/IDEAS: REVISION HISTORY: Name Date Description ---- ---- ----------- eca 10/ 8/91 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ NScrollInto proc near class SpreadsheetClass .enter EC < call ECCheckInstancePtr ;> ; ; First we try generalized scrolling, and see if that did anything ; pushdw ss:[bp].TSP_change.PD_x pushdw ss:[bp].TSP_change.PD_y call NScrollGeneral ;try generalized scrolling mov ax, ss:[bp].TSP_change.PD_x.low or ax, ss:[bp].TSP_change.PD_x.high or ax, ss:[bp].TSP_change.PD_y.low or ax, ss:[bp].TSP_change.PD_y.high jnz donePop ;branch if scroll occurred ; ; If no scroll occurred, but was supposed to, it was a very ; small scroll (ie. less than a row or column). Calling the ; handler for SA_DRAG_SCROLL handles this case exactly, so ; we restore the original suggested change and pass it on. ; popdw ss:[bp].TSP_change.PD_y ;restore suggested y scroll popdw ss:[bp].TSP_change.PD_x ;restore suggested x scroll call NScrollSelect jmp done donePop: add sp, (size PointDWord) ;ignore saved values done: .leave ret NScrollInto endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% NScrollSelect %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Adjust offset for scrolling while selecting CALLED BY: SpreadsheetNormalizePosition() PASS: ss:bp - ptr to TrackScrollingParams ds:si - ptr to Spreadsheet instance RETURN: none DESTROYED: ax, bx, cx, dx, di PSEUDO CODE/STRATEGY: KNOWN BUGS/SIDE EFFECTS/IDEAS: REVISION HISTORY: Name Date Description ---- ---- ----------- eca 6/11/91 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ NScrollSelect proc near class SpreadsheetClass .enter EC < call ECCheckInstancePtr ;> ; ; Deal with left or right scrolling ; EC < cmp ss:[bp].TSP_change.PD_x.high, 0 > EC < je xOK ;> EC < cmp ss:[bp].TSP_change.PD_x.high, -1 > EC < je xOK ;> EC < ERROR SCROLL_AMOUNT_TOO_LARGE ;> EC <xOK: ;> tst ss:[bp].TSP_change.PD_x.low ;selecting left or right? jz afterXScroll ;branch if no scroll js scrollLeft ;branch if negative (ie. left) call NScrollRightColumn jmp afterXScroll scrollLeft: call NScrollLeftColumn afterXScroll: ; ; Deal with up or down scrolling ; EC < cmp ss:[bp].TSP_change.PD_y.high, 0 > EC < je yOK ;> EC < cmp ss:[bp].TSP_change.PD_y.high, -1 > EC < je yOK ;> EC < ERROR SCROLL_AMOUNT_TOO_LARGE ;> EC <yOK: ;> tst ss:[bp].TSP_change.PD_y.low ;selecting up or down? jz afterYScroll ;branch if no scroll js scrollUp ;branch if negative (ie. up) call NScrollDownRow jmp afterYScroll scrollUp: call NScrollUpRow afterYScroll: .leave ret NScrollSelect endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% RecalcViewDocSize %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Recalculate document view size CALLED BY: UpdateDocUIRedrawAll, SpreadsheetSetDocOrigin PASS: ds:si - ptr to Spreadsheet instance RETURN: none DESTROYED: none PSEUDO CODE/STRATEGY: Functionality of adding on "mystery gray area" has been removed. This is to make the spreadsheet more well-behaved in the context of a compound document. CalcSetDocSize has been merged into this procedure. KNOWN BUGS/SIDE EFFECTS/IDEAS: REVISION HISTORY: Name Date Description ---- ---- ----------- eca 5/22/91 Initial version chrisb 11/18/91 merged CalcSetDocSize into this procedure %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ RecalcViewDocSize proc far uses ax, bx, cx, dx bounds local RectDWord class SpreadsheetClass .enter EC < call ECCheckInstancePtr > movdw ss:[bounds].RD_left, ds:[si].SSI_bounds.RD_left, ax movdw ss:[bounds].RD_top, ds:[si].SSI_bounds.RD_top, ax clr dx ;dx <- minimum column mov cx, ds:[si].SSI_maxCol inc cx call ColumnGetRelPos32Far ;ax:dx <- x size - last col movdw ss:bounds.RD_right, axdx movdw ds:[si].SSI_bounds.RD_right, axdx clr dx ;dx <- minimum row mov ax, ds:[si].SSI_maxRow inc ax call RowGetRelPos32Far ;ax:dx <- y size - last row movdw ss:bounds.RD_bottom, axdx movdw ds:[si].SSI_bounds.RD_bottom, axdx ; ; Tell our parent about the change... ; push bp, si lea bp, ss:bounds ;ss:bp <- ptr to RectDWord mov dx, (size RectDWord) ;dx <- size of args mov ax, MSG_VIS_CONTENT_SET_DOC_BOUNDS ;ax <- method to send mov si, ds:[si].SSI_chunk call VisCallParent pop bp, si .leave ret RecalcViewDocSize endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SendToViewStack %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Send a message to the view with data on the stack CALLED BY: KeepCellOnScreen PASS: ds:si - ptr to Spreadsheet instance ax - method to send to view ss: bp - stack data dx - size of stack data RETURN: cx, dx, bp - return from method DESTROYED: cx, dx, bp (if not returned) PSEUDO CODE/STRATEGY: KNOWN BUGS/SIDE EFFECTS/IDEAS: REVISION HISTORY: Name Date Description ---- ---- ----------- eca 5/22/91 Initial version cbh 8/ 8/91 Changed for new MSG_VIS_VUP_CALL_OBJECT_OF_CLASS CDB 12/16/91 Changed name to protect the innocent %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ SendToViewStack proc far class SpreadsheetClass push di mov di, mask MF_STACK FALL_THRU SendToViewCommon, di SendToViewStack endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SendToViewCommon %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Send a message to the view. CALLED BY: SendToView, SendToViewStack PASS: ax, cx, dx, bp - message data RETURN: ax, cx, dx, bp - returned from method called DESTROYED: nothing PSEUDO CODE/STRATEGY: KNOWN BUGS/SIDE EFFECTS/IDEAS: REVISION HISTORY: Name Date Description ---- ---- ----------- CDB 12/17/91 Initial version. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ SendToViewCommon proc far uses bx,si class SpreadsheetClass .enter EC < call ECCheckInstancePtr ;> push si ornf di, mask MF_RECORD mov bx, segment GenViewClass mov si, offset GenViewClass call ObjMessage mov cx, di ;cx <- event to send to view pop si mov si, ds:[si].SSI_chunk mov ax, MSG_VIS_VUP_CALL_OBJECT_OF_CLASS call ObjCallInstanceNoLock .leave FALL_THRU_POP di ret SendToViewCommon endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% KeepSelectCellOnScreen %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Keep non-anchor cell of keyboard selection on screen CALLED BY: {Extend,Contract}Selection{Left,Right,Up,Down} PASS: ds:si - ptr to instance data RETURN: none DESTROYED: none PSEUDO CODE/STRATEGY: KNOWN BUGS/SIDE EFFECTS/IDEAS: REVISION HISTORY: Name Date Description ---- ---- ----------- eca 10/ 8/91 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ KeepSelectCellOnScreen proc near class SpreadsheetClass uses ax, cx .enter EC < call ECCheckInstancePtr ;> mov ax, ds:[si].SSI_selected.CR_start.CR_row cmp ax, ds:[si].SSI_active.CR_row ;anchored at top? mov ax, ds:[si].SSI_selected.CR_end.CR_row jne notBottom ;branch if not anchored at top afterRow: mov cx, ds:[si].SSI_selected.CR_start.CR_column cmp cx, ds:[si].SSI_active.CR_column ;anchored at left? mov cx, ds:[si].SSI_selected.CR_end.CR_column jne notRight ;branch if not anchored at top afterCol: call KeepCellOnScreen done: .leave ret notBottom: cmp ax, ds:[si].SSI_active.CR_row ;anchored at bottom? jne done ;branch if not anchored at bttm mov ax, ds:[si].SSI_selected.CR_start.CR_row jmp afterRow notRight: cmp cx, ds:[si].SSI_active.CR_column ;anchored at right? jne done ;branch if not anchored at right mov cx, ds:[si].SSI_selected.CR_start.CR_column jmp afterCol KeepSelectCellOnScreen endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% KeepCellOnScreen, KeepActiveCellOnScreen %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Keep a cell in visible area CALLED BY: MoveActiveCellFar()) PASS: ds:si - ptr to instance data (ax,cx) - cell to keep on screen (r,c) RETURN: none DESTROYED: none (ax,cx) PSEUDO CODE/STRATEGY: KNOWN BUGS/SIDE EFFECTS/IDEAS: REVISION HISTORY: Name Date Description ---- ---- ----------- eca 10/ 2/91 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ KeepActiveCellOnScreen proc far class SpreadsheetClass EC < call ECCheckInstancePtr ;> mov ax, ds:[si].SSI_active.CR_row mov cx, ds:[si].SSI_active.CR_column FALL_THRU KeepCellOnScreen KeepActiveCellOnScreen endp KeepCellOnScreen proc far uses ax, bx, cx, dx, bp class SpreadsheetClass .enter EC < call ECCheckInstancePtr ;> ; ; Set up args for GenView method ; sub sp, (size MakeRectVisibleParams) mov bp, sp ;ss:bp <- ptr to args ; ; We may want to put the active cell in the center of the screen. ; push ds, bx mov bx, handle dgroup call MemDerefDS ; ds = dgroup tst ds:[centerFlag] pop ds, bx ; restore ds, bx jz dontCenter mov ss:[bp].MRVP_xMargin, MRVM_50_PERCENT mov ss:[bp].MRVP_xFlags, mask MRVF_ALWAYS_SCROLL mov ss:[bp].MRVP_yMargin, MRVM_50_PERCENT mov ss:[bp].MRVP_yFlags, mask MRVF_ALWAYS_SCROLL jmp partialVisible dontCenter: mov ss:[bp].MRVP_xMargin, MRVM_0_PERCENT mov ss:[bp].MRVP_xFlags, 0 mov ss:[bp].MRVP_yMargin, MRVM_0_PERCENT mov ss:[bp].MRVP_yFlags, 0 partialVisible: ; ; Special case the right column and bottom row. They are generally ; only partially visible, so we treat them as being off screen. ; if _SCROLL_PARTLY_VISIBLE_CELL_ON_SCREEN_ONLY_WITH_KBD ; ; We only do this special case if the user got here via the ; keyboard. We do this with a hack, which is to see if we ; have got the grab, which is taken when doing selection. ; test ds:[si].SSI_flags, mask SF_HAVE_GRAB jnz checkScroll endif cmp ax, ds:[si].SSI_visible.CR_end.CR_row je doScrollRow cmp cx, ds:[si].SSI_visible.CR_end.CR_column je doScrollColumn ; ; See if the cell is already visible -- if so, we're done ; checkScroll: ; ; If we want to put the cell in the center of the screen, then ; we don't care if it is already visible or not. ; push ds, bx mov bx, handle dgroup call MemDerefDS ; ds = dgroup tst ds:[centerFlag] pop ds, bx ;restore ds jne getBounds call CellVisible? ;cell visible? jc done ;branch if already on screen ; ; Get y bounds ; getBounds:: clr dx ;dx <- origin row call RowGetRelPos32 ;ax:dx <- position of row push bx pushdw axdx ; ; Get x bounds ; clr dx ;dx <- origin column call ColumnGetRelPos32 ;ax:dx <- position of column setBounds: movdw ss:[bp].MRVP_bounds.RD_left, axdx add dx, bx ;add in column width adc ax, 0 movdw ss:[bp].MRVP_bounds.RD_right, axdx popdw axdx ;ax:dx <- position of row pop bx ;bx <- row height movdw ss:[bp].MRVP_bounds.RD_top, axdx add dx, bx ;add in row height adc ax, 0 movdw ss:[bp].MRVP_bounds.RD_bottom, axdx ; ; Tell her about it... ; mov dx, (size MakeRectVisibleParams) ;dx <- size of args mov ax, MSG_GEN_VIEW_MAKE_RECT_VISIBLE call SendToViewStack done: add sp, (size MakeRectVisibleParams) ;done with args .leave ret ; ; The cell is already partially visible, so we can scroll to it ; more easily than if it were at an arbitrary position. ; ; See if there is only a partial row or column visible. ; ; ; if there is only one row or one column visible, we still need to ensure ; that the new cell is visible - brianc 5/5/94 ; doScrollRow: cmp ax, ds:[si].SSI_visible.CR_start.CR_row ; je done je checkScroll jmp doScroll doScrollColumn: cmp cx, ds:[si].SSI_visible.CR_start.CR_column ; je done je checkScroll doScroll: ; ; Get the bounds relative to the visible range, and make convert ; them into absolute offsets before passing them to the view. ; mov dx, ds:[si].SSI_visible.CR_start.CR_row call RowGetRelPos32 adddw axdx, ds:[si].SSI_offset.PD_y push bx pushdw axdx mov dx, ds:[si].SSI_visible.CR_start.CR_column call ColumnGetRelPos32 adddw axdx, ds:[si].SSI_offset.PD_x jmp setBounds KeepCellOnScreen endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SpreadsheetSetDocOrigin %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% DESCRIPTION: Update our SSI_offset field. Also, add vardata to specify the upper left-hand corner of the spreadsheet PASS: *ds:si - SpreadsheetClass object ds:di - SpreadsheetClass instance data es - segment of SpreadsheetClass ss:bp - PointDWord RETURN: nothing DESTROYED: ax, cx, dx, bp REGISTER/STACK USAGE: PSEUDO CODE/STRATEGY: KNOWN BUGS/SIDE EFFECTS/CAVEATS/IDEAS: REVISION HISTORY: Name Date Description ---- ---- ----------- chrisb 9/ 1/94 Initial version. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ SpreadsheetSetDocOrigin method dynamic SpreadsheetClass, MSG_SPREADSHEET_SET_DOC_ORIGIN mov ax, ss:[bp].PD_x.low or ax, ss:[bp].PD_x.high or ax, ss:[bp].PD_y.low or ax, ss:[bp].PD_y.high jz deleteVarData mov ax, TEMP_SPREADSHEET_DOC_ORIGIN or \ mask VDF_SAVE_TO_STATE mov cx, size SpreadsheetDocOrigin call ObjVarAddData ; ds:bx - vardata ; ; Now, re-dereference the spreadsheet. Store the origin in ; the vardata, and update the "offset" field ; mov si, ds:[si] add si, ds:[si].Spreadsheet_offset ornf ds:[si].SSI_flags, mask SF_NONZERO_DOC_ORIGIN movdw dxcx, ss:[bp].PD_x movdw ds:[si].SSI_bounds.RD_left, dxcx decdw dxcx movdw ds:[si].SSI_offset.PD_x, dxcx movdw dxcx, ss:[bp].PD_y movdw ds:[si].SSI_bounds.RD_top, dxcx decdw dxcx movdw ds:[si].SSI_offset.PD_y, dxcx ; ; Also, compute the upper left-hand row & column information ; push bx ; ds:bx - vardata ptr clr ax, cx mov bx, bp call Pos32ToCellRelFar pop bx ; ds:bx - vardata ptr mov ds:[bx].SDO_rowCol.CR_row, ax mov ds:[bx].SDO_rowCol.CR_column, cx mov ds:[si].SSI_visible.CR_start.CR_row, ax mov ds:[si].SSI_visible.CR_start.CR_column, cx call setSelection ; We'll let the "draw" handler figure out the lower-right hand ; corner. ; lea bx, ss:[bounds].RD_right ; call Pos32ToVisCellFar ; mov ds:[si].SSI_visible.CR_end.CR_row, ax ; mov ds:[si].SSI_visible.CR_end.CR_column, cx done: ; ; Tell the view (and the content) about the new document bounds ; call RecalcViewDocSize ret ;------------------------ deleteVarData: mov ax, TEMP_SPREADSHEET_DOC_ORIGIN call ObjVarDeleteData mov si, ds:[si] add si, ds:[si].Spreadsheet_offset clr ax movdw ds:[si].SSI_bounds.RD_left, axax movdw ds:[si].SSI_bounds.RD_top, axax andnf ds:[si].SSI_flags, not mask SF_NONZERO_DOC_ORIGIN jmp done setSelection: ;---------------------- mov bp, ax mov ax, MSG_SPREADSHEET_MOVE_ACTIVE_CELL mov si, ds:[si].SSI_chunk call ObjCallInstanceNoLock mov si, ds:[si] add si, ds:[si].Spreadsheet_offset retn SpreadsheetSetDocOrigin endm DrawCode ends
src/main/antlr4/edu/harvard/seas/pl/formulog/parsing/generated/Formulog.g4
HarvardPL/formulog
109
1139
grammar Formulog; prog : ( metadata | stmt )* EOF ; tsvFile : tabSeparatedTermLine* EOF ; tabSeparatedTermLine : (term (TAB term)*)? NEWLINE ; // Program metadata //////////////////////////////////////////////////////////// metadata : funDefs '.'? # funDecl | annotation* relType = ( INPUT | OUTPUT ) ID maybeAnnotatedTypeList '.'? # relDecl | 'type' typeDefLHS EQ type '.'? # typeAlias | 'type' typeDefLHS EQ typeDefRHS ( 'and' typeDefLHS EQ typeDefRHS )* '.'? # typeDecl | 'uninterpreted' 'fun' constructorType ':' type '.'? # uninterpFunDecl | 'uninterpreted' 'sort' typeDefLHS '.'? # uninterpSortDecl ; maybeAnnotatedTypeList : '(' (var ':')? type (',' (var ':')? type)* ')' | // can be empty ; funDefLHS : ID args = varTypeList ':' retType = type ; funDefs : 'fun' funDefLHS EQ term ( 'and' funDefLHS EQ term )* ; constructorType : ID typeList ; var : VAR | ID ; varTypeList : '(' var ':' type ( ',' var ':' type )* ')' | // can be empty ; typeList : '(' type ( ',' type )* ')' | // can be empty ; type0 : '(' type ')' # parenType | TYPEVAR # typeVar | type0 ID parameterList # typeRef | ( '(' type ( ',' type )* ')' )? ID parameterList # typeRef ; type : type0 ( '*' type0 )* # tupleType ; parameterList : '[' parameter ( ',' parameter )* ']' | // can be empty ; parameter : '?' # wildCardParam | type # typeParam | INT # intParam ; typeDefLHS : ( TYPEVAR | '(' TYPEVAR ( ',' TYPEVAR )* ')' )? ID ; typeDefRHS : adtDef | recordDef ; adtDef : '|'? constructorType ( '|' constructorType )* | // can be empty ; recordDef : '{' recordEntryDef ( ';' recordEntryDef )* ';'? '}' ; recordEntryDef : ID ':' type ; annotation : '@' ID ; // Program logic /////////////////////////////////////////////////////////////// stmt : clause # clauseStmt | fact # factStmt | query # queryStmt ; clause : head = nonEmptyTermList ':-' body = nonEmptyTermList '.' ; fact : term '.' ; query : ':-' term '.' ; predicate : ID termArgs ; functor : id = ( ID | XID | XVAR ) parameterList termArgs # indexedFunctor ; termArgs : ( '(' ( term ( ',' term )* ) ')' )? ; term : HOLE # holeTerm | 'fold' '[' ID ']' termArgs # foldTerm | functor # functorTerm | list # listTerm | tuple # tupleTerm | '(' term ')' # parensTerm | op = ( MINUS | BANG ) term # unopTerm | term op = ( MUL | DIV | REM ) term # binopTerm | term op = ( PLUS | MINUS ) term # binopTerm | < assoc = right > term '::' term # consTerm | term op = ( LT | LTE | GT | GTE ) term # binopTerm | term op = ( EQ | NEQ ) term # binopTerm | term op = AMP term # binopTerm | term op = CARET term # binopTerm | term op = AMPAMP term # binopTerm | term op = BARBAR term # binopTerm | VAR # varTerm | QSTRING # stringTerm | val = ( INT | HEX ) # i32Term | val = I64 # i64Term | val = FP64 # doubleTerm | val = FP32 # floatTerm | val = ( FP32_NAN | FP32_POS_INFINITY | FP32_NEG_INFINITY | FP64_NAN | FP64_POS_INFINITY | FP64_NEG_INFINITY ) # specialFPTerm | '{' recordEntries '}' # recordTerm | '{' term 'with' recordEntries '}' # recordUpdateTerm | '`' term '`' # formulaTerm | '#' '{' term '}' '[' parameter ']' # termSymFormula | NOT term # notFormula | < assoc = left > term op = FORMULA_EQ term # binopFormula | < assoc = right > term op = AND term # binopFormula | < assoc = right > term op = OR term # binopFormula | < assoc = right > term op = IMP term # binopFormula | < assoc = right > term op = IFF term # binopFormula | '#let' term EQ term 'in' term # letFormula | quantifier = ( FORALL | EXISTS ) variables = nonEmptyTermList ( ':' pattern = nonEmptyTermList )? '.' boundTerm = term # quantifiedFormula | '#if' term 'then' term 'else' term # iteTerm | term ISNOT ID # outermostCtor | 'match' term 'with' '|'? matchClause ( '|' matchClause )* 'end' # matchExpr | 'let' lhs = letBind '=' assign = term 'in' body = term # letExpr | 'let' funDefs 'in' letFunBody = term # letFunExpr | 'if' guard = term 'then' thenExpr = term 'else' elseExpr = term # ifExpr ; recordEntries : recordEntry ( ';' recordEntry )* ';'? ; recordEntry : ID '=' term ; letBind : ( term | '(' term ',' term ( ',' term )* ')' ) ; nonEmptyTermList : term ( ',' term )* ; list : '[' ( term ( ',' term )* )? ']' ; tuple : '(' term ',' term ( ',' term )* ')' ; matchClause : pats = patterns '=>' rhs = term ; patterns : term ( '|' term )* ; // Tokens ////////////////////////////////////////////////////////////////////// AND : '/\\' ; OR : '\\/' ; IMP : '==>' ; IFF : '<==>' ; NOT : '~' ; FORMULA_EQ : '#=' ; INPUT : 'input' ; OUTPUT : 'output' ; FP32_NAN : 'fp32_nan' ; FP32_POS_INFINITY : 'fp32_pos_infinity' ; FP32_NEG_INFINITY : 'fp32_neg_infinity' ; FP64_NAN : 'fp64_nan' ; FP64_POS_INFINITY : 'fp64_pos_infinity' ; FP64_NEG_INFINITY : 'fp64_neg_infinity' ; TYPEVAR : '\'' ID ; XVAR : '#' VAR ; VAR : [A-Z_] [a-zA-Z0-9_]* ; INT : ( '+' | '-' )? [0-9]+ ; HEX : '0x' [0-9a-fA-F]+ ; fragment FP : ( INT '.' [0-9]+ | ( '+' | '-' )? '.' [0-9]+ ) ( ( 'E' | 'e' ) [0-9]+ )? ; fragment FPE : ( FP | INT ) ( 'e' | 'E' ) INT ; FP32 : ( FP | INT | FPE ) ( 'F' | 'f' ) ; FP64 : ( FP | FPE ) ( 'D' | 'd' )? | INT ( 'D' | 'd' ) ; I64 : ( INT | HEX ) ( 'L' | 'l' ) ; LT : '<' ; LTE : '<=' ; GT : '>' ; GTE : '>=' ; MUL : '*' ; DIV : '/' ; REM : '%' ; PLUS : '+' ; MINUS : '-' ; BANG : '!' ; CARET : '^' ; AMP : '&' ; BARBAR : '||' ; AMPAMP : '&&' ; ISNOT : 'not' ; EQ : '=' ; NEQ : '!=' ; FORALL : 'forall' ; EXISTS : 'exists' ; HOLE : '??' ; NEWLINE : ('\r\n' | [\n\r]) -> channel(HIDDEN) ; TAB : '\t' -> channel(HIDDEN) ; SPACES : [ ]+ -> skip ; COMMENT : '(*' ( COMMENT | . )*? '*)' -> skip ; XID : '#' ID ; ID : [a-z] [a-zA-Z0-9_]* ; fragment ESCAPE : '\\' . ; QSTRING : '"' ( ESCAPE | ~( '\n' | '\r' | '"' | '\\' ) )* '"' ;
tests/tdgeev.adb
leo-brewin/ada-lapack
5
26060
with Ada.Text_IO; with Ada.Text_IO.Complex_IO; with Ada.Numerics.Generic_Real_Arrays; with Ada.Numerics.Generic_Complex_Types; with Ada.Numerics.Generic_Complex_Arrays; with Ada.Numerics.Generic_Elementary_Functions; with Ada.Numerics.Generic_Complex_Elementary_Functions; with Ada_Lapack; use Ada.Text_IO; procedure tdgeev is type Real is digits 18; package Real_Arrays is new Ada.Numerics.Generic_Real_Arrays (Real); package Complex_Types is new Ada.Numerics.Generic_Complex_Types (Real); package Complex_Arrays is new Ada.Numerics.Generic_Complex_Arrays (Real_Arrays, Complex_Types); package Real_Maths is new Ada.Numerics.Generic_Elementary_Functions (Real); package Complex_Maths is new Ada.Numerics.Generic_Complex_Elementary_Functions (Complex_Types); package Real_IO is new Ada.Text_IO.Float_IO (Real); package Integer_IO is new Ada.Text_IO.Integer_IO (Integer); package Complex_IO is new Ada.Text_IO.Complex_IO (Complex_Types); package Lapack is new Ada_Lapack(Real, Complex_Types, Real_Arrays, Complex_Arrays); use Lapack; use Real_Arrays; use Complex_Types; use Complex_Arrays; use Real_IO; use Integer_IO; use Complex_IO; use Real_Maths; use Complex_Maths; matrix : Real_Matrix (1..5,1..5); matrix_rows : Integer := Matrix'Length (1); matrix_cols : Integer := Matrix'Length (2); real_eigenvalues : Real_Vector (1..matrix_rows); imag_eigenvalues : Real_Vector (1..matrix_rows); eigenvectors_rows : Integer := matrix_rows; eigenvectors_cols : Integer := matrix_rows; left_eigenvectors : Real_Matrix (1..eigenvectors_rows,1..eigenvectors_cols); right_eigenvectors : Real_Matrix (1..eigenvectors_rows,1..eigenvectors_cols); short_vector : Real_Vector (1..1); return_code : Integer; i,j : integer; begin matrix:= (( -1.01, 0.86, -4.60, 3.31, -4.81 ), ( 3.98, 0.53, -7.04, 5.29, 3.55 ), ( 3.30, 8.26, -3.89, 8.20, -1.51 ), ( 4.43, 4.96, -7.66, -7.33, 6.18 ), ( 7.31, -6.43, -6.16, 2.47, 5.58 )); GEEV ( JOBVL => 'V', JOBVR => 'V', A => matrix, LDA => matrix_rows, N => matrix_cols, WR => real_eigenvalues, WI => imag_eigenvalues, VL => left_eigenvectors, VR => right_eigenvectors, LDVL => eigenvectors_rows, LDVR => eigenvectors_rows, WORK => short_vector, LWORK => -1, INFO => return_code ); declare work_vector_rows : Integer := Integer( short_vector(1) ); work_vector : Real_Vector (1 .. work_vector_rows); begin GEEV ( JOBVL => 'V', JOBVR => 'V', A => matrix, N => matrix_cols, LDA => matrix_rows, WR => real_eigenvalues, WI => imag_eigenvalues, VL => left_eigenvectors, VR => right_eigenvectors, LDVL => eigenvectors_rows, LDVR => eigenvectors_rows, WORK => work_vector, LWORK => work_vector_rows, INFO => return_code ); end; if (return_code /= 0) then Put ("DGEEV failed, the return code was : "); Put ( return_code ); New_line; else Put_line("The eigenvalues"); for i in real_eigenvalues'range loop if imag_eigenvalues(i) /= 0.0e0 then put("("); put(real_eigenvalues(i),3,3,0); put(","); put(imag_eigenvalues(i),3,3,0); put(") "); else put(real_eigenvalues(i),3,3,0); put(" "); end if; end loop; new_line; new_line; Put_line("The left eigenvectors"); i := 1; while i <= eigenvectors_rows loop j := 1; while j <= eigenvectors_cols loop if imag_eigenvalues(j) /= 0.0e0 then put("("); put(left_eigenvectors(i,j),3,3,0); put(","); put(left_eigenvectors(i,j+1),3,3,0); put(") ("); put(left_eigenvectors(i,j),3,3,0); put(","); put(-left_eigenvectors(i,j+1),3,3,0); put(") "); j := j+2; else put(left_eigenvectors(i,j),3,3,0); put(" "); j := j+1; end if; end loop; i := i+1; new_line; end loop; new_line; Put_line("The right eigenvectors"); i := 1; while i <= eigenvectors_rows loop j := 1; while j <= eigenvectors_cols loop if imag_eigenvalues(j) /= 0.0e0 then put("("); put(right_eigenvectors(i,j),3,3,0); put(","); put(right_eigenvectors(i,j+1),3,3,0); put(") ("); put(right_eigenvectors(i,j),3,3,0); put(","); put(-right_eigenvectors(i,j+1),3,3,0); put(") "); j := j+2; else put(right_eigenvectors(i,j),3,3,0); put(" "); j := j+1; end if; end loop; i := i+1; new_line; end loop; end if; end tdgeev;
src/main/java/it/univr/main/MuJs.g4
danieltinazzi/mu-js
2
2859
<filename>src/main/java/it/univr/main/MuJs.g4 grammar MuJs; ASG: '='; NAN: 'NaN' ; BOOL: 'true' | 'false'; SEMICOLON: ';'; ID: [a-z]+ ; SIGN: '+' | '-'; INT: SIGN? [0-9]+ ; STRING: '"' ~('\r' | '\n' | '"')* '"' | '\'' ~('\r' | '\n' )* '\''; LESS : '<' ; program: stmt EOF #ProgramExecution ; val: INT #Integer | BOOL #Boolean | STRING #String | NAN #NaN ; expression: expression '.' 'substring' '(' expression ',' expression ')' #Substring | expression '.' 'charAt' '(' expression ')' #CharAt | expression '.' 'indexOf' '(' expression ')' #IndexOf | expression '.' 'length' #Length | '(' expression ')' #Parenthesis | expression '==' expression #Equals | ID #Identifier | val #PrimitiveValue | expression '+' expression #Sum | expression '-' expression #Diff | expression '*' expression #Mul | expression '/' expression #Div | expression '>' expression #Greater | expression LESS expression #Less | expression '&&' expression #And | expression '||' expression #Or | '!' expression #Not ; stmt: ID ASG expression SEMICOLON #AssignmentStmt | 'if' '(' expression ')' block 'else' block #IfStmt | 'while' '(' expression ')' block #WhileStmt | block #BlockStmt | stmt stmt #Composition ; block: '{' '}' | '{' stmt '}' ; WS: [ \r\n\t] + -> skip ;
libsrc/gfx/wide/w_unplot.asm
ahjelm/z88dk
640
85801
<gh_stars>100-1000 ; ----- void unplot(int x, int y) IF !__CPU_INTEL__ && !__CPU_GBZ80__ SECTION code_graphics PUBLIC unplot PUBLIC _unplot EXTERN asm_unplot .unplot ._unplot pop af pop de ; y pop hl ; x push hl push de push af jp asm_unplot ENDIF
poker-hands/avr-asm/main.asm
matthewphilyaw/lunchtime-katas
0
17775
<filename>poker-hands/avr-asm/main.asm .include "tn2313def.inc" .equ baud = 115200 .equ F_CPU = 14745600 .def trbuf = r18 rjmp reset reti ; unused interrupt reti ; unused interrupt reti ; unused interrupt reti ; unused interrupt reti ; unused interrupt reti ; unused interrupt reti ; unused interrupt reti ; unused interrupt reti ; unused interrupt reti ; unused interrupt reti ; unused interrupt reti ; unused interrupt reti ; unused interrupt reti ; unused interrupt reti ; unused interrupt reti ; unused interrupt reti ; unused interrupt reti ; unused interrupt reset: ldi r16, lo8(RAMEND) out SPL, r16 rjmp main usart_init: ldi r16, (1 << DDD1) ; Ensure TX pin is set to output out DDRD, r16 ldi r17, hi8(F_CPU/(16*baud)-1) ldi r16, lo8(F_CPU/(16*baud)-1) out UBRRH, r17 out UBRRL, r16 ldi r16, (1 << RXEN)|(1 << TXEN) ; Enable receiver and transmitter out UCSRB, r16 ldi r16, (0 << USBS)|(3 << UCSZ0) out UCSRC, r16 ret tx: sbis UCSRA, UDRE rjmp tx out UDR, trbuf ret rx: sbis UCSRA, RXC rjmp rx in trbuf, UDR ret main: RCALL usart_init rjmp echo echo: RCALL rx RCALL tx rjmp echo
programs/oeis/258/A258650.asm
neoneye/loda
22
101863
; A258650: Tenth arithmetic derivative of n. ; 0,0,0,0,4,0,0,0,8592,0,0,0,20096,0,0,3424,70464,0,0,0,16304,0,0,0,32624,0,1520,27,70464,0,0,0,235072,0,0,8592,47872,0,0,20096,24640,0,0,0,65264,8592,0,0,130544,0,3424,8144,47872,0,57996,20096,198656,0,0,0,198656,0,0,3120,1012858880,0,0,0,84608,752,0,0,296256,0,8592,8592,235072,0,0,0,705280,135648,0,0,2902784,0,3424,70464,12976128,0,16304,8144,1094656,0,0,16304,5474304,0,0,3424 seq $0,258649 ; Ninth arithmetic derivative of n. seq $0,3415 ; a(n) = n' = arithmetic derivative of n: a(0) = a(1) = 0, a(prime) = 1, a(mn) = m*a(n) + n*a(m).
ffight/lcs/container/3E.asm
zengfr/arcade_game_romhacking_sourcecode_top_secret_data
6
80532
<reponame>zengfr/arcade_game_romhacking_sourcecode_top_secret_data copyright zengfr site:http://github.com/zengfr/romhack 003A02 movem.l D0-D3, -(A6) 003A06 movem.l D0-D3, -(A6) 007A10 rts 007A36 rts [boss+3E, container+3E, enemy+3E] 009ACA dbra D5, $9ac8 copyright zengfr site:http://github.com/zengfr/romhack
Optics/Reflection.agda
cwjnkins/bft-consensus-agda
4
1299
{- Byzantine Fault Tolerant Consensus Verification in Agda, version 0.9. Copyright (c) 2020 Oracle and/or its affiliates. Licensed under the Universal Permissive License v 1.0 as shown at https://opensource.oracle.com/licenses/upl -} open import Function open import Data.Unit open import Data.List as List open import Data.Char open import Data.Nat as ℕ open import Data.Product open import Data.String open import Relation.Nullary using (Dec; yes; no) open import Category.Functor open import Reflection open import Optics.Functorial module Optics.Reflection where private tcMapM : {A B : Set} → (A → TC B) → List A → TC (List B) tcMapM f [] = return [] tcMapM f (x ∷ xs) = do y ← f x ys ← tcMapM f xs return (y ∷ ys) count : ℕ → List ℕ count 0 = [] count (suc n) = 0 ∷ List.map suc (count n) List-last : {A : Set} → A → List A → A List-last d [] = d List-last d (x ∷ []) = x List-last d (x ∷ xs) = List-last d xs ai : {A : Set} → A → Arg A ai x = arg (arg-info visible relevant) x record MetaLens : Set where constructor ml field mlName : Name mlType : Type mkDef : Term -- Example call: -- Let: -- > record Test : Set where -- > constructor test -- > field -- > firstField : ℕ -- > secondField : Maybe String -- -- Then; consider the call: -- -- > go Test test [x , y] 2 secondField -- -- What we want to generate is: -- -- -- > secondField : Lens Name (Maybe String) -- > secondField = lens (λ { F rf f (test x y) -- > → (RawFunctor._<$>_ rf) -- > (λ y' → test x y') (f y) -- > }) -- -- Which is captured by the MetaLens go : Name → Name → List String → ℕ → (Name × Arg Name) → TC MetaLens go rec cName vars curr (lensName , (arg _ fld)) = do -- Get the type of the field; in our case: Mabe String tyFld ← (getType fld >>= parseTy) -- compute the full lens type: Lens Test (Maybe String) let finalTy = def (quote Lens) (ai (def rec []) ∷ ai tyFld ∷ []) -- compute the clause of the lens: return (ml lensName finalTy genTerm) where parseTy : Type → TC Type parseTy (pi _ (abs _ t)) = parseTy t parseTy (var (suc x) i) = return (var x i) parseTy r = return r -- We might be at field 0; but our de Bruijn index depends -- on the total of fields curr' : ℕ curr' = List.length vars ∸ suc curr testxy : Pattern testxy = Pattern.con cName (List.map (ai ∘ Pattern.var) vars) myabs : Term → Term myabs t = pat-lam (Clause.clause (ai (Pattern.var "F") ∷ ai (Pattern.var "rf") ∷ ai (Pattern.var "f") ∷ ai testxy ∷ []) t ∷ []) [] myvar : ℕ → List (Arg Term) → Term myvar n args = var (List.length vars + n) args RawFunctor-<$>-var2 : Term → Term → Term RawFunctor-<$>-var2 testxy' fy = let rawf = quote RawFunctor._<$>_ in def rawf (ai (myvar 1 []) ∷ (ai testxy') ∷ (ai fy) ∷ []) f-varN : Term f-varN = myvar 0 (ai (var curr' []) ∷ []) xy' : List (Arg Term) xy' = let xs = reverse (count (List.length vars)) in List.map (λ m → ai (var (suc+set0 m) [])) xs where suc+set0 : ℕ → ℕ suc+set0 m = case m ℕ.≟ curr' of λ { (no _) → suc m ; (yes _) → zero } testxy' : Term testxy' = lam visible (abs "y'" (con cName xy')) -- We will now generate the RHS of second field: lens (λ { F rf ⋯ genTerm : Term genTerm = con (quote lens) (ai (myabs (RawFunctor-<$>-var2 testxy' f-varN)) ∷ []) mkLensFrom : Name → Definition → List Name → TC (List MetaLens) mkLensFrom rec (record-type c fs) lnames = do let xs = count (List.length fs) let vars = List.map (flip Data.String.replicate 'v' ∘ suc) xs tcMapM (uncurry (go rec c vars)) (List.zip xs (List.zip lnames fs)) mkLensFrom _ _ _ = typeError (strErr "Not a record" ∷ []) defineLens : MetaLens → TC ⊤ defineLens (ml n ty trm) = do -- typeError (nameErr n ∷ strErr "%%" ∷ termErr ty ∷ strErr "%%" ∷ termErr trm ∷ []) declareDef (arg (arg-info visible relevant) n) ty defineFun n (Clause.clause [] trm ∷ []) mkLens : Name → List Name → TC ⊤ mkLens rec lenses = do r ← getDefinition rec res ← mkLensFrom rec r lenses tcMapM defineLens res return tt -- usage will be: unquoteDecl = mkLens RecordName
programs/oeis/330/A330034.asm
karttu/loda
1
2485
; A330034: a(n) = sign(cos(n)). ; 1,1,-1,-1,-1,1,1,1,-1,-1,-1,1,1,1,1,-1,-1,-1,1,1,1,-1,-1,-1,1,1,1,-1,-1,-1,1,1,1,-1,-1,-1,-1,1,1,1,-1,-1,-1,1,1,1,-1,-1,-1,1,1,1,-1,-1,-1,1,1,1,1,-1,-1,-1,1,1,1,-1,-1,-1,1,1,1,-1,-1,-1,1,1,1,-1 sub $0,1 cal $0,82964 ; a(n) = m given by arctan(tan(n)) = n - m*Pi. gcd $0,2 mul $0,2 sub $0,1 mov $1,$0 sub $1,2
oeis/334/A334958.asm
neoneye/loda-programs
11
241415
<gh_stars>10-100 ; A334958: GCD of consecutive terms of the factorial times the alternating harmonic series. ; Submitted by <NAME> ; 1,1,1,2,2,12,12,48,144,1440,1440,17280,17280,241920,18144000,145152000,145152000,2612736000,2612736000,10450944000,219469824000,4828336128000,4828336128000,115880067072000,579400335360000,15064408719360000,135579678474240000,26573616980951040000,26573616980951040000 mov $1,1 lpb $0 mov $2,$0 add $3,$1 mul $3,$0 sub $0,1 add $2,1 mul $1,$2 mul $3,-1 lpe gcd $3,$1 mov $0,$3
Read Only/gdb-7.12.1/gdb/testsuite/gdb.ada/operator_bp/ops.adb
samyvic/OS-Project
0
17140
-- Copyright 2012-2017 Free Software Foundation, Inc. -- -- 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 3 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, see <http://www.gnu.org/licenses/>. package body Ops is function Make (X: Natural) return Int is begin return Int (X); end Make; function "+" (I1, I2 : Int) return Int is begin return Int (IntRep (I1) + IntRep (I2)); end; function "-" (I1, I2 : Int) return Int is begin return Int (IntRep (I1) - IntRep (I2)); end; function "*" (I1, I2 : Int) return Int is begin return Int (IntRep (I1) * IntRep (I2)); end; function "/" (I1, I2 : Int) return Int is begin return Int (IntRep (I1) / IntRep (I2)); end; function "mod" (I1, I2 : Int) return Int is begin return Int (IntRep (I1) mod IntRep (I2)); end; function "rem" (I1, I2 : Int) return Int is begin return Int (IntRep (I1) rem IntRep (I2)); end; function "**" (I1, I2 : Int) return Int is Result : IntRep := 1; begin for J in 1 .. IntRep (I2) loop Result := IntRep (I1) * Result; end loop; return Int (Result); end; function "<" (I1, I2 : Int) return Boolean is begin return IntRep (I1) < IntRep (I2); end; function "<=" (I1, I2 : Int) return Boolean is begin return IntRep (I1) <= IntRep (I2); end; function ">" (I1, I2 : Int) return Boolean is begin return IntRep (I1) > IntRep (I2); end; function ">=" (I1, I2 : Int) return Boolean is begin return IntRep (I1) >= IntRep (I2); end; function "=" (I1, I2 : Int) return Boolean is begin return IntRep (I1) = IntRep (I2); end; function "and" (I1, I2 : Int) return Int is begin return Int (IntRep (I1) and IntRep (I2)); end; function "or" (I1, I2 : Int) return Int is begin return Int (IntRep (I1) or IntRep (I2)); end; function "xor" (I1, I2 : Int) return Int is begin return Int (IntRep (I1) xor IntRep (I2)); end; function "&" (I1, I2 : Int) return Int is begin return Int (IntRep (I1) and IntRep (I2)); end; function "abs" (I1 : Int) return Int is begin return Int (abs IntRep (I1)); end; function "not" (I1 : Int) return Int is begin return Int (not IntRep (I1)); end; function "+" (I1 : Int) return Int is begin return Int (IntRep (I1)); end; function "-" (I1 : Int) return Int is begin return Int (-IntRep (I1)); end; procedure Dummy (I1 : Int) is begin null; end Dummy; procedure Dummy (B1 : Boolean) is begin null; end Dummy; end Ops;
agda/Heapsort/Impl1.agda
bgbianchi/sorting
6
1713
open import Relation.Binary.Core module Heapsort.Impl1 {A : Set} (_≤_ : A → A → Set) (tot≤ : Total _≤_) (trans≤ : Transitive _≤_) where open import BBHeap _≤_ hiding (flatten) open import BBHeap.Heapify _≤_ tot≤ trans≤ open import BHeap _≤_ hiding (flatten) open import BHeap.Order _≤_ open import BHeap.Order.Properties _≤_ open import BHeap.Properties _≤_ open import Bound.Lower A open import Data.List open import OList _≤_ flatten : {b : Bound}(h : BHeap b) → Acc h → OList b flatten lf _ = onil flatten (nd {x = x} b≤x l r) (acc rs) = :< b≤x (flatten (merge tot≤ l r) (rs (merge tot≤ l r) (lemma-merge≤′ tot≤ b≤x l r))) heapsort : List A → OList bot heapsort xs = flatten (relax (heapify xs)) (≺-wf (relax (heapify xs)))
gcc-gcc-7_3_0-release/gcc/ada/a-cofove.ads
best08618/asylo
7
27833
------------------------------------------------------------------------------ -- -- -- GNAT LIBRARY COMPONENTS -- -- -- -- A D A . C O N T A I N E R S . F O R M A L _ V E C T O R S -- -- -- -- S p e c -- -- -- -- Copyright (C) 2004-2015, Free Software Foundation, Inc. -- -- -- -- This specification is derived from the Ada Reference Manual for use with -- -- GNAT. The copyright notice above, and the license provisions that follow -- -- apply solely to the contents of the part following the private keyword. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. -- -- -- -- As a special exception under Section 7 of GPL version 3, you are granted -- -- additional permissions described in the GCC Runtime Library Exception, -- -- version 3.1, as published by the Free Software Foundation. -- -- -- -- You should have received a copy of the GNU General Public License and -- -- a copy of the GCC Runtime Library Exception along with this program; -- -- see the files COPYING3 and COPYING.RUNTIME respectively. If not, see -- -- <http://www.gnu.org/licenses/>. -- ------------------------------------------------------------------------------ -- This spec is derived from package Ada.Containers.Bounded_Vectors in the Ada -- 2012 RM. The modifications are meant to facilitate formal proofs by making -- it easier to express properties, and by making the specification of this -- unit compatible with SPARK 2014. Note that the API of this unit may be -- subject to incompatible changes as SPARK 2014 evolves. generic type Index_Type is range <>; type Element_Type is private; with function "=" (Left, Right : Element_Type) return Boolean is <>; Bounded : Boolean := True; -- If True, the containers are bounded; the initial capacity is the maximum -- size, and heap allocation will be avoided. If False, the containers can -- grow via heap allocation. package Ada.Containers.Formal_Vectors with SPARK_Mode is pragma Annotate (GNATprove, External_Axiomatization); pragma Annotate (CodePeer, Skip_Analysis); subtype Extended_Index is Index_Type'Base range Index_Type'First - 1 .. Index_Type'Min (Index_Type'Base'Last - 1, Index_Type'Last) + 1; No_Index : constant Extended_Index := Extended_Index'First; subtype Capacity_Range is Count_Type range 0 .. Count_Type (Index_Type'Last - Index_Type'First + 1); type Vector (Capacity : Capacity_Range) is limited private with Default_Initial_Condition => Is_Empty (Vector); -- In the bounded case, Capacity is the capacity of the container, which -- never changes. In the unbounded case, Capacity is the initial capacity -- of the container, and operations such as Reserve_Capacity and Append can -- increase the capacity. The capacity never shrinks, except in the case of -- Clear. -- -- Note that all objects of type Vector are constrained, including in the -- unbounded case; you can't assign from one object to another if the -- Capacity is different. function Empty_Vector return Vector; function "=" (Left, Right : Vector) return Boolean with Global => null; function To_Vector (New_Item : Element_Type; Length : Capacity_Range) return Vector with Global => null; function Capacity (Container : Vector) return Capacity_Range with Global => null, Post => Capacity'Result >= Container.Capacity; procedure Reserve_Capacity (Container : in out Vector; Capacity : Capacity_Range) with Global => null, Pre => (if Bounded then Capacity <= Container.Capacity); function Length (Container : Vector) return Capacity_Range with Global => null; function Is_Empty (Container : Vector) return Boolean with Global => null; procedure Clear (Container : in out Vector) with Global => null; -- Note that this reclaims storage in the unbounded case. You need to call -- this before a container goes out of scope in order to avoid storage -- leaks. In addition, "X := ..." can leak unless you Clear(X) first. procedure Assign (Target : in out Vector; Source : Vector) with Global => null, Pre => (if Bounded then Length (Source) <= Target.Capacity); function Copy (Source : Vector; Capacity : Capacity_Range := 0) return Vector with Global => null, Pre => (if Bounded then (Capacity = 0 or Length (Source) <= Capacity)); function Element (Container : Vector; Index : Index_Type) return Element_Type with Global => null, Pre => Index in First_Index (Container) .. Last_Index (Container); procedure Replace_Element (Container : in out Vector; Index : Index_Type; New_Item : Element_Type) with Global => null, Pre => Index in First_Index (Container) .. Last_Index (Container); procedure Append (Container : in out Vector; New_Item : Vector) with Global => null, Pre => (if Bounded then Length (Container) + Length (New_Item) <= Container.Capacity); procedure Append (Container : in out Vector; New_Item : Element_Type) with Global => null, Pre => (if Bounded then Length (Container) < Container.Capacity); procedure Delete_Last (Container : in out Vector) with Global => null; procedure Reverse_Elements (Container : in out Vector) with Global => null; procedure Swap (Container : in out Vector; I, J : Index_Type) with Global => null, Pre => I in First_Index (Container) .. Last_Index (Container) and then J in First_Index (Container) .. Last_Index (Container); function First_Index (Container : Vector) return Index_Type with Global => null; function First_Element (Container : Vector) return Element_Type with Global => null, Pre => not Is_Empty (Container); function Last_Index (Container : Vector) return Extended_Index with Global => null; function Last_Element (Container : Vector) return Element_Type with Global => null, Pre => not Is_Empty (Container); function Find_Index (Container : Vector; Item : Element_Type; Index : Index_Type := Index_Type'First) return Extended_Index with Global => null; function Reverse_Find_Index (Container : Vector; Item : Element_Type; Index : Index_Type := Index_Type'Last) return Extended_Index with Global => null; function Contains (Container : Vector; Item : Element_Type) return Boolean with Global => null; function Has_Element (Container : Vector; Position : Extended_Index) return Boolean with Global => null; generic with function "<" (Left, Right : Element_Type) return Boolean is <>; package Generic_Sorting with SPARK_Mode is function Is_Sorted (Container : Vector) return Boolean with Global => null; procedure Sort (Container : in out Vector) with Global => null; end Generic_Sorting; function First_To_Previous (Container : Vector; Current : Index_Type) return Vector with Ghost, Global => null, Pre => Current in First_Index (Container) .. Last_Index (Container); function Current_To_Last (Container : Vector; Current : Index_Type) return Vector with Ghost, Global => null, Pre => Current in First_Index (Container) .. Last_Index (Container); -- First_To_Previous returns a container containing all elements preceding -- Current (excluded) in Container. Current_To_Last returns a container -- containing all elements following Current (included) in Container. -- These two new functions can be used to express invariant properties in -- loops which iterate over containers. First_To_Previous returns the part -- of the container already scanned and Current_To_Last the part not -- scanned yet. private pragma SPARK_Mode (Off); pragma Inline (First_Index); pragma Inline (Last_Index); pragma Inline (Element); pragma Inline (First_Element); pragma Inline (Last_Element); pragma Inline (Replace_Element); pragma Inline (Contains); subtype Array_Index is Capacity_Range range 1 .. Capacity_Range'Last; type Elements_Array is array (Array_Index range <>) of Element_Type; function "=" (L, R : Elements_Array) return Boolean is abstract; type Elements_Array_Ptr is access all Elements_Array; type Vector (Capacity : Capacity_Range) is limited record -- In the bounded case, the elements are stored in Elements. In the -- unbounded case, the elements are initially stored in Elements, until -- we run out of room, then we switch to Elements_Ptr. Last : Extended_Index := No_Index; Elements_Ptr : Elements_Array_Ptr := null; Elements : aliased Elements_Array (1 .. Capacity); end record; -- The primary reason Vector is limited is that in the unbounded case, once -- Elements_Ptr is in use, assignment statements won't work. "X := Y;" will -- cause X and Y to share state; that is, X.Elements_Ptr = Y.Elements_Ptr, -- so for example "Append (X, ...);" will modify BOTH X and Y. That would -- allow SPARK to "prove" things that are false. We could fix that by -- making Vector a controlled type, and override Adjust to make a deep -- copy, but finalization is not allowed in SPARK. -- -- Note that (unfortunately) this means that 'Old and 'Loop_Entry are not -- allowed on Vectors. function Empty_Vector return Vector is ((Capacity => 0, others => <>)); end Ada.Containers.Formal_Vectors;
libtool/src/gmp-6.1.2/mpn/x86_64/coreihwl/mullo_basecase.asm
kroggen/aergo
278
246117
<reponame>kroggen/aergo dnl AMD64 mpn_mullo_basecase optimised for Intel Haswell. dnl Contributed to the GNU project by <NAME>. dnl Copyright 2008, 2009, 2011-2013 Free Software Foundation, Inc. dnl This file is part of the GNU MP Library. dnl dnl The GNU MP Library is free software; you can redistribute it and/or modify dnl it under the terms of either: dnl dnl * the GNU Lesser General Public License as published by the Free dnl Software Foundation; either version 3 of the License, or (at your dnl option) any later version. dnl dnl or dnl dnl * the GNU General Public License as published by the Free Software dnl Foundation; either version 2 of the License, or (at your option) any dnl later version. dnl dnl or both in parallel, as here. dnl dnl The GNU MP Library is distributed in the hope that it will be useful, but dnl WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY dnl or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License dnl for more details. dnl dnl You should have received copies of the GNU General Public License and the dnl GNU Lesser General Public License along with the GNU MP Library. If not, dnl see https://www.gnu.org/licenses/. include(`../config.m4') C cycles/limb mul_2 addmul_2 C AMD K8,K9 n/a n/a C AMD K10 n/a n/a C AMD bull n/a n/a C AMD pile n/a n/a C AMD steam ? ? C AMD bobcat n/a n/a C AMD jaguar ? ? C Intel P4 n/a n/a C Intel core n/a n/a C Intel NHM n/a n/a C Intel SBR n/a n/a C Intel IBR n/a n/a C Intel HWL 1.86 2.15 C Intel BWL ? ? C Intel atom n/a n/a C VIA nano n/a n/a C The inner loops of this code are the result of running a code generation and C optimisation tool suite written by <NAME> and <NAME>. C TODO C * Implement proper cor2, replacing current cor0. C * Micro-optimise. C When playing with pointers, set this to $2 to fall back to conservative C indexing in wind-down code. define(`I',`$1') define(`rp', `%rdi') define(`up', `%rsi') define(`vp_param', `%rdx') define(`n', `%rcx') define(`vp', `%r8') define(`X0', `%r14') define(`X1', `%r15') define(`w0', `%r10') define(`w1', `%r11') define(`w2', `%r12') define(`w3', `%r13') define(`i', `%rbp') define(`v0', `%r9') define(`v1', `%rbx') C rax rbx rcx rdx rdi rsi rbp r8 r9 r10 r11 r12 r13 r14 r15 ABI_SUPPORT(DOS64) ABI_SUPPORT(STD64) ASM_START() TEXT ALIGN(32) PROLOGUE(mpn_mullo_basecase) FUNC_ENTRY(4) mov vp_param, vp mov (up), %rdx cmp $4, n jb L(small) push %rbx push %rbp push %r12 push %r13 mov (vp), v0 mov 8(vp), v1 lea 2(n), i shr $2, i neg n add $2, n push up C put entry `up' on stack test $1, R8(n) jnz L(m2x1) L(m2x0):mulx( v0, w0, w3) xor R32(w2), R32(w2) test $2, R8(n) jz L(m2b2) L(m2b0):lea -8(rp), rp lea -8(up), up jmp L(m2e0) L(m2b2):lea -24(rp), rp lea 8(up), up jmp L(m2e2) L(m2x1):mulx( v0, w2, w1) xor R32(w0), R32(w0) test $2, R8(n) jnz L(m2b3) L(m2b1):jmp L(m2e1) L(m2b3):lea -16(rp), rp lea -16(up), up jmp L(m2e3) ALIGN(16) L(m2tp):mulx( v1, %rax, w0) add %rax, w2 mov (up), %rdx mulx( v0, %rax, w1) adc $0, w0 add %rax, w2 adc $0, w1 add w3, w2 L(m2e1):mov w2, (rp) adc $0, w1 mulx( v1, %rax, w2) add %rax, w0 mov 8(up), %rdx adc $0, w2 mulx( v0, %rax, w3) add %rax, w0 adc $0, w3 add w1, w0 L(m2e0):mov w0, 8(rp) adc $0, w3 mulx( v1, %rax, w0) add %rax, w2 mov 16(up), %rdx mulx( v0, %rax, w1) adc $0, w0 add %rax, w2 adc $0, w1 add w3, w2 L(m2e3):mov w2, 16(rp) adc $0, w1 mulx( v1, %rax, w2) add %rax, w0 mov 24(up), %rdx adc $0, w2 mulx( v0, %rax, w3) add %rax, w0 adc $0, w3 add w1, w0 lea 32(up), up L(m2e2):mov w0, 24(rp) adc $0, w3 dec i lea 32(rp), rp jnz L(m2tp) L(m2ed):mulx( v1, %rax, w0) add %rax, w2 mov (up), %rdx mulx( v0, %rax, w1) add w2, %rax add w3, %rax mov %rax, (rp) mov (%rsp), up C restore `up' to beginning lea 16(vp), vp lea 8(rp,n,8), rp C put back rp to old rp + 2 add $2, n jge L(cor1) push %r14 push %r15 L(outer): mov (vp), v0 mov 8(vp), v1 lea (n), i sar $2, i mov (up), %rdx test $1, R8(n) jnz L(bx1) L(bx0): mov (rp), X1 mov 8(rp), X0 mulx( v0, %rax, w3) add %rax, X1 adc $0, w3 mulx( v1, %rax, w0) add %rax, X0 adc $0, w0 mov 8(up), %rdx mov X1, (rp) mulx( v0, %rax, w1) test $2, R8(n) jz L(b2) L(b0): lea 8(rp), rp lea 8(up), up jmp L(lo0) L(b2): mov 16(rp), X1 lea 24(rp), rp lea 24(up), up jmp L(lo2) L(bx1): mov (rp), X0 mov 8(rp), X1 mulx( v0, %rax, w1) add %rax, X0 mulx( v1, %rax, w2) adc $0, w1 mov X0, (rp) add %rax, X1 adc $0, w2 mov 8(up), %rdx test $2, R8(n) jnz L(b3) L(b1): lea 16(up), up lea 16(rp), rp jmp L(lo1) L(b3): mov 16(rp), X0 lea 32(up), up mulx( v0, %rax, w3) inc i jz L(cj3) jmp L(lo3) ALIGN(16) L(top): mulx( v0, %rax, w3) add w0, X1 adc $0, w2 L(lo3): add %rax, X1 adc $0, w3 mulx( v1, %rax, w0) add %rax, X0 adc $0, w0 lea 32(rp), rp add w1, X1 mov -16(up), %rdx mov X1, -24(rp) adc $0, w3 add w2, X0 mov -8(rp), X1 mulx( v0, %rax, w1) adc $0, w0 L(lo2): add %rax, X0 mulx( v1, %rax, w2) adc $0, w1 add w3, X0 mov X0, -16(rp) adc $0, w1 add %rax, X1 adc $0, w2 add w0, X1 mov -8(up), %rdx adc $0, w2 L(lo1): mulx( v0, %rax, w3) add %rax, X1 adc $0, w3 mov (rp), X0 mulx( v1, %rax, w0) add %rax, X0 adc $0, w0 add w1, X1 mov X1, -8(rp) adc $0, w3 mov (up), %rdx add w2, X0 mulx( v0, %rax, w1) adc $0, w0 L(lo0): add %rax, X0 adc $0, w1 mulx( v1, %rax, w2) add w3, X0 mov 8(rp), X1 mov X0, (rp) mov 16(rp), X0 adc $0, w1 add %rax, X1 adc $0, w2 mov 8(up), %rdx lea 32(up), up inc i jnz L(top) L(end): mulx( v0, %rax, w3) add w0, X1 adc $0, w2 L(cj3): add %rax, X1 adc $0, w3 mulx( v1, %rax, w0) add %rax, X0 add w1, X1 mov -16(up), %rdx mov X1, 8(rp) adc $0, w3 add w2, X0 mulx( v0, %rax, w1) add X0, %rax add w3, %rax mov %rax, 16(rp) mov 16(%rsp), up C restore `up' to beginning lea 16(vp), vp lea 24(rp,n,8), rp C put back rp to old rp + 2 add $2, n jl L(outer) pop %r15 pop %r14 jnz L(cor0) L(cor1):mov (vp), v0 mov 8(vp), v1 mov (up), %rdx mulx( v0, %r12, %rbp) C u0 x v2 add (rp), %r12 C FIXME: rp[0] still available in reg? adc %rax, %rbp mov 8(up), %r10 imul v0, %r10 imul v1, %rdx mov %r12, (rp) add %r10, %rdx add %rbp, %rdx mov %rdx, 8(rp) pop %rax C deallocate `up' copy pop %r13 pop %r12 pop %rbp pop %rbx FUNC_EXIT() ret L(cor0):mov (vp), %r11 imul (up), %r11 add %rax, %r11 mov %r11, (rp) pop %rax C deallocate `up' copy pop %r13 pop %r12 pop %rbp pop %rbx FUNC_EXIT() ret ALIGN(16) L(small): cmp $2, n jae L(gt1) L(n1): imul (vp), %rdx mov %rdx, (rp) FUNC_EXIT() ret L(gt1): ja L(gt2) L(n2): mov (vp), %r9 mulx( %r9, %rax, %rdx) mov %rax, (rp) mov 8(up), %rax imul %r9, %rax add %rax, %rdx mov 8(vp), %r9 mov (up), %rcx imul %r9, %rcx add %rcx, %rdx mov %rdx, 8(rp) FUNC_EXIT() ret L(gt2): L(n3): mov (vp), %r9 mulx( %r9, %rax, %r10) C u0 x v0 mov %rax, (rp) mov 8(up), %rdx mulx( %r9, %rax, %rdx) C u1 x v0 imul 16(up), %r9 C u2 x v0 add %rax, %r10 adc %rdx, %r9 mov 8(vp), %r11 mov (up), %rdx mulx( %r11, %rax, %rdx) C u0 x v1 add %rax, %r10 adc %rdx, %r9 imul 8(up), %r11 C u1 x v1 add %r11, %r9 mov %r10, 8(rp) mov 16(vp), %r10 mov (up), %rax imul %rax, %r10 C u0 x v2 add %r10, %r9 mov %r9, 16(rp) FUNC_EXIT() ret EPILOGUE()
libsrc/_DEVELOPMENT/arch/sms/PSGlib/z80/asm_PSGlib_GetStatus.asm
jpoikela/z88dk
640
13373
<reponame>jpoikela/z88dk ; ************************************************** ; PSGlib - C programming library for the SEGA PSG ; ( part of devkitSMS - github.com/sverx/devkitSMS ) ; ************************************************** INCLUDE "PSGlib_private.inc" SECTION code_clib SECTION code_PSGlib PUBLIC asm_PSGlib_GetStatus EXTERN __PSGlib_MusicStatus asm_PSGlib_GetStatus: ; unsigned char PSGGetStatus (void) ; returns the current status of music ; ; exit : l = music status ; ; uses : hl ld hl,(__PSGlib_MusicStatus) ret
src/main_master_itsybitsy.adb
hgrodriguez/spi_two_devices
0
29894
--=========================================================================== -- -- This is the main master program for the ItsyBitsy for the -- use cases: -- 3: Master ItsyBitsy -> Slave Pico -- 4: Master ItsyBitsy -> Slave ItsyBitsy -- --=========================================================================== -- -- Copyright 2022 (C) <NAME> -- -- SPDX-License-Identifier: BSD-3-Clause -- with HAL; with HAL.SPI; with RP.Clock; with RP.GPIO; with RP.SPI; with RP.Device; with ItsyBitsy; with SPI_Master_ItsyBitsy; procedure Main_Master_ItsyBitsy is THE_VALUE : constant HAL.UInt16 := HAL.UInt16 (16#55AA#); Data_Out_16 : HAL.SPI.SPI_Data_16b (1 .. 1) := (others => THE_VALUE); Status_Out : HAL.SPI.SPI_Status; Data_In_16 : HAL.SPI.SPI_Data_16b (1 .. 1) := (others => 0); Status_In : HAL.SPI.SPI_Status; Word : HAL.UInt16; use HAL; use HAL.SPI; use RP.SPI; begin RP.Clock.Initialize (ItsyBitsy.XOSC_Frequency); RP.Clock.Enable (RP.Clock.PERI); RP.Device.Timer.Enable; ItsyBitsy.LED.Configure (RP.GPIO.Output); SPI_Master_ItsyBitsy.Initialize; loop -- construct the values for the transmission for Higher_Byte in HAL.UInt8'Range loop for Lower_Byte in HAL.UInt8'Range loop Word := Shift_Left (Value => HAL.UInt16 (Higher_Byte), Amount => 8) or HAL.UInt16 (Lower_Byte); Data_Out_16 (1) := Word; SPI_Master_ItsyBitsy.SPI.Transmit (Data_Out_16, Status_Out); SPI_Master_ItsyBitsy.SPI.Receive (Data_In_16, Status_In, 0); RP.Device.Timer.Delay_Milliseconds (100); ItsyBitsy.LED.Toggle; end loop; end loop; end loop; end Main_Master_ItsyBitsy;
asm/examples/consolehl.asm
majacQ/retroputer
58
94544
<filename>asm/examples/consolehl.asm .segment data 0x03000 { str: .string "Hello, world! I'm alive! " .byte 0x00 crlf: .byte 13, 10 ## CR/LF .byte 0x00 } .segment code 0x02000 { # set up the stack for now ld sp, 0x02000 ld bp, 0x02000 ld a, data.crlf calls print # Write the string to the console a lot of times :-) ld c, 0x1000 ld a, data.str do { calls print dec c } while !c ld a, data.crlf calls print brk print: { push d # be nice citizens by saving values push x push a mov d, a # D must have the address to print ld x, 0x0000 # x is our index ld a, 0x0000 # zero A to get it ready for loding characters do { ld al, [D,X] # A should be the desired character cmp al, 0x00 # check if NUL if !z { out 0x82, al # write to CON:SEND ld al, 0b10 # indicate write out 0x80, al # ...on CON:CTRL do { in al, 0x83 # wait for ACK } while z inc x # next character continue } } while !z pop a pop x pop d # cleaned up, ready to go back ret } }
resources/scripts/api/builtwith.ads
Elon143/Amass
7,053
3023
<gh_stars>1000+ -- Copyright 2017-2021 <NAME>. All rights reserved. -- Use of this source code is governed by Apache 2 LICENSE that can be found in the LICENSE file. name = "BuiltWith" type = "api" function start() set_rate_limit(1) end function check() local c local cfg = datasrc_config() if cfg ~= nil then c = cfg.credentials end if (c ~= nil and c.key ~= nil and c.key ~= "") then return true end return false end function vertical(ctx, domain) local c local cfg = datasrc_config() if cfg ~= nil then c = cfg.credentials end if (c == nil or c.key == nil or c.key == "") then return end scrape(ctx, {['url']=build_url(domain, "v19", c.key)}) scrape(ctx, {['url']=build_url(domain, "rv1", c.key)}) end function build_url(domain, api, key) return "https://api.builtwith.com/" .. api .. "/api.json?LOOKUP=" .. domain .. "&KEY=" .. key end
gcc-gcc-7_3_0-release/gcc/testsuite/gnat.dg/test_oalign.adb
best08618/asylo
7
27823
<gh_stars>1-10 -- { dg-do run } with System.Storage_Elements; use System.Storage_Elements; with Oalign1, Oalign2; use Oalign1, Oalign2; procedure Test_Oalign is begin if Klunk1'Address mod Klunk1'Alignment /= 0 then raise Program_Error; end if; if Klunk2'Address mod Klunk2'Alignment /= 0 then raise Program_Error; end if; end;
ANTLRTestProjects/antbased/GlobalActions/grammar/GlobalParserActions2.g4
timboudreau/ANTLR4-Plugins-for-NetBeans
1
445
parser grammar GlobalParserActions2; options { tokenVocab=GlobalLexerActions1; } @header { /** * this is a Javadoc comment that will be added in the header of Java generated * class. */ } @members { protected int anAttributeAddedToParser = 0; public int getAnAttributeAddedToParser() { return anAttributeAddedToParser; } } rule1 : T;
Univalence/LeftCancellation.agda
JacquesCarette/pi-dual
14
9907
{-# OPTIONS --without-K #-} module LeftCancellation where open import Data.Empty using (⊥; ⊥-elim) open import Data.Unit using (⊤; tt) open import Data.Sum using (_⊎_; inj₁; inj₂) open import Data.Product using (_,_; proj₁; proj₂) open import Function renaming (_∘_ to _○_) open import Relation.Binary.PropositionalEquality using (_≡_; refl; cong) renaming (trans to _∘_; sym to !_) open import Equiv using (_∼_; _≃_; sym≃; inj≃; qinv; _●_) ------------------------------------------------------------------------------ -- This is WAY simpler than using 'with' and 'inspect'! record Ev {A B : Set} (f : A → B) (x : A) : Set where constructor ev field v : B fx=v : f x ≡ v mkV : {A B : Set} → (f : A → B) → (x : A) → Ev f x mkV f x = ev (f x) refl private bad-path : {A B : Set} → (a : A) → (b : B) → inj₁ a ≡ inj₂ b → ⊥ bad-path x y () ------------------------------------------------------------------------------ -- Very complex proof that we can cancel units on the left of ⊎ -- Some repeated patterns: inj₁≡ : {A B : Set} → {a b : A} → inj₁ {A = A} {B} a ≡ inj₁ b → a ≡ b inj₁≡ refl = refl inj₂≡ : {A B : Set} → {a b : B} → inj₂ {A = A} {B} a ≡ inj₂ b → a ≡ b inj₂≡ refl = refl -- use injectivity of equivalences to go from f x ≡ f y to x ≡ y injectivity : {A B : Set} (equiv : (⊤ ⊎ A) ≃ (⊤ ⊎ B)) → (a : A) → proj₁ equiv (inj₁ tt) ≡ proj₁ equiv (inj₂ a) → (inj₁ tt ≡ inj₂ a) injectivity equiv x path = inj≃ equiv (inj₁ tt) (inj₂ x) path left-cancel-⊤ : {A B : Set} → ((⊤ ⊎ A) ≃ (⊤ ⊎ B)) → A ≃ B left-cancel-⊤ {A} {B} (f₁ , qinv g₁ α₁ β₁) = let eqv = (f₁ , qinv g₁ α₁ β₁) in let v₁ = mkV f₁ (inj₁ tt) in let v₂ = mkV g₁ (inj₁ tt) in mk₁ {A} {B} eqv v₁ v₂ where mk₁ : {A B : Set} (e : (⊤ ⊎ A) ≃ (⊤ ⊎ B)) → let (f₁ , qinv g₁ α₁ β₁) = e in Ev f₁ (inj₁ tt) → Ev g₁ (inj₁ tt) → A ≃ B mk₁ {A} {B} (f , qinv g α β) (ev (inj₁ tt) eq₁) (ev (inj₁ tt) eq₂) = A≃B where equiv : (⊤ ⊎ A) ≃ (⊤ ⊎ B) equiv = (f , qinv g α β) elim-path : {X Y Z : Set} → (e : (⊤ ⊎ X) ≃ (⊤ ⊎ Y)) → (x : X) → (proj₁ e) (inj₁ tt) ≡ (proj₁ e) (inj₂ x) → Z elim-path e a path = ⊥-elim (bad-path tt a (injectivity e a path)) mkf : (a : A) → Ev f (inj₂ a) → B mkf a (ev (inj₁ tt) eq) = elim-path equiv a (eq₁ ∘ ! eq) mkf a (ev (inj₂ y) fx≡v) = y ff : A → B ff a = mkf a (mkV f (inj₂ a)) mkg : (b : B) → Ev g (inj₂ b) → A mkg b (ev (inj₁ tt) eq) = elim-path (sym≃ equiv) b (eq₂ ∘ ! eq) mkg b (ev (inj₂ a) eq) = a gg : B → A gg b = mkg b (mkV g (inj₂ b)) mkα : (b : B) → (e : Ev g (inj₂ b)) → ff (mkg b e) ≡ b mkα b (ev (inj₁ tt) eq) = elim-path (sym≃ equiv) b (eq₂ ∘ ! eq) mkα b (ev (inj₂ a) eq) = mkα' (mkV f (inj₂ a)) where mkα' : (ev : Ev f (inj₂ a)) → mkf a ev ≡ b mkα' (ev (inj₁ tt) eq₃) = elim-path equiv a (eq₁ ∘ ! eq₃) mkα' (ev (inj₂ _) eq₃) = inj₂≡ (! (cong f eq ∘ eq₃) ∘ α (inj₂ b)) αα : ff ○ gg ∼ id αα b = mkα b (mkV g (inj₂ b)) -- need to expand the definition of ff and gg "by hand" otherwise there is -- nowhere to 'stick in' the explicit e₁ and e₂ we have. mkβ : (a : A) → (e₁ : Ev f (inj₂ a)) → (e₂ : Ev g (inj₂ (mkf a e₁))) → mkg (mkf a e₁) e₂ ≡ a mkβ a (ev (inj₁ tt) eq) _ = elim-path equiv a (eq₁ ∘ ! eq) mkβ a (ev (inj₂ y) eq) (ev (inj₁ tt) eq₃) = elim-path (sym≃ equiv) y (eq₂ ∘ ! eq₃) mkβ a (ev (inj₂ _) eq) (ev (inj₂ _) eq₃) = inj₂≡ (((! eq₃) ∘ cong g (! eq)) ∘ β (inj₂ a)) ββ : gg ○ ff ∼ id ββ a = let ev₁ = mkV f (inj₂ a) in mkβ a ev₁ (mkV g (inj₂ (mkf a ev₁))) A≃B : A ≃ B A≃B = ff , qinv gg αα ββ mk₁ (f , qinv g α β) (ev (inj₁ tt) eq₁) (ev (inj₂ a) eq₂) = let e = (f , qinv g α β) in ⊥-elim (bad-path tt a (injectivity e a ((eq₁ ∘ ! (α (inj₁ tt))) ∘ cong f eq₂))) mk₁ (f , qinv g α β) (ev (inj₂ b) eq₁) (ev (inj₁ tt) eq₂) = ⊥-elim (bad-path tt b (((! α (inj₁ tt)) ∘ cong f eq₂) ∘ eq₁)) mk₁ {A} {B} (f , qinv g α β) (ev (inj₂ x) ftt=x) (ev (inj₂ y) gtt=y) = A≃B where equiv : (⊤ ⊎ A) ≃ (⊤ ⊎ B) equiv = (f , qinv g α β) elim-path : {X Y Z : Set} → (e : (⊤ ⊎ X) ≃ (⊤ ⊎ Y)) → (x : X) → (proj₁ e) (inj₁ tt) ≡ (proj₁ e) (inj₂ x) → Z elim-path e a path = ⊥-elim (bad-path tt a (injectivity e a path)) mkf : (a : A) → Ev f (inj₂ a) → B mkf a (ev (inj₁ tt) _) = x mkf a (ev (inj₂ y) _) = y ff : A → B ff a = mkf a (mkV f (inj₂ a)) mkg : (b : B) → Ev g (inj₂ b) → A mkg b (ev (inj₁ tt) eq) = y mkg b (ev (inj₂ a) eq) = a gg : B → A gg b = mkg b (mkV g (inj₂ b)) mkα : (b : B) → (e₁ : Ev g (inj₂ b)) → (e₂ : Ev f (inj₂ (mkg b e₁))) → mkf (mkg b e₁) e₂ ≡ b mkα b (ev (inj₁ tt) gb=tt) (ev (inj₁ tt) fgb=tt) = inj₂≡ ((! ftt=x ∘ ! cong f gb=tt) ∘ α (inj₂ b)) mkα b (ev (inj₁ tt) gb=tt) (ev (inj₂ y₁) fy=y₁) = elim-path (sym≃ equiv) y₁ ( ! ((! cong g fy=y₁ ∘ β (inj₂ y)) ∘ (! gtt=y))) mkα b (ev (inj₂ z) gb=z) (ev (inj₁ tt) fgb=tt) = elim-path (sym≃ equiv) b ((cong g (! fgb=tt) ∘ β (inj₂ z)) ∘ (! gb=z)) mkα b (ev (inj₂ z) gb=z) (ev (inj₂ z₂) fgb=z₂) = let path = (cong g (! fgb=z₂) ∘ β (inj₂ z)) ∘ ! gb=z in inj₂≡ (inj≃ (sym≃ equiv) (inj₂ z₂) (inj₂ b) path) αα : ff ○ gg ∼ id αα b = let ev₁ = mkV g (inj₂ b) in mkα b ev₁ (mkV f (inj₂ (mkg b ev₁))) -- need to expand the definition of ff and gg "by hand" -- otherwise there is nowhere to 'stick in' the explicit e₁ -- and e₂ we have. mkβ : (a : A) → (e₁ : Ev f (inj₂ a)) → (e₂ : Ev g (inj₂ (mkf a e₁))) → mkg (mkf a e₁) e₂ ≡ a mkβ a (ev (inj₁ tt) eq) (ev (inj₁ _) eq₃) = inj₂≡ (! (cong g eq ∘ gtt=y) ∘ β (inj₂ a)) mkβ a (ev (inj₁ tt) eq) (ev (inj₂ y₁) eq₃) = elim-path equiv y₁ ((ftt=x ∘ (! α (inj₂ x))) ∘ cong f eq₃) mkβ a (ev (inj₂ z) fa=z) (ev (inj₁ tt) eq₃) = elim-path equiv a ((cong f (! eq₃) ∘ α (inj₂ z)) ∘ (! fa=z) ) mkβ a (ev (inj₂ _) fa=y) (ev (inj₂ _) eq₃) = inj₂≡ (((! eq₃) ∘ cong g (! fa=y)) ∘ β (inj₂ a)) ββ : gg ○ ff ∼ id ββ a = let ev₁ = mkV f (inj₂ a) in mkβ a ev₁ (mkV g (inj₂ (mkf a ev₁))) A≃B : A ≃ B A≃B = ff , qinv gg αα ββ ------------------------------------------------------------------------------ open import Data.Nat using (ℕ; _+_) open import Data.Fin using (Fin) open import FinEquivPlusTimes using (module Plus; Fin1≃⊤) open Plus using (⊎≃+; +≃⊎) open import Equiv using (_⊎≃_; id≃) left-cancel-1 : {m n : ℕ} → (Fin (1 + m) ≃ Fin (1 + n)) → Fin m ≃ Fin n left-cancel-1 pf = left-cancel-⊤ ((Fin1≃⊤ ⊎≃ id≃) ● +≃⊎ ● (pf ● ⊎≃+) ● (sym≃ Fin1≃⊤ ⊎≃ id≃))
Tools/scripts/modTemplate/modManager.asm
steakknife/pcgeos
504
175107
<reponame>steakknife/pcgeos COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) GeoWorks @year -- All Rights Reserved PROJECT: PC/GEOS MODULE: @Appl -- @Mod FILE: @modManager.asm AUTHOR: @fullname, @fulldate REVISION HISTORY: Name Date Description ---- ---- ----------- @irev DESCRIPTION: Manager for this module. $Id$ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ _@Mod = 1 ;------------------------------------------------------------------------------ ; Include definitions. ;------------------------------------------------------------------------------ include geos.def ;------------------------------------------------------------------------------ ; Local variables. ;------------------------------------------------------------------------------ include @modVariable.def ;------------------------------------------------------------------------------ ; Here comes the code... ;------------------------------------------------------------------------------ @Mod segment resource include @modMain.asm ; Main code file for this module. @Mod ends
src/brackelib-stacks.adb
bracke/brackelib
1
6222
<gh_stars>1-10 package body Brackelib.Stacks is procedure Push (Self: in out Stack; Item : T) is begin Self.Container.Append (Item); end Push; procedure Clear (Self: in out Stack) is begin Self.Container.Clear; end Clear; function Top(Self: in Stack) return T is begin if Is_Empty (Self) then raise Stack_Empty; end if; return Last_Element (Self.Container); end Top; function Pop(Self: in out Stack) return T is Result: T; begin if Is_Empty (Self) then raise Stack_Empty; end if; Result := Last_Element (Self.Container); Delete_Last (Self.Container); return Result; end Pop; function Size (Self : Stack) return Natural is begin return Natural (Length (Self.Container)); end Size; function Is_Empty(Self: Stack) return Boolean is begin return Size(Self) = 0; end Is_Empty; end Brackelib.Stacks;
archive/agda-3/src/AgdaFeatureInstanceResolutionViaConstraint.agda
m0davis/oscar
0
8141
<gh_stars>0 {-# OPTIONS --allow-unsolved-metas #-} module AgdaFeatureInstanceResolutionViaConstraint where postulate A : Set postulate y : A Appy : (A → Set) → Set Appy H = H y record Foo (T : Set) : Set where field foo : T open Foo ⦃ … ⦄ public postulate S : A → Set record Failing : Set where no-eta-equality postulate instance FooInstance : {R : A → Set} → Foo (Appy R) works1 : Appy S works1 = foo ⦃ FooInstance {R = S} ⦄ fails2 : Appy S fails2 = foo ⦃ FooInstance {R = {!!}} ⦄ {- [21] (_R_11 y) =< (S y) : Set _12 := λ → Foo.foo FooInstance [blocked by problem 21] -} fails3 : Appy S fails3 = foo record Succeeds : Set where no-eta-equality record Bar (B : A → Set) : Set where no-eta-equality postulate instance BarInstance : Bar S instance FooInstance : {R : A → Set} ⦃ _ : Bar R ⦄ → Foo (Appy R) works1 : Appy S works1 = foo ⦃ FooInstance {R = S} ⦄ works2 : Appy S works2 = foo ⦃ FooInstance {R = {!!}} ⦄ works3 : Appy S works3 = foo
Transynther/x86/_processed/NONE/_xt_sm_/i3-7100_9_0x84_notsx.log_102_3151.asm
ljhsiun2/medusa
9
26515
.global s_prepare_buffers s_prepare_buffers: push %r12 push %r15 push %r8 push %rax push %rbx push %rcx push %rdi push %rsi lea addresses_normal_ht+0x11b29, %rbx nop nop nop xor %r12, %r12 movb (%rbx), %al nop nop nop and $19145, %r15 lea addresses_WT_ht+0x1e329, %rsi nop nop nop nop dec %rax and $0xffffffffffffffc0, %rsi vmovntdqa (%rsi), %ymm4 vextracti128 $1, %ymm4, %xmm4 vpextrq $0, %xmm4, %r12 nop nop nop nop inc %rax lea addresses_A_ht+0x19b29, %rbx clflush (%rbx) nop nop nop nop nop and %rcx, %rcx mov (%rbx), %r15d nop nop sub %rsi, %rsi lea addresses_UC_ht+0x1abb9, %rsi lea addresses_A_ht+0x1729, %rdi nop nop nop xor $31730, %rbx mov $3, %rcx rep movsq nop nop nop nop nop xor %r12, %r12 lea addresses_UC_ht+0x16ade, %rdi nop sub $30116, %rbx mov (%rdi), %r12d nop nop nop add %rcx, %rcx lea addresses_D_ht+0x6629, %rsi lea addresses_UC_ht+0xdac9, %rdi clflush (%rsi) nop nop cmp $47492, %r8 mov $115, %rcx rep movsl nop cmp $45528, %r8 lea addresses_UC_ht+0x15089, %r8 clflush (%r8) nop nop nop sub %r15, %r15 mov $0x6162636465666768, %rax movq %rax, %xmm4 movups %xmm4, (%r8) nop nop nop xor %rcx, %rcx pop %rsi pop %rdi pop %rcx pop %rbx pop %rax pop %r8 pop %r15 pop %r12 ret .global s_faulty_load s_faulty_load: push %r10 push %r13 push %r14 push %r9 push %rbx push %rcx push %rdi // Store lea addresses_RW+0x4329, %rbx nop nop cmp $39043, %rcx mov $0x5152535455565758, %r13 movq %r13, %xmm4 movups %xmm4, (%rbx) nop nop nop nop and $10631, %rdi // Store lea addresses_normal+0x64ab, %r14 nop nop nop nop xor $29806, %r10 mov $0x5152535455565758, %r13 movq %r13, %xmm3 vmovups %ymm3, (%r14) // Exception!!! nop nop mov (0), %r13 nop and $55513, %r9 // Store lea addresses_WC+0x7f49, %r14 nop nop nop xor $40743, %rdi movb $0x51, (%r14) nop nop nop nop nop and %rdi, %rdi // Store lea addresses_UC+0x18d29, %rbx add $56399, %r13 movl $0x51525354, (%rbx) nop nop nop and $1961, %r9 // Faulty Load lea addresses_RW+0x4329, %r9 nop nop nop nop nop add %r10, %r10 mov (%r9), %rcx lea oracles, %r10 and $0xff, %rcx shlq $12, %rcx mov (%r10,%rcx,1), %rcx pop %rdi pop %rcx pop %rbx pop %r9 pop %r14 pop %r13 pop %r10 ret /* <gen_faulty_load> [REF] {'src': {'type': 'addresses_RW', 'same': False, 'size': 4, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'} {'dst': {'type': 'addresses_RW', 'same': True, 'size': 16, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'} {'dst': {'type': 'addresses_normal', 'same': False, 'size': 32, 'congruent': 1, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'} {'dst': {'type': 'addresses_WC', 'same': False, 'size': 1, 'congruent': 2, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'} {'dst': {'type': 'addresses_UC', 'same': False, 'size': 4, 'congruent': 7, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'} [Faulty Load] {'src': {'type': 'addresses_RW', 'same': True, 'size': 8, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'} <gen_prepare_buffer> {'src': {'type': 'addresses_normal_ht', 'same': False, 'size': 1, 'congruent': 8, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'} {'src': {'type': 'addresses_WT_ht', 'same': False, 'size': 32, 'congruent': 10, 'NT': True, 'AVXalign': False}, 'OP': 'LOAD'} {'src': {'type': 'addresses_A_ht', 'same': False, 'size': 4, 'congruent': 11, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'} {'src': {'type': 'addresses_UC_ht', 'congruent': 3, 'same': False}, 'dst': {'type': 'addresses_A_ht', 'congruent': 9, 'same': False}, 'OP': 'REPM'} {'src': {'type': 'addresses_UC_ht', 'same': False, 'size': 4, 'congruent': 0, 'NT': False, 'AVXalign': True}, 'OP': 'LOAD'} {'src': {'type': 'addresses_D_ht', 'congruent': 8, 'same': False}, 'dst': {'type': 'addresses_UC_ht', 'congruent': 4, 'same': False}, 'OP': 'REPM'} {'dst': {'type': 'addresses_UC_ht', 'same': False, 'size': 16, 'congruent': 2, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'} {'58': 102} 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 */
libsrc/graphics/w_unplot_callee.asm
rjcorrig/z88dk
0
162505
<gh_stars>0 ; ; Z88 Graphics Functions - Small C+ stubs ; ; Written around the Interlogic Standard Library ; ; Stubs Written by <NAME> - 30/9/98 ; ; ; $Id: w_unplot_callee.asm $ ; ; CALLER LINKAGE FOR FUNCTION POINTERS ; ----- void unplot(int x, int y) SECTION code_graphics PUBLIC unplot_callee PUBLIC _unplot_callee PUBLIC ASMDISP_UNPLOT_CALLEE EXTERN swapgfxbk EXTERN __graphics_end EXTERN w_respixel .unplot_callee ._unplot_callee pop af pop de ; y pop hl ; x push af .asmentry push ix call swapgfxbk call w_respixel jp __graphics_end DEFC ASMDISP_UNPLOT_CALLEE = # asmentry - unplot_callee
src/util/oli/wm/amky.asm
olifink/qspread
0
244982
; multiple keystroke routine for application subwinodw include win1_mac_oli section utility xdef xwm_amky ;+++ ; multiple keystroke routine for application subwinodw ; ; Entry Exit ; d2.l keystroke code multiple keystroke code ; a1 ptr to keystroke counter (.l) preserved ;--- xwm_amky tst.l d2 ; any keystroke at all? beq.s exit cmp.b 3(a1),d2 ; counter for the same key? bne.s exit move.l (a1),d2 ; get old counter add.l #$100,d2 ; increase it exit move.l d2,(a1) ; store it again rts end
alloy4fun_models/trainstlt/models/1/TLeF7Ed3AeaQcobAE.als
Kaixi26/org.alloytools.alloy
0
5209
<filename>alloy4fun_models/trainstlt/models/1/TLeF7Ed3AeaQcobAE.als<gh_stars>0 open main pred idTLeF7Ed3AeaQcobAE_prop2 { always(eventually Green = Signal) } pred __repair { idTLeF7Ed3AeaQcobAE_prop2 } check __repair { idTLeF7Ed3AeaQcobAE_prop2 <=> prop2o }
open-in-dual-mode.applescript
hnsol/shimmering-obsidian
0
1918
<reponame>hnsol/shimmering-obsidian #!/usr/bin/env osascript if application "Obsidian" is not running then tell application "Obsidian" to activate delay 1.2 end if tell application "Obsidian" open location "obsidian://advanced-uri?commandid=workspace%253Acopy-path" delay 0.1 -- Short pause, to make sure the path has been copied to the clipboard open location "obsidian://advanced-uri?commandid=switcher%253Aopen" end tell delay 0.1 -- workaround to open in new pane -- see https://forum.obsidian.md/t/open-a-note-in-a-new-pane-using-the-command-palette-or-a-keyboard-shortcut/23303 tell application "System Events" tell process "Obsidian" set frontmost to true click menu item "Paste" of menu "Edit" of menu bar 1 end tell delay 0.1 keystroke return using {command down} end tell delay 0.3 -- toggle view mode tell application "Obsidian" to open location "obsidian://advanced-uri?commandid=markdown%253Atoggle-preview"
pmap.ads
M1nified/Ada-Samples
0
23190
with System; use System; package PMap is type vector is array (Integer range <>) of Integer; type vector_ptr is access vector; type func_type is access function (X : in Integer) return Integer; task type pmap_apply is entry PortIn(ValIn : in Integer; FuncIn : in not null func_type); entry PortOut(ValOut : out Integer); end pmap_apply; type pmap_apply_access is access pmap_apply; type pmap_applies is array(Integer range <>) of pmap_apply; type pmap_applies_access is access pmap_applies; task type pmap_task is entry PortIn(ValIn : in vector_ptr; FuncIn : in not null func_type); entry PortOut(ValOut : out vector_ptr); end pmap_task; type pmap_task_access is access pmap_task; type pmap_tasks is array(Integer range <>) of pmap_task; type pmap_tasks_access is access pmap_tasks; function pmap (List : in vector_ptr) return vector_ptr; end PMap;
Unused/queues.adb
SMerrony/dashera
23
21843
<filename>Unused/queues.adb -- Copyright (C) 2021 <NAME> -- Permission is hereby granted, free of charge, to any person obtaining a copy -- of this software and associated documentation files (the "Software"), to deal -- in the Software without restriction, including without limitation the rights -- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell -- copies of the Software, and to permit persons to whom the Software is -- furnished to do so, subject to the following conditions: -- The above copyright notice and this permission notice shall be included in -- all copies or substantial portions of the Software. -- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR -- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, -- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE -- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER -- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, -- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN -- THE SOFTWARE. with Ada.Containers; use Ada.Containers; package body Queues is procedure Keyboard_Enqueue (BA : in Byte_Arr) is begin Keyboard_Q.Enqueue (Byte_Arrs.To_Holder (BA)); end Keyboard_Enqueue; function Keyboard_Dequeue return Byte_Arr is BA_H : Byte_Arrs.Holder; begin Keyboard_Q.Dequeue (Element => BA_H); return Byte_Arrs.Element (BA_H); end Keyboard_Dequeue; function Keyboard_Data_Waiting return Boolean is begin return Keyboard_Q.Current_Use > 0; end Keyboard_Data_Waiting; end Queues;
Transynther/x86/_processed/US/_zr_/i9-9900K_12_0xca_notsx.log_8_420.asm
ljhsiun2/medusa
9
87912
<reponame>ljhsiun2/medusa .global s_prepare_buffers s_prepare_buffers: push %r10 push %r14 push %r9 push %rbp push %rbx push %rcx push %rdi push %rsi lea addresses_WT_ht+0x16832, %rsi lea addresses_WT_ht+0x6632, %rdi xor $42825, %r9 mov $100, %rcx rep movsb nop nop nop nop nop add $43642, %rbp lea addresses_UC_ht+0x113b2, %r14 nop nop nop nop nop cmp $59353, %rcx mov (%r14), %esi nop nop nop and %rsi, %rsi lea addresses_normal_ht+0x3232, %rcx nop cmp %rdi, %rdi movl $0x61626364, (%rcx) nop and $59319, %rcx lea addresses_normal_ht+0xf232, %rsi lea addresses_D_ht+0xea52, %rdi inc %r10 mov $63, %rcx rep movsw nop nop sub $19657, %r14 lea addresses_WT_ht+0x116e2, %rsi lea addresses_A_ht+0x61fa, %rdi nop nop nop add $14044, %rbx mov $111, %rcx rep movsl nop cmp %rdi, %rdi lea addresses_normal_ht+0x17a32, %r14 nop dec %r10 mov (%r14), %di nop sub $65502, %r14 lea addresses_normal_ht+0x58c2, %rbp nop nop nop nop nop add %r10, %r10 mov $0x6162636465666768, %r9 movq %r9, (%rbp) nop nop nop nop nop sub $60307, %r10 lea addresses_A_ht+0x6a12, %rsi lea addresses_UC_ht+0x3832, %rdi nop nop nop nop nop cmp $55678, %r10 mov $50, %rcx rep movsq nop nop nop nop inc %r9 lea addresses_UC_ht+0x19732, %r9 nop add $24544, %rsi movb $0x61, (%r9) inc %rdi lea addresses_D_ht+0x1e032, %rsi nop nop nop nop and $29388, %r10 mov (%rsi), %r14d nop nop and %r14, %r14 pop %rsi pop %rdi pop %rcx pop %rbx pop %rbp pop %r9 pop %r14 pop %r10 ret .global s_faulty_load s_faulty_load: push %r11 push %r13 push %r8 push %rbp push %rdx push %rsi // Store lea addresses_A+0x19ba6, %r13 clflush (%r13) nop nop nop xor %rdx, %rdx mov $0x5152535455565758, %rsi movq %rsi, (%r13) nop nop nop nop nop and $56868, %r11 // Faulty Load lea addresses_US+0x14632, %rbp nop nop nop nop add $54532, %r13 mov (%rbp), %r11w lea oracles, %rbp and $0xff, %r11 shlq $12, %r11 mov (%rbp,%r11,1), %r11 pop %rsi pop %rdx pop %rbp pop %r8 pop %r13 pop %r11 ret /* <gen_faulty_load> [REF] {'OP': 'LOAD', 'src': {'same': False, 'type': 'addresses_US', 'NT': False, 'AVXalign': False, 'size': 16, 'congruent': 0}} {'OP': 'STOR', 'dst': {'same': False, 'type': 'addresses_A', 'NT': False, 'AVXalign': True, 'size': 8, 'congruent': 0}} [Faulty Load] {'OP': 'LOAD', 'src': {'same': True, 'type': 'addresses_US', 'NT': False, 'AVXalign': False, 'size': 2, 'congruent': 0}} <gen_prepare_buffer> {'OP': 'REPM', 'src': {'same': True, 'congruent': 7, 'type': 'addresses_WT_ht'}, 'dst': {'same': False, 'congruent': 11, 'type': 'addresses_WT_ht'}} {'OP': 'LOAD', 'src': {'same': False, 'type': 'addresses_UC_ht', 'NT': True, 'AVXalign': False, 'size': 4, 'congruent': 7}} {'OP': 'STOR', 'dst': {'same': False, 'type': 'addresses_normal_ht', 'NT': False, 'AVXalign': True, 'size': 4, 'congruent': 10}} {'OP': 'REPM', 'src': {'same': False, 'congruent': 10, 'type': 'addresses_normal_ht'}, 'dst': {'same': False, 'congruent': 3, 'type': 'addresses_D_ht'}} {'OP': 'REPM', 'src': {'same': False, 'congruent': 3, 'type': 'addresses_WT_ht'}, 'dst': {'same': False, 'congruent': 0, 'type': 'addresses_A_ht'}} {'OP': 'LOAD', 'src': {'same': False, 'type': 'addresses_normal_ht', 'NT': False, 'AVXalign': True, 'size': 2, 'congruent': 10}} {'OP': 'STOR', 'dst': {'same': False, 'type': 'addresses_normal_ht', 'NT': True, 'AVXalign': False, 'size': 8, 'congruent': 4}} {'OP': 'REPM', 'src': {'same': False, 'congruent': 5, 'type': 'addresses_A_ht'}, 'dst': {'same': False, 'congruent': 6, 'type': 'addresses_UC_ht'}} {'OP': 'STOR', 'dst': {'same': False, 'type': 'addresses_UC_ht', 'NT': False, 'AVXalign': False, 'size': 1, 'congruent': 8}} {'OP': 'LOAD', 'src': {'same': True, 'type': 'addresses_D_ht', 'NT': False, 'AVXalign': False, 'size': 4, 'congruent': 9}} {'00': 8} 00 00 00 00 00 00 00 00 */
test/Succeed/RecordUpdateSyntax.agda
redfish64/autonomic-agda
3
14076
<reponame>redfish64/autonomic-agda module RecordUpdateSyntax where open import Common.Prelude open import Common.Equality data Param : Nat → Set where param : ∀ n → Param (suc n) record R : Set where field {i} : Nat p : Param i s : Nat old : R old = record { p = param 0; s = 1 } -- Simple update, it should be able to infer the type and the implicit. new : _ new = record old { p = param 1 } new′ : R new′ = record { i = 2; p = param 1; s = 1 } -- Here's a needlessly complex update. upd-p-s : _ → _ → _ → R upd-p-s zero s r = record r { p = param zero; s = s } upd-p-s (suc n) s r = record (upd-p-s n 0 r) { p = param n; s = s } eq₁ : new ≡ new′ eq₁ = refl eq₂ : upd-p-s zero 1 (record new { s = 0 }) ≡ old eq₂ = refl -- Check that instance arguments are handled properly postulate T : Nat → Set instance t0 : T 0 t1 : T 1 record Instance : Set where field n : Nat {{t}} : T n r0 : Instance r0 = record { n = 0 } r1 : Instance r1 = record r0 { n = 1 } check : Instance.t r1 ≡ t1 check = refl
src/sys/serialize/util-serialize-mappers.ads
RREE/ada-util
60
22780
----------------------------------------------------------------------- -- util-serialize-mappers -- Serialize objects in various formats -- Copyright (C) 2010, 2011, 2017 <NAME> -- Written by <NAME> (<EMAIL>) -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. ----------------------------------------------------------------------- with Ada.Strings.Unbounded; with Ada.Finalization; with Util.Beans.Objects; with Util.Log.Loggers; with Util.Stacks; with Util.Serialize.IO; with Util.Serialize.Contexts; package Util.Serialize.Mappers is Mapping_Error : exception; -- The <b>Field_Error</b> exception can be raised by a mapper to indicate that the field -- that was extracted is invalid. The exception message will be reported as an error message -- and the IO reader will be marked as in error. The IO reader will continue to read and -- process the mappings. Field_Error : exception; -- The <b>Field_Fatal_Error</b> exception is similar to the <b>Field_Error</b> exception. -- However the IO reader will report the error and immediately stop. Field_Fatal_Error : exception; -- ------------------------------ -- Mapping -- ------------------------------ -- The <b>Mapping</b> represents a rule component to establish a mapping -- when reading some format (XML, JSON). type Mapping is abstract tagged limited private; type Mapping_Access is access all Mapping'Class; -- ------------------------------ -- Mapper -- ------------------------------ -- The <b>Mapper</b> represents a node of the mapping tree. The mapping -- tree is walked horizontally to find siblings. It is walked vertically when -- entering or leaving an object. type Mapper is new Ada.Finalization.Limited_Controlled with private; type Mapper_Access is access all Mapper'Class; -- Execute the mapping operation on the object associated with the current context. -- The object is extracted from the context and the <b>Execute</b> operation is called. procedure Execute (Handler : in Mapper; Map : in Mapping'Class; Ctx : in out Util.Serialize.Contexts.Context'Class; Value : in Util.Beans.Objects.Object); -- Add a mapping for setting a member. When the attribute rule defined by <b>Path</b> -- is matched, the <b>Set_Member</b> procedure will be called with the value and the -- <b>Field</b> identification. -- Example: -- info/first_name matches: <info><first_name>...</first_name></info> -- info/a/b/name matches: <info><a><b><name>...</name></b></a></info> -- */a/b/name matches: <i><i><j><a><b><name>...</name></b></a></j></i></i> -- **/name matches: <i><name>...</name></i>, <b><c><name>...</name></c></b> procedure Add_Mapping (Into : in out Mapper; Path : in String; Map : in Mapping_Access); procedure Add_Mapping (Into : in out Mapper; Path : in String; Map : in Mapper_Access); -- Clone the <b>Handler</b> instance and get a copy of that single object. function Clone (Handler : in Mapper) return Mapper_Access; -- Set the name/value pair on the current object. For each active mapping, -- find whether a rule matches our name and execute it. procedure Set_Member (Handler : in Mapper; Name : in String; Value : in Util.Beans.Objects.Object; Attribute : in Boolean := False; Context : in out Util.Serialize.Contexts.Context'Class); procedure Start_Object (Handler : in Mapper; Context : in out Util.Serialize.Contexts.Context'Class; Name : in String); procedure Finish_Object (Handler : in Mapper; Context : in out Util.Serialize.Contexts.Context'Class; Name : in String); -- Find the mapper associated with the given name. -- Returns null if there is no mapper. function Find_Mapper (Controller : in Mapper; Name : in String; Attribute : in Boolean := False) return Mapper_Access; function Is_Proxy (Controller : in Mapper) return Boolean; -- Returns true if the mapper is a wildcard node (matches any element). function Is_Wildcard (Controller : in Mapper) return Boolean; -- Returns the mapping name. function Get_Name (Controller : in Mapper) return String; procedure Iterate (Controller : in Mapper; Process : not null access procedure (Map : in Mapper'Class)); -- Dump the mapping tree on the logger using the INFO log level. procedure Dump (Handler : in Mapper'Class; Log : in Util.Log.Loggers.Logger'Class; Prefix : in String := ""); type Processing is new Util.Serialize.Contexts.Context and Util.Serialize.IO.Reader with private; -- Start a document. procedure Start_Document (Stream : in out Processing); -- Start a new object associated with the given name. This is called when -- the '{' is reached. The reader must be updated so that the next -- <b>Set_Member</b> procedure will associate the name/value pair on the -- new object. procedure Start_Object (Handler : in out Processing; Name : in String; Logger : in out Util.Log.Logging'Class); -- Finish an object associated with the given name. The reader must be -- updated to be associated with the previous object. procedure Finish_Object (Handler : in out Processing; Name : in String; Logger : in out Util.Log.Logging'Class); procedure Start_Array (Handler : in out Processing; Name : in String; Logger : in out Util.Log.Logging'Class); procedure Finish_Array (Handler : in out Processing; Name : in String; Count : in Natural; Logger : in out Util.Log.Logging'Class); -- Set the name/value pair on the current object. For each active mapping, -- find whether a rule matches our name and execute it. procedure Set_Member (Handler : in out Processing; Name : in String; Value : in Util.Beans.Objects.Object; Logger : in out Util.Log.Logging'Class; Attribute : in Boolean := False); procedure Add_Mapping (Handler : in out Processing; Path : in String; Mapper : in Util.Serialize.Mappers.Mapper_Access); -- Dump the mapping tree on the logger using the INFO log level. procedure Dump (Handler : in Processing'Class; Logger : in Util.Log.Loggers.Logger'Class); private -- Find a path component representing a child mapper under <b>From</b> and -- identified by the given <b>Name</b>. If the mapper is not found, a new -- Mapper_Node is created. procedure Find_Path_Component (From : in out Mapper'Class; Name : in String; Root : in out Mapper_Access; Result : out Mapper_Access); -- Build the mapping tree that corresponds to the given <b>Path</b>. -- Each path component is represented by a <b>Mapper_Node</b> element. -- The node is created if it does not exists. procedure Build_Path (Into : in out Mapper'Class; Path : in String; Last_Pos : out Natural; Node : out Mapper_Access); type Mapping is abstract tagged limited record Mapper : Mapper_Access; Name : Ada.Strings.Unbounded.Unbounded_String; Is_Attribute : Boolean := False; end record; type Mapper is new Ada.Finalization.Limited_Controlled with record Next_Mapping : Mapper_Access := null; First_Child : Mapper_Access := null; Mapper : Mapper_Access := null; Mapping : Mapping_Access := null; Name : Ada.Strings.Unbounded.Unbounded_String; Is_Proxy_Mapper : Boolean := False; Is_Clone : Boolean := False; Is_Wildcard : Boolean := False; Is_Deep_Wildcard : Boolean := False; end record; -- Finalize the object and release any mapping. overriding procedure Finalize (Controller : in out Mapper); -- Implementation limitation: the max number of active mapping nodes MAX_NODES : constant Positive := 10; type Mapper_Access_Array is array (1 .. MAX_NODES) of Serialize.Mappers.Mapper_Access; procedure Push (Handler : in out Processing); -- Pop the context and restore the previous context when leaving an element procedure Pop (Handler : in out Processing); function Find_Mapper (Handler : in Processing; Name : in String) return Util.Serialize.Mappers.Mapper_Access; type Element_Context is record -- The object mapper being process. Object_Mapper : Util.Serialize.Mappers.Mapper_Access; -- The active mapping nodes. Active_Nodes : Mapper_Access_Array; end record; type Element_Context_Access is access all Element_Context; package Context_Stack is new Util.Stacks (Element_Type => Element_Context, Element_Type_Access => Element_Context_Access); type Processing is new Util.Serialize.Contexts.Context and Util.Serialize.IO.Reader with record Error_Flag : Boolean := False; Stack : Context_Stack.Stack; Mapping_Tree : aliased Mappers.Mapper; Current_Mapper : Util.Serialize.Mappers.Mapper_Access; end record; end Util.Serialize.Mappers;
wof/lcs/base/1CC.asm
zengfr/arcade_game_romhacking_sourcecode_top_secret_data
6
100593
copyright zengfr site:http://github.com/zengfr/romhack 012D94 tst.b ($1cc,A5) [base+1CD] 012D98 beq $12d9e 012FE0 beq $12fe6 01A610 dbra D1, $1a60e copyright zengfr site:http://github.com/zengfr/romhack
programs/oeis/166/A166544.asm
neoneye/loda
22
92026
<filename>programs/oeis/166/A166544.asm ; A166544: a(n) = 7*n - a(n-1), with n>1, a(1)=2. ; 2,12,9,19,16,26,23,33,30,40,37,47,44,54,51,61,58,68,65,75,72,82,79,89,86,96,93,103,100,110,107,117,114,124,121,131,128,138,135,145,142,152,149,159,156,166,163,173,170,180,177,187,184,194,191,201,198,208,205,215,212,222,219,229,226,236,233,243,240,250,247,257,254,264,261,271,268,278,275,285,282,292,289,299,296,306,303,313,310,320,317,327,324,334,331,341,338,348,345,355 mov $1,32 add $1,$0 div $0,2 mul $0,13 mul $1,10 sub $1,$0 sub $1,318 mov $0,$1
Structure/Operator/Monoid.agda
Lolirofle/stuff-in-agda
6
574
module Structure.Operator.Monoid where import Lvl open import Logic open import Logic.Predicate open import Structure.Setoid open import Structure.Operator.Properties hiding (associativity ; identityₗ ; identityᵣ) open import Structure.Operator open import Type -- A type and a binary operator using this type is a monoid when: -- • The operator is associative. -- • The operator have an identity in both directions. record Monoid {ℓ ℓₑ} {T : Type{ℓ}} ⦃ _ : Equiv{ℓₑ}(T) ⦄ (_▫_ : T → T → T) : Stmt{ℓ Lvl.⊔ ℓₑ} where constructor intro field ⦃ binary-operator ⦄ : BinaryOperator(_▫_) ⦃ associativity ⦄ : Associativity(_▫_) ⦃ identity-existence ⦄ : ∃(Identity(_▫_)) id = [∃]-witness identity-existence identity : Identity (_▫_) id identity = [∃]-proof identity-existence identityₗ : Identityₗ (_▫_) id identityₗ = Identity.left(identity) identityᵣ : Identityᵣ (_▫_) id identityᵣ = Identity.right(identity) identity-existenceₗ : ∃(Identityₗ(_▫_)) identity-existenceₗ = [∃]-intro id ⦃ identityₗ ⦄ identity-existenceᵣ : ∃(Identityᵣ(_▫_)) identity-existenceᵣ = [∃]-intro id ⦃ identityᵣ ⦄ record MonoidObject {ℓ ℓₑ} : Stmt{Lvl.𝐒(ℓ Lvl.⊔ ℓₑ)} where constructor intro field {T} : Type{ℓ} ⦃ equiv ⦄ : Equiv{ℓₑ}(T) _▫_ : T → T → T ⦃ monoid ⦄ : Monoid(_▫_) open Monoid(monoid) public
oeis/062/A062749.asm
neoneye/loda-programs
11
101619
<reponame>neoneye/loda-programs ; A062749: Sixth column (r=5) of FS(3) staircase array A062745. ; Submitted by <NAME>(s2.) ; 12,43,108,228,431,753,1239,1944,2934,4287,6094,8460,11505,15365,20193,26160,33456,42291,52896,65524,80451,97977,118427,142152,169530,200967,236898,277788,324133,376461,435333,501344,575124,657339,748692,849924,961815,1085185,1220895,1369848,1532990,1711311,1905846,2117676,2347929,2597781,2868457,3161232,3477432,3818435,4185672,4580628,5004843,5459913,5947491,6469288,7027074,7622679,8257994,8934972,9655629,10422045,11236365,12100800,13017628,13989195,15017916,16106276,17256831,18472209,19755111 sub $2,$0 add $0,4 bin $0,2 bin $0,2 bin $2,5 sub $0,$2 sub $0,3
3rdParties/src/nasm/nasm-2.15.02/test/defalias.asm
blue3k/StormForge
1
163691
%defalias foo bar %ifdef foo %error "foo should not be defined here!" %endif %define foo 33 %ifndef foo %error "foo should be defined here!" %endif %ifndef bar %error "bar should be defined here!" %endif %if bar != 33 %error "bar should have the value 33 here" %endif %define bar 34 %if foo != 34 %error "foo should have the value 34 here" %endif %undef foo %ifdef foo %error "foo should not be defined here!" %endif %ifdef bar %error "bar should not be defined here!" %endif %ifndefalias foo %error "foo was removed as an alias!" %endif %define bar 35 %if foo != 35 %error "foo should have the value 35 here" %endif %define foo 36 %if bar != 36 %error "bar should have the value 36 here" %endif %undefalias foo %ifdef foo %error "foo is still defined after %undefalias" %elifdefalias foo %error "foo is undefined, but still an alias" %endif %ifndef bar %error "bar disappeared after %undefalias foo" %endif