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
src/source.asm
Scorpion-Illuminati/ControllerTest
1
86837
<filename>src/source.asm ;============================================================== ; Scorpion Illuminati Controller Test ;============================================================== ; SEGA Genesis (c) <NAME> 2015 ;============================================================== ; Include SEGA Genesis ROM header and CPU vector table include 'header.asm' ; include framework code include 'framework\init.asm' ; include 'framework\collision.asm' include 'framework\debugger.asm' ; NOT FOR RELEASE include 'framework\gamepad.asm' include 'framework\interrupts.asm' include 'framework\megacd.asm' include 'framework\memory.asm' include 'framework\psg.asm' include 'framework\sprites.asm' include 'framework\text.asm' include 'framework\timing.asm' include 'framework\tmss.asm' include 'framework\palettes.asm' include 'framework\planes.asm' include 'framework\utility.asm' include 'framework\vdp.asm' include 'framework\z80.asm' __main: ; ************************************ ; Load palettes ; ************************************ lea Palette, a0 move.l #0x0, d0 jsr LoadPalette ; ************************************ ; Load map tiles ; ************************************ lea GameTiles, a0 ; Move sprite address to a0 move.l #GameTilesVRAM, d0 ; Move VRAM dest address to d0 move.l #GameTilesSizeT, d1 ; Move number of tiles to d1 jsr LoadTiles ; Jump to subroutine ; ************************************ ; Load map ; ************************************ lea GameMap, a0 ; Map data in a0 move.w #GameMapSizeW, d0 ; Size (words) in d0 move.l #0x0, d1 ; Y offset in d1 move.w #GameTilesTileID, d2 ; First tile ID in d2 move.l #0x0, d3 ; Palette ID in d3 jsr LoadMapPlaneA ; Jump to subroutine ; ************************************ ; Load the Pixel Font ; ************************************ lea PixelFont, a0 ; Move font address to a0 move.l #PixelFontVRAM, d0 ; Move VRAM dest address to d0 move.l #PixelFontSizeT, d1 ; Move number of characters (font size in tiles) to d1 jsr LoadFont ; Jump to subroutine ; ************************************ ; initalize everything ; ************************************ ; ****************************************************************** ; Main game loop ; ****************************************************************** GameLoop: jsr ReadPadA ; Read pad 1 state, result in d0 move.l #0x0, d2 ; Palette 0 move.w d0, (controllerinput) ; save controller input into memory for later btst #pad_button_up, d0 ; Check up button bne @Pad1NoUp ; Branch if button off lea PressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x0404, d1 ; XY (4, 4) bra @Pad1UpDone ; branch when finished @Pad1NoUp: lea NotPressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x0404, d1 ; XY (4, 4) @Pad1UpDone: jsr DrawTextPlaneA ; Call draw text subroutine move.w (controllerinput), d0 ; restore controller input from memory btst #pad_button_down, d0 ; Check down button bne @Pad1NoDown ; Branch if button off lea PressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x040A, d1 ; XY (4, 10) bra @Pad1DownDone ; branch when finished @Pad1NoDown: lea NotPressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x040A, d1 ; XY (4, 10) @Pad1DownDone: jsr DrawTextPlaneA ; Call draw text subroutine move.w (controllerinput), d0 ; restore controller input from memory btst #pad_button_left, d0 ; Check left button bne @Pad1NoLeft ; Branch if button off lea PressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x0107, d1 ; XY (1, 7) bra @Pad1LeftDone ; branch when finished @Pad1NoLeft: lea NotPressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x0107, d1 ; XY (1, 7) @Pad1LeftDone: jsr DrawTextPlaneA ; Call draw text subroutine move.w (controllerinput), d0 ; restore controller input from memory btst #pad_button_right, d0 ; Check right button bne @Pad1NoRight ; Branch if button off lea PressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x0707, d1 ; XY (7, 7) bra @Pad1RightDone ; branch when finished @Pad1NoRight: lea NotPressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x0707, d1 ; XY (7, 7) @Pad1RightDone: jsr DrawTextPlaneA ; Call draw text subroutine move.w (controllerinput), d0 ; restore controller input from memory btst #pad_button_a, d0 ; Check A button bne @Pad1NoButtonA ; Branch if button off lea PressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x0C08, d1 ; XY (13, 8) bra @Pad1ButtonADone ; branch when finished @Pad1NoButtonA: lea NotPressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x0C08, d1 ; XY (13, 8) @Pad1ButtonADone: jsr DrawTextPlaneA ; Call draw text subroutine move.w (controllerinput), d0 ; restore controller input from memory btst #pad_button_b, d0 ; Check B button bne @Pad1NoButtonB ; Branch if button off lea PressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x1008, d1 ; XY (16, 8) bra @Pad1ButtonBDone ; branch when finished @Pad1NoButtonB: lea NotPressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x1008, d1 ; XY (16, 8) @Pad1ButtonBDone: jsr DrawTextPlaneA ; Call draw text subroutine move.w (controllerinput), d0 ; restore controller input from memory btst #pad_button_c, d0 ; Check C button bne @Pad1NoButtonC ; Branch if button off lea PressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x1408, d1 ; XY (20, 8) bra @Pad1ButtonCDone ; branch when finished @Pad1NoButtonC: lea NotPressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x1408, d1 ; XY (20, 8) @Pad1ButtonCDone: jsr DrawTextPlaneA ; Call draw text subroutine move.w (controllerinput), d0 ; restore controller input from memory btst #pad_button_x, d0 ; Check X button bne @Pad1NoButtonX ; Branch if button off lea PressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x0C04, d1 ; XY (12, 4) bra @Pad1ButtonXDone ; branch when finished @Pad1NoButtonX: lea NotPressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x0C04, d1 ; XY (12, 4) @Pad1ButtonXDone: jsr DrawTextPlaneA move.w (controllerinput), d0 ; restore controller input from memory btst #pad_button_y, d0 ; Check Y button bne @Pad1NoButtonY ; Branch if button off lea PressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x1004, d1 ; XY (16, 4) bra @Pad1ButtonYDone ; branch when finished @Pad1NoButtonY: lea NotPressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x1004, d1 ; XY (16, 4) @Pad1ButtonYDone: jsr DrawTextPlaneA move.w (controllerinput), d0 ; restore controller input from memory btst #pad_button_z, d0 ; Check Z button bne @Pad1NoButtonZ ; Branch if button off lea PressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x1404, d1 ; XY (20, 4) bra @Pad1ButtonZDone ; branch when finished @Pad1NoButtonZ: lea NotPressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x1404, d1 ; XY (20, 4) @Pad1ButtonZDone: jsr DrawTextPlaneA move.w (controllerinput), d0 ; restore controller input from memory btst #pad_button_start, d0 ; Check start button bne @Pad1NoButtonStart ; Branch if button off lea PressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x080C, d1 ; XY (08, 12) bra @Pad1ButtonStartDone ; branch when finished @Pad1NoButtonStart: lea NotPressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x080C, d1 ; XY (08, 12) @Pad1ButtonStartDone: jsr DrawTextPlaneA ; Call draw text subroutine move.w (controllerinput), d0 ; restore controller input from memory btst #pad_button_mode, d0 ; Check mode button bne @Pad1NoButtonMode ; Branch if button off lea PressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x1801, d1 ; XY (24, 1) bra @Pad1ButtonModeDone ; branch when finished @Pad1NoButtonMode: lea NotPressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x1801, d1 ; XY (24, 1) @Pad1ButtonModeDone: jsr DrawTextPlaneA ; Call draw text subroutine ; ********************** ; Controller 2 Test ; ********************** jsr ReadPadB ; Read pad 2 state, result in d0 move.w d0, (controllerinput) ; save controller input into memory for later btst #pad_button_up, d0 ; Check up button bne @Pad2NoUp ; Branch if button off lea PressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x040F, d1 ; XY (4, 15) bra @Pad2UpDone ; branch when finished @Pad2NoUp: lea NotPressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x040F, d1 ; XY (4, 15) @Pad2UpDone: jsr DrawTextPlaneA ; Call draw text subroutine move.w (controllerinput), d0 ; restore controller input from memory btst #pad_button_down, d0 ; Check down button bne @Pad2NoDown ; Branch if button off lea PressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x0415, d1 ; XY (4, 21) bra @Pad2DownDone ; branch when finished @Pad2NoDown: lea NotPressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x0415, d1 ; XY (4, 21) @Pad2DownDone: jsr DrawTextPlaneA ; Call draw text subroutine move.w (controllerinput), d0 ; restore controller input from memory btst #pad_button_left, d0 ; Check left button bne @Pad2NoLeft ; Branch if button off lea PressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x0112, d1 ; XY (1, 18) bra @Pad2LeftDone ; branch when finished @Pad2NoLeft: lea NotPressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x0112, d1 ; XY (1, 18) @Pad2LeftDone: jsr DrawTextPlaneA ; Call draw text subroutine move.w (controllerinput), d0 ; restore controller input from memory btst #pad_button_right, d0 ; Check right button bne @Pad2NoRight ; Branch if button off lea PressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x0712, d1 ; XY (7, 18) bra @Pad2RightDone ; branch when finished @Pad2NoRight: lea NotPressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x0712, d1 ; XY (7, 18) @Pad2RightDone: jsr DrawTextPlaneA ; Call draw text subroutine move.w (controllerinput), d0 ; restore controller input from memory btst #pad_button_a, d0 ; Check A button bne @Pad2NoButtonA ; Branch if button off lea PressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x0C17, d1 ; XY (13, 8) bra @Pad2ButtonADone ; branch when finished @Pad2NoButtonA: lea NotPressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x0C17, d1 ; XY (13, 8) @Pad2ButtonADone: jsr DrawTextPlaneA ; Call draw text subroutine move.w (controllerinput), d0 ; restore controller input from memory btst #pad_button_b, d0 ; Check B button bne @Pad2NoButtonB ; Branch if button off lea PressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x1017, d1 ; XY (16, 8) bra @Pad2ButtonBDone ; branch when finished @Pad2NoButtonB: lea NotPressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x1017, d1 ; XY (16, 8) @Pad2ButtonBDone: jsr DrawTextPlaneA ; Call draw text subroutine move.w (controllerinput), d0 ; restore controller input from memory btst #pad_button_c, d0 ; Check C button bne @Pad2NoButtonC ; Branch if button off lea PressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x1417, d1 ; XY (20, 8) bra @Pad2ButtonCDone ; branch when finished @Pad2NoButtonC: lea NotPressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x1417, d1 ; XY (20, 8) @Pad2ButtonCDone: jsr DrawTextPlaneA ; Call draw text subroutine move.w (controllerinput), d0 ; restore controller input from memory btst #pad_button_x, d0 ; Check X button bne @Pad2NoButtonX ; Branch if button off lea PressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x0C13, d1 ; XY (12, 15) bra @Pad2ButtonXDone ; branch when finished @Pad2NoButtonX: lea NotPressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x0C13, d1 ; XY (12, 15) @Pad2ButtonXDone: jsr DrawTextPlaneA move.w (controllerinput), d0 ; restore controller input from memory btst #pad_button_y, d0 ; Check Y button bne @Pad2NoButtonY ; Branch if button off lea PressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x1013, d1 ; XY (16, 15) bra @Pad2ButtonYDone ; branch when finished @Pad2NoButtonY: lea NotPressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x1013, d1 ; XY (16, 15) @Pad2ButtonYDone: jsr DrawTextPlaneA move.w (controllerinput), d0 ; restore controller input from memory btst #pad_button_z, d0 ; Check Z button bne @Pad2NoButtonZ ; Branch if button off lea PressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x1413, d1 ; XY (20, 15) bra @Pad2ButtonZDone ; branch when finished @Pad2NoButtonZ: lea NotPressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x1413, d1 ; XY (20, 15) @Pad2ButtonZDone: jsr DrawTextPlaneA move.w (controllerinput), d0 ; restore controller input from memory btst #pad_button_start, d0 ; Check start button bne @Pad2NoButtonStart ; Branch if button off lea PressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x081A, d1 ; XY (08, 26) bra @Pad2ButtonStartDone ; branch when finished @Pad2NoButtonStart: lea NotPressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x081A, d1 ; XY (08, 26) @Pad2ButtonStartDone: jsr DrawTextPlaneA ; Call draw text subroutine move.w (controllerinput), d0 ; restore controller input from memory btst #pad_button_mode, d0 ; Check mode button bne @Pad2NoButtonMode ; Branch if button off lea PressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x1810, d1 ; XY (24, 16) bra @Pad2ButtonModeDone ; branch when finished @Pad2NoButtonMode: lea NotPressedString, a0 ; String address move.l #PixelFontTileID, d0 ; First tile id move.w #0x1810, d1 ; XY (24, 16) @Pad2ButtonModeDone: jsr DrawTextPlaneA ; Call draw text subroutine jsr WaitVBlankStart ; Wait for start of vblank jsr WaitVBlankEnd ; Wait for end of vblank jmp GameLoop ; Back to the top ; ************************************ ; Data ; ************************************ ; Include framework data include 'framework\initdata.asm' include 'framework\globals.asm' include 'framework\charactermap.asm' ; Include game data include 'globals.asm' include 'memorymap.asm' ; Include game art include 'assets\assetsmap.asm' __end ; Very last line, end of ROM address
asm/Visual Studio 2017_17_MSVC_x64_Release/span_compile_only.asm
dbd64/GSL
0
1752
<filename>asm/Visual Studio 2017_17_MSVC_x64_Release/span_compile_only.asm ; Listing generated by Microsoft (R) Optimizing Compiler Version 19.16.27026.1 include listing.inc INCLUDELIB MSVCRT INCLUDELIB OLDNAMES PUBLIC ??0exception@std@@QEAA@AEBV01@@Z ; std::exception::exception PUBLIC ??1exception@std@@UEAA@XZ ; std::exception::~exception PUBLIC ?what@exception@std@@UEBAPEBDXZ ; std::exception::what PUBLIC ??_Gexception@std@@UEAAPEAXI@Z ; std::exception::`scalar deleting destructor' PUBLIC ??0logic_error@std@@QEAA@AEBV01@@Z ; std::logic_error::logic_error PUBLIC ??_Glogic_error@std@@UEAAPEAXI@Z ; std::logic_error::`scalar deleting destructor' PUBLIC ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast PUBLIC ??1fail_fast@gsl@@UEAA@XZ ; gsl::fail_fast::~fail_fast PUBLIC ??0fail_fast@gsl@@QEAA@AEBU01@@Z ; gsl::fail_fast::fail_fast PUBLIC ??0fail_fast@gsl@@QEAA@$$QEAU01@@Z ; gsl::fail_fast::fail_fast PUBLIC ??_Gfail_fast@gsl@@UEAAPEAXI@Z ; gsl::fail_fast::`scalar deleting destructor' PUBLIC ??1narrowing_error@gsl@@UEAA@XZ ; gsl::narrowing_error::~narrowing_error PUBLIC ??0narrowing_error@gsl@@QEAA@AEBU01@@Z ; gsl::narrowing_error::narrowing_error PUBLIC ??0narrowing_error@gsl@@QEAA@$$QEAU01@@Z ; gsl::narrowing_error::narrowing_error PUBLIC ??_Gnarrowing_error@gsl@@UEAAPEAXI@Z ; gsl::narrowing_error::`scalar deleting destructor' PUBLIC ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> PUBLIC ?test_span_unoptimizable_rangecheck@@YAXV?$span@H$0?0@gsl@@H@Z ; test_span_unoptimizable_rangecheck PUBLIC ??0?$span@H$0?0@gsl@@AEAA@UKnownNotNull@01@_J@Z ; gsl::span<int,-1>::span<int,-1> PUBLIC ?make_subspan@?$span@H$0?0@gsl@@AEBA?AV12@_J0V?$subspan_selector@$0?0@12@@Z ; gsl::span<int,-1>::make_subspan PUBLIC ?test_span_for@@YAXV?$span@H$0?0@gsl@@@Z ; test_span_for PUBLIC ?test_span_iter@@YAXV?$span@H$0?0@gsl@@@Z ; test_span_iter PUBLIC ?test_span_rangeiter@@YAXV?$span@H$0?0@gsl@@@Z ; test_span_rangeiter PUBLIC ?static_size_array_span@@YAXAEAUIDE_DRIVE_STATE@@@Z ; static_size_array_span PUBLIC ?test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z ; test_convert_span_Joe PUBLIC ??$convert_span@EV?$span@G$0?0@gsl@@@@YA?AV?$span@E$0?0@gsl@@V?$span@G$0?0@1@@Z ; convert_span<unsigned char,gsl::span<unsigned short,-1> > PUBLIC ?mysubspan1@@YA_JXZ ; mysubspan1 PUBLIC ?mysubspan2@@YA_J_J@Z ; mysubspan2 PUBLIC ?mysubspan3@@YA_JXZ ; mysubspan3 PUBLIC ?mysubspan4@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z ; mysubspan4 PUBLIC ?mysubspan5@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z ; mysubspan5 PUBLIC ?mysubspan6@@YA?AV?$span@H$0?0@gsl@@PEAH_J@Z ; mysubspan6 PUBLIC ?mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z ; mysubspan7 PUBLIC ?mysubspan8@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z ; mysubspan8 PUBLIC ?mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z ; mysubspan9 PUBLIC ?doterminate@@YAXXZ ; doterminate PUBLIC ?copy_span@@YAXV?$span@H$0?0@gsl@@0@Z ; copy_span PUBLIC ?gsl_copy_span@@YAXV?$span@H$0?0@gsl@@0@Z ; gsl_copy_span PUBLIC ??$copy@H$0?0H$0?0@gsl@@YAXV?$span@H$0?0@0@0@Z ; gsl::copy<int,-1,int,-1> PUBLIC ?test_string_std_copy@@YAXXZ ; test_string_std_copy PUBLIC ??0?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z ; gsl::span<char const ,-1>::span<char const ,-1> PUBLIC ??$ensure_z@$$CBD$0L@@gsl@@YA?AV?$span@$$CBD$0?0@0@AEAY0L@$$CBD@Z ; gsl::ensure_z<char const ,11> PUBLIC ?test_string_gsl_copy@@YAXXZ ; test_string_gsl_copy PUBLIC ??$copy@$$CBD$0?0E$0?0@gsl@@YAXV?$span@$$CBD$0?0@0@V?$span@E$0?0@0@@Z ; gsl::copy<char const ,-1,unsigned char,-1> PUBLIC ??$forward@Ufail_fast@gsl@@@std@@YA$$QEAUfail_fast@gsl@@AEAU12@@Z ; std::forward<gsl::fail_fast> PUBLIC ??$ensure_z@$$CBD@gsl@@YA?AV?$span@$$CBD$0?0@0@AEBQEBD_J@Z ; gsl::ensure_z<char const > PUBLIC ??$ensure_sentinel@$$CBD$0A@@gsl@@YA?AV?$span@$$CBD$0?0@0@PEBD_J@Z ; gsl::ensure_sentinel<char const ,0> PUBLIC ??$throw_exception@Unarrowing_error@gsl@@@details@gsl@@YAX$$QEAUnarrowing_error@1@@Z ; gsl::details::throw_exception<gsl::narrowing_error> PUBLIC ??$forward@Unarrowing_error@gsl@@@std@@YA$$QEAUnarrowing_error@gsl@@AEAU12@@Z ; std::forward<gsl::narrowing_error> PUBLIC ??_7exception@std@@6B@ ; std::exception::`vftable' PUBLIC ??_C@_0BC@EOODALEL@Unknown?5exception@ ; `string' PUBLIC ??_7logic_error@std@@6B@ ; std::logic_error::`vftable' PUBLIC ??_7fail_fast@gsl@@6B@ ; gsl::fail_fast::`vftable' PUBLIC ??_R0?AVexception@std@@@8 ; std::exception `RTTI Type Descriptor' PUBLIC _CT??_R0?AVexception@std@@@8??0exception@std@@QEAA@AEBV01@@Z24 PUBLIC ??_7narrowing_error@gsl@@6B@ ; gsl::narrowing_error::`vftable' PUBLIC ??_C@_0ED@NAHIIAGE@GSL?3?5Precondition?5failure?5at?5c?3@ ; `string' PUBLIC ??_C@_0L@CCAJJBND@iVtrau?5lDC@ ; `string' PUBLIC ??_C@_0ED@HAMNHNCO@GSL?3?5Precondition?5failure?5at?5c?3@ ; `string' PUBLIC ??_C@_0ED@PLCCJGML@GSL?3?5Precondition?5failure?5at?5c?3@ ; `string' PUBLIC ??_C@_0ED@GHOHAFBM@GSL?3?5Precondition?5failure?5at?5c?3@ ; `string' PUBLIC ??_C@_0ED@KIOHOGJB@GSL?3?5Precondition?5failure?5at?5c?3@ ; `string' PUBLIC ??_C@_0ED@MMILCDJF@GSL?3?5Precondition?5failure?5at?5c?3@ ; `string' PUBLIC _TI3?AUfail_fast@gsl@@ PUBLIC _CTA3?AUfail_fast@gsl@@ PUBLIC ??_R0?AUfail_fast@gsl@@@8 ; gsl::fail_fast `RTTI Type Descriptor' PUBLIC _CT??_R0?AUfail_fast@gsl@@@8??0fail_fast@gsl@@QEAA@AEBU01@@Z24 PUBLIC ??_R0?AVlogic_error@std@@@8 ; std::logic_error `RTTI Type Descriptor' PUBLIC _CT??_R0?AVlogic_error@std@@@8??0logic_error@std@@QEAA@AEBV01@@Z24 PUBLIC ??_C@_0EL@EPJEKFNE@GSL?3?5Precondition?5failure?5at?5c?3@ ; `string' PUBLIC ??_C@_0ED@HPBMEGKB@GSL?3?5Precondition?5failure?5at?5c?3@ ; `string' PUBLIC ??_C@_0ED@LKBIKNJ@GSL?3?5Precondition?5failure?5at?5c?3@ ; `string' PUBLIC ??_C@_0ED@JOPLHMJE@GSL?3?5Precondition?5failure?5at?5c?3@ ; `string' PUBLIC ??_C@_0EL@HEMMNCGC@GSL?3?5Postcondition?5failure?5at?5c@ ; `string' PUBLIC ??_C@_0EL@CANAMLLN@GSL?3?5Postcondition?5failure?5at?5c@ ; `string' PUBLIC _TI2?AUnarrowing_error@gsl@@ PUBLIC _CTA2?AUnarrowing_error@gsl@@ PUBLIC ??_R0?AUnarrowing_error@gsl@@@8 ; gsl::narrowing_error `RTTI Type Descriptor' PUBLIC _CT??_R0?AUnarrowing_error@gsl@@@8??0narrowing_error@gsl@@QEAA@AEBU01@@Z24 PUBLIC ??_C@_0ED@GOAPCFOK@GSL?3?5Precondition?5failure?5at?5c?3@ ; `string' PUBLIC ??_R4exception@std@@6B@ ; std::exception::`RTTI Complete Object Locator' PUBLIC ??_R3exception@std@@8 ; std::exception::`RTTI Class Hierarchy Descriptor' PUBLIC ??_R2exception@std@@8 ; std::exception::`RTTI Base Class Array' PUBLIC ??_R1A@?0A@EA@exception@std@@8 ; std::exception::`RTTI Base Class Descriptor at (0,-1,0,64)' PUBLIC ??_R4logic_error@std@@6B@ ; std::logic_error::`RTTI Complete Object Locator' PUBLIC ??_R3logic_error@std@@8 ; std::logic_error::`RTTI Class Hierarchy Descriptor' PUBLIC ??_R2logic_error@std@@8 ; std::logic_error::`RTTI Base Class Array' PUBLIC ??_R1A@?0A@EA@logic_error@std@@8 ; std::logic_error::`RTTI Base Class Descriptor at (0,-1,0,64)' PUBLIC ??_R4fail_fast@gsl@@6B@ ; gsl::fail_fast::`RTTI Complete Object Locator' PUBLIC ??_R3fail_fast@gsl@@8 ; gsl::fail_fast::`RTTI Class Hierarchy Descriptor' PUBLIC ??_R2fail_fast@gsl@@8 ; gsl::fail_fast::`RTTI Base Class Array' PUBLIC ??_R1A@?0A@EA@fail_fast@gsl@@8 ; gsl::fail_fast::`RTTI Base Class Descriptor at (0,-1,0,64)' PUBLIC ??_R4narrowing_error@gsl@@6B@ ; gsl::narrowing_error::`RTTI Complete Object Locator' PUBLIC ??_R3narrowing_error@gsl@@8 ; gsl::narrowing_error::`RTTI Class Hierarchy Descriptor' PUBLIC ??_R2narrowing_error@gsl@@8 ; gsl::narrowing_error::`RTTI Base Class Array' PUBLIC ??_R1A@?0A@EA@narrowing_error@gsl@@8 ; gsl::narrowing_error::`RTTI Base Class Descriptor at (0,-1,0,64)' PUBLIC __xmm@00000001000000010000000100000001 PUBLIC __xmm@00000003000000020000000100000000 EXTRN ??3@YAXPEAX_K@Z:PROC ; operator delete EXTRN __std_terminate:PROC EXTRN __imp_terminate:PROC EXTRN __std_exception_copy:PROC EXTRN __std_exception_destroy:PROC EXTRN ??_Eexception@std@@UEAAPEAXI@Z:PROC ; std::exception::`vector deleting destructor' EXTRN ??_Elogic_error@std@@UEAAPEAXI@Z:PROC ; std::logic_error::`vector deleting destructor' EXTRN ??_Efail_fast@gsl@@UEAAPEAXI@Z:PROC ; gsl::fail_fast::`vector deleting destructor' EXTRN ??_Enarrowing_error@gsl@@UEAAPEAXI@Z:PROC ; gsl::narrowing_error::`vector deleting destructor' EXTRN ?bar@@YAXV?$span@E$0?0@gsl@@@Z:PROC ; bar EXTRN _CxxThrowException:PROC EXTRN __CxxFrameHandler3:PROC EXTRN __GSHandlerCheck_EH:PROC EXTRN __security_check_cookie:PROC EXTRN memmove:PROC EXTRN ??_7type_info@@6B@:BYTE ; type_info::`vftable' EXTRN __security_cookie:QWORD ; COMDAT pdata pdata SEGMENT $pdata$??0exception@std@@QEAA@QEBD@Z DD imagerel $LN5 DD imagerel $LN5+64 DD imagerel $unwind$??0exception@std@@QEAA@QEBD@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??0exception@std@@QEAA@AEBV01@@Z DD imagerel $LN5 DD imagerel $LN5+53 DD imagerel $unwind$??0exception@std@@QEAA@AEBV01@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??_Gexception@std@@UEAAPEAXI@Z DD imagerel $LN9 DD imagerel $LN9+66 DD imagerel $unwind$??_Gexception@std@@UEAAPEAXI@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??0logic_error@std@@QEAA@PEBD@Z DD imagerel $LN8 DD imagerel $LN8+74 DD imagerel $unwind$??0logic_error@std@@QEAA@PEBD@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??0logic_error@std@@QEAA@AEBV01@@Z DD imagerel $LN7 DD imagerel $LN7+63 DD imagerel $unwind$??0logic_error@std@@QEAA@AEBV01@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??0logic_error@std@@QEAA@$$QEAV01@@Z DD imagerel $LN7 DD imagerel $LN7+63 DD imagerel $unwind$??0logic_error@std@@QEAA@$$QEAV01@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??_Glogic_error@std@@UEAAPEAXI@Z DD imagerel $LN12 DD imagerel $LN12+66 DD imagerel $unwind$??_Glogic_error@std@@UEAAPEAXI@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??0fail_fast@gsl@@QEAA@QEBD@Z DD imagerel $LN10 DD imagerel $LN10+74 DD imagerel $unwind$??0fail_fast@gsl@@QEAA@QEBD@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??0fail_fast@gsl@@QEAA@AEBU01@@Z DD imagerel $LN10 DD imagerel $LN10+63 DD imagerel $unwind$??0fail_fast@gsl@@QEAA@AEBU01@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??0fail_fast@gsl@@QEAA@$$QEAU01@@Z DD imagerel $LN10 DD imagerel $LN10+63 DD imagerel $unwind$??0fail_fast@gsl@@QEAA@$$QEAU01@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??_Gfail_fast@gsl@@UEAAPEAXI@Z DD imagerel $LN15 DD imagerel $LN15+66 DD imagerel $unwind$??_Gfail_fast@gsl@@UEAAPEAXI@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??0narrowing_error@gsl@@QEAA@AEBU01@@Z DD imagerel $LN7 DD imagerel $LN7+63 DD imagerel $unwind$??0narrowing_error@gsl@@QEAA@AEBU01@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??0narrowing_error@gsl@@QEAA@$$QEAU01@@Z DD imagerel $LN7 DD imagerel $LN7+63 DD imagerel $unwind$??0narrowing_error@gsl@@QEAA@$$QEAU01@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??_Gnarrowing_error@gsl@@UEAAPEAXI@Z DD imagerel $LN12 DD imagerel $LN12+66 DD imagerel $unwind$??_Gnarrowing_error@gsl@@UEAAPEAXI@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??0?$extent_type@$0?0@details@gsl@@QEAA@_J@Z DD imagerel $LN19 DD imagerel $LN19+72 DD imagerel $unwind$??0?$extent_type@$0?0@details@gsl@@QEAA@_J@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$0@?0???0?$extent_type@$0?0@details@gsl@@QEAA@_J@Z@4HA DD imagerel ?dtor$0@?0???0?$extent_type@$0?0@details@gsl@@QEAA@_J@Z@4HA DD imagerel ?dtor$0@?0???0?$extent_type@$0?0@details@gsl@@QEAA@_J@Z@4HA+38 DD imagerel $unwind$?dtor$0@?0???0?$extent_type@$0?0@details@gsl@@QEAA@_J@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z DD imagerel $LN4 DD imagerel $LN4+40 DD imagerel $unwind$??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?test_span_unoptimizable_rangecheck@@YAXV?$span@H$0?0@gsl@@H@Z DD imagerel $LN50 DD imagerel $LN50+168 DD imagerel $unwind$?test_span_unoptimizable_rangecheck@@YAXV?$span@H$0?0@gsl@@H@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$0@?0??test_span_unoptimizable_rangecheck@@YAXV?$span@H$0?0@gsl@@H@Z@4HA DD imagerel ?dtor$0@?0??test_span_unoptimizable_rangecheck@@YAXV?$span@H$0?0@gsl@@H@Z@4HA DD imagerel ?dtor$0@?0??test_span_unoptimizable_rangecheck@@YAXV?$span@H$0?0@gsl@@H@Z@4HA+38 DD imagerel $unwind$?dtor$0@?0??test_span_unoptimizable_rangecheck@@YAXV?$span@H$0?0@gsl@@H@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??0?$span@H$0?0@gsl@@QEAA@PEAH_J@Z DD imagerel $LN56 DD imagerel $LN56+121 DD imagerel $unwind$??0?$span@H$0?0@gsl@@QEAA@PEAH_J@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$2@?0???0?$span@H$0?0@gsl@@QEAA@PEAH_J@Z@4HA DD imagerel ?dtor$2@?0???0?$span@H$0?0@gsl@@QEAA@PEAH_J@Z@4HA DD imagerel ?dtor$2@?0???0?$span@H$0?0@gsl@@QEAA@PEAH_J@Z@4HA+38 DD imagerel $unwind$?dtor$2@?0???0?$span@H$0?0@gsl@@QEAA@PEAH_J@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$1@?0???0?$span@H$0?0@gsl@@QEAA@PEAH_J@Z@4HA DD imagerel ?dtor$1@?0???0?$span@H$0?0@gsl@@QEAA@PEAH_J@Z@4HA DD imagerel ?dtor$1@?0???0?$span@H$0?0@gsl@@QEAA@PEAH_J@Z@4HA+38 DD imagerel $unwind$?dtor$1@?0???0?$span@H$0?0@gsl@@QEAA@PEAH_J@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?last@?$span@H$0?0@gsl@@QEBA?AV12@_J@Z DD imagerel $LN97 DD imagerel $LN97+99 DD imagerel $unwind$?last@?$span@H$0?0@gsl@@QEBA?AV12@_J@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$0@?0??last@?$span@H$0?0@gsl@@QEBA?AV12@_J@Z@4HA DD imagerel ?dtor$0@?0??last@?$span@H$0?0@gsl@@QEBA?AV12@_J@Z@4HA DD imagerel ?dtor$0@?0??last@?$span@H$0?0@gsl@@QEBA?AV12@_J@Z@4HA+38 DD imagerel $unwind$?dtor$0@?0??last@?$span@H$0?0@gsl@@QEBA?AV12@_J@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?subspan@?$span@H$0?0@gsl@@QEBA?AV12@_J0@Z DD imagerel $LN4 DD imagerel $LN4+28 DD imagerel $unwind$?subspan@?$span@H$0?0@gsl@@QEBA?AV12@_J0@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??A?$span@H$0?0@gsl@@QEBAAEAH_J@Z DD imagerel $LN39 DD imagerel $LN39+74 DD imagerel $unwind$??A?$span@H$0?0@gsl@@QEBAAEAH_J@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$0@?0???A?$span@H$0?0@gsl@@QEBAAEAH_J@Z@4HA DD imagerel ?dtor$0@?0???A?$span@H$0?0@gsl@@QEBAAEAH_J@Z@4HA DD imagerel ?dtor$0@?0???A?$span@H$0?0@gsl@@QEBAAEAH_J@Z@4HA+38 DD imagerel $unwind$?dtor$0@?0???A?$span@H$0?0@gsl@@QEBAAEAH_J@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??0?$span@H$0?0@gsl@@AEAA@UKnownNotNull@01@_J@Z DD imagerel $LN40 DD imagerel $LN40+76 DD imagerel $unwind$??0?$span@H$0?0@gsl@@AEAA@UKnownNotNull@01@_J@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$1@?0???0?$span@H$0?0@gsl@@AEAA@UKnownNotNull@01@_J@Z@4HA DD imagerel ?dtor$1@?0???0?$span@H$0?0@gsl@@AEAA@UKnownNotNull@01@_J@Z@4HA DD imagerel ?dtor$1@?0???0?$span@H$0?0@gsl@@AEAA@UKnownNotNull@01@_J@Z@4HA+38 DD imagerel $unwind$?dtor$1@?0???0?$span@H$0?0@gsl@@AEAA@UKnownNotNull@01@_J@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?make_subspan@?$span@H$0?0@gsl@@AEBA?AV12@_J0V?$subspan_selector@$0?0@12@@Z DD imagerel $LN54 DD imagerel $LN54+181 DD imagerel $unwind$?make_subspan@?$span@H$0?0@gsl@@AEBA?AV12@_J0V?$subspan_selector@$0?0@12@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$0@?0??make_subspan@?$span@H$0?0@gsl@@AEBA?AV12@_J0V?$subspan_selector@$0?0@12@@Z@4HA DD imagerel ?dtor$0@?0??make_subspan@?$span@H$0?0@gsl@@AEBA?AV12@_J0V?$subspan_selector@$0?0@12@@Z@4HA DD imagerel ?dtor$0@?0??make_subspan@?$span@H$0?0@gsl@@AEBA?AV12@_J0V?$subspan_selector@$0?0@12@@Z@4HA+38 DD imagerel $unwind$?dtor$0@?0??make_subspan@?$span@H$0?0@gsl@@AEBA?AV12@_J0V?$subspan_selector@$0?0@12@@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$1@?0??make_subspan@?$span@H$0?0@gsl@@AEBA?AV12@_J0V?$subspan_selector@$0?0@12@@Z@4HA DD imagerel ?dtor$1@?0??make_subspan@?$span@H$0?0@gsl@@AEBA?AV12@_J0V?$subspan_selector@$0?0@12@@Z@4HA DD imagerel ?dtor$1@?0??make_subspan@?$span@H$0?0@gsl@@AEBA?AV12@_J0V?$subspan_selector@$0?0@12@@Z@4HA+38 DD imagerel $unwind$?dtor$1@?0??make_subspan@?$span@H$0?0@gsl@@AEBA?AV12@_J0V?$subspan_selector@$0?0@12@@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?test_span_for@@YAXV?$span@H$0?0@gsl@@@Z DD imagerel $LN54 DD imagerel $LN54+151 DD imagerel $unwind$?test_span_for@@YAXV?$span@H$0?0@gsl@@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$0@?0??test_span_for@@YAXV?$span@H$0?0@gsl@@@Z@4HA DD imagerel ?dtor$0@?0??test_span_for@@YAXV?$span@H$0?0@gsl@@@Z@4HA DD imagerel ?dtor$0@?0??test_span_for@@YAXV?$span@H$0?0@gsl@@@Z@4HA+38 DD imagerel $unwind$?dtor$0@?0??test_span_for@@YAXV?$span@H$0?0@gsl@@@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?test_span_iter@@YAXV?$span@H$0?0@gsl@@@Z DD imagerel $LN75 DD imagerel $LN75+180 DD imagerel $unwind$?test_span_iter@@YAXV?$span@H$0?0@gsl@@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$0@?0??test_span_iter@@YAXV?$span@H$0?0@gsl@@@Z@4HA DD imagerel ?dtor$0@?0??test_span_iter@@YAXV?$span@H$0?0@gsl@@@Z@4HA DD imagerel ?dtor$0@?0??test_span_iter@@YAXV?$span@H$0?0@gsl@@@Z@4HA+38 DD imagerel $unwind$?dtor$0@?0??test_span_iter@@YAXV?$span@H$0?0@gsl@@@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??D?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEBAAEAHXZ DD imagerel $LN27 DD imagerel $LN27+81 DD imagerel $unwind$??D?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEBAAEAHXZ pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$0@?0???D?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEBAAEAHXZ@4HA DD imagerel ?dtor$0@?0???D?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEBAAEAHXZ@4HA DD imagerel ?dtor$0@?0???D?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEBAAEAHXZ@4HA+38 DD imagerel $unwind$?dtor$0@?0???D?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEBAAEAHXZ@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??E?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEAAAEAV012@XZ DD imagerel $LN23 DD imagerel $LN23+89 DD imagerel $unwind$??E?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEAAAEAV012@XZ pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$0@?0???E?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEAAAEAV012@XZ@4HA DD imagerel ?dtor$0@?0???E?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEAAAEAV012@XZ@4HA DD imagerel ?dtor$0@?0???E?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEAAAEAV012@XZ@4HA+38 DD imagerel $unwind$?dtor$0@?0???E?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEAAAEAV012@XZ@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??9details@gsl@@YA_NV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@01@0@Z DD imagerel $LN9 DD imagerel $LN9+60 DD imagerel $unwind$??9details@gsl@@YA_NV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@01@0@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?_Verify_range@details@gsl@@YAXV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@12@0@Z DD imagerel $LN17 DD imagerel $LN17+63 DD imagerel $unwind$?_Verify_range@details@gsl@@YAXV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@12@0@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?_Verify_offset@?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEBAX_J@Z DD imagerel $LN21 DD imagerel $LN21+62 DD imagerel $unwind$?_Verify_offset@?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEBAX_J@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?static_size_array_span@@YAXAEAUIDE_DRIVE_STATE@@@Z DD imagerel $LN79 DD imagerel $LN79+146 DD imagerel $unwind$?static_size_array_span@@YAXAEAUIDE_DRIVE_STATE@@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$4@?0??static_size_array_span@@YAXAEAUIDE_DRIVE_STATE@@@Z@4HA DD imagerel ?dtor$4@?0??static_size_array_span@@YAXAEAUIDE_DRIVE_STATE@@@Z@4HA DD imagerel ?dtor$4@?0??static_size_array_span@@YAXAEAUIDE_DRIVE_STATE@@@Z@4HA+38 DD imagerel $unwind$?dtor$4@?0??static_size_array_span@@YAXAEAUIDE_DRIVE_STATE@@@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??0?$span@E$0?0@gsl@@QEAA@PEAE_J@Z DD imagerel $LN56 DD imagerel $LN56+121 DD imagerel $unwind$??0?$span@E$0?0@gsl@@QEAA@PEAE_J@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$2@?0???0?$span@E$0?0@gsl@@QEAA@PEAE_J@Z@4HA DD imagerel ?dtor$2@?0???0?$span@E$0?0@gsl@@QEAA@PEAE_J@Z@4HA DD imagerel ?dtor$2@?0???0?$span@E$0?0@gsl@@QEAA@PEAE_J@Z@4HA+38 DD imagerel $unwind$?dtor$2@?0???0?$span@E$0?0@gsl@@QEAA@PEAE_J@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$1@?0???0?$span@E$0?0@gsl@@QEAA@PEAE_J@Z@4HA DD imagerel ?dtor$1@?0???0?$span@E$0?0@gsl@@QEAA@PEAE_J@Z@4HA DD imagerel ?dtor$1@?0???0?$span@E$0?0@gsl@@QEAA@PEAE_J@Z@4HA+38 DD imagerel $unwind$?dtor$1@?0???0?$span@E$0?0@gsl@@QEAA@PEAE_J@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??A?$span@E$0?0@gsl@@QEBAAEAE_J@Z DD imagerel $LN39 DD imagerel $LN39+73 DD imagerel $unwind$??A?$span@E$0?0@gsl@@QEBAAEAE_J@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$0@?0???A?$span@E$0?0@gsl@@QEBAAEAE_J@Z@4HA DD imagerel ?dtor$0@?0???A?$span@E$0?0@gsl@@QEBAAEAE_J@Z@4HA DD imagerel ?dtor$0@?0???A?$span@E$0?0@gsl@@QEBAAEAE_J@Z@4HA+38 DD imagerel $unwind$?dtor$0@?0???A?$span@E$0?0@gsl@@QEBAAEAE_J@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$?0$05@?$span@E$0?0@gsl@@QEAA@AEAY05E@Z DD imagerel $LN29 DD imagerel $LN29+31 DD imagerel $unwind$??$?0$05@?$span@E$0?0@gsl@@QEAA@AEAY05E@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z DD imagerel $LN111 DD imagerel $LN111+177 DD imagerel $unwind$?test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$2@?0??test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z@4HA DD imagerel ?dtor$2@?0??test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z@4HA DD imagerel ?dtor$2@?0??test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z@4HA+38 DD imagerel $unwind$?dtor$2@?0??test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$1@?0??test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z@4HA DD imagerel ?dtor$1@?0??test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z@4HA DD imagerel ?dtor$1@?0??test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z@4HA+38 DD imagerel $unwind$?dtor$1@?0??test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$9@?0??test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z@4HA DD imagerel ?dtor$9@?0??test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z@4HA DD imagerel ?dtor$9@?0??test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z@4HA+38 DD imagerel $unwind$?dtor$9@?0??test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$convert_span@EV?$span@G$0?0@gsl@@@@YA?AV?$span@E$0?0@gsl@@V?$span@G$0?0@1@@Z DD imagerel $LN73 DD imagerel $LN73+128 DD imagerel $unwind$??$convert_span@EV?$span@G$0?0@gsl@@@@YA?AV?$span@E$0?0@gsl@@V?$span@G$0?0@1@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$2@?0???$convert_span@EV?$span@G$0?0@gsl@@@@YA?AV?$span@E$0?0@gsl@@V?$span@G$0?0@1@@Z@4HA DD imagerel ?dtor$2@?0???$convert_span@EV?$span@G$0?0@gsl@@@@YA?AV?$span@E$0?0@gsl@@V?$span@G$0?0@1@@Z@4HA DD imagerel ?dtor$2@?0???$convert_span@EV?$span@G$0?0@gsl@@@@YA?AV?$span@E$0?0@gsl@@V?$span@G$0?0@1@@Z@4HA+38 DD imagerel $unwind$?dtor$2@?0???$convert_span@EV?$span@G$0?0@gsl@@@@YA?AV?$span@E$0?0@gsl@@V?$span@G$0?0@1@@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$1@?0???$convert_span@EV?$span@G$0?0@gsl@@@@YA?AV?$span@E$0?0@gsl@@V?$span@G$0?0@1@@Z@4HA DD imagerel ?dtor$1@?0???$convert_span@EV?$span@G$0?0@gsl@@@@YA?AV?$span@E$0?0@gsl@@V?$span@G$0?0@1@@Z@4HA DD imagerel ?dtor$1@?0???$convert_span@EV?$span@G$0?0@gsl@@@@YA?AV?$span@E$0?0@gsl@@V?$span@G$0?0@1@@Z@4HA+38 DD imagerel $unwind$?dtor$1@?0???$convert_span@EV?$span@G$0?0@gsl@@@@YA?AV?$span@E$0?0@gsl@@V?$span@G$0?0@1@@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?mysubspan1@@YA_JXZ DD imagerel $LN233 DD imagerel $LN233+22 DD imagerel $unwind$?mysubspan1@@YA_JXZ pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?last@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J@Z DD imagerel $LN166 DD imagerel $LN166+143 DD imagerel $unwind$?last@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$4@?0??last@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J@Z@4HA DD imagerel ?dtor$4@?0??last@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J@Z@4HA DD imagerel ?dtor$4@?0??last@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J@Z@4HA+38 DD imagerel $unwind$?dtor$4@?0??last@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$9@?0??last@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J@Z@4HA DD imagerel ?dtor$9@?0??last@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J@Z@4HA DD imagerel ?dtor$9@?0??last@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J@Z@4HA+38 DD imagerel $unwind$?dtor$9@?0??last@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?subspan@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J0@Z DD imagerel $LN75 DD imagerel $LN75+107 DD imagerel $unwind$?subspan@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J0@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$4@?0??subspan@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J0@Z@4HA DD imagerel ?dtor$4@?0??subspan@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J0@Z@4HA DD imagerel ?dtor$4@?0??subspan@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J0@Z@4HA+38 DD imagerel $unwind$?dtor$4@?0??subspan@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J0@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??0?$extent_type@$05@details@gsl@@QEAA@_J@Z DD imagerel $LN19 DD imagerel $LN19+70 DD imagerel $unwind$??0?$extent_type@$05@details@gsl@@QEAA@_J@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$0@?0???0?$extent_type@$05@details@gsl@@QEAA@_J@Z@4HA DD imagerel ?dtor$0@?0???0?$extent_type@$05@details@gsl@@QEAA@_J@Z@4HA DD imagerel ?dtor$0@?0???0?$extent_type@$05@details@gsl@@QEAA@_J@Z@4HA+38 DD imagerel $unwind$?dtor$0@?0???0?$extent_type@$05@details@gsl@@QEAA@_J@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$?0$05@?$span@H$05@gsl@@QEAA@AEAY05H@Z DD imagerel $LN25 DD imagerel $LN25+23 DD imagerel $unwind$??$?0$05@?$span@H$05@gsl@@QEAA@AEAY05H@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?mysubspan2@@YA_J_J@Z DD imagerel $LN233 DD imagerel $LN233+137 DD imagerel $unwind$?mysubspan2@@YA_J_J@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$13@?0??mysubspan2@@YA_J_J@Z@4HA DD imagerel ?dtor$13@?0??mysubspan2@@YA_J_J@Z@4HA DD imagerel ?dtor$13@?0??mysubspan2@@YA_J_J@Z@4HA+38 DD imagerel $unwind$?dtor$13@?0??mysubspan2@@YA_J_J@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?mysubspan3@@YA_JXZ DD imagerel $LN228 DD imagerel $LN228+22 DD imagerel $unwind$?mysubspan3@@YA_JXZ pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?mysubspan4@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z DD imagerel $LN195 DD imagerel $LN195+151 DD imagerel $unwind$?mysubspan4@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$2@?0??mysubspan4@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA DD imagerel ?dtor$2@?0??mysubspan4@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA DD imagerel ?dtor$2@?0??mysubspan4@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA+38 DD imagerel $unwind$?dtor$2@?0??mysubspan4@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$9@?0??mysubspan4@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA DD imagerel ?dtor$9@?0??mysubspan4@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA DD imagerel ?dtor$9@?0??mysubspan4@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA+38 DD imagerel $unwind$?dtor$9@?0??mysubspan4@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$?0$0A@X@?$span@H$0?0@gsl@@QEAA@XZ DD imagerel $LN40 DD imagerel $LN40+29 DD imagerel $unwind$??$?0$0A@X@?$span@H$0?0@gsl@@QEAA@XZ pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?mysubspan5@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z DD imagerel $LN191 DD imagerel $LN191+148 DD imagerel $unwind$?mysubspan5@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$2@?0??mysubspan5@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA DD imagerel ?dtor$2@?0??mysubspan5@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA DD imagerel ?dtor$2@?0??mysubspan5@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA+38 DD imagerel $unwind$?dtor$2@?0??mysubspan5@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$9@?0??mysubspan5@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA DD imagerel ?dtor$9@?0??mysubspan5@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA DD imagerel ?dtor$9@?0??mysubspan5@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA+38 DD imagerel $unwind$?dtor$9@?0??mysubspan5@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?mysubspan6@@YA?AV?$span@H$0?0@gsl@@PEAH_J@Z DD imagerel $LN191 DD imagerel $LN191+144 DD imagerel $unwind$?mysubspan6@@YA?AV?$span@H$0?0@gsl@@PEAH_J@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$2@?0??mysubspan6@@YA?AV?$span@H$0?0@gsl@@PEAH_J@Z@4HA DD imagerel ?dtor$2@?0??mysubspan6@@YA?AV?$span@H$0?0@gsl@@PEAH_J@Z@4HA DD imagerel ?dtor$2@?0??mysubspan6@@YA?AV?$span@H$0?0@gsl@@PEAH_J@Z@4HA+38 DD imagerel $unwind$?dtor$2@?0??mysubspan6@@YA?AV?$span@H$0?0@gsl@@PEAH_J@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$9@?0??mysubspan6@@YA?AV?$span@H$0?0@gsl@@PEAH_J@Z@4HA DD imagerel ?dtor$9@?0??mysubspan6@@YA?AV?$span@H$0?0@gsl@@PEAH_J@Z@4HA DD imagerel ?dtor$9@?0??mysubspan6@@YA?AV?$span@H$0?0@gsl@@PEAH_J@Z@4HA+38 DD imagerel $unwind$?dtor$9@?0??mysubspan6@@YA?AV?$span@H$0?0@gsl@@PEAH_J@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z DD imagerel $LN191 DD imagerel $LN191+188 DD imagerel $unwind$?mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$2@?0??mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA DD imagerel ?dtor$2@?0??mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA DD imagerel ?dtor$2@?0??mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA+38 DD imagerel $unwind$?dtor$2@?0??mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$9@?0??mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA DD imagerel ?dtor$9@?0??mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA DD imagerel ?dtor$9@?0??mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA+38 DD imagerel $unwind$?dtor$9@?0??mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$10@?0??mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA DD imagerel ?dtor$10@?0??mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA DD imagerel ?dtor$10@?0??mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA+38 DD imagerel $unwind$?dtor$10@?0??mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?mysubspan8@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z DD imagerel $LN104 DD imagerel $LN104+133 DD imagerel $unwind$?mysubspan8@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$2@?0??mysubspan8@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA DD imagerel ?dtor$2@?0??mysubspan8@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA DD imagerel ?dtor$2@?0??mysubspan8@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA+38 DD imagerel $unwind$?dtor$2@?0??mysubspan8@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z DD imagerel $LN155 DD imagerel $LN155+226 DD imagerel $unwind$?mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$2@?0??mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA DD imagerel ?dtor$2@?0??mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA DD imagerel ?dtor$2@?0??mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA+38 DD imagerel $unwind$?dtor$2@?0??mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$9@?0??mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA DD imagerel ?dtor$9@?0??mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA DD imagerel ?dtor$9@?0??mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA+38 DD imagerel $unwind$?dtor$9@?0??mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$10@?0??mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA DD imagerel ?dtor$10@?0??mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA DD imagerel ?dtor$10@?0??mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA+38 DD imagerel $unwind$?dtor$10@?0??mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?doterminate@@YAXXZ DD imagerel $LN4 DD imagerel $LN4+11 DD imagerel $unwind$?doterminate@@YAXXZ pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?copy_span@@YAXV?$span@H$0?0@gsl@@0@Z DD imagerel $LN109 DD imagerel $LN109+107 DD imagerel $unwind$?copy_span@@YAXV?$span@H$0?0@gsl@@0@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$copy@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YA?AV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@00@Z DD imagerel $LN90 DD imagerel $LN90+273 DD imagerel $unwind$??$copy@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YA?AV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@00@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?gsl_copy_span@@YAXV?$span@H$0?0@gsl@@0@Z DD imagerel $LN59 DD imagerel $LN59+124 DD imagerel $unwind$?gsl_copy_span@@YAXV?$span@H$0?0@gsl@@0@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$0@?0??gsl_copy_span@@YAXV?$span@H$0?0@gsl@@0@Z@4HA DD imagerel ?dtor$0@?0??gsl_copy_span@@YAXV?$span@H$0?0@gsl@@0@Z@4HA DD imagerel ?dtor$0@?0??gsl_copy_span@@YAXV?$span@H$0?0@gsl@@0@Z@4HA+38 DD imagerel $unwind$?dtor$0@?0??gsl_copy_span@@YAXV?$span@H$0?0@gsl@@0@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$copy@H$0?0H$0?0@gsl@@YAXV?$span@H$0?0@0@0@Z DD imagerel $LN56 DD imagerel $LN56+102 DD imagerel $unwind$??$copy@H$0?0H$0?0@gsl@@YAXV?$span@H$0?0@0@0@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$0@?0???$copy@H$0?0H$0?0@gsl@@YAXV?$span@H$0?0@0@0@Z@4HA DD imagerel ?dtor$0@?0???$copy@H$0?0H$0?0@gsl@@YAXV?$span@H$0?0@0@0@Z@4HA DD imagerel ?dtor$0@?0???$copy@H$0?0H$0?0@gsl@@YAXV?$span@H$0?0@0@0@Z@4HA+38 DD imagerel $unwind$?dtor$0@?0???$copy@H$0?0H$0?0@gsl@@YAXV?$span@H$0?0@0@0@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?test_string_std_copy@@YAXXZ DD imagerel $LN256 DD imagerel $LN256+315 DD imagerel $unwind$?test_string_std_copy@@YAXXZ pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$6@?0??test_string_std_copy@@YAXXZ@4HA DD imagerel ?dtor$6@?0??test_string_std_copy@@YAXXZ@4HA DD imagerel ?dtor$6@?0??test_string_std_copy@@YAXXZ@4HA+38 DD imagerel $unwind$?dtor$6@?0??test_string_std_copy@@YAXXZ@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$15@?0??test_string_std_copy@@YAXXZ@4HA DD imagerel ?dtor$15@?0??test_string_std_copy@@YAXXZ@4HA DD imagerel ?dtor$15@?0??test_string_std_copy@@YAXXZ@4HA+41 DD imagerel $unwind$?dtor$15@?0??test_string_std_copy@@YAXXZ@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$?0$09@?$span@E$0?0@gsl@@QEAA@AEAY09E@Z DD imagerel $LN29 DD imagerel $LN29+31 DD imagerel $unwind$??$?0$09@?$span@E$0?0@gsl@@QEAA@AEAY09E@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??0?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z DD imagerel $LN56 DD imagerel $LN56+121 DD imagerel $unwind$??0?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$2@?0???0?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z@4HA DD imagerel ?dtor$2@?0???0?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z@4HA DD imagerel ?dtor$2@?0???0?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z@4HA+38 DD imagerel $unwind$?dtor$2@?0???0?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$1@?0???0?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z@4HA DD imagerel ?dtor$1@?0???0?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z@4HA DD imagerel ?dtor$1@?0???0?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z@4HA+38 DD imagerel $unwind$?dtor$1@?0???0?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$ensure_z@$$CBD$0L@@gsl@@YA?AV?$span@$$CBD$0?0@0@AEAY0L@$$CBD@Z DD imagerel $LN64 DD imagerel $LN64+148 DD imagerel $unwind$??$ensure_z@$$CBD$0L@@gsl@@YA?AV?$span@$$CBD$0?0@0@AEAY0L@$$CBD@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$0@?0???$ensure_z@$$CBD$0L@@gsl@@YA?AV?$span@$$CBD$0?0@0@AEAY0L@$$CBD@Z@4HA DD imagerel ?dtor$0@?0???$ensure_z@$$CBD$0L@@gsl@@YA?AV?$span@$$CBD$0?0@0@AEAY0L@$$CBD@Z@4HA DD imagerel ?dtor$0@?0???$ensure_z@$$CBD$0L@@gsl@@YA?AV?$span@$$CBD$0?0@0@AEAY0L@$$CBD@Z@4HA+38 DD imagerel $unwind$?dtor$0@?0???$ensure_z@$$CBD$0L@@gsl@@YA?AV?$span@$$CBD$0?0@0@AEAY0L@$$CBD@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$2@?0???$ensure_z@$$CBD$0L@@gsl@@YA?AV?$span@$$CBD$0?0@0@AEAY0L@$$CBD@Z@4HA DD imagerel ?dtor$2@?0???$ensure_z@$$CBD$0L@@gsl@@YA?AV?$span@$$CBD$0?0@0@AEAY0L@$$CBD@Z@4HA DD imagerel ?dtor$2@?0???$ensure_z@$$CBD$0L@@gsl@@YA?AV?$span@$$CBD$0?0@0@AEAY0L@$$CBD@Z@4HA+38 DD imagerel $unwind$?dtor$2@?0???$ensure_z@$$CBD$0L@@gsl@@YA?AV?$span@$$CBD$0?0@0@AEAY0L@$$CBD@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?_Verify_range@details@gsl@@YAXV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@12@0@Z DD imagerel $LN17 DD imagerel $LN17+63 DD imagerel $unwind$?_Verify_range@details@gsl@@YAXV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@12@0@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?_Verify_offset@?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@QEBAX_J@Z DD imagerel $LN21 DD imagerel $LN21+62 DD imagerel $unwind$?_Verify_offset@?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@QEBAX_J@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$copy@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@V?$span_iterator@V?$span@E$0?0@gsl@@$0A@@23@@std@@YA?AV?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@23@0V123@@Z DD imagerel $LN90 DD imagerel $LN90+257 DD imagerel $unwind$??$copy@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@V?$span_iterator@V?$span@E$0?0@gsl@@$0A@@23@@std@@YA?AV?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@23@0V123@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?test_string_gsl_copy@@YAXXZ DD imagerel $LN288 DD imagerel $LN288+278 DD imagerel $unwind$?test_string_gsl_copy@@YAXXZ pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$6@?0??test_string_gsl_copy@@YAXXZ@4HA DD imagerel ?dtor$6@?0??test_string_gsl_copy@@YAXXZ@4HA DD imagerel ?dtor$6@?0??test_string_gsl_copy@@YAXXZ@4HA+38 DD imagerel $unwind$?dtor$6@?0??test_string_gsl_copy@@YAXXZ@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$15@?0??test_string_gsl_copy@@YAXXZ@4HA DD imagerel ?dtor$15@?0??test_string_gsl_copy@@YAXXZ@4HA DD imagerel ?dtor$15@?0??test_string_gsl_copy@@YAXXZ@4HA+38 DD imagerel $unwind$?dtor$15@?0??test_string_gsl_copy@@YAXXZ@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$35@?0??test_string_gsl_copy@@YAXXZ@4HA DD imagerel ?dtor$35@?0??test_string_gsl_copy@@YAXXZ@4HA DD imagerel ?dtor$35@?0??test_string_gsl_copy@@YAXXZ@4HA+43 DD imagerel $unwind$?dtor$35@?0??test_string_gsl_copy@@YAXXZ@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$?0V?$basic_string_span@$$CBD$0?0@gsl@@X@?$span@$$CBD$0?0@gsl@@QEAA@AEAV?$basic_string_span@$$CBD$0?0@1@@Z DD imagerel $LN38 DD imagerel $LN38+39 DD imagerel $unwind$??$?0V?$basic_string_span@$$CBD$0?0@gsl@@X@?$span@$$CBD$0?0@gsl@@QEAA@AEAV?$basic_string_span@$$CBD$0?0@1@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$copy@$$CBD$0?0E$0?0@gsl@@YAXV?$span@$$CBD$0?0@0@V?$span@E$0?0@0@@Z DD imagerel $LN56 DD imagerel $LN56+94 DD imagerel $unwind$??$copy@$$CBD$0?0E$0?0@gsl@@YAXV?$span@$$CBD$0?0@0@V?$span@E$0?0@0@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$0@?0???$copy@$$CBD$0?0E$0?0@gsl@@YAXV?$span@$$CBD$0?0@0@V?$span@E$0?0@0@@Z@4HA DD imagerel ?dtor$0@?0???$copy@$$CBD$0?0E$0?0@gsl@@YAXV?$span@$$CBD$0?0@0@V?$span@E$0?0@0@@Z@4HA DD imagerel ?dtor$0@?0???$copy@$$CBD$0?0E$0?0@gsl@@YAXV?$span@$$CBD$0?0@0@V?$span@E$0?0@0@@Z@4HA+38 DD imagerel $unwind$?dtor$0@?0???$copy@$$CBD$0?0E$0?0@gsl@@YAXV?$span@$$CBD$0?0@0@V?$span@E$0?0@0@@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$make_subspan@$05@?$span@H$05@gsl@@AEBA?AV?$span@H$0?0@1@_J0V?$subspan_selector@$05@01@@Z DD imagerel $LN72 DD imagerel $LN72+107 DD imagerel $unwind$??$make_subspan@$05@?$span@H$05@gsl@@AEBA?AV?$span@H$0?0@1@_J0V?$subspan_selector@$05@01@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$4@?0???$make_subspan@$05@?$span@H$05@gsl@@AEBA?AV?$span@H$0?0@1@_J0V?$subspan_selector@$05@01@@Z@4HA DD imagerel ?dtor$4@?0???$make_subspan@$05@?$span@H$05@gsl@@AEBA?AV?$span@H$0?0@1@_J0V?$subspan_selector@$05@01@@Z@4HA DD imagerel ?dtor$4@?0???$make_subspan@$05@?$span@H$05@gsl@@AEBA?AV?$span@H$0?0@1@_J0V?$subspan_selector@$05@01@@Z@4HA+38 DD imagerel $unwind$?dtor$4@?0???$make_subspan@$05@?$span@H$05@gsl@@AEBA?AV?$span@H$0?0@1@_J0V?$subspan_selector@$05@01@@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAH_J@Z DD imagerel $LN53 DD imagerel $LN53+121 DD imagerel $unwind$??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAH_J@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$2@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAH_J@Z@4HA DD imagerel ?dtor$2@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAH_J@Z@4HA DD imagerel ?dtor$2@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAH_J@Z@4HA+38 DD imagerel $unwind$?dtor$2@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAH_J@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$1@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAH_J@Z@4HA DD imagerel ?dtor$1@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAH_J@Z@4HA DD imagerel ?dtor$1@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAH_J@Z@4HA+38 DD imagerel $unwind$?dtor$1@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAH_J@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@UKnownNotNull@12@_J@Z DD imagerel $LN37 DD imagerel $LN37+76 DD imagerel $unwind$??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@UKnownNotNull@12@_J@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$1@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@UKnownNotNull@12@_J@Z@4HA DD imagerel ?dtor$1@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@UKnownNotNull@12@_J@Z@4HA DD imagerel ?dtor$1@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@UKnownNotNull@12@_J@Z@4HA+38 DD imagerel $unwind$?dtor$1@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@UKnownNotNull@12@_J@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$?0V?$extent_type@$05@details@gsl@@@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@UKnownNotNull@12@V?$extent_type@$05@details@2@@Z DD imagerel $LN24 DD imagerel $LN24+31 DD imagerel $unwind$??$?0V?$extent_type@$05@details@gsl@@@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@UKnownNotNull@12@V?$extent_type@$05@details@2@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$?0V?$extent_type@$05@details@gsl@@@?$storage_type@V?$extent_type@$05@details@gsl@@@?$span@H$05@gsl@@QEAA@UKnownNotNull@12@V?$extent_type@$05@details@2@@Z DD imagerel $LN20 DD imagerel $LN20+23 DD imagerel $unwind$??$?0V?$extent_type@$05@details@gsl@@@?$storage_type@V?$extent_type@$05@details@gsl@@@?$span@H$05@gsl@@QEAA@UKnownNotNull@12@V?$extent_type@$05@details@2@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$?0V?$extent_type@$0A@@details@gsl@@@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAHV?$extent_type@$0A@@details@2@@Z DD imagerel $LN39 DD imagerel $LN39+31 DD imagerel $unwind$??$?0V?$extent_type@$0A@@details@gsl@@@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAHV?$extent_type@$0A@@details@2@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$_Adl_verify_range@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@0@Z DD imagerel $LN24 DD imagerel $LN24+87 DD imagerel $unwind$??$_Adl_verify_range@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@0@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$_Get_unwrapped_n@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@_J$0A@@std@@YAPEAHAEBV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@_J@Z DD imagerel $LN31 DD imagerel $LN31+73 DD imagerel $unwind$??$_Get_unwrapped_n@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@_J$0A@@std@@YAPEAHAEBV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@_J@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$_Copy_unchecked@PEAHPEAH@std@@YAPEAHPEAH00@Z DD imagerel $LN10 DD imagerel $LN10+48 DD imagerel $unwind$??$_Copy_unchecked@PEAHPEAH@std@@YAPEAHPEAH00@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$copy_n@PEAH_JPEAH@std@@YAPEAHPEAH_J0@Z DD imagerel $LN20 DD imagerel $LN20+14 DD imagerel $unwind$??$copy_n@PEAH_JPEAH@std@@YAPEAHPEAH_J0@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$0$??$copy_n@PEAH_JPEAH@std@@YAPEAHPEAH_J0@Z DD imagerel $LN20+14 DD imagerel $LN20+56 DD imagerel $chain$0$??$copy_n@PEAH_JPEAH@std@@YAPEAHPEAH_J0@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$1$??$copy_n@PEAH_JPEAH@std@@YAPEAHPEAH_J0@Z DD imagerel $LN20+56 DD imagerel $LN20+65 DD imagerel $chain$1$??$copy_n@PEAH_JPEAH@std@@YAPEAHPEAH_J0@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$?0V?$extent_type@$09@details@gsl@@@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@UKnownNotNull@12@V?$extent_type@$09@details@2@@Z DD imagerel $LN24 DD imagerel $LN24+31 DD imagerel $unwind$??$?0V?$extent_type@$09@details@gsl@@@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@UKnownNotNull@12@V?$extent_type@$09@details@2@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$ensure_z@$$CBD@gsl@@YA?AV?$span@$$CBD$0?0@0@AEBQEBD_J@Z DD imagerel $LN55 DD imagerel $LN55+161 DD imagerel $unwind$??$ensure_z@$$CBD@gsl@@YA?AV?$span@$$CBD$0?0@0@AEBQEBD_J@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$0@?0???$ensure_z@$$CBD@gsl@@YA?AV?$span@$$CBD$0?0@0@AEBQEBD_J@Z@4HA DD imagerel ?dtor$0@?0???$ensure_z@$$CBD@gsl@@YA?AV?$span@$$CBD$0?0@0@AEBQEBD_J@Z@4HA DD imagerel ?dtor$0@?0???$ensure_z@$$CBD@gsl@@YA?AV?$span@$$CBD$0?0@0@AEBQEBD_J@Z@4HA+38 DD imagerel $unwind$?dtor$0@?0???$ensure_z@$$CBD@gsl@@YA?AV?$span@$$CBD$0?0@0@AEBQEBD_J@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$2@?0???$ensure_z@$$CBD@gsl@@YA?AV?$span@$$CBD$0?0@0@AEBQEBD_J@Z@4HA DD imagerel ?dtor$2@?0???$ensure_z@$$CBD@gsl@@YA?AV?$span@$$CBD$0?0@0@AEBQEBD_J@Z@4HA DD imagerel ?dtor$2@?0???$ensure_z@$$CBD@gsl@@YA?AV?$span@$$CBD$0?0@0@AEBQEBD_J@Z@4HA+38 DD imagerel $unwind$?dtor$2@?0???$ensure_z@$$CBD@gsl@@YA?AV?$span@$$CBD$0?0@0@AEBQEBD_J@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$_Adl_verify_range@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@0@Z DD imagerel $LN24 DD imagerel $LN24+87 DD imagerel $unwind$??$_Adl_verify_range@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@0@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$_Get_unwrapped_n@V?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@_J$0A@@std@@YAPEAEAEBV?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@_J@Z DD imagerel $LN31 DD imagerel $LN31+72 DD imagerel $unwind$??$_Get_unwrapped_n@V?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@_J$0A@@std@@YAPEAEAEBV?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@_J@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$_Copy_unchecked@PEBDPEAE@std@@YAPEAEPEBD0PEAE@Z DD imagerel $LN10 DD imagerel $LN10+48 DD imagerel $unwind$??$_Copy_unchecked@PEBDPEAE@std@@YAPEAEPEBD0PEAE@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$narrow@_J_J@gsl@@YA_J_J@Z DD imagerel $LN23 DD imagerel $LN23+20 DD imagerel $unwind$??$narrow@_J_J@gsl@@YA_J_J@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$copy_n@PEBD_JPEAE@std@@YAPEAEPEBD_JPEAE@Z DD imagerel $LN20 DD imagerel $LN20+64 DD imagerel $unwind$??$copy_n@PEBD_JPEAE@std@@YAPEAEPEBD_JPEAE@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$?0H$05X@?$span@H$0?0@gsl@@QEAA@AEBV?$span@H$05@1@@Z DD imagerel $LN67 DD imagerel $LN67+83 DD imagerel $unwind$??$?0H$05X@?$span@H$0?0@gsl@@QEAA@AEBV?$span@H$05@1@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$4@?0???$?0H$05X@?$span@H$0?0@gsl@@QEAA@AEBV?$span@H$05@1@@Z@4HA DD imagerel ?dtor$4@?0???$?0H$05X@?$span@H$0?0@gsl@@QEAA@AEBV?$span@H$05@1@@Z@4HA DD imagerel ?dtor$4@?0???$?0H$05X@?$span@H$0?0@gsl@@QEAA@AEBV?$span@H$05@1@@Z@4HA+38 DD imagerel $unwind$?dtor$4@?0???$?0H$05X@?$span@H$0?0@gsl@@QEAA@AEBV?$span@H$05@1@@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z DD imagerel $LN53 DD imagerel $LN53+121 DD imagerel $unwind$??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$2@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z@4HA DD imagerel ?dtor$2@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z@4HA DD imagerel ?dtor$2@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z@4HA+38 DD imagerel $unwind$?dtor$2@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$1@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z@4HA DD imagerel ?dtor$1@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z@4HA DD imagerel ?dtor$1@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z@4HA+38 DD imagerel $unwind$?dtor$1@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@PEAE_J@Z DD imagerel $LN53 DD imagerel $LN53+121 DD imagerel $unwind$??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@PEAE_J@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$2@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@PEAE_J@Z@4HA DD imagerel ?dtor$2@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@PEAE_J@Z@4HA DD imagerel ?dtor$2@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@PEAE_J@Z@4HA+38 DD imagerel $unwind$?dtor$2@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@PEAE_J@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$1@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@PEAE_J@Z@4HA DD imagerel ?dtor$1@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@PEAE_J@Z@4HA DD imagerel ?dtor$1@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@PEAE_J@Z@4HA+38 DD imagerel $unwind$?dtor$1@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@PEAE_J@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$_Adl_verify_range1@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@0U?$integral_constant@_N$00@0@@Z DD imagerel $LN21 DD imagerel $LN21+87 DD imagerel $unwind$??$_Adl_verify_range1@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@0U?$integral_constant@_N$00@0@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$_Copy_unchecked1@PEAHPEAH@std@@YAPEAHPEAH00U_Trivially_copyable_ptr_iterator_tag@0@@Z DD imagerel $LN6 DD imagerel $LN6+48 DD imagerel $unwind$??$_Copy_unchecked1@PEAHPEAH@std@@YAPEAHPEAH00U_Trivially_copyable_ptr_iterator_tag@0@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$_Copy_n_unchecked3@PEAH_JPEAH@std@@YAPEAHPEAH_J0@Z DD imagerel $LN10 DD imagerel $LN10+50 DD imagerel $unwind$??$_Copy_n_unchecked3@PEAH_JPEAH@std@@YAPEAHPEAH_J0@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$ensure_sentinel@$$CBD$0A@@gsl@@YA?AV?$span@$$CBD$0?0@0@PEBD_J@Z DD imagerel $LN52 DD imagerel $LN52+161 DD imagerel $unwind$??$ensure_sentinel@$$CBD$0A@@gsl@@YA?AV?$span@$$CBD$0?0@0@PEBD_J@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$0@?0???$ensure_sentinel@$$CBD$0A@@gsl@@YA?AV?$span@$$CBD$0?0@0@PEBD_J@Z@4HA DD imagerel ?dtor$0@?0???$ensure_sentinel@$$CBD$0A@@gsl@@YA?AV?$span@$$CBD$0?0@0@PEBD_J@Z@4HA DD imagerel ?dtor$0@?0???$ensure_sentinel@$$CBD$0A@@gsl@@YA?AV?$span@$$CBD$0?0@0@PEBD_J@Z@4HA+38 DD imagerel $unwind$?dtor$0@?0???$ensure_sentinel@$$CBD$0A@@gsl@@YA?AV?$span@$$CBD$0?0@0@PEBD_J@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$2@?0???$ensure_sentinel@$$CBD$0A@@gsl@@YA?AV?$span@$$CBD$0?0@0@PEBD_J@Z@4HA DD imagerel ?dtor$2@?0???$ensure_sentinel@$$CBD$0A@@gsl@@YA?AV?$span@$$CBD$0?0@0@PEBD_J@Z@4HA DD imagerel ?dtor$2@?0???$ensure_sentinel@$$CBD$0A@@gsl@@YA?AV?$span@$$CBD$0?0@0@PEBD_J@Z@4HA+38 DD imagerel $unwind$?dtor$2@?0???$ensure_sentinel@$$CBD$0A@@gsl@@YA?AV?$span@$$CBD$0?0@0@PEBD_J@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$_Adl_verify_range1@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@0U?$integral_constant@_N$00@0@@Z DD imagerel $LN21 DD imagerel $LN21+87 DD imagerel $unwind$??$_Adl_verify_range1@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@0U?$integral_constant@_N$00@0@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$_Copy_unchecked1@PEBDPEAE@std@@YAPEAEPEBD0PEAEU_Trivially_copyable_ptr_iterator_tag@0@@Z DD imagerel $LN6 DD imagerel $LN6+48 DD imagerel $unwind$??$_Copy_unchecked1@PEBDPEAE@std@@YAPEAEPEBD0PEAEU_Trivially_copyable_ptr_iterator_tag@0@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$throw_exception@Unarrowing_error@gsl@@@details@gsl@@YAX$$QEAUnarrowing_error@1@@Z DD imagerel $LN4 DD imagerel $LN4+40 DD imagerel $unwind$??$throw_exception@Unarrowing_error@gsl@@@details@gsl@@YAX$$QEAUnarrowing_error@1@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$_Copy_n_unchecked3@PEBD_JPEAE@std@@YAPEAEPEBD_JPEAE@Z DD imagerel $LN10 DD imagerel $LN10+45 DD imagerel $unwind$??$_Copy_n_unchecked3@PEBD_JPEAE@std@@YAPEAEPEBD_JPEAE@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$?0V?$extent_type@$05@details@gsl@@@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAHV?$extent_type@$05@details@2@@Z DD imagerel $LN41 DD imagerel $LN41+85 DD imagerel $unwind$??$?0V?$extent_type@$05@details@gsl@@@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAHV?$extent_type@$05@details@2@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$?dtor$1@?0???$?0V?$extent_type@$05@details@gsl@@@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAHV?$extent_type@$05@details@2@@Z@4HA DD imagerel ?dtor$1@?0???$?0V?$extent_type@$05@details@gsl@@@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAHV?$extent_type@$05@details@2@@Z@4HA DD imagerel ?dtor$1@?0???$?0V?$extent_type@$05@details@gsl@@@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAHV?$extent_type@$05@details@2@@Z@4HA+38 DD imagerel $unwind$?dtor$1@?0???$?0V?$extent_type@$05@details@gsl@@@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAHV?$extent_type@$05@details@2@@Z@4HA pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$_Copy_memmove@PEAHPEAH@std@@YAPEAHPEAH00@Z DD imagerel $LN4 DD imagerel $LN4+48 DD imagerel $unwind$??$_Copy_memmove@PEAHPEAH@std@@YAPEAHPEAH00@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$_Copy_n_unchecked4@PEAH_JPEAH@std@@YAPEAHPEAH_J0U_Trivially_copyable_ptr_iterator_tag@0@@Z DD imagerel $LN6 DD imagerel $LN6+50 DD imagerel $unwind$??$_Copy_n_unchecked4@PEAH_JPEAH@std@@YAPEAHPEAH_J0U_Trivially_copyable_ptr_iterator_tag@0@@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$_Copy_memmove@PEBDPEAE@std@@YAPEAEPEBD0PEAE@Z DD imagerel $LN4 DD imagerel $LN4+48 DD imagerel $unwind$??$_Copy_memmove@PEBDPEAE@std@@YAPEAEPEBD0PEAE@Z pdata ENDS ; COMDAT pdata pdata SEGMENT $pdata$??$_Copy_n_unchecked4@PEBD_JPEAE@std@@YAPEAEPEBD_JPEAEU_Trivially_copyable_ptr_iterator_tag@0@@Z DD imagerel $LN6 DD imagerel $LN6+45 DD imagerel $unwind$??$_Copy_n_unchecked4@PEBD_JPEAE@std@@YAPEAEPEBD_JPEAEU_Trivially_copyable_ptr_iterator_tag@0@@Z pdata ENDS ; COMDAT __xmm@00000003000000020000000100000000 CONST SEGMENT __xmm@00000003000000020000000100000000 DB 00H, 00H, 00H, 00H, 01H, 00H, 00H DB 00H, 02H, 00H, 00H, 00H, 03H, 00H, 00H, 00H CONST ENDS ; COMDAT __xmm@00000001000000010000000100000001 CONST SEGMENT __xmm@00000001000000010000000100000001 DB 01H, 00H, 00H, 00H, 01H, 00H, 00H DB 00H, 01H, 00H, 00H, 00H, 01H, 00H, 00H, 00H CONST ENDS ; COMDAT ??_R1A@?0A@EA@narrowing_error@gsl@@8 rdata$r SEGMENT ??_R1A@?0A@EA@narrowing_error@gsl@@8 DD imagerel ??_R0?AUnarrowing_error@gsl@@@8 ; gsl::narrowing_error::`RTTI Base Class Descriptor at (0,-1,0,64)' DD 01H DD 00H DD 0ffffffffH DD 00H DD 040H DD imagerel ??_R3narrowing_error@gsl@@8 rdata$r ENDS ; COMDAT ??_R2narrowing_error@gsl@@8 rdata$r SEGMENT ??_R2narrowing_error@gsl@@8 DD imagerel ??_R1A@?0A@EA@narrowing_error@gsl@@8 ; gsl::narrowing_error::`RTTI Base Class Array' DD imagerel ??_R1A@?0A@EA@exception@std@@8 ORG $+3 rdata$r ENDS ; COMDAT ??_R3narrowing_error@gsl@@8 rdata$r SEGMENT ??_R3narrowing_error@gsl@@8 DD 00H ; gsl::narrowing_error::`RTTI Class Hierarchy Descriptor' DD 00H DD 02H DD imagerel ??_R2narrowing_error@gsl@@8 rdata$r ENDS ; COMDAT ??_R4narrowing_error@gsl@@6B@ rdata$r SEGMENT ??_R4narrowing_error@gsl@@6B@ DD 01H ; gsl::narrowing_error::`RTTI Complete Object Locator' DD 00H DD 00H DD imagerel ??_R0?AUnarrowing_error@gsl@@@8 DD imagerel ??_R3narrowing_error@gsl@@8 DD imagerel ??_R4narrowing_error@gsl@@6B@ rdata$r ENDS ; COMDAT ??_R1A@?0A@EA@fail_fast@gsl@@8 rdata$r SEGMENT ??_R1A@?0A@EA@fail_fast@gsl@@8 DD imagerel ??_R0?AUfail_fast@gsl@@@8 ; gsl::fail_fast::`RTTI Base Class Descriptor at (0,-1,0,64)' DD 02H DD 00H DD 0ffffffffH DD 00H DD 040H DD imagerel ??_R3fail_fast@gsl@@8 rdata$r ENDS ; COMDAT ??_R2fail_fast@gsl@@8 rdata$r SEGMENT ??_R2fail_fast@gsl@@8 DD imagerel ??_R1A@?0A@EA@fail_fast@gsl@@8 ; gsl::fail_fast::`RTTI Base Class Array' DD imagerel ??_R1A@?0A@EA@logic_error@std@@8 DD imagerel ??_R1A@?0A@EA@exception@std@@8 ORG $+3 rdata$r ENDS ; COMDAT ??_R3fail_fast@gsl@@8 rdata$r SEGMENT ??_R3fail_fast@gsl@@8 DD 00H ; gsl::fail_fast::`RTTI Class Hierarchy Descriptor' DD 00H DD 03H DD imagerel ??_R2fail_fast@gsl@@8 rdata$r ENDS ; COMDAT ??_R4fail_fast@gsl@@6B@ rdata$r SEGMENT ??_R4fail_fast@gsl@@6B@ DD 01H ; gsl::fail_fast::`RTTI Complete Object Locator' DD 00H DD 00H DD imagerel ??_R0?AUfail_fast@gsl@@@8 DD imagerel ??_R3fail_fast@gsl@@8 DD imagerel ??_R4fail_fast@gsl@@6B@ rdata$r ENDS ; COMDAT ??_R1A@?0A@EA@logic_error@std@@8 rdata$r SEGMENT ??_R1A@?0A@EA@logic_error@std@@8 DD imagerel ??_R0?AVlogic_error@std@@@8 ; std::logic_error::`RTTI Base Class Descriptor at (0,-1,0,64)' DD 01H DD 00H DD 0ffffffffH DD 00H DD 040H DD imagerel ??_R3logic_error@std@@8 rdata$r ENDS ; COMDAT ??_R2logic_error@std@@8 rdata$r SEGMENT ??_R2logic_error@std@@8 DD imagerel ??_R1A@?0A@EA@logic_error@std@@8 ; std::logic_error::`RTTI Base Class Array' DD imagerel ??_R1A@?0A@EA@exception@std@@8 ORG $+3 rdata$r ENDS ; COMDAT ??_R3logic_error@std@@8 rdata$r SEGMENT ??_R3logic_error@std@@8 DD 00H ; std::logic_error::`RTTI Class Hierarchy Descriptor' DD 00H DD 02H DD imagerel ??_R2logic_error@std@@8 rdata$r ENDS ; COMDAT ??_R4logic_error@std@@6B@ rdata$r SEGMENT ??_R4logic_error@std@@6B@ DD 01H ; std::logic_error::`RTTI Complete Object Locator' DD 00H DD 00H DD imagerel ??_R0?AVlogic_error@std@@@8 DD imagerel ??_R3logic_error@std@@8 DD imagerel ??_R4logic_error@std@@6B@ rdata$r ENDS ; COMDAT ??_R1A@?0A@EA@exception@std@@8 rdata$r SEGMENT ??_R1A@?0A@EA@exception@std@@8 DD imagerel ??_R0?AVexception@std@@@8 ; std::exception::`RTTI Base Class Descriptor at (0,-1,0,64)' DD 00H DD 00H DD 0ffffffffH DD 00H DD 040H DD imagerel ??_R3exception@std@@8 rdata$r ENDS ; COMDAT ??_R2exception@std@@8 rdata$r SEGMENT ??_R2exception@std@@8 DD imagerel ??_R1A@?0A@EA@exception@std@@8 ; std::exception::`RTTI Base Class Array' ORG $+3 rdata$r ENDS ; COMDAT ??_R3exception@std@@8 rdata$r SEGMENT ??_R3exception@std@@8 DD 00H ; std::exception::`RTTI Class Hierarchy Descriptor' DD 00H DD 01H DD imagerel ??_R2exception@std@@8 rdata$r ENDS ; COMDAT ??_R4exception@std@@6B@ rdata$r SEGMENT ??_R4exception@std@@6B@ DD 01H ; std::exception::`RTTI Complete Object Locator' DD 00H DD 00H DD imagerel ??_R0?AVexception@std@@@8 DD imagerel ??_R3exception@std@@8 DD imagerel ??_R4exception@std@@6B@ rdata$r ENDS ; COMDAT ??_C@_0ED@GOAPCFOK@GSL?3?5Precondition?5failure?5at?5c?3@ CONST SEGMENT ??_C@_0ED@GOAPCFOK@GSL?3?5Precondition?5failure?5at?5c?3@ DB 'GSL: Precon' DB 'dition failure at c:\projects\gsl\include\gsl\span: 266', 00H ; `string' CONST ENDS ; COMDAT _CT??_R0?AUnarrowing_error@gsl@@@8??0narrowing_error@gsl@@QEAA@AEBU01@@Z24 xdata$x SEGMENT _CT??_R0?AUnarrowing_error@gsl@@@8??0narrowing_error@gsl@@QEAA@AEBU01@@Z24 DD 00H DD imagerel ??_R0?AUnarrowing_error@gsl@@@8 DD 00H DD 0ffffffffH ORG $+4 DD 018H DD imagerel ??0narrowing_error@gsl@@QEAA@AEBU01@@Z xdata$x ENDS ; COMDAT ??_R0?AUnarrowing_error@gsl@@@8 data$r SEGMENT ??_R0?AUnarrowing_error@gsl@@@8 DQ FLAT:??_7type_info@@6B@ ; gsl::narrowing_error `RTTI Type Descriptor' DQ 0000000000000000H DB '.?AUnarrowing_error@gsl@@', 00H data$r ENDS ; COMDAT _CTA2?AUnarrowing_error@gsl@@ xdata$x SEGMENT _CTA2?AUnarrowing_error@gsl@@ DD 02H DD imagerel _CT??_R0?AUnarrowing_error@gsl@@@8??0narrowing_error@gsl@@QEAA@AEBU01@@Z24 DD imagerel _CT??_R0?AVexception@std@@@8??0exception@std@@QEAA@AEBV01@@Z24 xdata$x ENDS ; COMDAT _TI2?AUnarrowing_error@gsl@@ xdata$x SEGMENT _TI2?AUnarrowing_error@gsl@@ DD 00H DD imagerel ??1narrowing_error@gsl@@UEAA@XZ DD 00H DD imagerel _CTA2?AUnarrowing_error@gsl@@ xdata$x ENDS ; COMDAT ??_C@_0EL@CANAMLLN@GSL?3?5Postcondition?5failure?5at?5c@ CONST SEGMENT ??_C@_0EL@CANAMLLN@GSL?3?5Postcondition?5failure?5at?5c@ DB 'GSL: Postcon' DB 'dition failure at c:\projects\gsl\include\gsl\string_span: 12' DB '2', 00H ; `string' CONST ENDS ; COMDAT ??_C@_0EL@HEMMNCGC@GSL?3?5Postcondition?5failure?5at?5c@ CONST SEGMENT ??_C@_0EL@HEMMNCGC@GSL?3?5Postcondition?5failure?5at?5c@ DB 'GSL: Postcon' DB 'dition failure at c:\projects\gsl\include\gsl\string_span: 11' DB '4', 00H ; `string' CONST ENDS ; COMDAT ??_C@_0ED@JOPLHMJE@GSL?3?5Precondition?5failure?5at?5c?3@ CONST SEGMENT ??_C@_0ED@JOPLHMJE@GSL?3?5Precondition?5failure?5at?5c?3@ DB 'GSL: Precon' DB 'dition failure at c:\projects\gsl\include\gsl\span: 321', 00H ; `string' CONST ENDS ; COMDAT ??_C@_0ED@LKBIKNJ@GSL?3?5Precondition?5failure?5at?5c?3@ CONST SEGMENT ??_C@_0ED@LKBIKNJ@GSL?3?5Precondition?5failure?5at?5c?3@ DB 'GSL: Precond' DB 'ition failure at c:\projects\gsl\include\gsl\span: 272', 00H ; `string' CONST ENDS ; COMDAT ??_C@_0ED@HPBMEGKB@GSL?3?5Precondition?5failure?5at?5c?3@ CONST SEGMENT ??_C@_0ED@HPBMEGKB@GSL?3?5Precondition?5failure?5at?5c?3@ DB 'GSL: Precon' DB 'dition failure at c:\projects\gsl\include\gsl\span: 599', 00H ; `string' CONST ENDS ; COMDAT ??_C@_0EL@EPJEKFNE@GSL?3?5Precondition?5failure?5at?5c?3@ CONST SEGMENT ??_C@_0EL@EPJEKFNE@GSL?3?5Precondition?5failure?5at?5c?3@ DB 'GSL: Precon' DB 'dition failure at c:\projects\gsl\include\gsl\gsl_algorithm: ' DB '50', 00H ; `string' CONST ENDS ; COMDAT _CT??_R0?AVlogic_error@std@@@8??0logic_error@std@@QEAA@AEBV01@@Z24 xdata$x SEGMENT _CT??_R0?AVlogic_error@std@@@8??0logic_error@std@@QEAA@AEBV01@@Z24 DD 00H DD imagerel ??_R0?AVlogic_error@std@@@8 DD 00H DD 0ffffffffH ORG $+4 DD 018H DD imagerel ??0logic_error@std@@QEAA@AEBV01@@Z xdata$x ENDS ; COMDAT ??_R0?AVlogic_error@std@@@8 data$r SEGMENT ??_R0?AVlogic_error@std@@@8 DQ FLAT:??_7type_info@@6B@ ; std::logic_error `RTTI Type Descriptor' DQ 0000000000000000H DB '.?AVlogic_error@std@@', 00H data$r ENDS ; COMDAT _CT??_R0?AUfail_fast@gsl@@@8??0fail_fast@gsl@@QEAA@AEBU01@@Z24 xdata$x SEGMENT _CT??_R0?AUfail_fast@gsl@@@8??0fail_fast@gsl@@QEAA@AEBU01@@Z24 DD 00H DD imagerel ??_R0?AUfail_fast@gsl@@@8 DD 00H DD 0ffffffffH ORG $+4 DD 018H DD imagerel ??0fail_fast@gsl@@QEAA@AEBU01@@Z xdata$x ENDS ; COMDAT ??_R0?AUfail_fast@gsl@@@8 data$r SEGMENT ??_R0?AUfail_fast@gsl@@@8 DQ FLAT:??_7type_info@@6B@ ; gsl::fail_fast `RTTI Type Descriptor' DQ 0000000000000000H DB '.?AUfail_fast@gsl@@', 00H data$r ENDS ; COMDAT _CTA3?AUfail_fast@gsl@@ xdata$x SEGMENT _CTA3?AUfail_fast@gsl@@ DD 03H DD imagerel _CT??_R0?AUfail_fast@gsl@@@8??0fail_fast@gsl@@QEAA@AEBU01@@Z24 DD imagerel _CT??_R0?AVlogic_error@std@@@8??0logic_error@std@@QEAA@AEBV01@@Z24 DD imagerel _CT??_R0?AVexception@std@@@8??0exception@std@@QEAA@AEBV01@@Z24 xdata$x ENDS ; COMDAT _TI3?AUfail_fast@gsl@@ xdata$x SEGMENT _TI3?AUfail_fast@gsl@@ DD 00H DD imagerel ??1fail_fast@gsl@@UEAA@XZ DD 00H DD imagerel _CTA3?AUfail_fast@gsl@@ xdata$x ENDS ; COMDAT ??_C@_0ED@MMILCDJF@GSL?3?5Precondition?5failure?5at?5c?3@ CONST SEGMENT ??_C@_0ED@MMILCDJF@GSL?3?5Precondition?5failure?5at?5c?3@ DB 'GSL: Precon' DB 'dition failure at c:\projects\gsl\include\gsl\span: 635', 00H ; `string' CONST ENDS ; COMDAT ??_C@_0ED@KIOHOGJB@GSL?3?5Precondition?5failure?5at?5c?3@ CONST SEGMENT ??_C@_0ED@KIOHOGJB@GSL?3?5Precondition?5failure?5at?5c?3@ DB 'GSL: Precon' DB 'dition failure at c:\projects\gsl\include\gsl\span: 631', 00H ; `string' CONST ENDS ; COMDAT ??_C@_0ED@GHOHAFBM@GSL?3?5Precondition?5failure?5at?5c?3@ CONST SEGMENT ??_C@_0ED@GHOHAFBM@GSL?3?5Precondition?5failure?5at?5c?3@ DB 'GSL: Precon' DB 'dition failure at c:\projects\gsl\include\gsl\span: 157', 00H ; `string' CONST ENDS ; COMDAT ??_C@_0ED@PLCCJGML@GSL?3?5Precondition?5failure?5at?5c?3@ CONST SEGMENT ??_C@_0ED@PLCCJGML@GSL?3?5Precondition?5failure?5at?5c?3@ DB 'GSL: Precon' DB 'dition failure at c:\projects\gsl\include\gsl\span: 169', 00H ; `string' CONST ENDS ; COMDAT ??_C@_0ED@HAMNHNCO@GSL?3?5Precondition?5failure?5at?5c?3@ CONST SEGMENT ??_C@_0ED@HAMNHNCO@GSL?3?5Precondition?5failure?5at?5c?3@ DB 'GSL: Precon' DB 'dition failure at c:\projects\gsl\include\gsl\span: 509', 00H ; `string' CONST ENDS ; COMDAT ??_C@_0L@CCAJJBND@iVtrau?5lDC@ CONST SEGMENT ??_C@_0L@CCAJJBND@iVtrau?5lDC@ DB 'iVtrau lDC', 00H ; `string' CONST ENDS ; COMDAT ??_C@_0ED@NAHIIAGE@GSL?3?5Precondition?5failure?5at?5c?3@ CONST SEGMENT ??_C@_0ED@NAHIIAGE@GSL?3?5Precondition?5failure?5at?5c?3@ DB 'GSL: Precon' DB 'dition failure at c:\projects\gsl\include\gsl\span: 336', 00H ; `string' CONST ENDS ; COMDAT ??_7narrowing_error@gsl@@6B@ CONST SEGMENT ??_7narrowing_error@gsl@@6B@ DQ FLAT:??_R4narrowing_error@gsl@@6B@ ; gsl::narrowing_error::`vftable' DQ FLAT:??_Enarrowing_error@gsl@@UEAAPEAXI@Z DQ FLAT:?what@exception@std@@UEBAPEBDXZ CONST ENDS ; COMDAT _CT??_R0?AVexception@std@@@8??0exception@std@@QEAA@AEBV01@@Z24 xdata$x SEGMENT _CT??_R0?AVexception@std@@@8??0exception@std@@QEAA@AEBV01@@Z24 DD 00H DD imagerel ??_R0?AVexception@std@@@8 DD 00H DD 0ffffffffH ORG $+4 DD 018H DD imagerel ??0exception@std@@QEAA@AEBV01@@Z xdata$x ENDS ; COMDAT ??_R0?AVexception@std@@@8 data$r SEGMENT ??_R0?AVexception@std@@@8 DQ FLAT:??_7type_info@@6B@ ; std::exception `RTTI Type Descriptor' DQ 0000000000000000H DB '.?AVexception@std@@', 00H data$r ENDS ; COMDAT ??_7fail_fast@gsl@@6B@ CONST SEGMENT ??_7fail_fast@gsl@@6B@ DQ FLAT:??_R4fail_fast@gsl@@6B@ ; gsl::fail_fast::`vftable' DQ FLAT:??_Efail_fast@gsl@@UEAAPEAXI@Z DQ FLAT:?what@exception@std@@UEBAPEBDXZ CONST ENDS ; COMDAT ??_7logic_error@std@@6B@ CONST SEGMENT ??_7logic_error@std@@6B@ DQ FLAT:??_R4logic_error@std@@6B@ ; std::logic_error::`vftable' DQ FLAT:??_Elogic_error@std@@UEAAPEAXI@Z DQ FLAT:?what@exception@std@@UEBAPEBDXZ CONST ENDS ; COMDAT ??_C@_0BC@EOODALEL@Unknown?5exception@ CONST SEGMENT ??_C@_0BC@EOODALEL@Unknown?5exception@ DB 'Unknown exception', 00H ; `string' CONST ENDS ; COMDAT ??_7exception@std@@6B@ CONST SEGMENT ??_7exception@std@@6B@ DQ FLAT:??_R4exception@std@@6B@ ; std::exception::`vftable' DQ FLAT:??_Eexception@std@@UEAAPEAXI@Z DQ FLAT:?what@exception@std@@UEBAPEBDXZ CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$_Copy_n_unchecked4@PEBD_JPEAE@std@@YAPEAEPEBD_JPEAEU_Trivially_copyable_ptr_iterator_tag@0@@Z DD 040a01H DD 06340aH DD 07006320aH xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$_Copy_memmove@PEBDPEAE@std@@YAPEAEPEBD0PEAE@Z DD 040a01H DD 06340aH DD 07006320aH xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$_Copy_n_unchecked4@PEAH_JPEAH@std@@YAPEAHPEAH_J0U_Trivially_copyable_ptr_iterator_tag@0@@Z DD 040a01H DD 06340aH DD 07006320aH xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$_Copy_memmove@PEAHPEAH@std@@YAPEAHPEAH00@Z DD 040a01H DD 06340aH DD 07006320aH xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$1@?0???$?0V?$extent_type@$05@details@gsl@@@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAHV?$extent_type@$05@details@2@@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$??$?0V?$extent_type@$05@details@gsl@@@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAHV?$extent_type@$05@details@2@@Z DD imagerel ??$?0V?$extent_type@$05@details@gsl@@@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAHV?$extent_type@$05@details@2@@Z+79 DD 01H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$??$?0V?$extent_type@$05@details@gsl@@@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAHV?$extent_type@$05@details@2@@Z DD 0ffffffffH DD 00H DD 0ffffffffH DD imagerel ?dtor$1@?0???$?0V?$extent_type@$05@details@gsl@@@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAHV?$extent_type@$05@details@2@@Z@4HA xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$??$?0V?$extent_type@$05@details@gsl@@@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAHV?$extent_type@$05@details@2@@Z DD 019930522H DD 02H DD imagerel $stateUnwindMap$??$?0V?$extent_type@$05@details@gsl@@@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAHV?$extent_type@$05@details@2@@Z DD 00H DD 00H DD 01H DD imagerel $ip2state$??$?0V?$extent_type@$05@details@gsl@@@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAHV?$extent_type@$05@details@2@@Z DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$?0V?$extent_type@$05@details@gsl@@@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAHV?$extent_type@$05@details@2@@Z DD 011211H DD 08209H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$??$?0V?$extent_type@$05@details@gsl@@@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAHV?$extent_type@$05@details@2@@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$_Copy_n_unchecked3@PEBD_JPEAE@std@@YAPEAEPEBD_JPEAE@Z DD 040a01H DD 06340aH DD 07006320aH xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$throw_exception@Unarrowing_error@gsl@@@details@gsl@@YAX$$QEAUnarrowing_error@1@@Z DD 010401H DD 08204H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$_Copy_unchecked1@PEBDPEAE@std@@YAPEAEPEBD0PEAEU_Trivially_copyable_ptr_iterator_tag@0@@Z DD 040a01H DD 06340aH DD 07006320aH xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$??$_Adl_verify_range1@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@0U?$integral_constant@_N$00@0@@Z DD imagerel ??$_Adl_verify_range1@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@0U?$integral_constant@_N$00@0@@Z+81 DD 00H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$??$_Adl_verify_range1@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@0U?$integral_constant@_N$00@0@@Z DD 0ffffffffH DD imagerel __std_terminate xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$??$_Adl_verify_range1@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@0U?$integral_constant@_N$00@0@@Z DD 019930522H DD 01H DD imagerel $stateUnwindMap$??$_Adl_verify_range1@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@0U?$integral_constant@_N$00@0@@Z DD 00H DD 00H DD 01H DD imagerel $ip2state$??$_Adl_verify_range1@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@0U?$integral_constant@_N$00@0@@Z DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$_Adl_verify_range1@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@0U?$integral_constant@_N$00@0@@Z DD 010d11H DD 0c204H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$??$_Adl_verify_range1@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@0U?$integral_constant@_N$00@0@@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$2@?0???$ensure_sentinel@$$CBD$0A@@gsl@@YA?AV?$span@$$CBD$0?0@0@PEBD_J@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$0@?0???$ensure_sentinel@$$CBD$0A@@gsl@@YA?AV?$span@$$CBD$0?0@0@PEBD_J@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$??$ensure_sentinel@$$CBD$0A@@gsl@@YA?AV?$span@$$CBD$0?0@0@PEBD_J@Z DD imagerel ??$ensure_sentinel@$$CBD$0A@@gsl@@YA?AV?$span@$$CBD$0?0@0@PEBD_J@Z+77 DD 0ffffffffH DD imagerel ??$ensure_sentinel@$$CBD$0A@@gsl@@YA?AV?$span@$$CBD$0?0@0@PEBD_J@Z+120 DD 02H DD imagerel ??$ensure_sentinel@$$CBD$0A@@gsl@@YA?AV?$span@$$CBD$0?0@0@PEBD_J@Z+155 DD 00H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$??$ensure_sentinel@$$CBD$0A@@gsl@@YA?AV?$span@$$CBD$0?0@0@PEBD_J@Z DD 0ffffffffH DD imagerel ?dtor$0@?0???$ensure_sentinel@$$CBD$0A@@gsl@@YA?AV?$span@$$CBD$0?0@0@PEBD_J@Z@4HA DD 0ffffffffH DD 00H DD 0ffffffffH DD imagerel ?dtor$2@?0???$ensure_sentinel@$$CBD$0A@@gsl@@YA?AV?$span@$$CBD$0?0@0@PEBD_J@Z@4HA xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$??$ensure_sentinel@$$CBD$0A@@gsl@@YA?AV?$span@$$CBD$0?0@0@PEBD_J@Z DD 019930522H DD 03H DD imagerel $stateUnwindMap$??$ensure_sentinel@$$CBD$0A@@gsl@@YA?AV?$span@$$CBD$0?0@0@PEBD_J@Z DD 00H DD 00H DD 03H DD imagerel $ip2state$??$ensure_sentinel@$$CBD$0A@@gsl@@YA?AV?$span@$$CBD$0?0@0@PEBD_J@Z DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$ensure_sentinel@$$CBD$0A@@gsl@@YA?AV?$span@$$CBD$0?0@0@PEBD_J@Z DD 020f11H DD 030027206H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$??$ensure_sentinel@$$CBD$0A@@gsl@@YA?AV?$span@$$CBD$0?0@0@PEBD_J@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$_Copy_n_unchecked3@PEAH_JPEAH@std@@YAPEAHPEAH_J0@Z DD 040a01H DD 06340aH DD 07006320aH xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$_Copy_unchecked1@PEAHPEAH@std@@YAPEAHPEAH00U_Trivially_copyable_ptr_iterator_tag@0@@Z DD 040a01H DD 06340aH DD 07006320aH xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$??$_Adl_verify_range1@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@0U?$integral_constant@_N$00@0@@Z DD imagerel ??$_Adl_verify_range1@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@0U?$integral_constant@_N$00@0@@Z+81 DD 00H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$??$_Adl_verify_range1@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@0U?$integral_constant@_N$00@0@@Z DD 0ffffffffH DD imagerel __std_terminate xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$??$_Adl_verify_range1@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@0U?$integral_constant@_N$00@0@@Z DD 019930522H DD 01H DD imagerel $stateUnwindMap$??$_Adl_verify_range1@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@0U?$integral_constant@_N$00@0@@Z DD 00H DD 00H DD 01H DD imagerel $ip2state$??$_Adl_verify_range1@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@0U?$integral_constant@_N$00@0@@Z DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$_Adl_verify_range1@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@0U?$integral_constant@_N$00@0@@Z DD 010d11H DD 0c204H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$??$_Adl_verify_range1@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@0U?$integral_constant@_N$00@0@@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$1@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@PEAE_J@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$2@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@PEAE_J@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@PEAE_J@Z DD imagerel ??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@PEAE_J@Z+80 DD 02H DD imagerel ??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@PEAE_J@Z+115 DD 00H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@PEAE_J@Z DD 0ffffffffH DD imagerel ?dtor$2@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@PEAE_J@Z@4HA DD 0ffffffffH DD 00H DD 0ffffffffH DD imagerel ?dtor$1@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@PEAE_J@Z@4HA xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@PEAE_J@Z DD 019930522H DD 03H DD imagerel $stateUnwindMap$??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@PEAE_J@Z DD 00H DD 00H DD 02H DD imagerel $ip2state$??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@PEAE_J@Z DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@PEAE_J@Z DD 010d11H DD 08204H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@PEAE_J@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$1@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$2@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z DD imagerel ??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z+80 DD 02H DD imagerel ??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z+115 DD 00H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z DD 0ffffffffH DD imagerel ?dtor$2@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z@4HA DD 0ffffffffH DD 00H DD 0ffffffffH DD imagerel ?dtor$1@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z@4HA xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z DD 019930522H DD 03H DD imagerel $stateUnwindMap$??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z DD 00H DD 00H DD 02H DD imagerel $ip2state$??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z DD 010d11H DD 08204H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$4@?0???$?0H$05X@?$span@H$0?0@gsl@@QEAA@AEBV?$span@H$05@1@@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$??$?0H$05X@?$span@H$0?0@gsl@@QEAA@AEBV?$span@H$05@1@@Z DD imagerel ??$?0H$05X@?$span@H$0?0@gsl@@QEAA@AEBV?$span@H$05@1@@Z+77 DD 02H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$??$?0H$05X@?$span@H$0?0@gsl@@QEAA@AEBV?$span@H$05@1@@Z DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD imagerel ?dtor$4@?0???$?0H$05X@?$span@H$0?0@gsl@@QEAA@AEBV?$span@H$05@1@@Z@4HA xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$??$?0H$05X@?$span@H$0?0@gsl@@QEAA@AEBV?$span@H$05@1@@Z DD 019930522H DD 03H DD imagerel $stateUnwindMap$??$?0H$05X@?$span@H$0?0@gsl@@QEAA@AEBV?$span@H$05@1@@Z DD 00H DD 00H DD 01H DD imagerel $ip2state$??$?0H$05X@?$span@H$0?0@gsl@@QEAA@AEBV?$span@H$05@1@@Z DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$?0H$05X@?$span@H$0?0@gsl@@QEAA@AEBV?$span@H$05@1@@Z DD 010d11H DD 08204H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$??$?0H$05X@?$span@H$0?0@gsl@@QEAA@AEBV?$span@H$05@1@@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$copy_n@PEBD_JPEAE@std@@YAPEAEPEBD_JPEAE@Z DD 040a01H DD 06340aH DD 07006320aH xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$narrow@_J_J@gsl@@YA_J_J@Z DD 010c01H DD 02204H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$_Copy_unchecked@PEBDPEAE@std@@YAPEAEPEBD0PEAE@Z DD 040a01H DD 06340aH DD 07006320aH xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$??$_Get_unwrapped_n@V?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@_J$0A@@std@@YAPEAEAEBV?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@_J@Z DD imagerel ??$_Get_unwrapped_n@V?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@_J$0A@@std@@YAPEAEAEBV?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@_J@Z+66 DD 00H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$??$_Get_unwrapped_n@V?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@_J$0A@@std@@YAPEAEAEBV?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@_J@Z DD 0ffffffffH DD imagerel __std_terminate xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$??$_Get_unwrapped_n@V?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@_J$0A@@std@@YAPEAEAEBV?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@_J@Z DD 019930522H DD 01H DD imagerel $stateUnwindMap$??$_Get_unwrapped_n@V?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@_J$0A@@std@@YAPEAEAEBV?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@_J@Z DD 00H DD 00H DD 01H DD imagerel $ip2state$??$_Get_unwrapped_n@V?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@_J$0A@@std@@YAPEAEAEBV?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@_J@Z DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$_Get_unwrapped_n@V?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@_J$0A@@std@@YAPEAEAEBV?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@_J@Z DD 010d11H DD 08204H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$??$_Get_unwrapped_n@V?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@_J$0A@@std@@YAPEAEAEBV?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@_J@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$??$_Adl_verify_range@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@0@Z DD imagerel ??$_Adl_verify_range@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@0@Z+81 DD 00H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$??$_Adl_verify_range@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@0@Z DD 0ffffffffH DD imagerel __std_terminate xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$??$_Adl_verify_range@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@0@Z DD 019930522H DD 01H DD imagerel $stateUnwindMap$??$_Adl_verify_range@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@0@Z DD 00H DD 00H DD 01H DD imagerel $ip2state$??$_Adl_verify_range@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@0@Z DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$_Adl_verify_range@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@0@Z DD 010d11H DD 0c204H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$??$_Adl_verify_range@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@0@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$2@?0???$ensure_z@$$CBD@gsl@@YA?AV?$span@$$CBD$0?0@0@AEBQEBD_J@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$0@?0???$ensure_z@$$CBD@gsl@@YA?AV?$span@$$CBD$0?0@0@AEBQEBD_J@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$??$ensure_z@$$CBD@gsl@@YA?AV?$span@$$CBD$0?0@0@AEBQEBD_J@Z DD imagerel ??$ensure_z@$$CBD@gsl@@YA?AV?$span@$$CBD$0?0@0@AEBQEBD_J@Z+77 DD 0ffffffffH DD imagerel ??$ensure_z@$$CBD@gsl@@YA?AV?$span@$$CBD$0?0@0@AEBQEBD_J@Z+120 DD 02H DD imagerel ??$ensure_z@$$CBD@gsl@@YA?AV?$span@$$CBD$0?0@0@AEBQEBD_J@Z+155 DD 00H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$??$ensure_z@$$CBD@gsl@@YA?AV?$span@$$CBD$0?0@0@AEBQEBD_J@Z DD 0ffffffffH DD imagerel ?dtor$0@?0???$ensure_z@$$CBD@gsl@@YA?AV?$span@$$CBD$0?0@0@AEBQEBD_J@Z@4HA DD 0ffffffffH DD 00H DD 0ffffffffH DD imagerel ?dtor$2@?0???$ensure_z@$$CBD@gsl@@YA?AV?$span@$$CBD$0?0@0@AEBQEBD_J@Z@4HA xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$??$ensure_z@$$CBD@gsl@@YA?AV?$span@$$CBD$0?0@0@AEBQEBD_J@Z DD 019930522H DD 03H DD imagerel $stateUnwindMap$??$ensure_z@$$CBD@gsl@@YA?AV?$span@$$CBD$0?0@0@AEBQEBD_J@Z DD 00H DD 00H DD 03H DD imagerel $ip2state$??$ensure_z@$$CBD@gsl@@YA?AV?$span@$$CBD$0?0@0@AEBQEBD_J@Z DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$ensure_z@$$CBD@gsl@@YA?AV?$span@$$CBD$0?0@0@AEBQEBD_J@Z DD 020f11H DD 030027206H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$??$ensure_z@$$CBD@gsl@@YA?AV?$span@$$CBD$0?0@0@AEBQEBD_J@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$?0V?$extent_type@$09@details@gsl@@@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@UKnownNotNull@12@V?$extent_type@$09@details@2@@Z DD 010c01H DD 02204H xdata ENDS ; COMDAT xdata xdata SEGMENT $chain$1$??$copy_n@PEAH_JPEAH@std@@YAPEAHPEAH_J0@Z DD 021H DD imagerel $LN20 DD imagerel $LN20+14 DD imagerel $unwind$??$copy_n@PEAH_JPEAH@std@@YAPEAHPEAH_J0@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $chain$0$??$copy_n@PEAH_JPEAH@std@@YAPEAHPEAH_J0@Z DD 020521H DD 063405H DD imagerel $LN20 DD imagerel $LN20+14 DD imagerel $unwind$??$copy_n@PEAH_JPEAH@std@@YAPEAHPEAH_J0@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$copy_n@PEAH_JPEAH@std@@YAPEAHPEAH_J0@Z DD 020601H DD 070023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$_Copy_unchecked@PEAHPEAH@std@@YAPEAHPEAH00@Z DD 040a01H DD 06340aH DD 07006320aH xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$??$_Get_unwrapped_n@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@_J$0A@@std@@YAPEAHAEBV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@_J@Z DD imagerel ??$_Get_unwrapped_n@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@_J$0A@@std@@YAPEAHAEBV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@_J@Z+67 DD 00H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$??$_Get_unwrapped_n@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@_J$0A@@std@@YAPEAHAEBV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@_J@Z DD 0ffffffffH DD imagerel __std_terminate xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$??$_Get_unwrapped_n@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@_J$0A@@std@@YAPEAHAEBV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@_J@Z DD 019930522H DD 01H DD imagerel $stateUnwindMap$??$_Get_unwrapped_n@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@_J$0A@@std@@YAPEAHAEBV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@_J@Z DD 00H DD 00H DD 01H DD imagerel $ip2state$??$_Get_unwrapped_n@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@_J$0A@@std@@YAPEAHAEBV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@_J@Z DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$_Get_unwrapped_n@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@_J$0A@@std@@YAPEAHAEBV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@_J@Z DD 010d11H DD 08204H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$??$_Get_unwrapped_n@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@_J$0A@@std@@YAPEAHAEBV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@_J@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$??$_Adl_verify_range@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@0@Z DD imagerel ??$_Adl_verify_range@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@0@Z+81 DD 00H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$??$_Adl_verify_range@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@0@Z DD 0ffffffffH DD imagerel __std_terminate xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$??$_Adl_verify_range@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@0@Z DD 019930522H DD 01H DD imagerel $stateUnwindMap$??$_Adl_verify_range@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@0@Z DD 00H DD 00H DD 01H DD imagerel $ip2state$??$_Adl_verify_range@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@0@Z DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$_Adl_verify_range@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@0@Z DD 010d11H DD 0c204H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$??$_Adl_verify_range@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@0@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$?0V?$extent_type@$0A@@details@gsl@@@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAHV?$extent_type@$0A@@details@2@@Z DD 010c01H DD 02204H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$?0V?$extent_type@$05@details@gsl@@@?$storage_type@V?$extent_type@$05@details@gsl@@@?$span@H$05@gsl@@QEAA@UKnownNotNull@12@V?$extent_type@$05@details@2@@Z DD 010c01H DD 02204H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$?0V?$extent_type@$05@details@gsl@@@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@UKnownNotNull@12@V?$extent_type@$05@details@2@@Z DD 010c01H DD 02204H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$1@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@UKnownNotNull@12@_J@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@UKnownNotNull@12@_J@Z DD imagerel ??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@UKnownNotNull@12@_J@Z+70 DD 00H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@UKnownNotNull@12@_J@Z DD 0ffffffffH DD imagerel ?dtor$1@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@UKnownNotNull@12@_J@Z@4HA DD 0ffffffffH DD 00H xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@UKnownNotNull@12@_J@Z DD 019930522H DD 02H DD imagerel $stateUnwindMap$??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@UKnownNotNull@12@_J@Z DD 00H DD 00H DD 01H DD imagerel $ip2state$??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@UKnownNotNull@12@_J@Z DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@UKnownNotNull@12@_J@Z DD 010d11H DD 08204H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@UKnownNotNull@12@_J@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$1@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAH_J@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$2@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAH_J@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAH_J@Z DD imagerel ??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAH_J@Z+80 DD 02H DD imagerel ??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAH_J@Z+115 DD 00H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAH_J@Z DD 0ffffffffH DD imagerel ?dtor$2@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAH_J@Z@4HA DD 0ffffffffH DD 00H DD 0ffffffffH DD imagerel ?dtor$1@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAH_J@Z@4HA xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAH_J@Z DD 019930522H DD 03H DD imagerel $stateUnwindMap$??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAH_J@Z DD 00H DD 00H DD 02H DD imagerel $ip2state$??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAH_J@Z DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAH_J@Z DD 010d11H DD 08204H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAH_J@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$4@?0???$make_subspan@$05@?$span@H$05@gsl@@AEBA?AV?$span@H$0?0@1@_J0V?$subspan_selector@$05@01@@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$??$make_subspan@$05@?$span@H$05@gsl@@AEBA?AV?$span@H$0?0@1@_J0V?$subspan_selector@$05@01@@Z DD imagerel ??$make_subspan@$05@?$span@H$05@gsl@@AEBA?AV?$span@H$0?0@1@_J0V?$subspan_selector@$05@01@@Z+58 DD 0ffffffffH DD imagerel ??$make_subspan@$05@?$span@H$05@gsl@@AEBA?AV?$span@H$0?0@1@_J0V?$subspan_selector@$05@01@@Z+101 DD 02H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$??$make_subspan@$05@?$span@H$05@gsl@@AEBA?AV?$span@H$0?0@1@_J0V?$subspan_selector@$05@01@@Z DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD imagerel ?dtor$4@?0???$make_subspan@$05@?$span@H$05@gsl@@AEBA?AV?$span@H$0?0@1@_J0V?$subspan_selector@$05@01@@Z@4HA xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$??$make_subspan@$05@?$span@H$05@gsl@@AEBA?AV?$span@H$0?0@1@_J0V?$subspan_selector@$05@01@@Z DD 019930522H DD 03H DD imagerel $stateUnwindMap$??$make_subspan@$05@?$span@H$05@gsl@@AEBA?AV?$span@H$0?0@1@_J0V?$subspan_selector@$05@01@@Z DD 00H DD 00H DD 02H DD imagerel $ip2state$??$make_subspan@$05@?$span@H$05@gsl@@AEBA?AV?$span@H$0?0@1@_J0V?$subspan_selector@$05@01@@Z DD 038H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$make_subspan@$05@?$span@H$05@gsl@@AEBA?AV?$span@H$0?0@1@_J0V?$subspan_selector@$05@01@@Z DD 020f11H DD 03002b206H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$??$make_subspan@$05@?$span@H$05@gsl@@AEBA?AV?$span@H$0?0@1@_J0V?$subspan_selector@$05@01@@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$0@?0???$copy@$$CBD$0?0E$0?0@gsl@@YAXV?$span@$$CBD$0?0@0@V?$span@E$0?0@0@@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$??$copy@$$CBD$0?0E$0?0@gsl@@YAXV?$span@$$CBD$0?0@0@V?$span@E$0?0@0@@Z DD imagerel ??$copy@$$CBD$0?0E$0?0@gsl@@YAXV?$span@$$CBD$0?0@0@V?$span@E$0?0@0@@Z+88 DD 00H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$??$copy@$$CBD$0?0E$0?0@gsl@@YAXV?$span@$$CBD$0?0@0@V?$span@E$0?0@0@@Z DD 0ffffffffH DD imagerel ?dtor$0@?0???$copy@$$CBD$0?0E$0?0@gsl@@YAXV?$span@$$CBD$0?0@0@V?$span@E$0?0@0@@Z@4HA xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$??$copy@$$CBD$0?0E$0?0@gsl@@YAXV?$span@$$CBD$0?0@0@V?$span@E$0?0@0@@Z DD 019930522H DD 01H DD imagerel $stateUnwindMap$??$copy@$$CBD$0?0E$0?0@gsl@@YAXV?$span@$$CBD$0?0@0@V?$span@E$0?0@0@@Z DD 00H DD 00H DD 01H DD imagerel $ip2state$??$copy@$$CBD$0?0E$0?0@gsl@@YAXV?$span@$$CBD$0?0@0@V?$span@E$0?0@0@@Z DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$copy@$$CBD$0?0E$0?0@gsl@@YAXV?$span@$$CBD$0?0@0@V?$span@E$0?0@0@@Z DD 010d11H DD 08204H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$??$copy@$$CBD$0?0E$0?0@gsl@@YAXV?$span@$$CBD$0?0@0@V?$span@E$0?0@0@@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$?0V?$basic_string_span@$$CBD$0?0@gsl@@X@?$span@$$CBD$0?0@gsl@@QEAA@AEAV?$basic_string_span@$$CBD$0?0@1@@Z DD 020f01H DD 030025206H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$35@?0??test_string_gsl_copy@@YAXXZ@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$15@?0??test_string_gsl_copy@@YAXXZ@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$6@?0??test_string_gsl_copy@@YAXXZ@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$?test_string_gsl_copy@@YAXXZ DD imagerel ?test_string_gsl_copy@@YAXXZ+144 DD 0ffffffffH DD imagerel ?test_string_gsl_copy@@YAXXZ+191 DD 0cH DD imagerel ?test_string_gsl_copy@@YAXXZ+208 DD 0ffffffffH DD imagerel ?test_string_gsl_copy@@YAXXZ+237 DD 04H DD imagerel ?test_string_gsl_copy@@YAXXZ+272 DD 03H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$?test_string_gsl_copy@@YAXXZ DD 0ffffffffH DD imagerel __std_terminate DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD imagerel ?dtor$6@?0??test_string_gsl_copy@@YAXXZ@4HA DD 0ffffffffH DD imagerel ?dtor$15@?0??test_string_gsl_copy@@YAXXZ@4HA DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD imagerel ?dtor$35@?0??test_string_gsl_copy@@YAXXZ@4HA xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$?test_string_gsl_copy@@YAXXZ DD 019930522H DD 0dH DD imagerel $stateUnwindMap$?test_string_gsl_copy@@YAXXZ DD 00H DD 00H DD 05H DD imagerel $ip2state$?test_string_gsl_copy@@YAXXZ DD 050H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$?test_string_gsl_copy@@YAXXZ DD 022219H DD 0130107H DD imagerel __GSHandlerCheck_EH DD imagerel $cppxdata$?test_string_gsl_copy@@YAXXZ DD 082H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$??$copy@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@V?$span_iterator@V?$span@E$0?0@gsl@@$0A@@23@@std@@YA?AV?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@23@0V123@@Z DD imagerel ??$copy@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@V?$span_iterator@V?$span@E$0?0@gsl@@$0A@@23@@std@@YA?AV?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@23@0V123@@Z+225 DD 00H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$??$copy@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@V?$span_iterator@V?$span@E$0?0@gsl@@$0A@@23@@std@@YA?AV?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@23@0V123@@Z DD 0ffffffffH DD imagerel __std_terminate xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$??$copy@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@V?$span_iterator@V?$span@E$0?0@gsl@@$0A@@23@@std@@YA?AV?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@23@0V123@@Z DD 019930522H DD 01H DD imagerel $stateUnwindMap$??$copy@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@V?$span_iterator@V?$span@E$0?0@gsl@@$0A@@23@@std@@YA?AV?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@23@0V123@@Z DD 00H DD 00H DD 01H DD imagerel $ip2state$??$copy@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@V?$span_iterator@V?$span@E$0?0@gsl@@$0A@@23@@std@@YA?AV?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@23@0V123@@Z DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$copy@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@V?$span_iterator@V?$span@E$0?0@gsl@@$0A@@23@@std@@YA?AV?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@23@0V123@@Z DD 0a2111H DD 0117421H DD 010641dH DD 0f5419H DD 0e3415H DD 0e005b209H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$??$copy@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@V?$span_iterator@V?$span@E$0?0@gsl@@$0A@@23@@std@@YA?AV?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@23@0V123@@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$?_Verify_offset@?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@QEBAX_J@Z DD imagerel ?_Verify_offset@?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@QEBAX_J@Z+56 DD 0ffffffffH xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$?_Verify_offset@?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@QEBAX_J@Z DD 019930522H DD 00H DD 00H DD 00H DD 00H DD 01H DD imagerel $ip2state$?_Verify_offset@?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@QEBAX_J@Z DD 020H DD 00H DD 05H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$?_Verify_offset@?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@QEBAX_J@Z DD 010d19H DD 08204H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$?_Verify_offset@?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@QEBAX_J@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$?_Verify_range@details@gsl@@YAXV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@12@0@Z DD imagerel ?_Verify_range@details@gsl@@YAXV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@12@0@Z+57 DD 0ffffffffH xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$?_Verify_range@details@gsl@@YAXV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@12@0@Z DD 019930522H DD 00H DD 00H DD 00H DD 00H DD 01H DD imagerel $ip2state$?_Verify_range@details@gsl@@YAXV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@12@0@Z DD 020H DD 00H DD 05H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$?_Verify_range@details@gsl@@YAXV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@12@0@Z DD 010d19H DD 08204H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$?_Verify_range@details@gsl@@YAXV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@12@0@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$2@?0???$ensure_z@$$CBD$0L@@gsl@@YA?AV?$span@$$CBD$0?0@0@AEAY0L@$$CBD@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$0@?0???$ensure_z@$$CBD$0L@@gsl@@YA?AV?$span@$$CBD$0?0@0@AEAY0L@$$CBD@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$??$ensure_z@$$CBD$0L@@gsl@@YA?AV?$span@$$CBD$0?0@0@AEAY0L@$$CBD@Z DD imagerel ??$ensure_z@$$CBD$0L@@gsl@@YA?AV?$span@$$CBD$0?0@0@AEAY0L@$$CBD@Z+64 DD 0ffffffffH DD imagerel ??$ensure_z@$$CBD$0L@@gsl@@YA?AV?$span@$$CBD$0?0@0@AEAY0L@$$CBD@Z+107 DD 02H DD imagerel ??$ensure_z@$$CBD$0L@@gsl@@YA?AV?$span@$$CBD$0?0@0@AEAY0L@$$CBD@Z+142 DD 00H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$??$ensure_z@$$CBD$0L@@gsl@@YA?AV?$span@$$CBD$0?0@0@AEAY0L@$$CBD@Z DD 0ffffffffH DD imagerel ?dtor$0@?0???$ensure_z@$$CBD$0L@@gsl@@YA?AV?$span@$$CBD$0?0@0@AEAY0L@$$CBD@Z@4HA DD 0ffffffffH DD 00H DD 0ffffffffH DD imagerel ?dtor$2@?0???$ensure_z@$$CBD$0L@@gsl@@YA?AV?$span@$$CBD$0?0@0@AEAY0L@$$CBD@Z@4HA xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$??$ensure_z@$$CBD$0L@@gsl@@YA?AV?$span@$$CBD$0?0@0@AEAY0L@$$CBD@Z DD 019930522H DD 03H DD imagerel $stateUnwindMap$??$ensure_z@$$CBD$0L@@gsl@@YA?AV?$span@$$CBD$0?0@0@AEAY0L@$$CBD@Z DD 00H DD 00H DD 03H DD imagerel $ip2state$??$ensure_z@$$CBD$0L@@gsl@@YA?AV?$span@$$CBD$0?0@0@AEAY0L@$$CBD@Z DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$ensure_z@$$CBD$0L@@gsl@@YA?AV?$span@$$CBD$0?0@0@AEAY0L@$$CBD@Z DD 020f11H DD 030027206H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$??$ensure_z@$$CBD$0L@@gsl@@YA?AV?$span@$$CBD$0?0@0@AEAY0L@$$CBD@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$1@?0???0?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$2@?0???0?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$??0?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z DD imagerel ??0?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z+80 DD 02H DD imagerel ??0?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z+115 DD 00H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$??0?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z DD 0ffffffffH DD imagerel ?dtor$2@?0???0?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z@4HA DD 0ffffffffH DD 00H DD 0ffffffffH DD imagerel ?dtor$1@?0???0?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z@4HA xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$??0?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z DD 019930522H DD 03H DD imagerel $stateUnwindMap$??0?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z DD 00H DD 00H DD 02H DD imagerel $ip2state$??0?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$??0?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z DD 010d11H DD 08204H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$??0?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$??$?0$09@?$span@E$0?0@gsl@@QEAA@AEAY09E@Z DD 019930522H DD 00H DD 00H DD 00H DD 00H DD 2 DUP(00H) DD 00H DD 00H DD 05H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$?0$09@?$span@E$0?0@gsl@@QEAA@AEAY09E@Z DD 010c19H DD 02204H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$??$?0$09@?$span@E$0?0@gsl@@QEAA@AEAY09E@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$15@?0??test_string_std_copy@@YAXXZ@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$6@?0??test_string_std_copy@@YAXXZ@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$?test_string_std_copy@@YAXXZ DD imagerel ?test_string_std_copy@@YAXXZ+187 DD 0ffffffffH DD imagerel ?test_string_std_copy@@YAXXZ+216 DD 00H DD imagerel ?test_string_std_copy@@YAXXZ+242 DD 0ffffffffH DD imagerel ?test_string_std_copy@@YAXXZ+274 DD 04H DD imagerel ?test_string_std_copy@@YAXXZ+309 DD 03H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$?test_string_std_copy@@YAXXZ DD 0ffffffffH DD imagerel __std_terminate DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD imagerel ?dtor$6@?0??test_string_std_copy@@YAXXZ@4HA DD 0ffffffffH DD imagerel ?dtor$15@?0??test_string_std_copy@@YAXXZ@4HA DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$?test_string_std_copy@@YAXXZ DD 019930522H DD 07H DD imagerel $stateUnwindMap$?test_string_std_copy@@YAXXZ DD 00H DD 00H DD 05H DD imagerel $ip2state$?test_string_std_copy@@YAXXZ DD 060H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$?test_string_std_copy@@YAXXZ DD 022219H DD 0190107H DD imagerel __GSHandlerCheck_EH DD imagerel $cppxdata$?test_string_std_copy@@YAXXZ DD 0b2H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$0@?0???$copy@H$0?0H$0?0@gsl@@YAXV?$span@H$0?0@0@0@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$??$copy@H$0?0H$0?0@gsl@@YAXV?$span@H$0?0@0@0@Z DD imagerel ??$copy@H$0?0H$0?0@gsl@@YAXV?$span@H$0?0@0@0@Z+96 DD 00H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$??$copy@H$0?0H$0?0@gsl@@YAXV?$span@H$0?0@0@0@Z DD 0ffffffffH DD imagerel ?dtor$0@?0???$copy@H$0?0H$0?0@gsl@@YAXV?$span@H$0?0@0@0@Z@4HA xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$??$copy@H$0?0H$0?0@gsl@@YAXV?$span@H$0?0@0@0@Z DD 019930522H DD 01H DD imagerel $stateUnwindMap$??$copy@H$0?0H$0?0@gsl@@YAXV?$span@H$0?0@0@0@Z DD 00H DD 00H DD 01H DD imagerel $ip2state$??$copy@H$0?0H$0?0@gsl@@YAXV?$span@H$0?0@0@0@Z DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$copy@H$0?0H$0?0@gsl@@YAXV?$span@H$0?0@0@0@Z DD 010d11H DD 08204H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$??$copy@H$0?0H$0?0@gsl@@YAXV?$span@H$0?0@0@0@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$0@?0??gsl_copy_span@@YAXV?$span@H$0?0@gsl@@0@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$?gsl_copy_span@@YAXV?$span@H$0?0@gsl@@0@Z DD imagerel ?gsl_copy_span@@YAXV?$span@H$0?0@gsl@@0@Z+118 DD 00H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$?gsl_copy_span@@YAXV?$span@H$0?0@gsl@@0@Z DD 0ffffffffH DD imagerel ?dtor$0@?0??gsl_copy_span@@YAXV?$span@H$0?0@gsl@@0@Z@4HA xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$?gsl_copy_span@@YAXV?$span@H$0?0@gsl@@0@Z DD 019930522H DD 01H DD imagerel $stateUnwindMap$?gsl_copy_span@@YAXV?$span@H$0?0@gsl@@0@Z DD 00H DD 00H DD 01H DD imagerel $ip2state$?gsl_copy_span@@YAXV?$span@H$0?0@gsl@@0@Z DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$?gsl_copy_span@@YAXV?$span@H$0?0@gsl@@0@Z DD 010d11H DD 0c204H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$?gsl_copy_span@@YAXV?$span@H$0?0@gsl@@0@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$??$copy@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YA?AV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@00@Z DD imagerel ??$copy@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YA?AV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@00@Z+241 DD 00H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$??$copy@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YA?AV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@00@Z DD 0ffffffffH DD imagerel __std_terminate xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$??$copy@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YA?AV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@00@Z DD 019930522H DD 01H DD imagerel $stateUnwindMap$??$copy@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YA?AV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@00@Z DD 00H DD 00H DD 01H DD imagerel $ip2state$??$copy@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YA?AV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@00@Z DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$copy@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YA?AV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@00@Z DD 0a2111H DD 0117421H DD 010641dH DD 0f5419H DD 0e3415H DD 0e005b209H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$??$copy@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YA?AV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@00@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$?copy_span@@YAXV?$span@H$0?0@gsl@@0@Z DD imagerel ?copy_span@@YAXV?$span@H$0?0@gsl@@0@Z+75 DD 00H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$?copy_span@@YAXV?$span@H$0?0@gsl@@0@Z DD 0ffffffffH DD imagerel __std_terminate xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$?copy_span@@YAXV?$span@H$0?0@gsl@@0@Z DD 019930522H DD 01H DD imagerel $stateUnwindMap$?copy_span@@YAXV?$span@H$0?0@gsl@@0@Z DD 00H DD 00H DD 01H DD imagerel $ip2state$?copy_span@@YAXV?$span@H$0?0@gsl@@0@Z DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$?copy_span@@YAXV?$span@H$0?0@gsl@@0@Z DD 010d11H DD 08204H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$?copy_span@@YAXV?$span@H$0?0@gsl@@0@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?doterminate@@YAXXZ DD 010401H DD 04204H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$10@?0??mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$9@?0??mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$2@?0??mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$?mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z DD imagerel ?mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z+60 DD 0ffffffffH DD imagerel ?mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z+105 DD 05H DD imagerel ?mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z+150 DD 00H DD imagerel ?mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z+185 DD 04H DD imagerel ?mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z+220 DD 03H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$?mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z DD 0ffffffffH DD imagerel ?dtor$2@?0??mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD imagerel ?dtor$9@?0??mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA DD 0ffffffffH DD imagerel ?dtor$10@?0??mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA DD 0ffffffffH DD imagerel __std_terminate xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$?mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z DD 019930522H DD 06H DD imagerel $stateUnwindMap$?mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z DD 00H DD 00H DD 05H DD imagerel $ip2state$?mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$?mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z DD 020f11H DD 030027206H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$?mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$2@?0??mysubspan8@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$?mysubspan8@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z DD imagerel ?mysubspan8@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z+68 DD 0ffffffffH DD imagerel ?mysubspan8@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z+127 DD 00H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$?mysubspan8@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z DD 0ffffffffH DD imagerel ?dtor$2@?0??mysubspan8@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD imagerel __std_terminate xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$?mysubspan8@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z DD 019930522H DD 04H DD imagerel $stateUnwindMap$?mysubspan8@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z DD 00H DD 00H DD 02H DD imagerel $ip2state$?mysubspan8@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z DD 030H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$?mysubspan8@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z DD 020f11H DD 030029206H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$?mysubspan8@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$10@?0??mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$9@?0??mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$2@?0??mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$?mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z DD imagerel ?mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z+112 DD 00H DD imagerel ?mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z+147 DD 04H DD imagerel ?mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z+182 DD 03H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$?mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z DD 0ffffffffH DD imagerel ?dtor$2@?0??mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD imagerel ?dtor$9@?0??mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA DD 0ffffffffH DD imagerel ?dtor$10@?0??mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD imagerel __std_terminate xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$?mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z DD 019930522H DD 08H DD imagerel $stateUnwindMap$?mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z DD 00H DD 00H DD 03H DD imagerel $ip2state$?mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$?mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z DD 010d11H DD 08204H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$?mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$9@?0??mysubspan6@@YA?AV?$span@H$0?0@gsl@@PEAH_J@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$2@?0??mysubspan6@@YA?AV?$span@H$0?0@gsl@@PEAH_J@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$?mysubspan6@@YA?AV?$span@H$0?0@gsl@@PEAH_J@Z DD imagerel ?mysubspan6@@YA?AV?$span@H$0?0@gsl@@PEAH_J@Z+44 DD 0ffffffffH DD imagerel ?mysubspan6@@YA?AV?$span@H$0?0@gsl@@PEAH_J@Z+103 DD 00H DD imagerel ?mysubspan6@@YA?AV?$span@H$0?0@gsl@@PEAH_J@Z+138 DD 03H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$?mysubspan6@@YA?AV?$span@H$0?0@gsl@@PEAH_J@Z DD 0ffffffffH DD imagerel ?dtor$2@?0??mysubspan6@@YA?AV?$span@H$0?0@gsl@@PEAH_J@Z@4HA DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD imagerel ?dtor$9@?0??mysubspan6@@YA?AV?$span@H$0?0@gsl@@PEAH_J@Z@4HA DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD imagerel __std_terminate xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$?mysubspan6@@YA?AV?$span@H$0?0@gsl@@PEAH_J@Z DD 019930522H DD 08H DD imagerel $stateUnwindMap$?mysubspan6@@YA?AV?$span@H$0?0@gsl@@PEAH_J@Z DD 00H DD 00H DD 03H DD imagerel $ip2state$?mysubspan6@@YA?AV?$span@H$0?0@gsl@@PEAH_J@Z DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$?mysubspan6@@YA?AV?$span@H$0?0@gsl@@PEAH_J@Z DD 020f11H DD 030027206H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$?mysubspan6@@YA?AV?$span@H$0?0@gsl@@PEAH_J@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$9@?0??mysubspan5@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$2@?0??mysubspan5@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$?mysubspan5@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z DD imagerel ?mysubspan5@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z+48 DD 0ffffffffH DD imagerel ?mysubspan5@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z+107 DD 00H DD imagerel ?mysubspan5@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z+142 DD 03H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$?mysubspan5@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z DD 0ffffffffH DD imagerel ?dtor$2@?0??mysubspan5@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD imagerel ?dtor$9@?0??mysubspan5@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD imagerel __std_terminate xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$?mysubspan5@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z DD 019930522H DD 08H DD imagerel $stateUnwindMap$?mysubspan5@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z DD 00H DD 00H DD 03H DD imagerel $ip2state$?mysubspan5@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$?mysubspan5@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z DD 020f11H DD 030027206H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$?mysubspan5@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$??$?0$0A@X@?$span@H$0?0@gsl@@QEAA@XZ DD 019930522H DD 00H DD 00H DD 00H DD 00H DD 2 DUP(00H) DD 00H DD 00H DD 05H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$?0$0A@X@?$span@H$0?0@gsl@@QEAA@XZ DD 010c19H DD 02204H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$??$?0$0A@X@?$span@H$0?0@gsl@@QEAA@XZ xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$9@?0??mysubspan4@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$2@?0??mysubspan4@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$?mysubspan4@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z DD imagerel ?mysubspan4@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z+51 DD 0ffffffffH DD imagerel ?mysubspan4@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z+110 DD 00H DD imagerel ?mysubspan4@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z+145 DD 03H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$?mysubspan4@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z DD 0ffffffffH DD imagerel ?dtor$2@?0??mysubspan4@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD imagerel ?dtor$9@?0??mysubspan4@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD imagerel __std_terminate xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$?mysubspan4@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z DD 019930522H DD 08H DD imagerel $stateUnwindMap$?mysubspan4@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z DD 00H DD 00H DD 03H DD imagerel $ip2state$?mysubspan4@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$?mysubspan4@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z DD 020f11H DD 030027206H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$?mysubspan4@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$?mysubspan3@@YA_JXZ DD 0ffffffffH DD imagerel __std_terminate DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$?mysubspan3@@YA_JXZ DD 019930522H DD 0aH DD imagerel $stateUnwindMap$?mysubspan3@@YA_JXZ DD 00H DD 00H DD 2 DUP(00H) DD 00H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$?mysubspan3@@YA_JXZ DD 010c11H DD 02204H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$?mysubspan3@@YA_JXZ xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$13@?0??mysubspan2@@YA_J_J@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$?mysubspan2@@YA_J_J@Z DD imagerel ?mysubspan2@@YA_J_J@Z+92 DD 0ffffffffH DD imagerel ?mysubspan2@@YA_J_J@Z+131 DD 04H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$?mysubspan2@@YA_J_J@Z DD 0ffffffffH DD imagerel __std_terminate DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD imagerel ?dtor$13@?0??mysubspan2@@YA_J_J@Z@4HA DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$?mysubspan2@@YA_J_J@Z DD 019930522H DD 0aH DD imagerel $stateUnwindMap$?mysubspan2@@YA_J_J@Z DD 00H DD 00H DD 02H DD imagerel $ip2state$?mysubspan2@@YA_J_J@Z DD 028H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$?mysubspan2@@YA_J_J@Z DD 011c19H DD 0e204H DD imagerel __GSHandlerCheck_EH DD imagerel $cppxdata$?mysubspan2@@YA_J_J@Z DD 062H xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$??$?0$05@?$span@H$05@gsl@@QEAA@AEAY05H@Z DD 019930522H DD 00H DD 00H DD 00H DD 00H DD 2 DUP(00H) DD 00H DD 00H DD 05H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$?0$05@?$span@H$05@gsl@@QEAA@AEAY05H@Z DD 010c19H DD 02204H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$??$?0$05@?$span@H$05@gsl@@QEAA@AEAY05H@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$0@?0???0?$extent_type@$05@details@gsl@@QEAA@_J@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$??0?$extent_type@$05@details@gsl@@QEAA@_J@Z DD imagerel ??0?$extent_type@$05@details@gsl@@QEAA@_J@Z+64 DD 00H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$??0?$extent_type@$05@details@gsl@@QEAA@_J@Z DD 0ffffffffH DD imagerel ?dtor$0@?0???0?$extent_type@$05@details@gsl@@QEAA@_J@Z@4HA xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$??0?$extent_type@$05@details@gsl@@QEAA@_J@Z DD 019930522H DD 01H DD imagerel $stateUnwindMap$??0?$extent_type@$05@details@gsl@@QEAA@_J@Z DD 00H DD 00H DD 01H DD imagerel $ip2state$??0?$extent_type@$05@details@gsl@@QEAA@_J@Z DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$??0?$extent_type@$05@details@gsl@@QEAA@_J@Z DD 010d11H DD 08204H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$??0?$extent_type@$05@details@gsl@@QEAA@_J@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$4@?0??subspan@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J0@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$?subspan@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J0@Z DD imagerel ?subspan@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J0@Z+58 DD 0ffffffffH DD imagerel ?subspan@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J0@Z+101 DD 02H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$?subspan@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J0@Z DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD imagerel ?dtor$4@?0??subspan@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J0@Z@4HA xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$?subspan@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J0@Z DD 019930522H DD 03H DD imagerel $stateUnwindMap$?subspan@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J0@Z DD 00H DD 00H DD 02H DD imagerel $ip2state$?subspan@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J0@Z DD 038H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$?subspan@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J0@Z DD 020f11H DD 03002b206H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$?subspan@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J0@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$9@?0??last@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$4@?0??last@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$?last@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J@Z DD imagerel ?last@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J@Z+59 DD 0ffffffffH DD imagerel ?last@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J@Z+102 DD 02H DD imagerel ?last@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J@Z+137 DD 03H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$?last@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J@Z DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD imagerel ?dtor$4@?0??last@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J@Z@4HA DD 0ffffffffH DD imagerel ?dtor$9@?0??last@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J@Z@4HA DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$?last@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J@Z DD 019930522H DD 07H DD imagerel $stateUnwindMap$?last@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J@Z DD 00H DD 00H DD 03H DD imagerel $ip2state$?last@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J@Z DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$?last@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J@Z DD 020f11H DD 030027206H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$?last@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$?mysubspan1@@YA_JXZ DD 0ffffffffH DD imagerel __std_terminate DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$?mysubspan1@@YA_JXZ DD 019930522H DD 0aH DD imagerel $stateUnwindMap$?mysubspan1@@YA_JXZ DD 00H DD 00H DD 2 DUP(00H) DD 00H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$?mysubspan1@@YA_JXZ DD 010c11H DD 02204H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$?mysubspan1@@YA_JXZ xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$1@?0???$convert_span@EV?$span@G$0?0@gsl@@@@YA?AV?$span@E$0?0@gsl@@V?$span@G$0?0@1@@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$2@?0???$convert_span@EV?$span@G$0?0@gsl@@@@YA?AV?$span@E$0?0@gsl@@V?$span@G$0?0@1@@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$??$convert_span@EV?$span@G$0?0@gsl@@@@YA?AV?$span@E$0?0@gsl@@V?$span@G$0?0@1@@Z DD imagerel ??$convert_span@EV?$span@G$0?0@gsl@@@@YA?AV?$span@E$0?0@gsl@@V?$span@G$0?0@1@@Z+87 DD 02H DD imagerel ??$convert_span@EV?$span@G$0?0@gsl@@@@YA?AV?$span@E$0?0@gsl@@V?$span@G$0?0@1@@Z+122 DD 00H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$??$convert_span@EV?$span@G$0?0@gsl@@@@YA?AV?$span@E$0?0@gsl@@V?$span@G$0?0@1@@Z DD 0ffffffffH DD imagerel ?dtor$2@?0???$convert_span@EV?$span@G$0?0@gsl@@@@YA?AV?$span@E$0?0@gsl@@V?$span@G$0?0@1@@Z@4HA DD 0ffffffffH DD 00H DD 0ffffffffH DD imagerel ?dtor$1@?0???$convert_span@EV?$span@G$0?0@gsl@@@@YA?AV?$span@E$0?0@gsl@@V?$span@G$0?0@1@@Z@4HA xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$??$convert_span@EV?$span@G$0?0@gsl@@@@YA?AV?$span@E$0?0@gsl@@V?$span@G$0?0@1@@Z DD 019930522H DD 03H DD imagerel $stateUnwindMap$??$convert_span@EV?$span@G$0?0@gsl@@@@YA?AV?$span@E$0?0@gsl@@V?$span@G$0?0@1@@Z DD 00H DD 00H DD 02H DD imagerel $ip2state$??$convert_span@EV?$span@G$0?0@gsl@@@@YA?AV?$span@E$0?0@gsl@@V?$span@G$0?0@1@@Z DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$convert_span@EV?$span@G$0?0@gsl@@@@YA?AV?$span@E$0?0@gsl@@V?$span@G$0?0@1@@Z DD 010d11H DD 08204H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$??$convert_span@EV?$span@G$0?0@gsl@@@@YA?AV?$span@E$0?0@gsl@@V?$span@G$0?0@1@@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$9@?0??test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$1@?0??test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$2@?0??test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$?test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z DD imagerel ?test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z+101 DD 03H DD imagerel ?test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z+136 DD 00H DD imagerel ?test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z+171 DD 02H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$?test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z DD 0ffffffffH DD imagerel ?dtor$2@?0??test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z@4HA DD 0ffffffffH DD 00H DD 0ffffffffH DD imagerel ?dtor$1@?0??test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z@4HA DD 0ffffffffH DD imagerel ?dtor$9@?0??test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z@4HA xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$?test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z DD 019930522H DD 04H DD imagerel $stateUnwindMap$?test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z DD 00H DD 00H DD 03H DD imagerel $ip2state$?test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$?test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z DD 010d11H DD 0a204H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$?test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$??$?0$05@?$span@E$0?0@gsl@@QEAA@AEAY05E@Z DD 019930522H DD 00H DD 00H DD 00H DD 00H DD 2 DUP(00H) DD 00H DD 00H DD 05H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$?0$05@?$span@E$0?0@gsl@@QEAA@AEAY05E@Z DD 010c19H DD 02204H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$??$?0$05@?$span@E$0?0@gsl@@QEAA@AEAY05E@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$0@?0???A?$span@E$0?0@gsl@@QEBAAEAE_J@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$??A?$span@E$0?0@gsl@@QEBAAEAE_J@Z DD imagerel ??A?$span@E$0?0@gsl@@QEBAAEAE_J@Z+67 DD 00H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$??A?$span@E$0?0@gsl@@QEBAAEAE_J@Z DD 0ffffffffH DD imagerel ?dtor$0@?0???A?$span@E$0?0@gsl@@QEBAAEAE_J@Z@4HA xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$??A?$span@E$0?0@gsl@@QEBAAEAE_J@Z DD 019930522H DD 01H DD imagerel $stateUnwindMap$??A?$span@E$0?0@gsl@@QEBAAEAE_J@Z DD 00H DD 00H DD 01H DD imagerel $ip2state$??A?$span@E$0?0@gsl@@QEBAAEAE_J@Z DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$??A?$span@E$0?0@gsl@@QEBAAEAE_J@Z DD 010d11H DD 08204H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$??A?$span@E$0?0@gsl@@QEBAAEAE_J@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$1@?0???0?$span@E$0?0@gsl@@QEAA@PEAE_J@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$2@?0???0?$span@E$0?0@gsl@@QEAA@PEAE_J@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$??0?$span@E$0?0@gsl@@QEAA@PEAE_J@Z DD imagerel ??0?$span@E$0?0@gsl@@QEAA@PEAE_J@Z+80 DD 02H DD imagerel ??0?$span@E$0?0@gsl@@QEAA@PEAE_J@Z+115 DD 00H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$??0?$span@E$0?0@gsl@@QEAA@PEAE_J@Z DD 0ffffffffH DD imagerel ?dtor$2@?0???0?$span@E$0?0@gsl@@QEAA@PEAE_J@Z@4HA DD 0ffffffffH DD 00H DD 0ffffffffH DD imagerel ?dtor$1@?0???0?$span@E$0?0@gsl@@QEAA@PEAE_J@Z@4HA xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$??0?$span@E$0?0@gsl@@QEAA@PEAE_J@Z DD 019930522H DD 03H DD imagerel $stateUnwindMap$??0?$span@E$0?0@gsl@@QEAA@PEAE_J@Z DD 00H DD 00H DD 02H DD imagerel $ip2state$??0?$span@E$0?0@gsl@@QEAA@PEAE_J@Z DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$??0?$span@E$0?0@gsl@@QEAA@PEAE_J@Z DD 010d11H DD 08204H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$??0?$span@E$0?0@gsl@@QEAA@PEAE_J@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$4@?0??static_size_array_span@@YAXAEAUIDE_DRIVE_STATE@@@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$?static_size_array_span@@YAXAEAUIDE_DRIVE_STATE@@@Z DD imagerel ?static_size_array_span@@YAXAEAUIDE_DRIVE_STATE@@@Z+140 DD 01H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$?static_size_array_span@@YAXAEAUIDE_DRIVE_STATE@@@Z DD 0ffffffffH DD imagerel __std_terminate DD 0ffffffffH DD imagerel ?dtor$4@?0??static_size_array_span@@YAXAEAUIDE_DRIVE_STATE@@@Z@4HA xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$?static_size_array_span@@YAXAEAUIDE_DRIVE_STATE@@@Z DD 019930522H DD 02H DD imagerel $stateUnwindMap$?static_size_array_span@@YAXAEAUIDE_DRIVE_STATE@@@Z DD 00H DD 00H DD 01H DD imagerel $ip2state$?static_size_array_span@@YAXAEAUIDE_DRIVE_STATE@@@Z DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$?static_size_array_span@@YAXAEAUIDE_DRIVE_STATE@@@Z DD 081e11H DD 0d641eH DD 0c5419H DD 0b3414H DD 070027206H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$?static_size_array_span@@YAXAEAUIDE_DRIVE_STATE@@@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$?_Verify_offset@?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEBAX_J@Z DD imagerel ?_Verify_offset@?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEBAX_J@Z+56 DD 0ffffffffH xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$?_Verify_offset@?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEBAX_J@Z DD 019930522H DD 00H DD 00H DD 00H DD 00H DD 01H DD imagerel $ip2state$?_Verify_offset@?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEBAX_J@Z DD 020H DD 00H DD 05H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$?_Verify_offset@?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEBAX_J@Z DD 010d19H DD 08204H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$?_Verify_offset@?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEBAX_J@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$?_Verify_range@details@gsl@@YAXV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@12@0@Z DD imagerel ?_Verify_range@details@gsl@@YAXV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@12@0@Z+57 DD 0ffffffffH xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$?_Verify_range@details@gsl@@YAXV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@12@0@Z DD 019930522H DD 00H DD 00H DD 00H DD 00H DD 01H DD imagerel $ip2state$?_Verify_range@details@gsl@@YAXV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@12@0@Z DD 020H DD 00H DD 05H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$?_Verify_range@details@gsl@@YAXV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@12@0@Z DD 010d19H DD 08204H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$?_Verify_range@details@gsl@@YAXV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@12@0@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??9details@gsl@@YA_NV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@01@0@Z DD 010401H DD 04204H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$0@?0???E?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEAAAEAV012@XZ@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$??E?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEAAAEAV012@XZ DD imagerel ??E?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEAAAEAV012@XZ+83 DD 00H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$??E?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEAAAEAV012@XZ DD 0ffffffffH DD imagerel ?dtor$0@?0???E?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEAAAEAV012@XZ@4HA xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$??E?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEAAAEAV012@XZ DD 019930522H DD 01H DD imagerel $stateUnwindMap$??E?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEAAAEAV012@XZ DD 00H DD 00H DD 01H DD imagerel $ip2state$??E?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEAAAEAV012@XZ DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$??E?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEAAAEAV012@XZ DD 010d11H DD 08204H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$??E?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEAAAEAV012@XZ xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$0@?0???D?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEBAAEAHXZ@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$??D?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEBAAEAHXZ DD imagerel ??D?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEBAAEAHXZ+75 DD 00H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$??D?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEBAAEAHXZ DD 0ffffffffH DD imagerel ?dtor$0@?0???D?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEBAAEAHXZ@4HA xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$??D?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEBAAEAHXZ DD 019930522H DD 01H DD imagerel $stateUnwindMap$??D?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEBAAEAHXZ DD 00H DD 00H DD 01H DD imagerel $ip2state$??D?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEBAAEAHXZ DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$??D?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEBAAEAHXZ DD 010d11H DD 08204H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$??D?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEBAAEAHXZ xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$0@?0??test_span_iter@@YAXV?$span@H$0?0@gsl@@@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$?test_span_iter@@YAXV?$span@H$0?0@gsl@@@Z DD imagerel ?test_span_iter@@YAXV?$span@H$0?0@gsl@@@Z+174 DD 00H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$?test_span_iter@@YAXV?$span@H$0?0@gsl@@@Z DD 0ffffffffH DD imagerel ?dtor$0@?0??test_span_iter@@YAXV?$span@H$0?0@gsl@@@Z@4HA DD 0ffffffffH DD 00H xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$?test_span_iter@@YAXV?$span@H$0?0@gsl@@@Z DD 019930522H DD 02H DD imagerel $stateUnwindMap$?test_span_iter@@YAXV?$span@H$0?0@gsl@@@Z DD 00H DD 00H DD 01H DD imagerel $ip2state$?test_span_iter@@YAXV?$span@H$0?0@gsl@@@Z DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$?test_span_iter@@YAXV?$span@H$0?0@gsl@@@Z DD 081c11H DD 0e541cH DD 0d3417H DD 0e0057209H DD 060027003H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$?test_span_iter@@YAXV?$span@H$0?0@gsl@@@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$0@?0??test_span_for@@YAXV?$span@H$0?0@gsl@@@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$?test_span_for@@YAXV?$span@H$0?0@gsl@@@Z DD imagerel ?test_span_for@@YAXV?$span@H$0?0@gsl@@@Z+145 DD 00H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$?test_span_for@@YAXV?$span@H$0?0@gsl@@@Z DD 0ffffffffH DD imagerel ?dtor$0@?0??test_span_for@@YAXV?$span@H$0?0@gsl@@@Z@4HA xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$?test_span_for@@YAXV?$span@H$0?0@gsl@@@Z DD 019930522H DD 01H DD imagerel $stateUnwindMap$?test_span_for@@YAXV?$span@H$0?0@gsl@@@Z DD 00H DD 00H DD 01H DD imagerel $ip2state$?test_span_for@@YAXV?$span@H$0?0@gsl@@@Z DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$?test_span_for@@YAXV?$span@H$0?0@gsl@@@Z DD 081c11H DD 0e541cH DD 0d3417H DD 0e0057209H DD 060027003H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$?test_span_for@@YAXV?$span@H$0?0@gsl@@@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$1@?0??make_subspan@?$span@H$0?0@gsl@@AEBA?AV12@_J0V?$subspan_selector@$0?0@12@@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$0@?0??make_subspan@?$span@H$0?0@gsl@@AEBA?AV12@_J0V?$subspan_selector@$0?0@12@@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$?make_subspan@?$span@H$0?0@gsl@@AEBA?AV12@_J0V?$subspan_selector@$0?0@12@@Z DD imagerel ?make_subspan@?$span@H$0?0@gsl@@AEBA?AV12@_J0V?$subspan_selector@$0?0@12@@Z+59 DD 0ffffffffH DD imagerel ?make_subspan@?$span@H$0?0@gsl@@AEBA?AV12@_J0V?$subspan_selector@$0?0@12@@Z+129 DD 01H DD imagerel ?make_subspan@?$span@H$0?0@gsl@@AEBA?AV12@_J0V?$subspan_selector@$0?0@12@@Z+146 DD 0ffffffffH DD imagerel ?make_subspan@?$span@H$0?0@gsl@@AEBA?AV12@_J0V?$subspan_selector@$0?0@12@@Z+175 DD 00H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$?make_subspan@?$span@H$0?0@gsl@@AEBA?AV12@_J0V?$subspan_selector@$0?0@12@@Z DD 0ffffffffH DD imagerel ?dtor$0@?0??make_subspan@?$span@H$0?0@gsl@@AEBA?AV12@_J0V?$subspan_selector@$0?0@12@@Z@4HA DD 0ffffffffH DD imagerel ?dtor$1@?0??make_subspan@?$span@H$0?0@gsl@@AEBA?AV12@_J0V?$subspan_selector@$0?0@12@@Z@4HA xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$?make_subspan@?$span@H$0?0@gsl@@AEBA?AV12@_J0V?$subspan_selector@$0?0@12@@Z DD 019930522H DD 02H DD imagerel $stateUnwindMap$?make_subspan@?$span@H$0?0@gsl@@AEBA?AV12@_J0V?$subspan_selector@$0?0@12@@Z DD 00H DD 00H DD 04H DD imagerel $ip2state$?make_subspan@?$span@H$0?0@gsl@@AEBA?AV12@_J0V?$subspan_selector@$0?0@12@@Z DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$?make_subspan@?$span@H$0?0@gsl@@AEBA?AV12@_J0V?$subspan_selector@$0?0@12@@Z DD 020f11H DD 030027206H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$?make_subspan@?$span@H$0?0@gsl@@AEBA?AV12@_J0V?$subspan_selector@$0?0@12@@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$1@?0???0?$span@H$0?0@gsl@@AEAA@UKnownNotNull@01@_J@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$??0?$span@H$0?0@gsl@@AEAA@UKnownNotNull@01@_J@Z DD imagerel ??0?$span@H$0?0@gsl@@AEAA@UKnownNotNull@01@_J@Z+70 DD 00H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$??0?$span@H$0?0@gsl@@AEAA@UKnownNotNull@01@_J@Z DD 0ffffffffH DD imagerel ?dtor$1@?0???0?$span@H$0?0@gsl@@AEAA@UKnownNotNull@01@_J@Z@4HA DD 0ffffffffH DD 00H xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$??0?$span@H$0?0@gsl@@AEAA@UKnownNotNull@01@_J@Z DD 019930522H DD 02H DD imagerel $stateUnwindMap$??0?$span@H$0?0@gsl@@AEAA@UKnownNotNull@01@_J@Z DD 00H DD 00H DD 01H DD imagerel $ip2state$??0?$span@H$0?0@gsl@@AEAA@UKnownNotNull@01@_J@Z DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$??0?$span@H$0?0@gsl@@AEAA@UKnownNotNull@01@_J@Z DD 010d11H DD 08204H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$??0?$span@H$0?0@gsl@@AEAA@UKnownNotNull@01@_J@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$0@?0???A?$span@H$0?0@gsl@@QEBAAEAH_J@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$??A?$span@H$0?0@gsl@@QEBAAEAH_J@Z DD imagerel ??A?$span@H$0?0@gsl@@QEBAAEAH_J@Z+68 DD 00H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$??A?$span@H$0?0@gsl@@QEBAAEAH_J@Z DD 0ffffffffH DD imagerel ?dtor$0@?0???A?$span@H$0?0@gsl@@QEBAAEAH_J@Z@4HA xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$??A?$span@H$0?0@gsl@@QEBAAEAH_J@Z DD 019930522H DD 01H DD imagerel $stateUnwindMap$??A?$span@H$0?0@gsl@@QEBAAEAH_J@Z DD 00H DD 00H DD 01H DD imagerel $ip2state$??A?$span@H$0?0@gsl@@QEBAAEAH_J@Z DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$??A?$span@H$0?0@gsl@@QEBAAEAH_J@Z DD 010d11H DD 08204H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$??A?$span@H$0?0@gsl@@QEBAAEAH_J@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?subspan@?$span@H$0?0@gsl@@QEBA?AV12@_J0@Z DD 020601H DD 030025206H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$0@?0??last@?$span@H$0?0@gsl@@QEBA?AV12@_J@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$?last@?$span@H$0?0@gsl@@QEBA?AV12@_J@Z DD imagerel ?last@?$span@H$0?0@gsl@@QEBA?AV12@_J@Z+50 DD 0ffffffffH DD imagerel ?last@?$span@H$0?0@gsl@@QEBA?AV12@_J@Z+93 DD 00H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$?last@?$span@H$0?0@gsl@@QEBA?AV12@_J@Z DD 0ffffffffH DD imagerel ?dtor$0@?0??last@?$span@H$0?0@gsl@@QEBA?AV12@_J@Z@4HA DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H DD 0ffffffffH DD 00H xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$?last@?$span@H$0?0@gsl@@QEBA?AV12@_J@Z DD 019930522H DD 04H DD imagerel $stateUnwindMap$?last@?$span@H$0?0@gsl@@QEBA?AV12@_J@Z DD 00H DD 00H DD 02H DD imagerel $ip2state$?last@?$span@H$0?0@gsl@@QEBA?AV12@_J@Z DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$?last@?$span@H$0?0@gsl@@QEBA?AV12@_J@Z DD 020f11H DD 030027206H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$?last@?$span@H$0?0@gsl@@QEBA?AV12@_J@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$1@?0???0?$span@H$0?0@gsl@@QEAA@PEAH_J@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$2@?0???0?$span@H$0?0@gsl@@QEAA@PEAH_J@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$??0?$span@H$0?0@gsl@@QEAA@PEAH_J@Z DD imagerel ??0?$span@H$0?0@gsl@@QEAA@PEAH_J@Z+80 DD 02H DD imagerel ??0?$span@H$0?0@gsl@@QEAA@PEAH_J@Z+115 DD 00H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$??0?$span@H$0?0@gsl@@QEAA@PEAH_J@Z DD 0ffffffffH DD imagerel ?dtor$2@?0???0?$span@H$0?0@gsl@@QEAA@PEAH_J@Z@4HA DD 0ffffffffH DD 00H DD 0ffffffffH DD imagerel ?dtor$1@?0???0?$span@H$0?0@gsl@@QEAA@PEAH_J@Z@4HA xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$??0?$span@H$0?0@gsl@@QEAA@PEAH_J@Z DD 019930522H DD 03H DD imagerel $stateUnwindMap$??0?$span@H$0?0@gsl@@QEAA@PEAH_J@Z DD 00H DD 00H DD 02H DD imagerel $ip2state$??0?$span@H$0?0@gsl@@QEAA@PEAH_J@Z DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$??0?$span@H$0?0@gsl@@QEAA@PEAH_J@Z DD 010d11H DD 08204H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$??0?$span@H$0?0@gsl@@QEAA@PEAH_J@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$0@?0??test_span_unoptimizable_rangecheck@@YAXV?$span@H$0?0@gsl@@H@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$?test_span_unoptimizable_rangecheck@@YAXV?$span@H$0?0@gsl@@H@Z DD imagerel ?test_span_unoptimizable_rangecheck@@YAXV?$span@H$0?0@gsl@@H@Z+162 DD 00H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$?test_span_unoptimizable_rangecheck@@YAXV?$span@H$0?0@gsl@@H@Z DD 0ffffffffH DD imagerel ?dtor$0@?0??test_span_unoptimizable_rangecheck@@YAXV?$span@H$0?0@gsl@@H@Z@4HA xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$?test_span_unoptimizable_rangecheck@@YAXV?$span@H$0?0@gsl@@H@Z DD 019930522H DD 01H DD imagerel $stateUnwindMap$?test_span_unoptimizable_rangecheck@@YAXV?$span@H$0?0@gsl@@H@Z DD 00H DD 00H DD 01H DD imagerel $ip2state$?test_span_unoptimizable_rangecheck@@YAXV?$span@H$0?0@gsl@@H@Z DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$?test_span_unoptimizable_rangecheck@@YAXV?$span@H$0?0@gsl@@H@Z DD 0a2911H DD 0f6429H DD 0e5424H DD 0c341fH DD 0f00d7211H DD 07009e00bH DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$?test_span_unoptimizable_rangecheck@@YAXV?$span@H$0?0@gsl@@H@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z DD 010401H DD 08204H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$?dtor$0@?0???0?$extent_type@$0?0@details@gsl@@QEAA@_J@Z@4HA DD 020601H DD 050023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $ip2state$??0?$extent_type@$0?0@details@gsl@@QEAA@_J@Z DD imagerel ??0?$extent_type@$0?0@details@gsl@@QEAA@_J@Z+66 DD 00H xdata ENDS ; COMDAT xdata xdata SEGMENT $stateUnwindMap$??0?$extent_type@$0?0@details@gsl@@QEAA@_J@Z DD 0ffffffffH DD imagerel ?dtor$0@?0???0?$extent_type@$0?0@details@gsl@@QEAA@_J@Z@4HA xdata ENDS ; COMDAT CONST CONST SEGMENT $cppxdata$??0?$extent_type@$0?0@details@gsl@@QEAA@_J@Z DD 019930522H DD 01H DD imagerel $stateUnwindMap$??0?$extent_type@$0?0@details@gsl@@QEAA@_J@Z DD 00H DD 00H DD 01H DD imagerel $ip2state$??0?$extent_type@$0?0@details@gsl@@QEAA@_J@Z DD 020H DD 00H DD 01H CONST ENDS ; COMDAT xdata xdata SEGMENT $unwind$??0?$extent_type@$0?0@details@gsl@@QEAA@_J@Z DD 010d11H DD 08204H DD imagerel __CxxFrameHandler3 DD imagerel $cppxdata$??0?$extent_type@$0?0@details@gsl@@QEAA@_J@Z xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??_Gnarrowing_error@gsl@@UEAAPEAXI@Z DD 040a01H DD 06340aH DD 07006320aH xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??0narrowing_error@gsl@@QEAA@$$QEAU01@@Z DD 020601H DD 030023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??0narrowing_error@gsl@@QEAA@AEBU01@@Z DD 020601H DD 030023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??_Gfail_fast@gsl@@UEAAPEAXI@Z DD 040a01H DD 06340aH DD 07006320aH xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??0fail_fast@gsl@@QEAA@$$QEAU01@@Z DD 020601H DD 030023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??0fail_fast@gsl@@QEAA@AEBU01@@Z DD 020601H DD 030023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??0fail_fast@gsl@@QEAA@QEBD@Z DD 020601H DD 030025206H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??_Glogic_error@std@@UEAAPEAXI@Z DD 040a01H DD 06340aH DD 07006320aH xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??0logic_error@std@@QEAA@$$QEAV01@@Z DD 020601H DD 030023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??0logic_error@std@@QEAA@AEBV01@@Z DD 020601H DD 030023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??0logic_error@std@@QEAA@PEBD@Z DD 020601H DD 030025206H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??_Gexception@std@@UEAAPEAXI@Z DD 040a01H DD 06340aH DD 07006320aH xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??0exception@std@@QEAA@AEBV01@@Z DD 020601H DD 030023206H xdata ENDS ; COMDAT xdata xdata SEGMENT $unwind$??0exception@std@@QEAA@QEBD@Z DD 020601H DD 030025206H xdata ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$_Copy_n_unchecked4@PEBD_JPEAE@std@@YAPEAEPEBD_JPEAEU_Trivially_copyable_ptr_iterator_tag@0@@Z _TEXT SEGMENT _First$ = 48 _Count$ = 56 _Dest$ = 64 __formal$ = 72 ??$_Copy_n_unchecked4@PEBD_JPEAE@std@@YAPEAEPEBD_JPEAEU_Trivially_copyable_ptr_iterator_tag@0@@Z PROC ; std::_Copy_n_unchecked4<char const *,__int64,unsigned char *>, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 2516 $LN6: mov QWORD PTR [rsp+8], rbx push rdi sub rsp, 32 ; 00000020H mov rdi, r8 mov rbx, rdx ; Line 2403 mov r8, rdx mov rdx, rcx mov rcx, rdi call memmove ; Line 2404 lea rax, QWORD PTR [rbx+rdi] ; Line 2519 mov rbx, QWORD PTR [rsp+48] add rsp, 32 ; 00000020H pop rdi ret 0 ??$_Copy_n_unchecked4@PEBD_JPEAE@std@@YAPEAEPEBD_JPEAEU_Trivially_copyable_ptr_iterator_tag@0@@Z ENDP ; std::_Copy_n_unchecked4<char const *,__int64,unsigned char *> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$forward@Unarrowing_error@gsl@@@std@@YA$$QEAUnarrowing_error@gsl@@AEAU12@@Z _TEXT SEGMENT _Arg$ = 8 ??$forward@Unarrowing_error@gsl@@@std@@YA$$QEAUnarrowing_error@gsl@@AEAU12@@Z PROC ; std::forward<gsl::narrowing_error>, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\type_traits ; Line 1574 mov rax, rcx ; Line 1575 ret 0 ??$forward@Unarrowing_error@gsl@@@std@@YA$$QEAUnarrowing_error@gsl@@AEAU12@@Z ENDP ; std::forward<gsl::narrowing_error> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$_Copy_memmove@PEBDPEAE@std@@YAPEAEPEBD0PEAE@Z _TEXT SEGMENT _First$ = 48 _Last$ = 56 _Dest$ = 64 ??$_Copy_memmove@PEBDPEAE@std@@YAPEAEPEBD0PEAE@Z PROC ; std::_Copy_memmove<char const *,unsigned char *>, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 2398 $LN4: mov QWORD PTR [rsp+8], rbx push rdi sub rsp, 32 ; 00000020H mov rbx, rdx mov rdi, r8 ; Line 2402 sub rbx, rcx ; Line 2403 mov rdx, rcx mov r8, rbx mov rcx, rdi call memmove ; Line 2404 lea rax, QWORD PTR [rbx+rdi] ; Line 2405 mov rbx, QWORD PTR [rsp+48] add rsp, 32 ; 00000020H pop rdi ret 0 ??$_Copy_memmove@PEBDPEAE@std@@YAPEAEPEBD0PEAE@Z ENDP ; std::_Copy_memmove<char const *,unsigned char *> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$_Copy_n_unchecked4@PEAH_JPEAH@std@@YAPEAHPEAH_J0U_Trivially_copyable_ptr_iterator_tag@0@@Z _TEXT SEGMENT _First$ = 48 _Count$ = 56 _Dest$ = 64 __formal$ = 72 ??$_Copy_n_unchecked4@PEAH_JPEAH@std@@YAPEAHPEAH_J0U_Trivially_copyable_ptr_iterator_tag@0@@Z PROC ; std::_Copy_n_unchecked4<int *,__int64,int *>, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 2516 $LN6: mov QWORD PTR [rsp+8], rbx push rdi sub rsp, 32 ; 00000020H mov rdi, r8 ; Line 2518 lea rbx, QWORD PTR [rdx*4] ; Line 2403 mov rdx, rcx mov r8, rbx mov rcx, rdi call memmove ; Line 2404 lea rax, QWORD PTR [rbx+rdi] ; Line 2519 mov rbx, QWORD PTR [rsp+48] add rsp, 32 ; 00000020H pop rdi ret 0 ??$_Copy_n_unchecked4@PEAH_JPEAH@std@@YAPEAHPEAH_J0U_Trivially_copyable_ptr_iterator_tag@0@@Z ENDP ; std::_Copy_n_unchecked4<int *,__int64,int *> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$_Copy_memmove@PEAHPEAH@std@@YAPEAHPEAH00@Z _TEXT SEGMENT _First$ = 48 _Last$ = 56 _Dest$ = 64 ??$_Copy_memmove@PEAHPEAH@std@@YAPEAHPEAH00@Z PROC ; std::_Copy_memmove<int *,int *>, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 2398 $LN4: mov QWORD PTR [rsp+8], rbx push rdi sub rsp, 32 ; 00000020H mov rbx, rdx mov rdi, r8 ; Line 2402 sub rbx, rcx ; Line 2403 mov rdx, rcx mov r8, rbx mov rcx, rdi call memmove ; Line 2404 lea rax, QWORD PTR [rbx+rdi] ; Line 2405 mov rbx, QWORD PTR [rsp+48] add rsp, 32 ; 00000020H pop rdi ret 0 ??$_Copy_memmove@PEAHPEAH@std@@YAPEAHPEAH00@Z ENDP ; std::_Copy_memmove<int *,int *> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$?0V?$extent_type@$05@details@gsl@@@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAHV?$extent_type@$05@details@2@@Z _TEXT SEGMENT $T1 = 32 $T2 = 40 this$ = 80 data$ = 88 $T3 = 96 ext$ = 96 ??$?0V?$extent_type@$05@details@gsl@@@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAHV?$extent_type@$05@details@2@@Z PROC ; gsl::span<int,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><gsl::details::extent_type<6> >, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 597 $LN41: mov BYTE PTR [rsp+24], r8b sub rsp, 72 ; 00000048H mov QWORD PTR $T1[rsp], -2 mov DWORD PTR $T3[rsp], 0 ; Line 333 mov QWORD PTR [rcx], 6 ; Line 596 mov QWORD PTR [rcx+8], rdx ; Line 599 test rdx, rdx je SHORT $LN39@extent_typ ; Line 600 mov rax, rcx add rsp, 72 ; 00000048H ret 0 $LN39@extent_typ: ; Line 599 lea rdx, OFFSET FLAT:??_C@_0ED@HPBMEGKB@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T2[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T3[rsp], 2 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN37@extent_typ: ??$?0V?$extent_type@$05@details@gsl@@@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAHV?$extent_type@$05@details@2@@Z ENDP ; gsl::span<int,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><gsl::details::extent_type<6> > _TEXT ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 this$ = 80 data$ = 88 $T3 = 96 ext$ = 96 ?dtor$1@?0???$?0V?$extent_type@$05@details@gsl@@@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAHV?$extent_type@$05@details@2@@Z@4HA PROC ; `gsl::span<int,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><gsl::details::extent_type<6> >'::`1'::dtor$1 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T3[rbp] and eax, 2 test eax, eax je SHORT $LN11@dtor$1 and DWORD PTR $T3[rbp], -3 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN11@dtor$1: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$1@?0???$?0V?$extent_type@$05@details@gsl@@@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAHV?$extent_type@$05@details@2@@Z@4HA ENDP ; `gsl::span<int,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><gsl::details::extent_type<6> >'::`1'::dtor$1 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 this$ = 80 data$ = 88 $T3 = 96 ext$ = 96 ?dtor$1@?0???$?0V?$extent_type@$05@details@gsl@@@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAHV?$extent_type@$05@details@2@@Z@4HA PROC ; `gsl::span<int,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><gsl::details::extent_type<6> >'::`1'::dtor$1 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T3[rbp] and eax, 2 test eax, eax je SHORT $LN11@dtor$1 and DWORD PTR $T3[rbp], -3 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN11@dtor$1: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$1@?0???$?0V?$extent_type@$05@details@gsl@@@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAHV?$extent_type@$05@details@2@@Z@4HA ENDP ; `gsl::span<int,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><gsl::details::extent_type<6> >'::`1'::dtor$1 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$_Seek_wrapped@E@std@@YAXAEAPEAEQEAE@Z _TEXT SEGMENT _It$ = 8 _UIt$ = 16 ??$_Seek_wrapped@E@std@@YAXAEAPEAEQEAE@Z PROC ; std::_Seek_wrapped<unsigned char>, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 872 mov QWORD PTR [rcx], rdx ; Line 873 ret 0 ??$_Seek_wrapped@E@std@@YAXAEAPEAEQEAE@Z ENDP ; std::_Seek_wrapped<unsigned char> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$_Copy_n_unchecked3@PEBD_JPEAE@std@@YAPEAEPEBD_JPEAE@Z _TEXT SEGMENT _First$ = 48 _Count$ = 56 _Dest$ = 64 ??$_Copy_n_unchecked3@PEBD_JPEAE@std@@YAPEAEPEBD_JPEAE@Z PROC ; std::_Copy_n_unchecked3<char const *,__int64,unsigned char *>, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 2526 $LN10: mov QWORD PTR [rsp+8], rbx push rdi sub rsp, 32 ; 00000020H mov rdi, r8 mov rbx, rdx ; Line 2403 mov r8, rdx mov rdx, rcx mov rcx, rdi call memmove ; Line 2404 lea rax, QWORD PTR [rbx+rdi] ; Line 2530 mov rbx, QWORD PTR [rsp+48] add rsp, 32 ; 00000020H pop rdi ret 0 ??$_Copy_n_unchecked3@PEBD_JPEAE@std@@YAPEAEPEBD_JPEAE@Z ENDP ; std::_Copy_n_unchecked3<char const *,__int64,unsigned char *> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$_Get_unwrapped_n@E_J$0A@@std@@YAPEAEQEAE_J@Z _TEXT SEGMENT _Src$ = 8 __formal$ = 16 ??$_Get_unwrapped_n@E_J$0A@@std@@YAPEAEQEAE_J@Z PROC ; std::_Get_unwrapped_n<unsigned char,__int64,0>, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 809 mov rax, rcx ; Line 810 ret 0 ??$_Get_unwrapped_n@E_J$0A@@std@@YAPEAEQEAE_J@Z ENDP ; std::_Get_unwrapped_n<unsigned char,__int64,0> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$_Get_unwrapped_n@$$CBD_J$0A@@std@@YAPEBDQEBD_J@Z _TEXT SEGMENT _Src$ = 8 __formal$ = 16 ??$_Get_unwrapped_n@$$CBD_J$0A@@std@@YAPEBDQEBD_J@Z PROC ; std::_Get_unwrapped_n<char const ,__int64,0>, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 809 mov rax, rcx ; Line 810 ret 0 ??$_Get_unwrapped_n@$$CBD_J$0A@@std@@YAPEBDQEBD_J@Z ENDP ; std::_Get_unwrapped_n<char const ,__int64,0> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$throw_exception@Unarrowing_error@gsl@@@details@gsl@@YAX$$QEAUnarrowing_error@1@@Z _TEXT SEGMENT $T1 = 32 exception$ = 80 ??$throw_exception@Unarrowing_error@gsl@@@details@gsl@@YAX$$QEAUnarrowing_error@1@@Z PROC ; gsl::details::throw_exception<gsl::narrowing_error>, COMDAT ; File c:\projects\gsl\include\gsl\gsl_assert ; Line 143 $LN4: sub rsp, 72 ; 00000048H ; Line 144 call ??$forward@Unarrowing_error@gsl@@@std@@YA$$QEAUnarrowing_error@gsl@@AEAU12@@Z ; std::forward<gsl::narrowing_error> mov rdx, rax lea rcx, QWORD PTR $T1[rsp] call ??0narrowing_error@gsl@@QEAA@$$QEAU01@@Z lea rdx, OFFSET FLAT:_TI2?AUnarrowing_error@gsl@@ lea rcx, QWORD PTR $T1[rsp] call _CxxThrowException int 3 $LN3@throw_exce: ??$throw_exception@Unarrowing_error@gsl@@@details@gsl@@YAX$$QEAUnarrowing_error@1@@Z ENDP ; gsl::details::throw_exception<gsl::narrowing_error> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$narrow_cast@_JAEA_J@gsl@@YA_JAEA_J@Z _TEXT SEGMENT u$ = 8 ??$narrow_cast@_JAEA_J@gsl@@YA_JAEA_J@Z PROC ; gsl::narrow_cast<__int64,__int64 &>, COMDAT ; File c:\projects\gsl\include\gsl\gsl_util ; Line 100 mov rax, QWORD PTR [rcx] ; Line 101 ret 0 ??$narrow_cast@_JAEA_J@gsl@@YA_JAEA_J@Z ENDP ; gsl::narrow_cast<__int64,__int64 &> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$_Copy_unchecked1@PEBDPEAE@std@@YAPEAEPEBD0PEAEU_Trivially_copyable_ptr_iterator_tag@0@@Z _TEXT SEGMENT _First$ = 48 _Last$ = 56 _Dest$ = 64 __formal$ = 72 ??$_Copy_unchecked1@PEBDPEAE@std@@YAPEAEPEBD0PEAEU_Trivially_copyable_ptr_iterator_tag@0@@Z PROC ; std::_Copy_unchecked1<char const *,unsigned char *>, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 2424 $LN6: mov QWORD PTR [rsp+8], rbx push rdi sub rsp, 32 ; 00000020H mov rbx, rdx mov rdi, r8 ; Line 2402 sub rbx, rcx ; Line 2403 mov rdx, rcx mov r8, rbx mov rcx, rdi call memmove ; Line 2404 lea rax, QWORD PTR [rbx+rdi] ; Line 2426 mov rbx, QWORD PTR [rsp+48] add rsp, 32 ; 00000020H pop rdi ret 0 ??$_Copy_unchecked1@PEBDPEAE@std@@YAPEAEPEBD0PEAEU_Trivially_copyable_ptr_iterator_tag@0@@Z ENDP ; std::_Copy_unchecked1<char const *,unsigned char *> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$_Ptr_copy_cat@$$CBDE@std@@YA?AU_Really_trivial_ptr_iterator_tag@0@AEBQEBDAEBQEAE@Z _TEXT SEGMENT __$ReturnUdt$ = 8 __formal$ = 16 __formal$ = 24 ??$_Ptr_copy_cat@$$CBDE@std@@YA?AU_Really_trivial_ptr_iterator_tag@0@AEBQEBDAEBQEAE@Z PROC ; std::_Ptr_copy_cat<char const ,unsigned char>, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 1070 mov rax, rcx ; Line 1071 ret 0 ??$_Ptr_copy_cat@$$CBDE@std@@YA?AU_Really_trivial_ptr_iterator_tag@0@AEBQEBDAEBQEAE@Z ENDP ; std::_Ptr_copy_cat<char const ,unsigned char> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$_Adl_verify_range1@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@0U?$integral_constant@_N$00@0@@Z _TEXT SEGMENT $T1 = 32 $T2 = 48 $T3 = 64 $T4 = 64 _First$ = 112 _Last$ = 120 __formal$ = 128 ??$_Adl_verify_range1@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@0U?$integral_constant@_N$00@0@@Z PROC ; std::_Adl_verify_range1<gsl::details::span_iterator<gsl::span<char const ,-1>,0>,gsl::details::span_iterator<gsl::span<char const ,-1>,0> >, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 602 $LN21: sub rsp, 104 ; 00000068H mov QWORD PTR $T1[rsp], -2 ; Line 603 movups xmm1, XMMWORD PTR [rdx] movaps XMMWORD PTR $T2[rsp], xmm1 movups xmm0, XMMWORD PTR [rcx] movaps XMMWORD PTR $T4[rsp], xmm0 ; File c:\projects\gsl\include\gsl\span ; Line 265 movq rcx, xmm0 movq rax, xmm1 cmp rcx, rax jne SHORT $LN5@Adl_verify mov rax, QWORD PTR $T2[rsp+8] cmp QWORD PTR $T4[rsp+8], rax jg SHORT $LN5@Adl_verify ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 604 add rsp, 104 ; 00000068H ret 0 $LN5@Adl_verify: ; File c:\projects\gsl\include\gsl\span ; Line 265 lea rdx, OFFSET FLAT:??_C@_0ED@GOAPCFOK@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T3[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN18@Adl_verify: ??$_Adl_verify_range1@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@0U?$integral_constant@_N$00@0@@Z ENDP ; std::_Adl_verify_range1<gsl::details::span_iterator<gsl::span<char const ,-1>,0>,gsl::details::span_iterator<gsl::span<char const ,-1>,0> > _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$ensure_sentinel@$$CBD$0A@@gsl@@YA?AV?$span@$$CBD$0?0@0@PEBD_J@Z _TEXT SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 __$ReturnUdt$ = 80 $T4 = 88 seq$ = 88 max$ = 96 ??$ensure_sentinel@$$CBD$0A@@gsl@@YA?AV?$span@$$CBD$0?0@0@PEBD_J@Z PROC ; gsl::ensure_sentinel<char const ,0>, COMDAT ; File c:\projects\gsl\include\gsl\string_span ; Line 113 $LN52: push rbx sub rsp, 64 ; 00000040H mov QWORD PTR $T1[rsp], -2 mov r9, r8 mov rbx, rcx mov DWORD PTR $T4[rsp], 0 ; Line 114 test rdx, rdx je SHORT $LN5@ensure_sen ; Line 117 mov r8, rdx ; Line 121 test r9, r9 jle SHORT $LN3@ensure_sen npad 6 $LL2@ensure_sen: cmp BYTE PTR [r8], 0 je SHORT $LN48@ensure_sen inc r8 mov rax, r8 sub rax, rdx cmp rax, r9 jl SHORT $LL2@ensure_sen $LN3@ensure_sen: ; Line 122 cmp BYTE PTR [r8], 0 jne SHORT $LN9@ensure_sen $LN48@ensure_sen: ; Line 123 sub r8, rdx call ??0?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z ; gsl::span<char const ,-1>::span<char const ,-1> mov rax, rbx ; Line 124 add rsp, 64 ; 00000040H pop rbx ret 0 $LN9@ensure_sen: ; Line 122 lea rdx, OFFSET FLAT:??_C@_0EL@CANAMLLN@GSL?3?5Postcondition?5failure?5at?5c@ lea rcx, QWORD PTR $T2[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T4[rsp], 4 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> npad 1 $LN5@ensure_sen: ; Line 114 lea rdx, OFFSET FLAT:??_C@_0EL@HEMMNCGC@GSL?3?5Postcondition?5failure?5at?5c@ lea rcx, QWORD PTR $T3[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T4[rsp], 1 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN49@ensure_sen: ??$ensure_sentinel@$$CBD$0A@@gsl@@YA?AV?$span@$$CBD$0?0@0@PEBD_J@Z ENDP ; gsl::ensure_sentinel<char const ,0> _TEXT ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 __$ReturnUdt$ = 80 $T4 = 88 seq$ = 88 max$ = 96 ?dtor$0@?0???$ensure_sentinel@$$CBD$0A@@gsl@@YA?AV?$span@$$CBD$0?0@0@PEBD_J@Z@4HA PROC ; `gsl::ensure_sentinel<char const ,0>'::`1'::dtor$0 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 1 test eax, eax je SHORT $LN12@dtor$0 and DWORD PTR $T4[rbp], -2 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN12@dtor$0: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$0@?0???$ensure_sentinel@$$CBD$0A@@gsl@@YA?AV?$span@$$CBD$0?0@0@PEBD_J@Z@4HA ENDP ; `gsl::ensure_sentinel<char const ,0>'::`1'::dtor$0 text$x ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 __$ReturnUdt$ = 80 $T4 = 88 seq$ = 88 max$ = 96 ?dtor$2@?0???$ensure_sentinel@$$CBD$0A@@gsl@@YA?AV?$span@$$CBD$0?0@0@PEBD_J@Z@4HA PROC ; `gsl::ensure_sentinel<char const ,0>'::`1'::dtor$2 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 4 test eax, eax je SHORT $LN18@dtor$2 and DWORD PTR $T4[rbp], -5 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN18@dtor$2: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$2@?0???$ensure_sentinel@$$CBD$0A@@gsl@@YA?AV?$span@$$CBD$0?0@0@PEBD_J@Z@4HA ENDP ; `gsl::ensure_sentinel<char const ,0>'::`1'::dtor$2 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 __$ReturnUdt$ = 80 $T4 = 88 seq$ = 88 max$ = 96 ?dtor$0@?0???$ensure_sentinel@$$CBD$0A@@gsl@@YA?AV?$span@$$CBD$0?0@0@PEBD_J@Z@4HA PROC ; `gsl::ensure_sentinel<char const ,0>'::`1'::dtor$0 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 1 test eax, eax je SHORT $LN12@dtor$0 and DWORD PTR $T4[rbp], -2 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN12@dtor$0: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$0@?0???$ensure_sentinel@$$CBD$0A@@gsl@@YA?AV?$span@$$CBD$0?0@0@PEBD_J@Z@4HA ENDP ; `gsl::ensure_sentinel<char const ,0>'::`1'::dtor$0 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 __$ReturnUdt$ = 80 $T4 = 88 seq$ = 88 max$ = 96 ?dtor$2@?0???$ensure_sentinel@$$CBD$0A@@gsl@@YA?AV?$span@$$CBD$0?0@0@PEBD_J@Z@4HA PROC ; `gsl::ensure_sentinel<char const ,0>'::`1'::dtor$2 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 4 test eax, eax je SHORT $LN18@dtor$2 and DWORD PTR $T4[rbp], -5 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN18@dtor$2: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$2@?0???$ensure_sentinel@$$CBD$0A@@gsl@@YA?AV?$span@$$CBD$0?0@0@PEBD_J@Z@4HA ENDP ; `gsl::ensure_sentinel<char const ,0>'::`1'::dtor$2 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$forward@_K@std@@YA$$QEA_KAEA_K@Z _TEXT SEGMENT _Arg$ = 8 ??$forward@_K@std@@YA$$QEA_KAEA_K@Z PROC ; std::forward<unsigned __int64>, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\type_traits ; Line 1574 mov rax, rcx ; Line 1575 ret 0 ??$forward@_K@std@@YA$$QEA_KAEA_K@Z ENDP ; std::forward<unsigned __int64> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$?0$09@?$extent_type@$0?0@details@gsl@@QEAA@V?$extent_type@$09@12@@Z _TEXT SEGMENT this$ = 8 ext$ = 16 ??$?0$09@?$extent_type@$0?0@details@gsl@@QEAA@V?$extent_type@$09@12@@Z PROC ; gsl::details::extent_type<-1>::extent_type<-1><10>, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 333 mov QWORD PTR [rcx], 10 ; Line 334 mov rax, rcx ret 0 ??$?0$09@?$extent_type@$0?0@details@gsl@@QEAA@V?$extent_type@$09@12@@Z ENDP ; gsl::details::extent_type<-1>::extent_type<-1><10> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$_Seek_wrapped@H@std@@YAXAEAPEAHQEAH@Z _TEXT SEGMENT _It$ = 8 _UIt$ = 16 ??$_Seek_wrapped@H@std@@YAXAEAPEAHQEAH@Z PROC ; std::_Seek_wrapped<int>, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 872 mov QWORD PTR [rcx], rdx ; Line 873 ret 0 ??$_Seek_wrapped@H@std@@YAXAEAPEAHQEAH@Z ENDP ; std::_Seek_wrapped<int> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$_Copy_n_unchecked3@PEAH_JPEAH@std@@YAPEAHPEAH_J0@Z _TEXT SEGMENT _First$ = 48 _Count$ = 56 _Dest$ = 64 ??$_Copy_n_unchecked3@PEAH_JPEAH@std@@YAPEAHPEAH_J0@Z PROC ; std::_Copy_n_unchecked3<int *,__int64,int *>, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 2526 $LN10: mov QWORD PTR [rsp+8], rbx push rdi sub rsp, 32 ; 00000020H mov rdi, r8 ; Line 2518 lea rbx, QWORD PTR [rdx*4] ; Line 2403 mov rdx, rcx mov r8, rbx mov rcx, rdi call memmove ; Line 2404 lea rax, QWORD PTR [rbx+rdi] ; Line 2530 mov rbx, QWORD PTR [rsp+48] add rsp, 32 ; 00000020H pop rdi ret 0 ??$_Copy_n_unchecked3@PEAH_JPEAH@std@@YAPEAHPEAH_J0@Z ENDP ; std::_Copy_n_unchecked3<int *,__int64,int *> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$_Get_unwrapped_n@H_J$0A@@std@@YAPEAHQEAH_J@Z _TEXT SEGMENT _Src$ = 8 __formal$ = 16 ??$_Get_unwrapped_n@H_J$0A@@std@@YAPEAHQEAH_J@Z PROC ; std::_Get_unwrapped_n<int,__int64,0>, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 809 mov rax, rcx ; Line 810 ret 0 ??$_Get_unwrapped_n@H_J$0A@@std@@YAPEAHQEAH_J@Z ENDP ; std::_Get_unwrapped_n<int,__int64,0> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$_Copy_unchecked1@PEAHPEAH@std@@YAPEAHPEAH00U_Trivially_copyable_ptr_iterator_tag@0@@Z _TEXT SEGMENT _First$ = 48 _Last$ = 56 _Dest$ = 64 __formal$ = 72 ??$_Copy_unchecked1@PEAHPEAH@std@@YAPEAHPEAH00U_Trivially_copyable_ptr_iterator_tag@0@@Z PROC ; std::_Copy_unchecked1<int *,int *>, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 2424 $LN6: mov QWORD PTR [rsp+8], rbx push rdi sub rsp, 32 ; 00000020H mov rbx, rdx mov rdi, r8 ; Line 2402 sub rbx, rcx ; Line 2403 mov rdx, rcx mov r8, rbx mov rcx, rdi call memmove ; Line 2404 lea rax, QWORD PTR [rbx+rdi] ; Line 2426 mov rbx, QWORD PTR [rsp+48] add rsp, 32 ; 00000020H pop rdi ret 0 ??$_Copy_unchecked1@PEAHPEAH@std@@YAPEAHPEAH00U_Trivially_copyable_ptr_iterator_tag@0@@Z ENDP ; std::_Copy_unchecked1<int *,int *> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$_Ptr_copy_cat@HH@std@@YA?AU_Really_trivial_ptr_iterator_tag@0@AEBQEAH0@Z _TEXT SEGMENT __$ReturnUdt$ = 8 __formal$ = 16 __formal$ = 24 ??$_Ptr_copy_cat@HH@std@@YA?AU_Really_trivial_ptr_iterator_tag@0@AEBQEAH0@Z PROC ; std::_Ptr_copy_cat<int,int>, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 1070 mov rax, rcx ; Line 1071 ret 0 ??$_Ptr_copy_cat@HH@std@@YA?AU_Really_trivial_ptr_iterator_tag@0@AEBQEAH0@Z ENDP ; std::_Ptr_copy_cat<int,int> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$_Adl_verify_range1@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@0U?$integral_constant@_N$00@0@@Z _TEXT SEGMENT $T1 = 32 $T2 = 48 $T3 = 64 $T4 = 64 _First$ = 112 _Last$ = 120 __formal$ = 128 ??$_Adl_verify_range1@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@0U?$integral_constant@_N$00@0@@Z PROC ; std::_Adl_verify_range1<gsl::details::span_iterator<gsl::span<int,-1>,0>,gsl::details::span_iterator<gsl::span<int,-1>,0> >, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 602 $LN21: sub rsp, 104 ; 00000068H mov QWORD PTR $T1[rsp], -2 ; Line 603 movups xmm1, XMMWORD PTR [rdx] movaps XMMWORD PTR $T2[rsp], xmm1 movups xmm0, XMMWORD PTR [rcx] movaps XMMWORD PTR $T4[rsp], xmm0 ; File c:\projects\gsl\include\gsl\span ; Line 265 movq rcx, xmm0 movq rax, xmm1 cmp rcx, rax jne SHORT $LN5@Adl_verify mov rax, QWORD PTR $T2[rsp+8] cmp QWORD PTR $T4[rsp+8], rax jg SHORT $LN5@Adl_verify ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 604 add rsp, 104 ; 00000068H ret 0 $LN5@Adl_verify: ; File c:\projects\gsl\include\gsl\span ; Line 265 lea rdx, OFFSET FLAT:??_C@_0ED@GOAPCFOK@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T3[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN18@Adl_verify: ??$_Adl_verify_range1@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@0U?$integral_constant@_N$00@0@@Z ENDP ; std::_Adl_verify_range1<gsl::details::span_iterator<gsl::span<int,-1>,0>,gsl::details::span_iterator<gsl::span<int,-1>,0> > _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$?0$0A@@?$extent_type@$0?0@details@gsl@@QEAA@V?$extent_type@$0A@@12@@Z _TEXT SEGMENT this$ = 8 ext$ = 16 ??$?0$0A@@?$extent_type@$0?0@details@gsl@@QEAA@V?$extent_type@$0A@@12@@Z PROC ; gsl::details::extent_type<-1>::extent_type<-1><0>, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 333 mov QWORD PTR [rcx], 0 ; Line 334 mov rax, rcx ret 0 ??$?0$0A@@?$extent_type@$0?0@details@gsl@@QEAA@V?$extent_type@$0A@@12@@Z ENDP ; gsl::details::extent_type<-1>::extent_type<-1><0> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$?0$05@?$extent_type@$0?0@details@gsl@@QEAA@V?$extent_type@$05@12@@Z _TEXT SEGMENT this$ = 8 ext$ = 16 ??$?0$05@?$extent_type@$0?0@details@gsl@@QEAA@V?$extent_type@$05@12@@Z PROC ; gsl::details::extent_type<-1>::extent_type<-1><6>, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 333 mov QWORD PTR [rcx], 6 ; Line 334 mov rax, rcx ret 0 ??$?0$05@?$extent_type@$0?0@details@gsl@@QEAA@V?$extent_type@$05@12@@Z ENDP ; gsl::details::extent_type<-1>::extent_type<-1><6> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@PEAE_J@Z _TEXT SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 $T4 = 80 this$ = 80 data$ = 88 ext$ = 96 ??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@PEAE_J@Z PROC ; gsl::span<unsigned char,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><__int64>, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 597 $LN53: sub rsp, 72 ; 00000048H mov QWORD PTR $T1[rsp], -2 mov DWORD PTR $T4[rsp], 0 ; Line 336 mov QWORD PTR [rcx], r8 test r8, r8 js SHORT $LN15@extent_typ ; Line 596 mov QWORD PTR [rcx+8], rdx ; Line 599 test rdx, rdx jne SHORT $LN5@extent_typ test r8, r8 jne SHORT $LN51@extent_typ $LN5@extent_typ: ; Line 600 mov rax, rcx add rsp, 72 ; 00000048H ret 0 $LN51@extent_typ: ; Line 599 lea rdx, OFFSET FLAT:??_C@_0ED@HPBMEGKB@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T3[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T4[rsp], 2 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> npad 1 $LN15@extent_typ: ; Line 336 lea rdx, OFFSET FLAT:??_C@_0ED@NAHIIAGE@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T2[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T4[rsp], 4 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN49@extent_typ: ??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@PEAE_J@Z ENDP ; gsl::span<unsigned char,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><__int64> _TEXT ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 $T4 = 80 this$ = 80 data$ = 88 ext$ = 96 ?dtor$2@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@PEAE_J@Z@4HA PROC ; `gsl::span<unsigned char,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><__int64>'::`1'::dtor$2 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 4 test eax, eax je SHORT $LN18@dtor$2 and DWORD PTR $T4[rbp], -5 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN18@dtor$2: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$2@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@PEAE_J@Z@4HA ENDP ; `gsl::span<unsigned char,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><__int64>'::`1'::dtor$2 text$x ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 $T4 = 80 this$ = 80 data$ = 88 ext$ = 96 ?dtor$1@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@PEAE_J@Z@4HA PROC ; `gsl::span<unsigned char,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><__int64>'::`1'::dtor$1 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 2 test eax, eax je SHORT $LN11@dtor$1 and DWORD PTR $T4[rbp], -3 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN11@dtor$1: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$1@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@PEAE_J@Z@4HA ENDP ; `gsl::span<unsigned char,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><__int64>'::`1'::dtor$1 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 $T4 = 80 this$ = 80 data$ = 88 ext$ = 96 ?dtor$2@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@PEAE_J@Z@4HA PROC ; `gsl::span<unsigned char,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><__int64>'::`1'::dtor$2 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 4 test eax, eax je SHORT $LN18@dtor$2 and DWORD PTR $T4[rbp], -5 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN18@dtor$2: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$2@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@PEAE_J@Z@4HA ENDP ; `gsl::span<unsigned char,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><__int64>'::`1'::dtor$2 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 $T4 = 80 this$ = 80 data$ = 88 ext$ = 96 ?dtor$1@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@PEAE_J@Z@4HA PROC ; `gsl::span<unsigned char,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><__int64>'::`1'::dtor$1 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 2 test eax, eax je SHORT $LN11@dtor$1 and DWORD PTR $T4[rbp], -3 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN11@dtor$1: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$1@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@PEAE_J@Z@4HA ENDP ; `gsl::span<unsigned char,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><__int64>'::`1'::dtor$1 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z _TEXT SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 $T4 = 80 this$ = 80 data$ = 88 ext$ = 96 ??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z PROC ; gsl::span<char const ,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><__int64>, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 597 $LN53: sub rsp, 72 ; 00000048H mov QWORD PTR $T1[rsp], -2 mov DWORD PTR $T4[rsp], 0 ; Line 336 mov QWORD PTR [rcx], r8 test r8, r8 js SHORT $LN15@extent_typ ; Line 596 mov QWORD PTR [rcx+8], rdx ; Line 599 test rdx, rdx jne SHORT $LN5@extent_typ test r8, r8 jne SHORT $LN51@extent_typ $LN5@extent_typ: ; Line 600 mov rax, rcx add rsp, 72 ; 00000048H ret 0 $LN51@extent_typ: ; Line 599 lea rdx, OFFSET FLAT:??_C@_0ED@HPBMEGKB@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T3[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T4[rsp], 2 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> npad 1 $LN15@extent_typ: ; Line 336 lea rdx, OFFSET FLAT:??_C@_0ED@NAHIIAGE@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T2[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T4[rsp], 4 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN49@extent_typ: ??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z ENDP ; gsl::span<char const ,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><__int64> _TEXT ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 $T4 = 80 this$ = 80 data$ = 88 ext$ = 96 ?dtor$2@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z@4HA PROC ; `gsl::span<char const ,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><__int64>'::`1'::dtor$2 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 4 test eax, eax je SHORT $LN18@dtor$2 and DWORD PTR $T4[rbp], -5 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN18@dtor$2: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$2@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z@4HA ENDP ; `gsl::span<char const ,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><__int64>'::`1'::dtor$2 text$x ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 $T4 = 80 this$ = 80 data$ = 88 ext$ = 96 ?dtor$1@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z@4HA PROC ; `gsl::span<char const ,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><__int64>'::`1'::dtor$1 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 2 test eax, eax je SHORT $LN11@dtor$1 and DWORD PTR $T4[rbp], -3 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN11@dtor$1: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$1@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z@4HA ENDP ; `gsl::span<char const ,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><__int64>'::`1'::dtor$1 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 $T4 = 80 this$ = 80 data$ = 88 ext$ = 96 ?dtor$2@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z@4HA PROC ; `gsl::span<char const ,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><__int64>'::`1'::dtor$2 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 4 test eax, eax je SHORT $LN18@dtor$2 and DWORD PTR $T4[rbp], -5 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN18@dtor$2: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$2@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z@4HA ENDP ; `gsl::span<char const ,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><__int64>'::`1'::dtor$2 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 $T4 = 80 this$ = 80 data$ = 88 ext$ = 96 ?dtor$1@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z@4HA PROC ; `gsl::span<char const ,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><__int64>'::`1'::dtor$1 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 2 test eax, eax je SHORT $LN11@dtor$1 and DWORD PTR $T4[rbp], -3 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN11@dtor$1: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$1@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z@4HA ENDP ; `gsl::span<char const ,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><__int64>'::`1'::dtor$1 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$?0H$05X@?$span@H$0?0@gsl@@QEAA@AEBV?$span@H$05@1@@Z _TEXT SEGMENT $T1 = 32 $T2 = 40 this$ = 80 other$ = 88 $T3 = 96 ??$?0H$05X@?$span@H$0?0@gsl@@QEAA@AEBV?$span@H$05@1@@Z PROC ; gsl::span<int,-1>::span<int,-1><int,6,void>, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 448 $LN67: sub rsp, 72 ; 00000048H mov QWORD PTR $T1[rsp], -2 mov DWORD PTR $T3[rsp], 0 ; Line 515 mov rax, QWORD PTR [rdx] ; Line 333 mov QWORD PTR [rcx], 6 ; Line 596 mov QWORD PTR [rcx+8], rax ; Line 599 test rax, rax je SHORT $LN65@span ; Line 448 mov rax, rcx add rsp, 72 ; 00000048H ret 0 $LN65@span: ; Line 599 lea rdx, OFFSET FLAT:??_C@_0ED@HPBMEGKB@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T2[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T3[rsp], 4 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN63@span: ??$?0H$05X@?$span@H$0?0@gsl@@QEAA@AEBV?$span@H$05@1@@Z ENDP ; gsl::span<int,-1>::span<int,-1><int,6,void> _TEXT ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 this$ = 80 other$ = 88 $T3 = 96 ?dtor$4@?0???$?0H$05X@?$span@H$0?0@gsl@@QEAA@AEBV?$span@H$05@1@@Z@4HA PROC ; `gsl::span<int,-1>::span<int,-1><int,6,void>'::`1'::dtor$4 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T3[rbp] and eax, 4 test eax, eax je SHORT $LN37@dtor$4 and DWORD PTR $T3[rbp], -5 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN37@dtor$4: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$4@?0???$?0H$05X@?$span@H$0?0@gsl@@QEAA@AEBV?$span@H$05@1@@Z@4HA ENDP ; `gsl::span<int,-1>::span<int,-1><int,6,void>'::`1'::dtor$4 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 this$ = 80 other$ = 88 $T3 = 96 ?dtor$4@?0???$?0H$05X@?$span@H$0?0@gsl@@QEAA@AEBV?$span@H$05@1@@Z@4HA PROC ; `gsl::span<int,-1>::span<int,-1><int,6,void>'::`1'::dtor$4 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T3[rbp] and eax, 4 test eax, eax je SHORT $LN37@dtor$4 and DWORD PTR $T3[rbp], -5 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN37@dtor$4: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$4@?0???$?0H$05X@?$span@H$0?0@gsl@@QEAA@AEBV?$span@H$05@1@@Z@4HA ENDP ; `gsl::span<int,-1>::span<int,-1><int,6,void>'::`1'::dtor$4 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$copy_n@PEBD_JPEAE@std@@YAPEAEPEBD_JPEAE@Z _TEXT SEGMENT _First$ = 48 _Count_raw$ = 56 _Dest$ = 64 ??$copy_n@PEBD_JPEAE@std@@YAPEAEPEBD_JPEAE@Z PROC ; std::copy_n<char const *,__int64,unsigned char *>, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 2536 $LN20: mov QWORD PTR [rsp+8], rbx push rdi sub rsp, 32 ; 00000020H mov rbx, r8 mov rdi, rdx ; Line 2538 test rdx, rdx jle SHORT $LN18@copy_n ; Line 2403 mov r8, rdx mov rdx, rcx mov rcx, rbx call memmove ; Line 872 lea rax, QWORD PTR [rdi+rbx] ; Line 2545 mov rbx, QWORD PTR [rsp+48] add rsp, 32 ; 00000020H pop rdi ret 0 $LN18@copy_n: ; Line 2544 mov rax, rbx ; Line 2545 mov rbx, QWORD PTR [rsp+48] add rsp, 32 ; 00000020H pop rdi ret 0 ??$copy_n@PEBD_JPEAE@std@@YAPEAEPEBD_JPEAE@Z ENDP ; std::copy_n<char const *,__int64,unsigned char *> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$narrow@_J_J@gsl@@YA_J_J@Z _TEXT SEGMENT $T1 = 0 u$ = 32 ??$narrow@_J_J@gsl@@YA_J_J@Z PROC ; gsl::narrow<__int64,__int64>, COMDAT ; File c:\projects\gsl\include\gsl\gsl_util ; Line 124 $LN23: sub rsp, 24 mov QWORD PTR $T1[rsp], -2 ; Line 129 mov rax, rcx ; Line 130 add rsp, 24 ret 0 ??$narrow@_J_J@gsl@@YA_J_J@Z ENDP ; gsl::narrow<__int64,__int64> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$_Seek_wrapped@V?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@PEAE$0A@@std@@YAXAEAV?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@AEBQEAE@Z _TEXT SEGMENT _It$ = 8 _UIt$ = 16 ??$_Seek_wrapped@V?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@PEAE$0A@@std@@YAXAEAV?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@AEBQEAE@Z PROC ; std::_Seek_wrapped<gsl::details::span_iterator<gsl::span<unsigned char,-1>,0>,unsigned char *,0>, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; File c:\projects\gsl\include\gsl\span ; Line 294 mov rdx, QWORD PTR [rdx] mov rax, QWORD PTR [rcx] sub rdx, QWORD PTR [rax+8] mov QWORD PTR [rcx+8], rdx ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 858 ret 0 ??$_Seek_wrapped@V?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@PEAE$0A@@std@@YAXAEAV?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@AEBQEAE@Z ENDP ; std::_Seek_wrapped<gsl::details::span_iterator<gsl::span<unsigned char,-1>,0>,unsigned char *,0> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$_Copy_unchecked@PEBDPEAE@std@@YAPEAEPEBD0PEAE@Z _TEXT SEGMENT _First$ = 48 _Last$ = 56 _Dest$ = 64 ??$_Copy_unchecked@PEBDPEAE@std@@YAPEAEPEBD0PEAE@Z PROC ; std::_Copy_unchecked<char const *,unsigned char *>, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 2432 $LN10: mov QWORD PTR [rsp+8], rbx push rdi sub rsp, 32 ; 00000020H mov rbx, rdx mov rdi, r8 ; Line 2402 sub rbx, rcx ; Line 2403 mov rdx, rcx mov r8, rbx mov rcx, rdi call memmove ; Line 2404 lea rax, QWORD PTR [rbx+rdi] ; Line 2435 mov rbx, QWORD PTR [rsp+48] add rsp, 32 ; 00000020H pop rdi ret 0 ??$_Copy_unchecked@PEBDPEAE@std@@YAPEAEPEBD0PEAE@Z ENDP ; std::_Copy_unchecked<char const *,unsigned char *> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$_Get_unwrapped_n@V?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@_J$0A@@std@@YAPEAEAEBV?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@_J@Z _TEXT SEGMENT $T1 = 32 $T2 = 40 _It$ = 80 _Off$ = 88 ??$_Get_unwrapped_n@V?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@_J$0A@@std@@YAPEAEAEBV?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@_J@Z PROC ; std::_Get_unwrapped_n<gsl::details::span_iterator<gsl::span<unsigned char,-1>,0>,__int64,0>, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 760 $LN31: sub rsp, 72 ; 00000048H mov QWORD PTR $T1[rsp], -2 ; File c:\projects\gsl\include\gsl\span ; Line 272 mov r9, QWORD PTR [rcx+8] lea r8, QWORD PTR [r9+rdx] test r8, r8 js SHORT $LN5@Get_unwrap ; Line 338 mov rax, QWORD PTR [rcx] ; Line 272 cmp r8, QWORD PTR [rax] jg SHORT $LN5@Get_unwrap ; Line 280 mov rax, QWORD PTR [rax+8] add rax, r9 ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 772 add rsp, 72 ; 00000048H ret 0 $LN5@Get_unwrap: ; File c:\projects\gsl\include\gsl\span ; Line 272 lea rdx, OFFSET FLAT:??_C@_0ED@LKBIKNJ@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T2[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN28@Get_unwrap: ??$_Get_unwrapped_n@V?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@_J$0A@@std@@YAPEAEAEBV?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@_J@Z ENDP ; std::_Get_unwrapped_n<gsl::details::span_iterator<gsl::span<unsigned char,-1>,0>,__int64,0> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$_Idl_distance1@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@PEBD@std@@YA_JAEBQEBD0Urandom_access_iterator_tag@0@@Z _TEXT SEGMENT _First$ = 8 _Last$ = 16 __formal$ = 24 ??$_Idl_distance1@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@PEBD@std@@YA_JAEBQEBD0Urandom_access_iterator_tag@0@@Z PROC ; std::_Idl_distance1<gsl::details::span_iterator<gsl::span<char const ,-1>,0>,char const *>, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 968 mov rax, QWORD PTR [rdx] sub rax, QWORD PTR [rcx] ; Line 969 ret 0 ??$_Idl_distance1@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@PEBD@std@@YA_JAEBQEBD0Urandom_access_iterator_tag@0@@Z ENDP ; std::_Idl_distance1<gsl::details::span_iterator<gsl::span<char const ,-1>,0>,char const *> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$_Idl_distance@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@PEBD@std@@YA_JAEBQEBD0@Z _TEXT SEGMENT _First$ = 8 _Last$ = 16 ??$_Idl_distance@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@PEBD@std@@YA_JAEBQEBD0@Z PROC ; std::_Idl_distance<gsl::details::span_iterator<gsl::span<char const ,-1>,0>,char const *>, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 968 mov rax, QWORD PTR [rdx] sub rax, QWORD PTR [rcx] ; Line 976 ret 0 ??$_Idl_distance@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@PEBD@std@@YA_JAEBQEBD0@Z ENDP ; std::_Idl_distance<gsl::details::span_iterator<gsl::span<char const ,-1>,0>,char const *> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$_Get_unwrapped@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@$0A@@std@@YAPEBDAEBV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@@Z _TEXT SEGMENT _It$ = 8 ??$_Get_unwrapped@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@$0A@@std@@YAPEBDAEBV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@@Z PROC ; std::_Get_unwrapped<gsl::details::span_iterator<gsl::span<char const ,-1>,0>,0>, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; File c:\projects\gsl\include\gsl\span ; Line 280 mov rax, QWORD PTR [rcx] mov rax, QWORD PTR [rax+8] add rax, QWORD PTR [rcx+8] ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 644 ret 0 ??$_Get_unwrapped@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@$0A@@std@@YAPEBDAEBV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@@Z ENDP ; std::_Get_unwrapped<gsl::details::span_iterator<gsl::span<char const ,-1>,0>,0> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$_Adl_verify_range@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@0@Z _TEXT SEGMENT $T1 = 32 $T2 = 48 $T3 = 64 $T4 = 64 _First$ = 112 _Last$ = 120 ??$_Adl_verify_range@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@0@Z PROC ; std::_Adl_verify_range<gsl::details::span_iterator<gsl::span<char const ,-1>,0>,gsl::details::span_iterator<gsl::span<char const ,-1>,0> >, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 615 $LN24: sub rsp, 104 ; 00000068H mov QWORD PTR $T1[rsp], -2 ; Line 603 movups xmm1, XMMWORD PTR [rdx] movaps XMMWORD PTR $T2[rsp], xmm1 movups xmm0, XMMWORD PTR [rcx] movaps XMMWORD PTR $T4[rsp], xmm0 ; File c:\projects\gsl\include\gsl\span ; Line 265 movq rcx, xmm0 movq rax, xmm1 cmp rcx, rax jne SHORT $LN7@Adl_verify mov rax, QWORD PTR $T2[rsp+8] cmp QWORD PTR $T4[rsp+8], rax jg SHORT $LN7@Adl_verify ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 617 add rsp, 104 ; 00000068H ret 0 $LN7@Adl_verify: ; File c:\projects\gsl\include\gsl\span ; Line 265 lea rdx, OFFSET FLAT:??_C@_0ED@GOAPCFOK@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T3[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN21@Adl_verify: ??$_Adl_verify_range@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@0@Z ENDP ; std::_Adl_verify_range<gsl::details::span_iterator<gsl::span<char const ,-1>,0>,gsl::details::span_iterator<gsl::span<char const ,-1>,0> > _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$ensure_z@$$CBD@gsl@@YA?AV?$span@$$CBD$0?0@0@AEBQEBD_J@Z _TEXT SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 __$ReturnUdt$ = 80 $T4 = 88 sz$ = 88 max$ = 96 ??$ensure_z@$$CBD@gsl@@YA?AV?$span@$$CBD$0?0@0@AEBQEBD_J@Z PROC ; gsl::ensure_z<char const >, COMDAT ; File c:\projects\gsl\include\gsl\string_span ; Line 133 $LN55: push rbx sub rsp, 64 ; 00000040H mov QWORD PTR $T1[rsp], -2 mov r9, r8 mov rbx, rcx mov DWORD PTR $T4[rsp], 0 ; Line 134 mov rdx, QWORD PTR [rdx] ; Line 114 test rdx, rdx je SHORT $LN7@ensure_z ; Line 117 mov r8, rdx ; Line 121 test r9, r9 jle SHORT $LN5@ensure_z npad 3 $LL4@ensure_z: cmp BYTE PTR [r8], 0 je SHORT $LN51@ensure_z inc r8 mov rax, r8 sub rax, rdx cmp rax, r9 jl SHORT $LL4@ensure_z $LN5@ensure_z: ; Line 122 cmp BYTE PTR [r8], 0 jne SHORT $LN11@ensure_z $LN51@ensure_z: ; Line 123 sub r8, rdx call ??0?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z ; gsl::span<char const ,-1>::span<char const ,-1> ; Line 134 mov rax, rbx ; Line 135 add rsp, 64 ; 00000040H pop rbx ret 0 $LN11@ensure_z: ; Line 122 lea rdx, OFFSET FLAT:??_C@_0EL@CANAMLLN@GSL?3?5Postcondition?5failure?5at?5c@ lea rcx, QWORD PTR $T2[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T4[rsp], 4 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> npad 1 $LN7@ensure_z: ; Line 114 lea rdx, OFFSET FLAT:??_C@_0EL@HEMMNCGC@GSL?3?5Postcondition?5failure?5at?5c@ lea rcx, QWORD PTR $T3[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T4[rsp], 1 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN52@ensure_z: ??$ensure_z@$$CBD@gsl@@YA?AV?$span@$$CBD$0?0@0@AEBQEBD_J@Z ENDP ; gsl::ensure_z<char const > _TEXT ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 __$ReturnUdt$ = 80 $T4 = 88 sz$ = 88 max$ = 96 ?dtor$0@?0???$ensure_z@$$CBD@gsl@@YA?AV?$span@$$CBD$0?0@0@AEBQEBD_J@Z@4HA PROC ; `gsl::ensure_z<char const >'::`1'::dtor$0 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 1 test eax, eax je SHORT $LN14@dtor$0 and DWORD PTR $T4[rbp], -2 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN14@dtor$0: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$0@?0???$ensure_z@$$CBD@gsl@@YA?AV?$span@$$CBD$0?0@0@AEBQEBD_J@Z@4HA ENDP ; `gsl::ensure_z<char const >'::`1'::dtor$0 text$x ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 __$ReturnUdt$ = 80 $T4 = 88 sz$ = 88 max$ = 96 ?dtor$2@?0???$ensure_z@$$CBD@gsl@@YA?AV?$span@$$CBD$0?0@0@AEBQEBD_J@Z@4HA PROC ; `gsl::ensure_z<char const >'::`1'::dtor$2 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 4 test eax, eax je SHORT $LN20@dtor$2 and DWORD PTR $T4[rbp], -5 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN20@dtor$2: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$2@?0???$ensure_z@$$CBD@gsl@@YA?AV?$span@$$CBD$0?0@0@AEBQEBD_J@Z@4HA ENDP ; `gsl::ensure_z<char const >'::`1'::dtor$2 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 __$ReturnUdt$ = 80 $T4 = 88 sz$ = 88 max$ = 96 ?dtor$0@?0???$ensure_z@$$CBD@gsl@@YA?AV?$span@$$CBD$0?0@0@AEBQEBD_J@Z@4HA PROC ; `gsl::ensure_z<char const >'::`1'::dtor$0 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 1 test eax, eax je SHORT $LN14@dtor$0 and DWORD PTR $T4[rbp], -2 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN14@dtor$0: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$0@?0???$ensure_z@$$CBD@gsl@@YA?AV?$span@$$CBD$0?0@0@AEBQEBD_J@Z@4HA ENDP ; `gsl::ensure_z<char const >'::`1'::dtor$0 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 __$ReturnUdt$ = 80 $T4 = 88 sz$ = 88 max$ = 96 ?dtor$2@?0???$ensure_z@$$CBD@gsl@@YA?AV?$span@$$CBD$0?0@0@AEBQEBD_J@Z@4HA PROC ; `gsl::ensure_z<char const >'::`1'::dtor$2 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 4 test eax, eax je SHORT $LN20@dtor$2 and DWORD PTR $T4[rbp], -5 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN20@dtor$2: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$2@?0???$ensure_z@$$CBD@gsl@@YA?AV?$span@$$CBD$0?0@0@AEBQEBD_J@Z@4HA ENDP ; `gsl::ensure_z<char const >'::`1'::dtor$2 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$narrow_cast@_J_K@gsl@@YA_J$$QEA_K@Z _TEXT SEGMENT u$ = 8 ??$narrow_cast@_J_K@gsl@@YA_J$$QEA_K@Z PROC ; gsl::narrow_cast<__int64,unsigned __int64>, COMDAT ; File c:\projects\gsl\include\gsl\gsl_util ; Line 100 mov rax, QWORD PTR [rcx] ; Line 101 ret 0 ??$narrow_cast@_J_K@gsl@@YA_J$$QEA_K@Z ENDP ; gsl::narrow_cast<__int64,unsigned __int64> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$?0V?$extent_type@$09@details@gsl@@@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@UKnownNotNull@12@V?$extent_type@$09@details@2@@Z _TEXT SEGMENT $T1 = 0 this$ = 32 data$ = 40 ext$ = 48 ??$?0V?$extent_type@$09@details@gsl@@@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@UKnownNotNull@12@V?$extent_type@$09@details@2@@Z PROC ; gsl::span<unsigned char,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><gsl::details::extent_type<10> >, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 591 $LN24: sub rsp, 24 mov QWORD PTR $T1[rsp], -2 ; Line 333 mov QWORD PTR [rcx], 10 ; Line 590 mov QWORD PTR [rcx+8], rdx ; Line 593 mov rax, rcx add rsp, 24 ret 0 ??$?0V?$extent_type@$09@details@gsl@@@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@UKnownNotNull@12@V?$extent_type@$09@details@2@@Z ENDP ; gsl::span<unsigned char,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><gsl::details::extent_type<10> > _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?size@?$extent_type@$09@details@gsl@@QEBA_JXZ _TEXT SEGMENT this$ = 8 ?size@?$extent_type@$09@details@gsl@@QEBA_JXZ PROC ; gsl::details::extent_type<10>::size, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 323 mov eax, 10 ret 0 ?size@?$extent_type@$09@details@gsl@@QEBA_JXZ ENDP ; gsl::details::extent_type<10>::size _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??0?$extent_type@$09@details@gsl@@QEAA@XZ _TEXT SEGMENT this$ = 8 ??0?$extent_type@$09@details@gsl@@QEAA@XZ PROC ; gsl::details::extent_type<10>::extent_type<10>, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 311 mov rax, rcx ret 0 ??0?$extent_type@$09@details@gsl@@QEAA@XZ ENDP ; gsl::details::extent_type<10>::extent_type<10> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$copy_n@PEAH_JPEAH@std@@YAPEAHPEAH_J0@Z _TEXT SEGMENT _First$ = 48 _Count_raw$ = 56 _Dest$ = 64 ??$copy_n@PEAH_JPEAH@std@@YAPEAHPEAH_J0@Z PROC ; std::copy_n<int *,__int64,int *>, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 2536 $LN20: push rdi sub rsp, 32 ; 00000020H mov rdi, r8 ; Line 2538 test rdx, rdx jle SHORT $LN18@copy_n ; Line 2518 mov QWORD PTR [rsp+48], rbx lea rbx, QWORD PTR [rdx*4] ; Line 2403 mov rdx, rcx mov r8, rbx mov rcx, rdi call memmove ; Line 872 lea rax, QWORD PTR [rbx+rdi] ; Line 2544 mov rbx, QWORD PTR [rsp+48] ; Line 2545 add rsp, 32 ; 00000020H pop rdi ret 0 $LN18@copy_n: ; Line 2544 mov rax, rdi ; Line 2545 add rsp, 32 ; 00000020H pop rdi ret 0 ??$copy_n@PEAH_JPEAH@std@@YAPEAHPEAH_J0@Z ENDP ; std::copy_n<int *,__int64,int *> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$_Seek_wrapped@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@PEAH$0A@@std@@YAXAEAV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@AEBQEAH@Z _TEXT SEGMENT _It$ = 8 _UIt$ = 16 ??$_Seek_wrapped@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@PEAH$0A@@std@@YAXAEAV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@AEBQEAH@Z PROC ; std::_Seek_wrapped<gsl::details::span_iterator<gsl::span<int,-1>,0>,int *,0>, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; File c:\projects\gsl\include\gsl\span ; Line 294 mov rdx, QWORD PTR [rdx] mov rax, QWORD PTR [rcx] sub rdx, QWORD PTR [rax+8] sar rdx, 2 mov QWORD PTR [rcx+8], rdx ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 858 ret 0 ??$_Seek_wrapped@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@PEAH$0A@@std@@YAXAEAV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@AEBQEAH@Z ENDP ; std::_Seek_wrapped<gsl::details::span_iterator<gsl::span<int,-1>,0>,int *,0> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$_Copy_unchecked@PEAHPEAH@std@@YAPEAHPEAH00@Z _TEXT SEGMENT _First$ = 48 _Last$ = 56 _Dest$ = 64 ??$_Copy_unchecked@PEAHPEAH@std@@YAPEAHPEAH00@Z PROC ; std::_Copy_unchecked<int *,int *>, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 2432 $LN10: mov QWORD PTR [rsp+8], rbx push rdi sub rsp, 32 ; 00000020H mov rbx, rdx mov rdi, r8 ; Line 2402 sub rbx, rcx ; Line 2403 mov rdx, rcx mov r8, rbx mov rcx, rdi call memmove ; Line 2404 lea rax, QWORD PTR [rbx+rdi] ; Line 2435 mov rbx, QWORD PTR [rsp+48] add rsp, 32 ; 00000020H pop rdi ret 0 ??$_Copy_unchecked@PEAHPEAH@std@@YAPEAHPEAH00@Z ENDP ; std::_Copy_unchecked<int *,int *> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$_Get_unwrapped_n@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@_J$0A@@std@@YAPEAHAEBV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@_J@Z _TEXT SEGMENT $T1 = 32 $T2 = 40 _It$ = 80 _Off$ = 88 ??$_Get_unwrapped_n@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@_J$0A@@std@@YAPEAHAEBV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@_J@Z PROC ; std::_Get_unwrapped_n<gsl::details::span_iterator<gsl::span<int,-1>,0>,__int64,0>, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 760 $LN31: sub rsp, 72 ; 00000048H mov QWORD PTR $T1[rsp], -2 ; File c:\projects\gsl\include\gsl\span ; Line 272 mov r9, QWORD PTR [rcx+8] lea r8, QWORD PTR [r9+rdx] test r8, r8 js SHORT $LN5@Get_unwrap ; Line 338 mov rax, QWORD PTR [rcx] ; Line 272 cmp r8, QWORD PTR [rax] jg SHORT $LN5@Get_unwrap ; Line 280 mov rax, QWORD PTR [rax+8] lea rax, QWORD PTR [rax+r9*4] ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 772 add rsp, 72 ; 00000048H ret 0 $LN5@Get_unwrap: ; File c:\projects\gsl\include\gsl\span ; Line 272 lea rdx, OFFSET FLAT:??_C@_0ED@LKBIKNJ@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T2[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN28@Get_unwrap: ??$_Get_unwrapped_n@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@_J$0A@@std@@YAPEAHAEBV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@_J@Z ENDP ; std::_Get_unwrapped_n<gsl::details::span_iterator<gsl::span<int,-1>,0>,__int64,0> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$_Idl_distance1@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@PEAH@std@@YA_JAEBQEAH0Urandom_access_iterator_tag@0@@Z _TEXT SEGMENT _First$ = 8 _Last$ = 16 __formal$ = 24 ??$_Idl_distance1@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@PEAH@std@@YA_JAEBQEAH0Urandom_access_iterator_tag@0@@Z PROC ; std::_Idl_distance1<gsl::details::span_iterator<gsl::span<int,-1>,0>,int *>, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 968 mov rax, QWORD PTR [rdx] sub rax, QWORD PTR [rcx] sar rax, 2 ; Line 969 ret 0 ??$_Idl_distance1@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@PEAH@std@@YA_JAEBQEAH0Urandom_access_iterator_tag@0@@Z ENDP ; std::_Idl_distance1<gsl::details::span_iterator<gsl::span<int,-1>,0>,int *> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$_Idl_distance@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@PEAH@std@@YA_JAEBQEAH0@Z _TEXT SEGMENT _First$ = 8 _Last$ = 16 ??$_Idl_distance@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@PEAH@std@@YA_JAEBQEAH0@Z PROC ; std::_Idl_distance<gsl::details::span_iterator<gsl::span<int,-1>,0>,int *>, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 968 mov rax, QWORD PTR [rdx] sub rax, QWORD PTR [rcx] sar rax, 2 ; Line 976 ret 0 ??$_Idl_distance@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@PEAH@std@@YA_JAEBQEAH0@Z ENDP ; std::_Idl_distance<gsl::details::span_iterator<gsl::span<int,-1>,0>,int *> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$_Get_unwrapped@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@$0A@@std@@YAPEAHAEBV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@@Z _TEXT SEGMENT _It$ = 8 ??$_Get_unwrapped@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@$0A@@std@@YAPEAHAEBV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@@Z PROC ; std::_Get_unwrapped<gsl::details::span_iterator<gsl::span<int,-1>,0>,0>, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; File c:\projects\gsl\include\gsl\span ; Line 280 mov rax, QWORD PTR [rcx] mov rdx, QWORD PTR [rcx+8] mov rcx, QWORD PTR [rax+8] lea rax, QWORD PTR [rcx+rdx*4] ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 644 ret 0 ??$_Get_unwrapped@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@$0A@@std@@YAPEAHAEBV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@@Z ENDP ; std::_Get_unwrapped<gsl::details::span_iterator<gsl::span<int,-1>,0>,0> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$_Adl_verify_range@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@0@Z _TEXT SEGMENT $T1 = 32 $T2 = 48 $T3 = 64 $T4 = 64 _First$ = 112 _Last$ = 120 ??$_Adl_verify_range@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@0@Z PROC ; std::_Adl_verify_range<gsl::details::span_iterator<gsl::span<int,-1>,0>,gsl::details::span_iterator<gsl::span<int,-1>,0> >, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 615 $LN24: sub rsp, 104 ; 00000068H mov QWORD PTR $T1[rsp], -2 ; Line 603 movups xmm1, XMMWORD PTR [rdx] movaps XMMWORD PTR $T2[rsp], xmm1 movups xmm0, XMMWORD PTR [rcx] movaps XMMWORD PTR $T4[rsp], xmm0 ; File c:\projects\gsl\include\gsl\span ; Line 265 movq rcx, xmm0 movq rax, xmm1 cmp rcx, rax jne SHORT $LN7@Adl_verify mov rax, QWORD PTR $T2[rsp+8] cmp QWORD PTR $T4[rsp+8], rax jg SHORT $LN7@Adl_verify ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 617 add rsp, 104 ; 00000068H ret 0 $LN7@Adl_verify: ; File c:\projects\gsl\include\gsl\span ; Line 265 lea rdx, OFFSET FLAT:??_C@_0ED@GOAPCFOK@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T3[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN21@Adl_verify: ??$_Adl_verify_range@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YAXAEBV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@0@Z ENDP ; std::_Adl_verify_range<gsl::details::span_iterator<gsl::span<int,-1>,0>,gsl::details::span_iterator<gsl::span<int,-1>,0> > _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$?0V?$extent_type@$0A@@details@gsl@@@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAHV?$extent_type@$0A@@details@2@@Z _TEXT SEGMENT $T1 = 0 this$ = 32 data$ = 40 ext$ = 48 ??$?0V?$extent_type@$0A@@details@gsl@@@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAHV?$extent_type@$0A@@details@2@@Z PROC ; gsl::span<int,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><gsl::details::extent_type<0> >, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 597 $LN39: sub rsp, 24 mov QWORD PTR $T1[rsp], -2 ; Line 333 mov QWORD PTR [rcx], 0 ; Line 596 mov QWORD PTR [rcx+8], rdx ; Line 600 mov rax, rcx add rsp, 24 ret 0 ??$?0V?$extent_type@$0A@@details@gsl@@@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAHV?$extent_type@$0A@@details@2@@Z ENDP ; gsl::span<int,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><gsl::details::extent_type<0> > _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?size@?$extent_type@$0A@@details@gsl@@QEBA_JXZ _TEXT SEGMENT this$ = 8 ?size@?$extent_type@$0A@@details@gsl@@QEBA_JXZ PROC ; gsl::details::extent_type<0>::size, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 323 xor eax, eax ret 0 ?size@?$extent_type@$0A@@details@gsl@@QEBA_JXZ ENDP ; gsl::details::extent_type<0>::size _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??0?$extent_type@$0A@@details@gsl@@QEAA@XZ _TEXT SEGMENT this$ = 8 ??0?$extent_type@$0A@@details@gsl@@QEAA@XZ PROC ; gsl::details::extent_type<0>::extent_type<0>, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 311 mov rax, rcx ret 0 ??0?$extent_type@$0A@@details@gsl@@QEAA@XZ ENDP ; gsl::details::extent_type<0>::extent_type<0> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$?0V?$extent_type@$05@details@gsl@@@?$storage_type@V?$extent_type@$05@details@gsl@@@?$span@H$05@gsl@@QEAA@UKnownNotNull@12@V?$extent_type@$05@details@2@@Z _TEXT SEGMENT $T1 = 0 this$ = 32 data$ = 40 ext$ = 48 ??$?0V?$extent_type@$05@details@gsl@@@?$storage_type@V?$extent_type@$05@details@gsl@@@?$span@H$05@gsl@@QEAA@UKnownNotNull@12@V?$extent_type@$05@details@2@@Z PROC ; gsl::span<int,6>::storage_type<gsl::details::extent_type<6> >::storage_type<gsl::details::extent_type<6> ><gsl::details::extent_type<6> >, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 591 $LN20: sub rsp, 24 mov QWORD PTR $T1[rsp], -2 ; Line 590 mov QWORD PTR [rcx], rdx ; Line 593 mov rax, rcx add rsp, 24 ret 0 ??$?0V?$extent_type@$05@details@gsl@@@?$storage_type@V?$extent_type@$05@details@gsl@@@?$span@H$05@gsl@@QEAA@UKnownNotNull@12@V?$extent_type@$05@details@2@@Z ENDP ; gsl::span<int,6>::storage_type<gsl::details::extent_type<6> >::storage_type<gsl::details::extent_type<6> ><gsl::details::extent_type<6> > _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$addressof@H@std@@YAPEAHAEAH@Z _TEXT SEGMENT _Val$ = 8 ??$addressof@H@std@@YAPEAHAEAH@Z PROC ; std::addressof<int>, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xstddef ; Line 330 mov rax, rcx ; Line 331 ret 0 ??$addressof@H@std@@YAPEAHAEAH@Z ENDP ; std::addressof<int> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$?0V?$extent_type@$05@details@gsl@@@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@UKnownNotNull@12@V?$extent_type@$05@details@2@@Z _TEXT SEGMENT $T1 = 0 this$ = 32 data$ = 40 ext$ = 48 ??$?0V?$extent_type@$05@details@gsl@@@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@UKnownNotNull@12@V?$extent_type@$05@details@2@@Z PROC ; gsl::span<unsigned char,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><gsl::details::extent_type<6> >, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 591 $LN24: sub rsp, 24 mov QWORD PTR $T1[rsp], -2 ; Line 333 mov QWORD PTR [rcx], 6 ; Line 590 mov QWORD PTR [rcx+8], rdx ; Line 593 mov rax, rcx add rsp, 24 ret 0 ??$?0V?$extent_type@$05@details@gsl@@@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEAA@UKnownNotNull@12@V?$extent_type@$05@details@2@@Z ENDP ; gsl::span<unsigned char,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><gsl::details::extent_type<6> > _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$addressof@E@std@@YAPEAEAEAE@Z _TEXT SEGMENT _Val$ = 8 ??$addressof@E@std@@YAPEAEAEAE@Z PROC ; std::addressof<unsigned char>, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xstddef ; Line 330 mov rax, rcx ; Line 331 ret 0 ??$addressof@E@std@@YAPEAEAEAE@Z ENDP ; std::addressof<unsigned char> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$forward@AEA_J@std@@YAAEA_JAEA_J@Z _TEXT SEGMENT _Arg$ = 8 ??$forward@AEA_J@std@@YAAEA_JAEA_J@Z PROC ; std::forward<__int64 &>, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\type_traits ; Line 1574 mov rax, rcx ; Line 1575 ret 0 ??$forward@AEA_J@std@@YAAEA_JAEA_J@Z ENDP ; std::forward<__int64 &> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$forward@Ufail_fast@gsl@@@std@@YA$$QEAUfail_fast@gsl@@AEAU12@@Z _TEXT SEGMENT _Arg$ = 8 ??$forward@Ufail_fast@gsl@@@std@@YA$$QEAUfail_fast@gsl@@AEAU12@@Z PROC ; std::forward<gsl::fail_fast>, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\type_traits ; Line 1574 mov rax, rcx ; Line 1575 ret 0 ??$forward@Ufail_fast@gsl@@@std@@YA$$QEAUfail_fast@gsl@@AEAU12@@Z ENDP ; std::forward<gsl::fail_fast> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@UKnownNotNull@12@_J@Z _TEXT SEGMENT $T1 = 32 $T2 = 40 $T3 = 80 this$ = 80 data$ = 88 ext$ = 96 ??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@UKnownNotNull@12@_J@Z PROC ; gsl::span<int,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><__int64>, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 591 $LN37: sub rsp, 72 ; 00000048H mov QWORD PTR $T1[rsp], -2 mov DWORD PTR $T3[rsp], 0 ; Line 336 mov QWORD PTR [rcx], r8 test r8, r8 js SHORT $LN10@extent_typ ; Line 590 mov QWORD PTR [rcx+8], rdx ; Line 593 mov rax, rcx add rsp, 72 ; 00000048H ret 0 $LN10@extent_typ: ; Line 336 lea rdx, OFFSET FLAT:??_C@_0ED@NAHIIAGE@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T2[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T3[rsp], 2 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN34@extent_typ: ??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@UKnownNotNull@12@_J@Z ENDP ; gsl::span<int,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><__int64> _TEXT ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 80 this$ = 80 data$ = 88 ext$ = 96 ?dtor$1@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@UKnownNotNull@12@_J@Z@4HA PROC ; `gsl::span<int,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><__int64>'::`1'::dtor$1 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T3[rbp] and eax, 2 test eax, eax je SHORT $LN13@dtor$1 and DWORD PTR $T3[rbp], -3 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN13@dtor$1: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$1@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@UKnownNotNull@12@_J@Z@4HA ENDP ; `gsl::span<int,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><__int64>'::`1'::dtor$1 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 80 this$ = 80 data$ = 88 ext$ = 96 ?dtor$1@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@UKnownNotNull@12@_J@Z@4HA PROC ; `gsl::span<int,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><__int64>'::`1'::dtor$1 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T3[rbp] and eax, 2 test eax, eax je SHORT $LN13@dtor$1 and DWORD PTR $T3[rbp], -3 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN13@dtor$1: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$1@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@UKnownNotNull@12@_J@Z@4HA ENDP ; `gsl::span<int,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><__int64>'::`1'::dtor$1 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAH_J@Z _TEXT SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 $T4 = 80 this$ = 80 data$ = 88 ext$ = 96 ??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAH_J@Z PROC ; gsl::span<int,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><__int64>, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 597 $LN53: sub rsp, 72 ; 00000048H mov QWORD PTR $T1[rsp], -2 mov DWORD PTR $T4[rsp], 0 ; Line 336 mov QWORD PTR [rcx], r8 test r8, r8 js SHORT $LN15@extent_typ ; Line 596 mov QWORD PTR [rcx+8], rdx ; Line 599 test rdx, rdx jne SHORT $LN5@extent_typ test r8, r8 jne SHORT $LN51@extent_typ $LN5@extent_typ: ; Line 600 mov rax, rcx add rsp, 72 ; 00000048H ret 0 $LN51@extent_typ: ; Line 599 lea rdx, OFFSET FLAT:??_C@_0ED@HPBMEGKB@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T3[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T4[rsp], 2 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> npad 1 $LN15@extent_typ: ; Line 336 lea rdx, OFFSET FLAT:??_C@_0ED@NAHIIAGE@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T2[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T4[rsp], 4 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN49@extent_typ: ??$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAH_J@Z ENDP ; gsl::span<int,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><__int64> _TEXT ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 $T4 = 80 this$ = 80 data$ = 88 ext$ = 96 ?dtor$2@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAH_J@Z@4HA PROC ; `gsl::span<int,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><__int64>'::`1'::dtor$2 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 4 test eax, eax je SHORT $LN18@dtor$2 and DWORD PTR $T4[rbp], -5 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN18@dtor$2: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$2@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAH_J@Z@4HA ENDP ; `gsl::span<int,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><__int64>'::`1'::dtor$2 text$x ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 $T4 = 80 this$ = 80 data$ = 88 ext$ = 96 ?dtor$1@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAH_J@Z@4HA PROC ; `gsl::span<int,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><__int64>'::`1'::dtor$1 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 2 test eax, eax je SHORT $LN11@dtor$1 and DWORD PTR $T4[rbp], -3 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN11@dtor$1: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$1@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAH_J@Z@4HA ENDP ; `gsl::span<int,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><__int64>'::`1'::dtor$1 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 $T4 = 80 this$ = 80 data$ = 88 ext$ = 96 ?dtor$2@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAH_J@Z@4HA PROC ; `gsl::span<int,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><__int64>'::`1'::dtor$2 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 4 test eax, eax je SHORT $LN18@dtor$2 and DWORD PTR $T4[rbp], -5 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN18@dtor$2: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$2@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAH_J@Z@4HA ENDP ; `gsl::span<int,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><__int64>'::`1'::dtor$2 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 $T4 = 80 this$ = 80 data$ = 88 ext$ = 96 ?dtor$1@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAH_J@Z@4HA PROC ; `gsl::span<int,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><__int64>'::`1'::dtor$1 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 2 test eax, eax je SHORT $LN11@dtor$1 and DWORD PTR $T4[rbp], -3 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN11@dtor$1: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$1@?0???$?0_J@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEAA@PEAH_J@Z@4HA ENDP ; `gsl::span<int,-1>::storage_type<gsl::details::extent_type<-1> >::storage_type<gsl::details::extent_type<-1> ><__int64>'::`1'::dtor$1 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$make_subspan@$05@?$span@H$05@gsl@@AEBA?AV?$span@H$0?0@1@_J0V?$subspan_selector@$05@01@@Z _TEXT SEGMENT $T1 = 48 $T2 = 56 $T3 = 64 tmp$ = 64 this$ = 112 __$ReturnUdt$ = 120 offset$ = 128 count$ = 136 __formal$ = 144 ??$make_subspan@$05@?$span@H$05@gsl@@AEBA?AV?$span@H$0?0@1@_J0V?$subspan_selector@$05@01@@Z PROC ; gsl::span<int,6>::make_subspan<6>, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 622 $LN72: push rbx sub rsp, 96 ; 00000060H mov QWORD PTR $T2[rsp], -2 mov rbx, rdx mov DWORD PTR $T1[rsp], 0 ; Line 515 mov rax, QWORD PTR [rcx] ; Line 333 mov QWORD PTR tmp$[rsp], 6 ; Line 596 mov QWORD PTR tmp$[rsp+8], rax ; Line 599 test rax, rax je SHORT $LN70@make_subsp ; Line 494 mov BYTE PTR [rsp+32], 0 lea rcx, QWORD PTR tmp$[rsp] call ?make_subspan@?$span@H$0?0@gsl@@AEBA?AV12@_J0V?$subspan_selector@$0?0@12@@Z ; gsl::span<int,-1>::make_subspan ; Line 624 mov rax, rbx ; Line 625 add rsp, 96 ; 00000060H pop rbx ret 0 $LN70@make_subsp: ; Line 599 lea rdx, OFFSET FLAT:??_C@_0ED@HPBMEGKB@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T3[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T1[rsp], 4 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN68@make_subsp: ??$make_subspan@$05@?$span@H$05@gsl@@AEBA?AV?$span@H$0?0@1@_J0V?$subspan_selector@$05@01@@Z ENDP ; gsl::span<int,6>::make_subspan<6> _TEXT ENDS ; COMDAT text$x text$x SEGMENT $T1 = 48 $T2 = 56 $T3 = 64 tmp$ = 64 this$ = 112 __$ReturnUdt$ = 120 offset$ = 128 count$ = 136 __formal$ = 144 ?dtor$4@?0???$make_subspan@$05@?$span@H$05@gsl@@AEBA?AV?$span@H$0?0@1@_J0V?$subspan_selector@$05@01@@Z@4HA PROC ; `gsl::span<int,6>::make_subspan<6>'::`1'::dtor$4 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T1[rbp] and eax, 4 test eax, eax je SHORT $LN39@dtor$4 and DWORD PTR $T1[rbp], -5 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN39@dtor$4: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$4@?0???$make_subspan@$05@?$span@H$05@gsl@@AEBA?AV?$span@H$0?0@1@_J0V?$subspan_selector@$05@01@@Z@4HA ENDP ; `gsl::span<int,6>::make_subspan<6>'::`1'::dtor$4 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 48 $T2 = 56 $T3 = 64 tmp$ = 64 this$ = 112 __$ReturnUdt$ = 120 offset$ = 128 count$ = 136 __formal$ = 144 ?dtor$4@?0???$make_subspan@$05@?$span@H$05@gsl@@AEBA?AV?$span@H$0?0@1@_J0V?$subspan_selector@$05@01@@Z@4HA PROC ; `gsl::span<int,6>::make_subspan<6>'::`1'::dtor$4 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T1[rbp] and eax, 4 test eax, eax je SHORT $LN39@dtor$4 and DWORD PTR $T1[rbp], -5 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN39@dtor$4: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$4@?0???$make_subspan@$05@?$span@H$05@gsl@@AEBA?AV?$span@H$0?0@1@_J0V?$subspan_selector@$05@01@@Z@4HA ENDP ; `gsl::span<int,6>::make_subspan<6>'::`1'::dtor$4 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$copy@$$CBD$0?0E$0?0@gsl@@YAXV?$span@$$CBD$0?0@0@V?$span@E$0?0@0@@Z _TEXT SEGMENT $T1 = 32 $T2 = 40 $T3 = 80 src$ = 80 dest$ = 88 ??$copy@$$CBD$0?0E$0?0@gsl@@YAXV?$span@$$CBD$0?0@0@V?$span@E$0?0@0@@Z PROC ; gsl::copy<char const ,-1,unsigned char,-1>, COMDAT ; File c:\projects\gsl\include\gsl\gsl_algorithm ; Line 43 $LN56: sub rsp, 72 ; 00000048H mov QWORD PTR $T1[rsp], -2 mov rax, rdx mov DWORD PTR $T3[rsp], 0 ; File c:\projects\gsl\include\gsl\span ; Line 498 mov r8, QWORD PTR [rcx] ; File c:\projects\gsl\include\gsl\gsl_algorithm ; Line 50 cmp QWORD PTR [rdx], r8 jl SHORT $LN3@copy ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 2538 test r8, r8 jle SHORT $LN37@copy ; Line 2403 mov rdx, QWORD PTR [rcx+8] mov rcx, QWORD PTR [rax+8] ; File c:\projects\gsl\include\gsl\gsl_algorithm ; Line 53 add rsp, 72 ; 00000048H ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 2403 jmp memmove $LN37@copy: ; File c:\projects\gsl\include\gsl\gsl_algorithm ; Line 53 add rsp, 72 ; 00000048H ret 0 $LN3@copy: ; Line 50 lea rdx, OFFSET FLAT:??_C@_0EL@EPJEKFNE@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T2[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T3[rsp], 1 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN53@copy: ??$copy@$$CBD$0?0E$0?0@gsl@@YAXV?$span@$$CBD$0?0@0@V?$span@E$0?0@0@@Z ENDP ; gsl::copy<char const ,-1,unsigned char,-1> _TEXT ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 80 src$ = 80 dest$ = 88 ?dtor$0@?0???$copy@$$CBD$0?0E$0?0@gsl@@YAXV?$span@$$CBD$0?0@0@V?$span@E$0?0@0@@Z@4HA PROC ; `gsl::copy<char const ,-1,unsigned char,-1>'::`1'::dtor$0 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T3[rbp] and eax, 1 test eax, eax je SHORT $LN6@dtor$0 and DWORD PTR $T3[rbp], -2 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN6@dtor$0: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$0@?0???$copy@$$CBD$0?0E$0?0@gsl@@YAXV?$span@$$CBD$0?0@0@V?$span@E$0?0@0@@Z@4HA ENDP ; `gsl::copy<char const ,-1,unsigned char,-1>'::`1'::dtor$0 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 80 src$ = 80 dest$ = 88 ?dtor$0@?0???$copy@$$CBD$0?0E$0?0@gsl@@YAXV?$span@$$CBD$0?0@0@V?$span@E$0?0@0@@Z@4HA PROC ; `gsl::copy<char const ,-1,unsigned char,-1>'::`1'::dtor$0 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T3[rbp] and eax, 1 test eax, eax je SHORT $LN6@dtor$0 and DWORD PTR $T3[rbp], -2 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN6@dtor$0: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$0@?0???$copy@$$CBD$0?0E$0?0@gsl@@YAXV?$span@$$CBD$0?0@0@V?$span@E$0?0@0@@Z@4HA ENDP ; `gsl::copy<char const ,-1,unsigned char,-1>'::`1'::dtor$0 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$?0V?$basic_string_span@$$CBD$0?0@gsl@@X@?$span@$$CBD$0?0@gsl@@QEAA@AEAV?$basic_string_span@$$CBD$0?0@1@@Z _TEXT SEGMENT $T1 = 32 this$ = 64 cont$ = 72 ??$?0V?$basic_string_span@$$CBD$0?0@gsl@@X@?$span@$$CBD$0?0@gsl@@QEAA@AEAV?$basic_string_span@$$CBD$0?0@1@@Z PROC ; gsl::span<char const ,-1>::span<char const ,-1><gsl::basic_string_span<char const ,-1>,void>, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 428 $LN38: push rbx sub rsp, 48 ; 00000030H mov QWORD PTR $T1[rsp], -2 mov rbx, rcx ; Line 427 mov r8, QWORD PTR [rdx] mov rdx, QWORD PTR [rdx+8] call ??0?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z ; gsl::span<char const ,-1>::span<char const ,-1> ; Line 428 mov rax, rbx add rsp, 48 ; 00000030H pop rbx ret 0 ??$?0V?$basic_string_span@$$CBD$0?0@gsl@@X@?$span@$$CBD$0?0@gsl@@QEAA@AEAV?$basic_string_span@$$CBD$0?0@1@@Z ENDP ; gsl::span<char const ,-1>::span<char const ,-1><gsl::basic_string_span<char const ,-1>,void> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?test_string_gsl_copy@@YAXXZ _TEXT SEGMENT $T3 = 32 $T4 = 48 $T5 = 48 $T6 = 48 byteSpan$ = 48 $T7 = 80 $T8 = 88 bytes$ = 112 __$ArrayPad$ = 128 ?test_string_gsl_copy@@YAXXZ PROC ; test_string_gsl_copy, COMDAT ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 333 $LN288: sub rsp, 152 ; 00000098H mov QWORD PTR $T7[rsp], -2 mov rax, QWORD PTR __security_cookie xor rax, rsp mov QWORD PTR __$ArrayPad$[rsp], rax mov DWORD PTR $T3[rsp], 0 ; File c:\projects\gsl\include\gsl\span ; Line 333 mov QWORD PTR byteSpan$[rsp], 10 ; Line 590 lea rax, QWORD PTR bytes$[rsp] mov QWORD PTR byteSpan$[rsp+8], rax ; File c:\projects\gsl\include\gsl\string_span ; Line 117 lea rdx, OFFSET FLAT:??_C@_0L@CCAJJBND@iVtrau?5lDC@ mov r8, rdx $LL42@test_strin: ; Line 121 cmp BYTE PTR [r8], 0 je SHORT $LN282@test_strin inc r8 mov rax, r8 sub rax, rdx cmp rax, 11 jl SHORT $LL42@test_strin ; Line 122 cmp BYTE PTR [r8], 0 jne $LN286@test_strin $LN282@test_strin: ; Line 123 sub r8, rdx ; File c:\projects\gsl\include\gsl\span ; Line 336 js SHORT $LN100@test_strin ; File c:\projects\gsl\include\gsl\gsl_algorithm ; Line 50 cmp r8, 10 jg SHORT $LN228@test_strin ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 2538 test r8, r8 jle SHORT $LN262@test_strin ; Line 2403 lea rcx, QWORD PTR bytes$[rsp] call memmove $LN262@test_strin: ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 340 movaps xmm0, XMMWORD PTR byteSpan$[rsp] movdqa XMMWORD PTR $T6[rsp], xmm0 lea rcx, QWORD PTR $T6[rsp] call ?bar@@YAXV?$span@E$0?0@gsl@@@Z ; bar ; Line 341 mov rcx, QWORD PTR __$ArrayPad$[rsp] xor rcx, rsp call __security_check_cookie add rsp, 152 ; 00000098H ret 0 $LN228@test_strin: ; File c:\projects\gsl\include\gsl\gsl_algorithm ; Line 50 lea rdx, OFFSET FLAT:??_C@_0EL@EPJEKFNE@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T4[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T3[rsp], 1024 ; 00000400H mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> npad 1 $LN100@test_strin: ; File c:\projects\gsl\include\gsl\span ; Line 336 lea rdx, OFFSET FLAT:??_C@_0ED@NAHIIAGE@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T8[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T3[rsp], 64 ; 00000040H mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> npad 1 $LN286@test_strin: ; File c:\projects\gsl\include\gsl\string_span ; Line 122 lea rdx, OFFSET FLAT:??_C@_0EL@CANAMLLN@GSL?3?5Postcondition?5failure?5at?5c@ lea rcx, QWORD PTR $T5[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T3[rsp], 8 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN284@test_strin: ?test_string_gsl_copy@@YAXXZ ENDP ; test_string_gsl_copy _TEXT ENDS ; COMDAT text$x text$x SEGMENT $T3 = 32 $T4 = 48 $T5 = 48 $T6 = 48 byteSpan$ = 48 $T7 = 80 $T8 = 88 bytes$ = 112 __$ArrayPad$ = 128 ?dtor$6@?0??test_string_gsl_copy@@YAXXZ@4HA PROC ; `test_string_gsl_copy'::`1'::dtor$6 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T3[rbp] and eax, 8 test eax, eax je SHORT $LN58@dtor$6 and DWORD PTR $T3[rbp], -9 lea rcx, QWORD PTR $T5[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN58@dtor$6: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$6@?0??test_string_gsl_copy@@YAXXZ@4HA ENDP ; `test_string_gsl_copy'::`1'::dtor$6 text$x ENDS ; COMDAT text$x text$x SEGMENT $T3 = 32 $T4 = 48 $T5 = 48 $T6 = 48 byteSpan$ = 48 $T7 = 80 $T8 = 88 bytes$ = 112 __$ArrayPad$ = 128 ?dtor$15@?0??test_string_gsl_copy@@YAXXZ@4HA PROC ; `test_string_gsl_copy'::`1'::dtor$15 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T3[rbp] and eax, 64 ; 00000040H test eax, eax je SHORT $LN103@dtor$15 and DWORD PTR $T3[rbp], -65 ; ffffffffffffffbfH lea rcx, QWORD PTR $T8[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN103@dtor$15: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$15@?0??test_string_gsl_copy@@YAXXZ@4HA ENDP ; `test_string_gsl_copy'::`1'::dtor$15 text$x ENDS ; COMDAT text$x text$x SEGMENT $T3 = 32 $T4 = 48 $T5 = 48 $T6 = 48 byteSpan$ = 48 $T7 = 80 $T8 = 88 bytes$ = 112 __$ArrayPad$ = 128 ?dtor$35@?0??test_string_gsl_copy@@YAXXZ@4HA PROC ; `test_string_gsl_copy'::`1'::dtor$35 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T3[rbp] and eax, 1024 ; 00000400H test eax, eax je SHORT $LN231@dtor$35 and DWORD PTR $T3[rbp], -1025 ; fffffffffffffbffH lea rcx, QWORD PTR $T4[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN231@dtor$35: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$35@?0??test_string_gsl_copy@@YAXXZ@4HA ENDP ; `test_string_gsl_copy'::`1'::dtor$35 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T3 = 32 $T4 = 48 $T5 = 48 $T6 = 48 byteSpan$ = 48 $T7 = 80 $T8 = 88 bytes$ = 112 __$ArrayPad$ = 128 ?dtor$6@?0??test_string_gsl_copy@@YAXXZ@4HA PROC ; `test_string_gsl_copy'::`1'::dtor$6 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T3[rbp] and eax, 8 test eax, eax je SHORT $LN58@dtor$6 and DWORD PTR $T3[rbp], -9 lea rcx, QWORD PTR $T5[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN58@dtor$6: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$6@?0??test_string_gsl_copy@@YAXXZ@4HA ENDP ; `test_string_gsl_copy'::`1'::dtor$6 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T3 = 32 $T4 = 48 $T5 = 48 $T6 = 48 byteSpan$ = 48 $T7 = 80 $T8 = 88 bytes$ = 112 __$ArrayPad$ = 128 ?dtor$15@?0??test_string_gsl_copy@@YAXXZ@4HA PROC ; `test_string_gsl_copy'::`1'::dtor$15 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T3[rbp] and eax, 64 ; 00000040H test eax, eax je SHORT $LN103@dtor$15 and DWORD PTR $T3[rbp], -65 ; ffffffffffffffbfH lea rcx, QWORD PTR $T8[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN103@dtor$15: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$15@?0??test_string_gsl_copy@@YAXXZ@4HA ENDP ; `test_string_gsl_copy'::`1'::dtor$15 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T3 = 32 $T4 = 48 $T5 = 48 $T6 = 48 byteSpan$ = 48 $T7 = 80 $T8 = 88 bytes$ = 112 __$ArrayPad$ = 128 ?dtor$35@?0??test_string_gsl_copy@@YAXXZ@4HA PROC ; `test_string_gsl_copy'::`1'::dtor$35 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T3[rbp] and eax, 1024 ; 00000400H test eax, eax je SHORT $LN231@dtor$35 and DWORD PTR $T3[rbp], -1025 ; fffffffffffffbffH lea rcx, QWORD PTR $T4[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN231@dtor$35: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$35@?0??test_string_gsl_copy@@YAXXZ@4HA ENDP ; `test_string_gsl_copy'::`1'::dtor$35 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$copy@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@V?$span_iterator@V?$span@E$0?0@gsl@@$0A@@23@@std@@YA?AV?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@23@0V123@@Z _TEXT SEGMENT $T1 = 48 $T2 = 64 $T3 = 64 $T4 = 64 __$ReturnUdt$ = 112 _First$ = 120 _Last$ = 128 _Dest$ = 136 ??$copy@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@V?$span_iterator@V?$span@E$0?0@gsl@@$0A@@23@@std@@YA?AV?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@23@0V123@@Z PROC ; std::copy<gsl::details::span_iterator<gsl::span<char const ,-1>,0>,gsl::details::span_iterator<gsl::span<unsigned char,-1>,0> >, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 2440 $LN90: mov rax, rsp push r14 sub rsp, 96 ; 00000060H mov QWORD PTR [rax-72], -2 mov QWORD PTR [rax+8], rbx mov QWORD PTR [rax+16], rbp mov QWORD PTR [rax+24], rsi mov QWORD PTR [rax+32], rdi mov r14, r9 mov r9, r8 mov rbp, rcx ; Line 603 movups xmm1, XMMWORD PTR [r8] movaps XMMWORD PTR [rax-56], xmm1 movups xmm0, XMMWORD PTR [rdx] movaps XMMWORD PTR [rax-40], xmm0 ; File c:\projects\gsl\include\gsl\span ; Line 265 movq r8, xmm0 movq rax, xmm1 cmp r8, rax jne $LN9@copy mov rax, QWORD PTR $T1[rsp+8] cmp QWORD PTR $T4[rsp+8], rax jg $LN9@copy ; Line 515 mov rax, QWORD PTR [rdx] ; Line 280 mov rdx, QWORD PTR [rdx+8] add rdx, QWORD PTR [rax+8] ; Line 515 mov rax, QWORD PTR [r9] mov rdi, QWORD PTR [rax+8] ; Line 280 add rdi, QWORD PTR [r9+8] ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 968 sub rdi, rdx ; File c:\projects\gsl\include\gsl\span ; Line 272 mov rcx, QWORD PTR [r14+8] lea rax, QWORD PTR [rcx+rdi] test rax, rax js SHORT $LN48@copy ; Line 338 mov rsi, QWORD PTR [r14] ; Line 272 cmp rax, QWORD PTR [rsi] jg SHORT $LN48@copy ; Line 280 mov rbx, QWORD PTR [rsi+8] add rbx, rcx ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 2403 mov r8, rdi mov rcx, rbx call memmove ; File c:\projects\gsl\include\gsl\span ; Line 294 sub rdi, QWORD PTR [rsi+8] add rdi, rbx mov QWORD PTR [r14+8], rdi ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 2446 movups xmm0, XMMWORD PTR [r14] movups XMMWORD PTR [rbp], xmm0 mov rax, rbp ; Line 2447 lea r11, QWORD PTR [rsp+96] mov rbx, QWORD PTR [r11+16] mov rbp, QWORD PTR [r11+24] mov rsi, QWORD PTR [r11+32] mov rdi, QWORD PTR [r11+40] mov rsp, r11 pop r14 ret 0 $LN48@copy: ; File c:\projects\gsl\include\gsl\span ; Line 272 lea rdx, OFFSET FLAT:??_C@_0ED@LKBIKNJ@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T2[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> npad 1 $LN9@copy: ; Line 265 lea rdx, OFFSET FLAT:??_C@_0ED@GOAPCFOK@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T3[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN87@copy: ??$copy@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@V?$span_iterator@V?$span@E$0?0@gsl@@$0A@@23@@std@@YA?AV?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@V?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@23@0V123@@Z ENDP ; std::copy<gsl::details::span_iterator<gsl::span<char const ,-1>,0>,gsl::details::span_iterator<gsl::span<unsigned char,-1>,0> > _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?_Seek_to@?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@QEAAXQEAE@Z _TEXT SEGMENT this$ = 8 p$ = 16 ?_Seek_to@?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@QEAAXQEAE@Z PROC ; gsl::details::span_iterator<gsl::span<unsigned char,-1>,0>::_Seek_to, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 294 mov rax, QWORD PTR [rcx] sub rdx, QWORD PTR [rax+8] mov QWORD PTR [rcx+8], rdx ; Line 295 ret 0 ?_Seek_to@?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@QEAAXQEAE@Z ENDP ; gsl::details::span_iterator<gsl::span<unsigned char,-1>,0>::_Seek_to _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?_Unwrapped@?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@QEBAPEAEXZ _TEXT SEGMENT this$ = 8 ?_Unwrapped@?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@QEBAPEAEXZ PROC ; gsl::details::span_iterator<gsl::span<unsigned char,-1>,0>::_Unwrapped, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 280 mov rax, QWORD PTR [rcx] mov rax, QWORD PTR [rax+8] add rax, QWORD PTR [rcx+8] ; Line 281 ret 0 ?_Unwrapped@?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@QEBAPEAEXZ ENDP ; gsl::details::span_iterator<gsl::span<unsigned char,-1>,0>::_Unwrapped _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?_Verify_offset@?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@QEBAX_J@Z _TEXT SEGMENT $T1 = 32 $T2 = 40 this$ = 80 n$ = 88 ?_Verify_offset@?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@QEBAX_J@Z PROC ; gsl::details::span_iterator<gsl::span<unsigned char,-1>,0>::_Verify_offset, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 270 $LN21: sub rsp, 72 ; 00000048H mov QWORD PTR $T1[rsp], -2 ; Line 272 mov r8, QWORD PTR [rcx+8] add r8, rdx js SHORT $LN3@Verify_off ; Line 338 mov rax, QWORD PTR [rcx] ; Line 272 cmp r8, QWORD PTR [rax] jg SHORT $LN3@Verify_off ; Line 273 add rsp, 72 ; 00000048H ret 0 $LN3@Verify_off: ; Line 272 lea rdx, OFFSET FLAT:??_C@_0ED@LKBIKNJ@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T2[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> npad 1 $LN18@Verify_off: ?_Verify_offset@?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@QEBAX_J@Z ENDP ; gsl::details::span_iterator<gsl::span<unsigned char,-1>,0>::_Verify_offset _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??0?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@QEAA@PEBV?$span@E$0?0@2@_J@Z _TEXT SEGMENT this$ = 8 span$ = 16 idx$ = 24 ??0?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@QEAA@PEBV?$span@E$0?0@2@_J@Z PROC ; gsl::details::span_iterator<gsl::span<unsigned char,-1>,0>::span_iterator<gsl::span<unsigned char,-1>,0>, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 145 mov QWORD PTR [rcx], rdx ; Line 146 mov rax, rcx mov QWORD PTR [rcx+8], r8 ret 0 ??0?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@gsl@@QEAA@PEBV?$span@E$0?0@2@_J@Z ENDP ; gsl::details::span_iterator<gsl::span<unsigned char,-1>,0>::span_iterator<gsl::span<unsigned char,-1>,0> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?_Unwrapped@?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@QEBAPEBDXZ _TEXT SEGMENT this$ = 8 ?_Unwrapped@?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@QEBAPEBDXZ PROC ; gsl::details::span_iterator<gsl::span<char const ,-1>,0>::_Unwrapped, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 280 mov rax, QWORD PTR [rcx] mov rax, QWORD PTR [rax+8] add rax, QWORD PTR [rcx+8] ; Line 281 ret 0 ?_Unwrapped@?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@QEBAPEBDXZ ENDP ; gsl::details::span_iterator<gsl::span<char const ,-1>,0>::_Unwrapped _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?_Verify_range@details@gsl@@YAXV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@12@0@Z _TEXT SEGMENT $T1 = 32 $T2 = 40 lhs$ = 80 rhs$ = 88 ?_Verify_range@details@gsl@@YAXV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@12@0@Z PROC ; gsl::details::_Verify_range, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 264 $LN17: sub rsp, 72 ; 00000048H mov QWORD PTR $T1[rsp], -2 ; Line 265 mov rax, QWORD PTR [rdx] cmp QWORD PTR [rcx], rax jne SHORT $LN3@Verify_ran mov rax, QWORD PTR [rdx+8] cmp QWORD PTR [rcx+8], rax jg SHORT $LN3@Verify_ran ; Line 267 add rsp, 72 ; 00000048H ret 0 $LN3@Verify_ran: ; Line 265 lea rdx, OFFSET FLAT:??_C@_0ED@GOAPCFOK@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T2[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> npad 1 $LN14@Verify_ran: ?_Verify_range@details@gsl@@YAXV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@12@0@Z ENDP ; gsl::details::_Verify_range _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??0?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@QEAA@PEBV?$span@$$CBD$0?0@2@_J@Z _TEXT SEGMENT this$ = 8 span$ = 16 idx$ = 24 ??0?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@QEAA@PEBV?$span@$$CBD$0?0@2@_J@Z PROC ; gsl::details::span_iterator<gsl::span<char const ,-1>,0>::span_iterator<gsl::span<char const ,-1>,0>, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 145 mov QWORD PTR [rcx], rdx ; Line 146 mov rax, rcx mov QWORD PTR [rcx+8], r8 ret 0 ??0?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@gsl@@QEAA@PEBV?$span@$$CBD$0?0@2@_J@Z ENDP ; gsl::details::span_iterator<gsl::span<char const ,-1>,0>::span_iterator<gsl::span<char const ,-1>,0> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$?0V?$span@$$CBD$0?0@gsl@@X@?$basic_string_span@$$CBD$0?0@gsl@@QEAA@AEBV?$span@$$CBD$0?0@1@@Z _TEXT SEGMENT this$ = 8 cont$ = 16 ??$?0V?$span@$$CBD$0?0@gsl@@X@?$basic_string_span@$$CBD$0?0@gsl@@QEAA@AEBV?$span@$$CBD$0?0@1@@Z PROC ; gsl::basic_string_span<char const ,-1>::basic_string_span<char const ,-1><gsl::span<char const ,-1>,void>, COMDAT ; File c:\projects\gsl\include\gsl\string_span ; Line 243 movups xmm0, XMMWORD PTR [rdx] ; Line 244 mov rax, rcx movups XMMWORD PTR [rcx], xmm0 ret 0 ??$?0V?$span@$$CBD$0?0@gsl@@X@?$basic_string_span@$$CBD$0?0@gsl@@QEAA@AEBV?$span@$$CBD$0?0@1@@Z ENDP ; gsl::basic_string_span<char const ,-1>::basic_string_span<char const ,-1><gsl::span<char const ,-1>,void> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$ensure_z@$$CBD$0L@@gsl@@YA?AV?$span@$$CBD$0?0@0@AEAY0L@$$CBD@Z _TEXT SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 __$ReturnUdt$ = 80 $T4 = 88 sz$ = 88 ??$ensure_z@$$CBD$0L@@gsl@@YA?AV?$span@$$CBD$0?0@0@AEAY0L@$$CBD@Z PROC ; gsl::ensure_z<char const ,11>, COMDAT ; File c:\projects\gsl\include\gsl\string_span ; Line 139 $LN64: push rbx sub rsp, 64 ; 00000040H mov QWORD PTR $T1[rsp], -2 mov rbx, rcx mov DWORD PTR $T4[rsp], 0 ; Line 114 test rdx, rdx je SHORT $LN13@ensure_z ; Line 117 mov r8, rdx $LL10@ensure_z: ; Line 121 cmp BYTE PTR [r8], 0 je SHORT $LN58@ensure_z inc r8 mov rax, r8 sub rax, rdx cmp rax, 11 jl SHORT $LL10@ensure_z ; Line 122 cmp BYTE PTR [r8], 0 jne SHORT $LN62@ensure_z $LN58@ensure_z: ; Line 123 sub r8, rdx call ??0?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z ; gsl::span<char const ,-1>::span<char const ,-1> ; Line 140 mov rax, rbx ; Line 141 add rsp, 64 ; 00000040H pop rbx ret 0 $LN62@ensure_z: ; Line 122 lea rdx, OFFSET FLAT:??_C@_0EL@CANAMLLN@GSL?3?5Postcondition?5failure?5at?5c@ lea rcx, QWORD PTR $T2[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T4[rsp], 4 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> npad 1 $LN13@ensure_z: ; Line 114 lea rdx, OFFSET FLAT:??_C@_0EL@HEMMNCGC@GSL?3?5Postcondition?5failure?5at?5c@ lea rcx, QWORD PTR $T3[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T4[rsp], 1 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN60@ensure_z: ??$ensure_z@$$CBD$0L@@gsl@@YA?AV?$span@$$CBD$0?0@0@AEAY0L@$$CBD@Z ENDP ; gsl::ensure_z<char const ,11> _TEXT ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 __$ReturnUdt$ = 80 $T4 = 88 sz$ = 88 ?dtor$0@?0???$ensure_z@$$CBD$0L@@gsl@@YA?AV?$span@$$CBD$0?0@0@AEAY0L@$$CBD@Z@4HA PROC ; `gsl::ensure_z<char const ,11>'::`1'::dtor$0 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 1 test eax, eax je SHORT $LN20@dtor$0 and DWORD PTR $T4[rbp], -2 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN20@dtor$0: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$0@?0???$ensure_z@$$CBD$0L@@gsl@@YA?AV?$span@$$CBD$0?0@0@AEAY0L@$$CBD@Z@4HA ENDP ; `gsl::ensure_z<char const ,11>'::`1'::dtor$0 text$x ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 __$ReturnUdt$ = 80 $T4 = 88 sz$ = 88 ?dtor$2@?0???$ensure_z@$$CBD$0L@@gsl@@YA?AV?$span@$$CBD$0?0@0@AEAY0L@$$CBD@Z@4HA PROC ; `gsl::ensure_z<char const ,11>'::`1'::dtor$2 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 4 test eax, eax je SHORT $LN26@dtor$2 and DWORD PTR $T4[rbp], -5 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN26@dtor$2: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$2@?0???$ensure_z@$$CBD$0L@@gsl@@YA?AV?$span@$$CBD$0?0@0@AEAY0L@$$CBD@Z@4HA ENDP ; `gsl::ensure_z<char const ,11>'::`1'::dtor$2 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 __$ReturnUdt$ = 80 $T4 = 88 sz$ = 88 ?dtor$0@?0???$ensure_z@$$CBD$0L@@gsl@@YA?AV?$span@$$CBD$0?0@0@AEAY0L@$$CBD@Z@4HA PROC ; `gsl::ensure_z<char const ,11>'::`1'::dtor$0 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 1 test eax, eax je SHORT $LN20@dtor$0 and DWORD PTR $T4[rbp], -2 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN20@dtor$0: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$0@?0???$ensure_z@$$CBD$0L@@gsl@@YA?AV?$span@$$CBD$0?0@0@AEAY0L@$$CBD@Z@4HA ENDP ; `gsl::ensure_z<char const ,11>'::`1'::dtor$0 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 __$ReturnUdt$ = 80 $T4 = 88 sz$ = 88 ?dtor$2@?0???$ensure_z@$$CBD$0L@@gsl@@YA?AV?$span@$$CBD$0?0@0@AEAY0L@$$CBD@Z@4HA PROC ; `gsl::ensure_z<char const ,11>'::`1'::dtor$2 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 4 test eax, eax je SHORT $LN26@dtor$2 and DWORD PTR $T4[rbp], -5 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN26@dtor$2: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$2@?0???$ensure_z@$$CBD$0L@@gsl@@YA?AV?$span@$$CBD$0?0@0@AEAY0L@$$CBD@Z@4HA ENDP ; `gsl::ensure_z<char const ,11>'::`1'::dtor$2 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT ?end@?$basic_string_span@$$CBD$0?0@gsl@@QEBA?AV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@2@XZ _TEXT SEGMENT this$ = 8 __$ReturnUdt$ = 16 ?end@?$basic_string_span@$$CBD$0?0@gsl@@QEBA?AV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@2@XZ PROC ; gsl::basic_string_span<char const ,-1>::end, COMDAT ; File c:\projects\gsl\include\gsl\string_span ; File c:\projects\gsl\include\gsl\span ; Line 145 mov rax, QWORD PTR [rcx] mov QWORD PTR [rdx+8], rax ; File c:\projects\gsl\include\gsl\string_span ; Line 301 mov rax, rdx ; File c:\projects\gsl\include\gsl\span ; Line 145 mov QWORD PTR [rdx], rcx ; File c:\projects\gsl\include\gsl\string_span ; Line 301 ret 0 ?end@?$basic_string_span@$$CBD$0?0@gsl@@QEBA?AV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@2@XZ ENDP ; gsl::basic_string_span<char const ,-1>::end _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?begin@?$basic_string_span@$$CBD$0?0@gsl@@QEBA?AV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@2@XZ _TEXT SEGMENT this$ = 8 __$ReturnUdt$ = 16 ?begin@?$basic_string_span@$$CBD$0?0@gsl@@QEBA?AV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@2@XZ PROC ; gsl::basic_string_span<char const ,-1>::begin, COMDAT ; File c:\projects\gsl\include\gsl\string_span ; File c:\projects\gsl\include\gsl\span ; Line 145 mov QWORD PTR [rdx], rcx ; File c:\projects\gsl\include\gsl\string_span ; Line 300 mov rax, rdx ; File c:\projects\gsl\include\gsl\span ; Line 145 mov QWORD PTR [rdx+8], 0 ; File c:\projects\gsl\include\gsl\string_span ; Line 300 ret 0 ?begin@?$basic_string_span@$$CBD$0?0@gsl@@QEBA?AV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@2@XZ ENDP ; gsl::basic_string_span<char const ,-1>::begin _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?size@?$basic_string_span@$$CBD$0?0@gsl@@QEBA_JXZ _TEXT SEGMENT this$ = 8 ?size@?$basic_string_span@$$CBD$0?0@gsl@@QEBA_JXZ PROC ; gsl::basic_string_span<char const ,-1>::size, COMDAT ; File c:\projects\gsl\include\gsl\string_span ; Line 295 mov rax, QWORD PTR [rcx] ret 0 ?size@?$basic_string_span@$$CBD$0?0@gsl@@QEBA_JXZ ENDP ; gsl::basic_string_span<char const ,-1>::size _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?data@?$basic_string_span@$$CBD$0?0@gsl@@QEBAPEBDXZ _TEXT SEGMENT this$ = 8 ?data@?$basic_string_span@$$CBD$0?0@gsl@@QEBAPEBDXZ PROC ; gsl::basic_string_span<char const ,-1>::data, COMDAT ; File c:\projects\gsl\include\gsl\string_span ; Line 292 mov rax, QWORD PTR [rcx+8] ret 0 ?data@?$basic_string_span@$$CBD$0?0@gsl@@QEBAPEBDXZ ENDP ; gsl::basic_string_span<char const ,-1>::data _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?data@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@$$CBD$0?0@gsl@@QEBAPEBDXZ _TEXT SEGMENT this$ = 8 ?data@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@$$CBD$0?0@gsl@@QEBAPEBDXZ PROC ; gsl::span<char const ,-1>::storage_type<gsl::details::extent_type<-1> >::data, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 602 mov rax, QWORD PTR [rcx+8] ret 0 ?data@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@$$CBD$0?0@gsl@@QEBAPEBDXZ ENDP ; gsl::span<char const ,-1>::storage_type<gsl::details::extent_type<-1> >::data _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?end@?$span@$$CBD$0?0@gsl@@QEBA?AV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@2@XZ _TEXT SEGMENT this$ = 8 __$ReturnUdt$ = 16 ?end@?$span@$$CBD$0?0@gsl@@QEBA?AV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@2@XZ PROC ; gsl::span<char const ,-1>::end, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 145 mov rax, QWORD PTR [rcx] mov QWORD PTR [rdx+8], rax ; Line 519 mov rax, rdx ; Line 145 mov QWORD PTR [rdx], rcx ; Line 519 ret 0 ?end@?$span@$$CBD$0?0@gsl@@QEBA?AV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@2@XZ ENDP ; gsl::span<char const ,-1>::end _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?begin@?$span@$$CBD$0?0@gsl@@QEBA?AV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@2@XZ _TEXT SEGMENT this$ = 8 __$ReturnUdt$ = 16 ?begin@?$span@$$CBD$0?0@gsl@@QEBA?AV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@2@XZ PROC ; gsl::span<char const ,-1>::begin, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 145 mov QWORD PTR [rdx], rcx ; Line 518 mov rax, rdx ; Line 145 mov QWORD PTR [rdx+8], 0 ; Line 518 ret 0 ?begin@?$span@$$CBD$0?0@gsl@@QEBA?AV?$span_iterator@V?$span@$$CBD$0?0@gsl@@$0A@@details@2@XZ ENDP ; gsl::span<char const ,-1>::begin _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?data@?$span@$$CBD$0?0@gsl@@QEBAPEBDXZ _TEXT SEGMENT this$ = 8 ?data@?$span@$$CBD$0?0@gsl@@QEBAPEBDXZ PROC ; gsl::span<char const ,-1>::data, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 515 mov rax, QWORD PTR [rcx+8] ret 0 ?data@?$span@$$CBD$0?0@gsl@@QEBAPEBDXZ ENDP ; gsl::span<char const ,-1>::data _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?size@?$span@$$CBD$0?0@gsl@@QEBA_JXZ _TEXT SEGMENT this$ = 8 ?size@?$span@$$CBD$0?0@gsl@@QEBA_JXZ PROC ; gsl::span<char const ,-1>::size, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 498 mov rax, QWORD PTR [rcx] ret 0 ?size@?$span@$$CBD$0?0@gsl@@QEBA_JXZ ENDP ; gsl::span<char const ,-1>::size _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??0?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z _TEXT SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 $T4 = 80 this$ = 80 ptr$ = 88 count$ = 96 ??0?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z PROC ; gsl::span<char const ,-1>::span<char const ,-1>, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 386 $LN56: sub rsp, 72 ; 00000048H mov QWORD PTR $T1[rsp], -2 mov DWORD PTR $T4[rsp], 0 ; Line 336 mov QWORD PTR [rcx], r8 test r8, r8 js SHORT $LN17@span ; Line 596 mov QWORD PTR [rcx+8], rdx ; Line 599 test rdx, rdx jne SHORT $LN7@span test r8, r8 jne SHORT $LN54@span $LN7@span: ; Line 386 mov rax, rcx add rsp, 72 ; 00000048H ret 0 $LN54@span: ; Line 599 lea rdx, OFFSET FLAT:??_C@_0ED@HPBMEGKB@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T3[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T4[rsp], 2 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> npad 1 $LN17@span: ; Line 336 lea rdx, OFFSET FLAT:??_C@_0ED@NAHIIAGE@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T2[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T4[rsp], 4 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN52@span: ??0?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z ENDP ; gsl::span<char const ,-1>::span<char const ,-1> _TEXT ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 $T4 = 80 this$ = 80 ptr$ = 88 count$ = 96 ?dtor$2@?0???0?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z@4HA PROC ; `gsl::span<char const ,-1>::span<char const ,-1>'::`1'::dtor$2 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 4 test eax, eax je SHORT $LN20@dtor$2 and DWORD PTR $T4[rbp], -5 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN20@dtor$2: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$2@?0???0?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z@4HA ENDP ; `gsl::span<char const ,-1>::span<char const ,-1>'::`1'::dtor$2 text$x ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 $T4 = 80 this$ = 80 ptr$ = 88 count$ = 96 ?dtor$1@?0???0?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z@4HA PROC ; `gsl::span<char const ,-1>::span<char const ,-1>'::`1'::dtor$1 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 2 test eax, eax je SHORT $LN13@dtor$1 and DWORD PTR $T4[rbp], -3 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN13@dtor$1: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$1@?0???0?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z@4HA ENDP ; `gsl::span<char const ,-1>::span<char const ,-1>'::`1'::dtor$1 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 $T4 = 80 this$ = 80 ptr$ = 88 count$ = 96 ?dtor$2@?0???0?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z@4HA PROC ; `gsl::span<char const ,-1>::span<char const ,-1>'::`1'::dtor$2 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 4 test eax, eax je SHORT $LN20@dtor$2 and DWORD PTR $T4[rbp], -5 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN20@dtor$2: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$2@?0???0?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z@4HA ENDP ; `gsl::span<char const ,-1>::span<char const ,-1>'::`1'::dtor$2 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 $T4 = 80 this$ = 80 ptr$ = 88 count$ = 96 ?dtor$1@?0???0?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z@4HA PROC ; `gsl::span<char const ,-1>::span<char const ,-1>'::`1'::dtor$1 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 2 test eax, eax je SHORT $LN13@dtor$1 and DWORD PTR $T4[rbp], -3 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN13@dtor$1: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$1@?0???0?$span@$$CBD$0?0@gsl@@QEAA@PEBD_J@Z@4HA ENDP ; `gsl::span<char const ,-1>::span<char const ,-1>'::`1'::dtor$1 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$?0$09@?$span@E$0?0@gsl@@QEAA@AEAY09E@Z _TEXT SEGMENT $T1 = 0 this$ = 32 arr$ = 40 ??$?0$09@?$span@E$0?0@gsl@@QEAA@AEAY09E@Z PROC ; gsl::span<unsigned char,-1>::span<unsigned char,-1><10>, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 395 $LN29: sub rsp, 24 mov QWORD PTR $T1[rsp], -2 ; Line 333 mov QWORD PTR [rcx], 10 ; Line 590 mov QWORD PTR [rcx+8], rdx ; Line 395 mov rax, rcx add rsp, 24 ret 0 ??$?0$09@?$span@E$0?0@gsl@@QEAA@AEAY09E@Z ENDP ; gsl::span<unsigned char,-1>::span<unsigned char,-1><10> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?test_string_std_copy@@YAXXZ _TEXT SEGMENT $T1 = 32 byteSpan$ = 48 $T2 = 64 $T3 = 64 $T4 = 64 $T5 = 96 cdModelType$ = 112 $T6 = 128 $T7 = 160 bytes$ = 160 __$ArrayPad$ = 176 ?test_string_std_copy@@YAXXZ PROC ; test_string_std_copy, COMDAT ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 322 $LN256: sub rsp, 200 ; 000000c8H mov QWORD PTR $T5[rsp], -2 mov rax, QWORD PTR __security_cookie xor rax, rsp mov QWORD PTR __$ArrayPad$[rsp], rax mov DWORD PTR $T1[rsp], 0 ; File c:\projects\gsl\include\gsl\span ; Line 333 mov QWORD PTR byteSpan$[rsp], 10 ; Line 590 lea rax, QWORD PTR bytes$[rsp] mov QWORD PTR byteSpan$[rsp+8], rax ; File c:\projects\gsl\include\gsl\string_span ; Line 117 lea rdx, OFFSET FLAT:??_C@_0L@CCAJJBND@iVtrau?5lDC@ mov r8, rdx npad 6 $LL42@test_strin: ; Line 121 cmp BYTE PTR [r8], 0 je SHORT $LN250@test_strin inc r8 mov rax, r8 sub rax, rdx cmp rax, 11 jl SHORT $LL42@test_strin ; Line 122 cmp BYTE PTR [r8], 0 jne $LN254@test_strin $LN250@test_strin: ; Line 123 mov rax, r8 sub rax, rdx ; File c:\projects\gsl\include\gsl\span ; Line 336 mov QWORD PTR $T7[rsp], rax js SHORT $LN100@test_strin ; Line 596 mov QWORD PTR $T7[rsp+8], rdx ; File c:\projects\gsl\include\gsl\string_span ; Line 243 movaps xmm0, XMMWORD PTR $T7[rsp] movdqa XMMWORD PTR cdModelType$[rsp], xmm0 ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 2443 sub r8, rdx ; File c:\projects\gsl\include\gsl\span ; Line 272 cmp r8, 10 jg SHORT $LN207@test_strin ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 2403 lea rcx, QWORD PTR bytes$[rsp] call memmove ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 329 movaps xmm0, XMMWORD PTR byteSpan$[rsp] movdqa XMMWORD PTR $T4[rsp], xmm0 lea rcx, QWORD PTR $T4[rsp] call ?bar@@YAXV?$span@E$0?0@gsl@@@Z ; bar ; Line 330 mov rcx, QWORD PTR __$ArrayPad$[rsp] xor rcx, rsp call __security_check_cookie add rsp, 200 ; 000000c8H ret 0 $LN207@test_strin: ; File c:\projects\gsl\include\gsl\span ; Line 272 lea rdx, OFFSET FLAT:??_C@_0ED@LKBIKNJ@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T2[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> npad 1 $LN100@test_strin: ; Line 336 lea rdx, OFFSET FLAT:??_C@_0ED@NAHIIAGE@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T6[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T1[rsp], 64 ; 00000040H mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> npad 1 $LN254@test_strin: ; File c:\projects\gsl\include\gsl\string_span ; Line 122 lea rdx, OFFSET FLAT:??_C@_0EL@CANAMLLN@GSL?3?5Postcondition?5failure?5at?5c@ lea rcx, QWORD PTR $T3[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T1[rsp], 8 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN252@test_strin: ?test_string_std_copy@@YAXXZ ENDP ; test_string_std_copy _TEXT ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 byteSpan$ = 48 $T2 = 64 $T3 = 64 $T4 = 64 $T5 = 96 cdModelType$ = 112 $T6 = 128 $T7 = 160 bytes$ = 160 __$ArrayPad$ = 176 ?dtor$6@?0??test_string_std_copy@@YAXXZ@4HA PROC ; `test_string_std_copy'::`1'::dtor$6 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T1[rbp] and eax, 8 test eax, eax je SHORT $LN58@dtor$6 and DWORD PTR $T1[rbp], -9 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN58@dtor$6: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$6@?0??test_string_std_copy@@YAXXZ@4HA ENDP ; `test_string_std_copy'::`1'::dtor$6 text$x ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 byteSpan$ = 48 $T2 = 64 $T3 = 64 $T4 = 64 $T5 = 96 cdModelType$ = 112 $T6 = 128 $T7 = 160 bytes$ = 160 __$ArrayPad$ = 176 ?dtor$15@?0??test_string_std_copy@@YAXXZ@4HA PROC ; `test_string_std_copy'::`1'::dtor$15 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T1[rbp] and eax, 64 ; 00000040H test eax, eax je SHORT $LN103@dtor$15 and DWORD PTR $T1[rbp], -65 ; ffffffffffffffbfH lea rcx, QWORD PTR $T6[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN103@dtor$15: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$15@?0??test_string_std_copy@@YAXXZ@4HA ENDP ; `test_string_std_copy'::`1'::dtor$15 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 byteSpan$ = 48 $T2 = 64 $T3 = 64 $T4 = 64 $T5 = 96 cdModelType$ = 112 $T6 = 128 $T7 = 160 bytes$ = 160 __$ArrayPad$ = 176 ?dtor$6@?0??test_string_std_copy@@YAXXZ@4HA PROC ; `test_string_std_copy'::`1'::dtor$6 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T1[rbp] and eax, 8 test eax, eax je SHORT $LN58@dtor$6 and DWORD PTR $T1[rbp], -9 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN58@dtor$6: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$6@?0??test_string_std_copy@@YAXXZ@4HA ENDP ; `test_string_std_copy'::`1'::dtor$6 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 byteSpan$ = 48 $T2 = 64 $T3 = 64 $T4 = 64 $T5 = 96 cdModelType$ = 112 $T6 = 128 $T7 = 160 bytes$ = 160 __$ArrayPad$ = 176 ?dtor$15@?0??test_string_std_copy@@YAXXZ@4HA PROC ; `test_string_std_copy'::`1'::dtor$15 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T1[rbp] and eax, 64 ; 00000040H test eax, eax je SHORT $LN103@dtor$15 and DWORD PTR $T1[rbp], -65 ; ffffffffffffffbfH lea rcx, QWORD PTR $T6[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN103@dtor$15: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$15@?0??test_string_std_copy@@YAXXZ@4HA ENDP ; `test_string_std_copy'::`1'::dtor$15 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$copy@H$0?0H$0?0@gsl@@YAXV?$span@H$0?0@0@0@Z _TEXT SEGMENT $T1 = 32 $T2 = 40 $T3 = 80 src$ = 80 dest$ = 88 ??$copy@H$0?0H$0?0@gsl@@YAXV?$span@H$0?0@0@0@Z PROC ; gsl::copy<int,-1,int,-1>, COMDAT ; File c:\projects\gsl\include\gsl\gsl_algorithm ; Line 43 $LN56: sub rsp, 72 ; 00000048H mov QWORD PTR $T1[rsp], -2 mov rax, rdx mov DWORD PTR $T3[rsp], 0 ; File c:\projects\gsl\include\gsl\span ; Line 498 mov r8, QWORD PTR [rcx] ; File c:\projects\gsl\include\gsl\gsl_algorithm ; Line 50 cmp QWORD PTR [rdx], r8 jl SHORT $LN3@copy ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 2538 test r8, r8 jle SHORT $LN37@copy ; Line 2518 lea r8, QWORD PTR [r8*4] ; Line 2403 mov rdx, QWORD PTR [rcx+8] mov rcx, QWORD PTR [rax+8] ; File c:\projects\gsl\include\gsl\gsl_algorithm ; Line 53 add rsp, 72 ; 00000048H ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 2403 jmp memmove $LN37@copy: ; File c:\projects\gsl\include\gsl\gsl_algorithm ; Line 53 add rsp, 72 ; 00000048H ret 0 $LN3@copy: ; Line 50 lea rdx, OFFSET FLAT:??_C@_0EL@EPJEKFNE@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T2[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T3[rsp], 1 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN53@copy: ??$copy@H$0?0H$0?0@gsl@@YAXV?$span@H$0?0@0@0@Z ENDP ; gsl::copy<int,-1,int,-1> _TEXT ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 80 src$ = 80 dest$ = 88 ?dtor$0@?0???$copy@H$0?0H$0?0@gsl@@YAXV?$span@H$0?0@0@0@Z@4HA PROC ; `gsl::copy<int,-1,int,-1>'::`1'::dtor$0 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T3[rbp] and eax, 1 test eax, eax je SHORT $LN6@dtor$0 and DWORD PTR $T3[rbp], -2 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN6@dtor$0: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$0@?0???$copy@H$0?0H$0?0@gsl@@YAXV?$span@H$0?0@0@0@Z@4HA ENDP ; `gsl::copy<int,-1,int,-1>'::`1'::dtor$0 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 80 src$ = 80 dest$ = 88 ?dtor$0@?0???$copy@H$0?0H$0?0@gsl@@YAXV?$span@H$0?0@0@0@Z@4HA PROC ; `gsl::copy<int,-1,int,-1>'::`1'::dtor$0 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T3[rbp] and eax, 1 test eax, eax je SHORT $LN6@dtor$0 and DWORD PTR $T3[rbp], -2 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN6@dtor$0: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$0@?0???$copy@H$0?0H$0?0@gsl@@YAXV?$span@H$0?0@0@0@Z@4HA ENDP ; `gsl::copy<int,-1,int,-1>'::`1'::dtor$0 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT ?gsl_copy_span@@YAXV?$span@H$0?0@gsl@@0@Z _TEXT SEGMENT $T1 = 32 $T2 = 48 $T3 = 64 $T4 = 64 $T5 = 112 x$ = 112 y$ = 120 ?gsl_copy_span@@YAXV?$span@H$0?0@gsl@@0@Z PROC ; gsl_copy_span, COMDAT ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 317 $LN59: sub rsp, 104 ; 00000068H mov QWORD PTR $T1[rsp], -2 mov DWORD PTR $T5[rsp], 0 ; Line 318 movups xmm1, XMMWORD PTR [rdx] movaps XMMWORD PTR $T4[rsp], xmm1 movups xmm0, XMMWORD PTR [rcx] movaps XMMWORD PTR $T2[rsp], xmm0 ; File c:\projects\gsl\include\gsl\gsl_algorithm ; Line 50 movq rax, xmm1 movq r8, xmm0 cmp rax, r8 jl SHORT $LN5@gsl_copy_s ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 2538 test r8, r8 jle SHORT $LN39@gsl_copy_s ; Line 2518 lea r8, QWORD PTR [r8*4] ; Line 2403 mov rdx, QWORD PTR $T2[rsp+8] mov rcx, QWORD PTR $T4[rsp+8] ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 319 add rsp, 104 ; 00000068H ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 2403 jmp memmove $LN39@gsl_copy_s: ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 319 add rsp, 104 ; 00000068H ret 0 $LN5@gsl_copy_s: ; File c:\projects\gsl\include\gsl\gsl_algorithm ; Line 50 lea rdx, OFFSET FLAT:??_C@_0EL@EPJEKFNE@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T3[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T5[rsp], 1 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN56@gsl_copy_s: ?gsl_copy_span@@YAXV?$span@H$0?0@gsl@@0@Z ENDP ; gsl_copy_span _TEXT ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 48 $T3 = 64 $T4 = 64 $T5 = 112 x$ = 112 y$ = 120 ?dtor$0@?0??gsl_copy_span@@YAXV?$span@H$0?0@gsl@@0@Z@4HA PROC ; `gsl_copy_span'::`1'::dtor$0 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T5[rbp] and eax, 1 test eax, eax je SHORT $LN8@dtor$0 and DWORD PTR $T5[rbp], -2 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN8@dtor$0: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$0@?0??gsl_copy_span@@YAXV?$span@H$0?0@gsl@@0@Z@4HA ENDP ; `gsl_copy_span'::`1'::dtor$0 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 48 $T3 = 64 $T4 = 64 $T5 = 112 x$ = 112 y$ = 120 ?dtor$0@?0??gsl_copy_span@@YAXV?$span@H$0?0@gsl@@0@Z@4HA PROC ; `gsl_copy_span'::`1'::dtor$0 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T5[rbp] and eax, 1 test eax, eax je SHORT $LN8@dtor$0 and DWORD PTR $T5[rbp], -2 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN8@dtor$0: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$0@?0??gsl_copy_span@@YAXV?$span@H$0?0@gsl@@0@Z@4HA ENDP ; `gsl_copy_span'::`1'::dtor$0 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$copy@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YA?AV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@00@Z _TEXT SEGMENT $T1 = 48 $T2 = 64 $T3 = 64 $T4 = 64 __$ReturnUdt$ = 112 _First$ = 120 _Last$ = 128 _Dest$ = 136 ??$copy@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YA?AV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@00@Z PROC ; std::copy<gsl::details::span_iterator<gsl::span<int,-1>,0>,gsl::details::span_iterator<gsl::span<int,-1>,0> >, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 2440 $LN90: mov rax, rsp push r14 sub rsp, 96 ; 00000060H mov QWORD PTR [rax-72], -2 mov QWORD PTR [rax+8], rbx mov QWORD PTR [rax+16], rbp mov QWORD PTR [rax+24], rsi mov QWORD PTR [rax+32], rdi mov r14, r9 mov r9, r8 mov rbp, rcx ; Line 603 movups xmm1, XMMWORD PTR [r8] movaps XMMWORD PTR [rax-56], xmm1 movups xmm0, XMMWORD PTR [rdx] movaps XMMWORD PTR [rax-40], xmm0 ; File c:\projects\gsl\include\gsl\span ; Line 265 movq r8, xmm0 movq rax, xmm1 cmp r8, rax jne $LN9@copy mov rax, QWORD PTR $T1[rsp+8] cmp QWORD PTR $T4[rsp+8], rax jg $LN9@copy ; Line 515 mov rax, QWORD PTR [rdx] mov rcx, QWORD PTR [rax+8] ; Line 280 mov rax, QWORD PTR [rdx+8] lea rdx, QWORD PTR [rcx+rax*4] ; Line 515 mov rax, QWORD PTR [r9] mov rcx, QWORD PTR [rax+8] ; Line 280 mov rax, QWORD PTR [r9+8] lea rdi, QWORD PTR [rcx+rax*4] ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 968 sub rdi, rdx mov rcx, rdi sar rcx, 2 ; File c:\projects\gsl\include\gsl\span ; Line 272 mov r8, QWORD PTR [r14+8] add rcx, r8 js SHORT $LN48@copy ; Line 338 mov rsi, QWORD PTR [r14] ; Line 272 cmp rcx, QWORD PTR [rsi] jg SHORT $LN48@copy ; Line 280 mov rax, QWORD PTR [rsi+8] lea rbx, QWORD PTR [rax+r8*4] ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 2403 mov r8, rdi mov rcx, rbx call memmove ; File c:\projects\gsl\include\gsl\span ; Line 294 sub rdi, QWORD PTR [rsi+8] add rdi, rbx sar rdi, 2 mov QWORD PTR [r14+8], rdi ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 2446 movups xmm0, XMMWORD PTR [r14] movups XMMWORD PTR [rbp], xmm0 mov rax, rbp ; Line 2447 lea r11, QWORD PTR [rsp+96] mov rbx, QWORD PTR [r11+16] mov rbp, QWORD PTR [r11+24] mov rsi, QWORD PTR [r11+32] mov rdi, QWORD PTR [r11+40] mov rsp, r11 pop r14 ret 0 $LN48@copy: ; File c:\projects\gsl\include\gsl\span ; Line 272 lea rdx, OFFSET FLAT:??_C@_0ED@LKBIKNJ@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T2[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> npad 1 $LN9@copy: ; Line 265 lea rdx, OFFSET FLAT:??_C@_0ED@GOAPCFOK@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T3[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN87@copy: ??$copy@V?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@@std@@YA?AV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@V123@00@Z ENDP ; std::copy<gsl::details::span_iterator<gsl::span<int,-1>,0>,gsl::details::span_iterator<gsl::span<int,-1>,0> > _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?copy_span@@YAXV?$span@H$0?0@gsl@@0@Z _TEXT SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 x$ = 80 y$ = 88 ?copy_span@@YAXV?$span@H$0?0@gsl@@0@Z PROC ; copy_span, COMDAT ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 312 $LN109: sub rsp, 72 ; 00000048H mov QWORD PTR $T1[rsp], -2 mov r9, rdx ; File c:\projects\gsl\include\gsl\span ; Line 498 mov rax, QWORD PTR [rcx] ; Line 265 test rax, rax js SHORT $LN27@copy_span ; Line 280 lea r8, QWORD PTR [rax*4] ; Line 272 cmp rax, QWORD PTR [rdx] jg SHORT $LN66@copy_span ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\xutility ; Line 2403 mov rdx, QWORD PTR [rcx+8] mov rcx, QWORD PTR [r9+8] call memmove ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 314 add rsp, 72 ; 00000048H ret 0 $LN66@copy_span: ; File c:\projects\gsl\include\gsl\span ; Line 272 lea rdx, OFFSET FLAT:??_C@_0ED@LKBIKNJ@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T2[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> npad 1 $LN27@copy_span: ; Line 265 lea rdx, OFFSET FLAT:??_C@_0ED@GOAPCFOK@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T3[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN106@copy_span: ?copy_span@@YAXV?$span@H$0?0@gsl@@0@Z ENDP ; copy_span _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?doterminate@@YAXXZ _TEXT SEGMENT ?doterminate@@YAXXZ PROC ; doterminate, COMDAT ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 305 $LN4: sub rsp, 40 ; 00000028H ; Line 306 call QWORD PTR __imp_terminate int 3 $LN3@doterminat: ?doterminate@@YAXXZ ENDP ; doterminate _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z _TEXT SEGMENT $T2 = 32 $T3 = 40 $T4 = 40 $T5 = 40 __$ReturnUdt$ = 80 $T6 = 88 p$ = 88 size$ = 96 i$ = 104 ?mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z PROC ; mysubspan9, COMDAT ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 246 $LN155: push rbx sub rsp, 64 ; 00000040H mov QWORD PTR $T2[rsp], -2 mov rbx, rcx xor eax, eax mov DWORD PTR $T6[rsp], eax ; Line 247 test rdx, rdx je SHORT $LN2@mysubspan9 ; File c:\projects\gsl\include\gsl\span ; Line 336 test r8, r8 js SHORT $LN20@mysubspan9 ; Line 631 lea rax, QWORD PTR [r8-3] test rax, rax js $LN61@mysubspan9 ; Line 633 cmp r9, -1 jne SHORT $LN59@mysubspan9 mov r8, rax ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 250 add rdx, 12 call ??0?$span@H$0?0@gsl@@AEAA@UKnownNotNull@01@_J@Z ; gsl::span<int,-1>::span<int,-1> ; Line 254 mov rax, rbx add rsp, 64 ; 00000040H pop rbx ret 0 $LN59@mysubspan9: ; File c:\projects\gsl\include\gsl\span ; Line 635 test r9, r9 js SHORT $LN63@mysubspan9 cmp rax, r9 jl SHORT $LN63@mysubspan9 ; Line 636 mov r8, r9 ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 250 add rdx, 12 call ??0?$span@H$0?0@gsl@@AEAA@UKnownNotNull@01@_J@Z ; gsl::span<int,-1>::span<int,-1> ; Line 254 mov rax, rbx add rsp, 64 ; 00000040H pop rbx ret 0 $LN2@mysubspan9: ; File c:\projects\gsl\include\gsl\span ; Line 333 mov QWORD PTR [rcx], rax ; Line 596 mov QWORD PTR [rcx+8], rax ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 254 mov rax, rbx add rsp, 64 ; 00000040H pop rbx ret 0 $LN20@mysubspan9: ; File c:\projects\gsl\include\gsl\span ; Line 336 lea rdx, OFFSET FLAT:??_C@_0ED@NAHIIAGE@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T5[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T6[rsp], 4 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> npad 1 $LN63@mysubspan9: ; Line 635 lea rdx, OFFSET FLAT:??_C@_0ED@MMILCDJF@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T3[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T6[rsp], 16 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> npad 1 $LN61@mysubspan9: ; Line 631 lea rdx, OFFSET FLAT:??_C@_0ED@KIOHOGJB@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T4[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T6[rsp], 8 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN150@mysubspan9: ?mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z ENDP ; mysubspan9 _TEXT ENDS ; COMDAT text$x text$x SEGMENT $T2 = 32 $T3 = 40 $T4 = 40 $T5 = 40 __$ReturnUdt$ = 80 $T6 = 88 p$ = 88 size$ = 96 i$ = 104 ?dtor$2@?0??mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA PROC ; `mysubspan9'::`1'::dtor$2 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T6[rbp] and eax, 4 test eax, eax je SHORT $LN23@dtor$2 and DWORD PTR $T6[rbp], -5 lea rcx, QWORD PTR $T5[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN23@dtor$2: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$2@?0??mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA ENDP ; `mysubspan9'::`1'::dtor$2 text$x ENDS ; COMDAT text$x text$x SEGMENT $T2 = 32 $T3 = 40 $T4 = 40 $T5 = 40 __$ReturnUdt$ = 80 $T6 = 88 p$ = 88 size$ = 96 i$ = 104 ?dtor$9@?0??mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA PROC ; `mysubspan9'::`1'::dtor$9 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T6[rbp] and eax, 8 test eax, eax je SHORT $LN66@dtor$9 and DWORD PTR $T6[rbp], -9 lea rcx, QWORD PTR $T4[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN66@dtor$9: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$9@?0??mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA ENDP ; `mysubspan9'::`1'::dtor$9 text$x ENDS ; COMDAT text$x text$x SEGMENT $T2 = 32 $T3 = 40 $T4 = 40 $T5 = 40 __$ReturnUdt$ = 80 $T6 = 88 p$ = 88 size$ = 96 i$ = 104 ?dtor$10@?0??mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA PROC ; `mysubspan9'::`1'::dtor$10 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T6[rbp] and eax, 16 test eax, eax je SHORT $LN69@dtor$10 and DWORD PTR $T6[rbp], -17 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN69@dtor$10: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$10@?0??mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA ENDP ; `mysubspan9'::`1'::dtor$10 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T2 = 32 $T3 = 40 $T4 = 40 $T5 = 40 __$ReturnUdt$ = 80 $T6 = 88 p$ = 88 size$ = 96 i$ = 104 ?dtor$2@?0??mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA PROC ; `mysubspan9'::`1'::dtor$2 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T6[rbp] and eax, 4 test eax, eax je SHORT $LN23@dtor$2 and DWORD PTR $T6[rbp], -5 lea rcx, QWORD PTR $T5[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN23@dtor$2: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$2@?0??mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA ENDP ; `mysubspan9'::`1'::dtor$2 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T2 = 32 $T3 = 40 $T4 = 40 $T5 = 40 __$ReturnUdt$ = 80 $T6 = 88 p$ = 88 size$ = 96 i$ = 104 ?dtor$9@?0??mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA PROC ; `mysubspan9'::`1'::dtor$9 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T6[rbp] and eax, 8 test eax, eax je SHORT $LN66@dtor$9 and DWORD PTR $T6[rbp], -9 lea rcx, QWORD PTR $T4[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN66@dtor$9: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$9@?0??mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA ENDP ; `mysubspan9'::`1'::dtor$9 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T2 = 32 $T3 = 40 $T4 = 40 $T5 = 40 __$ReturnUdt$ = 80 $T6 = 88 p$ = 88 size$ = 96 i$ = 104 ?dtor$10@?0??mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA PROC ; `mysubspan9'::`1'::dtor$10 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T6[rbp] and eax, 16 test eax, eax je SHORT $LN69@dtor$10 and DWORD PTR $T6[rbp], -17 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN69@dtor$10: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$10@?0??mysubspan9@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA ENDP ; `mysubspan9'::`1'::dtor$10 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT ?mysubspan8@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z _TEXT SEGMENT $T1 = 48 $T2 = 56 s$3 = 56 __$ReturnUdt$ = 96 $T4 = 104 p$ = 104 size$ = 112 i$ = 120 ?mysubspan8@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z PROC ; mysubspan8, COMDAT ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 234 $LN104: push rbx sub rsp, 80 ; 00000050H mov QWORD PTR $T1[rsp], -2 mov rax, r9 mov rbx, rcx xor ecx, ecx mov DWORD PTR $T4[rsp], ecx ; Line 235 test rdx, rdx je SHORT $LN2@mysubspan8 ; File c:\projects\gsl\include\gsl\span ; Line 336 mov QWORD PTR s$3[rsp], r8 test r8, r8 js SHORT $LN20@mysubspan8 ; Line 596 mov QWORD PTR s$3[rsp+8], rdx ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 238 sub r8, rax ; File c:\projects\gsl\include\gsl\span ; Line 494 mov BYTE PTR [rsp+32], cl mov r9, r8 mov r8, rax mov rdx, rbx lea rcx, QWORD PTR s$3[rsp] call ?make_subspan@?$span@H$0?0@gsl@@AEBA?AV12@_J0V?$subspan_selector@$0?0@12@@Z ; gsl::span<int,-1>::make_subspan ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 242 mov rax, rbx add rsp, 80 ; 00000050H pop rbx ret 0 $LN2@mysubspan8: ; File c:\projects\gsl\include\gsl\span ; Line 333 mov QWORD PTR [rbx], rcx ; Line 596 mov QWORD PTR [rbx+8], rcx ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 242 mov rax, rbx add rsp, 80 ; 00000050H pop rbx ret 0 $LN20@mysubspan8: ; File c:\projects\gsl\include\gsl\span ; Line 336 lea rdx, OFFSET FLAT:??_C@_0ED@NAHIIAGE@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T2[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T4[rsp], 4 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN100@mysubspan8: ?mysubspan8@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z ENDP ; mysubspan8 _TEXT ENDS ; COMDAT text$x text$x SEGMENT $T1 = 48 $T2 = 56 s$3 = 56 __$ReturnUdt$ = 96 $T4 = 104 p$ = 104 size$ = 112 i$ = 120 ?dtor$2@?0??mysubspan8@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA PROC ; `mysubspan8'::`1'::dtor$2 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 4 test eax, eax je SHORT $LN23@dtor$2 and DWORD PTR $T4[rbp], -5 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN23@dtor$2: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$2@?0??mysubspan8@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA ENDP ; `mysubspan8'::`1'::dtor$2 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 48 $T2 = 56 s$3 = 56 __$ReturnUdt$ = 96 $T4 = 104 p$ = 104 size$ = 112 i$ = 120 ?dtor$2@?0??mysubspan8@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA PROC ; `mysubspan8'::`1'::dtor$2 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 4 test eax, eax je SHORT $LN23@dtor$2 and DWORD PTR $T4[rbp], -5 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN23@dtor$2: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$2@?0??mysubspan8@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA ENDP ; `mysubspan8'::`1'::dtor$2 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT ?mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z _TEXT SEGMENT $T2 = 32 $T3 = 40 $T4 = 40 $T5 = 40 __$ReturnUdt$ = 80 $T6 = 88 p$ = 88 size$ = 96 i$ = 104 ?mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z PROC ; mysubspan7, COMDAT ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 223 $LN191: sub rsp, 72 ; 00000048H mov QWORD PTR $T2[rsp], -2 xor eax, eax mov DWORD PTR $T6[rsp], eax ; Line 224 test rdx, rdx je SHORT $LN2@mysubspan7 ; File c:\projects\gsl\include\gsl\span ; Line 336 test r8, r8 js SHORT $LN20@mysubspan7 ; Line 631 test r9, r9 js SHORT $LN61@mysubspan7 sub r8, r9 js SHORT $LN61@mysubspan7 ; Line 635 cmp r8, 3 jl SHORT $LN63@mysubspan7 ; Line 636 lea rax, QWORD PTR [rdx+r9*4] ; Line 336 mov QWORD PTR [rcx], 3 ; Line 590 mov QWORD PTR [rcx+8], rax ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 231 mov rax, rcx add rsp, 72 ; 00000048H ret 0 $LN2@mysubspan7: ; File c:\projects\gsl\include\gsl\span ; Line 333 mov QWORD PTR [rcx], rax ; Line 596 mov QWORD PTR [rcx+8], rax ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 231 mov rax, rcx add rsp, 72 ; 00000048H ret 0 $LN20@mysubspan7: ; File c:\projects\gsl\include\gsl\span ; Line 336 lea rdx, OFFSET FLAT:??_C@_0ED@NAHIIAGE@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T5[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T6[rsp], 4 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> npad 1 $LN63@mysubspan7: ; Line 635 lea rdx, OFFSET FLAT:??_C@_0ED@MMILCDJF@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T3[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T6[rsp], 16 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> npad 1 $LN61@mysubspan7: ; Line 631 lea rdx, OFFSET FLAT:??_C@_0ED@KIOHOGJB@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T4[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T6[rsp], 8 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN187@mysubspan7: ?mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z ENDP ; mysubspan7 _TEXT ENDS ; COMDAT text$x text$x SEGMENT $T2 = 32 $T3 = 40 $T4 = 40 $T5 = 40 __$ReturnUdt$ = 80 $T6 = 88 p$ = 88 size$ = 96 i$ = 104 ?dtor$2@?0??mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA PROC ; `mysubspan7'::`1'::dtor$2 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T6[rbp] and eax, 4 test eax, eax je SHORT $LN23@dtor$2 and DWORD PTR $T6[rbp], -5 lea rcx, QWORD PTR $T5[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN23@dtor$2: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$2@?0??mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA ENDP ; `mysubspan7'::`1'::dtor$2 text$x ENDS ; COMDAT text$x text$x SEGMENT $T2 = 32 $T3 = 40 $T4 = 40 $T5 = 40 __$ReturnUdt$ = 80 $T6 = 88 p$ = 88 size$ = 96 i$ = 104 ?dtor$9@?0??mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA PROC ; `mysubspan7'::`1'::dtor$9 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T6[rbp] and eax, 8 test eax, eax je SHORT $LN66@dtor$9 and DWORD PTR $T6[rbp], -9 lea rcx, QWORD PTR $T4[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN66@dtor$9: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$9@?0??mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA ENDP ; `mysubspan7'::`1'::dtor$9 text$x ENDS ; COMDAT text$x text$x SEGMENT $T2 = 32 $T3 = 40 $T4 = 40 $T5 = 40 __$ReturnUdt$ = 80 $T6 = 88 p$ = 88 size$ = 96 i$ = 104 ?dtor$10@?0??mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA PROC ; `mysubspan7'::`1'::dtor$10 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T6[rbp] and eax, 16 test eax, eax je SHORT $LN69@dtor$10 and DWORD PTR $T6[rbp], -17 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN69@dtor$10: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$10@?0??mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA ENDP ; `mysubspan7'::`1'::dtor$10 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T2 = 32 $T3 = 40 $T4 = 40 $T5 = 40 __$ReturnUdt$ = 80 $T6 = 88 p$ = 88 size$ = 96 i$ = 104 ?dtor$2@?0??mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA PROC ; `mysubspan7'::`1'::dtor$2 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T6[rbp] and eax, 4 test eax, eax je SHORT $LN23@dtor$2 and DWORD PTR $T6[rbp], -5 lea rcx, QWORD PTR $T5[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN23@dtor$2: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$2@?0??mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA ENDP ; `mysubspan7'::`1'::dtor$2 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T2 = 32 $T3 = 40 $T4 = 40 $T5 = 40 __$ReturnUdt$ = 80 $T6 = 88 p$ = 88 size$ = 96 i$ = 104 ?dtor$9@?0??mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA PROC ; `mysubspan7'::`1'::dtor$9 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T6[rbp] and eax, 8 test eax, eax je SHORT $LN66@dtor$9 and DWORD PTR $T6[rbp], -9 lea rcx, QWORD PTR $T4[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN66@dtor$9: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$9@?0??mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA ENDP ; `mysubspan7'::`1'::dtor$9 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T2 = 32 $T3 = 40 $T4 = 40 $T5 = 40 __$ReturnUdt$ = 80 $T6 = 88 p$ = 88 size$ = 96 i$ = 104 ?dtor$10@?0??mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA PROC ; `mysubspan7'::`1'::dtor$10 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T6[rbp] and eax, 16 test eax, eax je SHORT $LN69@dtor$10 and DWORD PTR $T6[rbp], -17 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN69@dtor$10: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$10@?0??mysubspan7@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA ENDP ; `mysubspan7'::`1'::dtor$10 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT ?mysubspan6@@YA?AV?$span@H$0?0@gsl@@PEAH_J@Z _TEXT SEGMENT $T2 = 32 $T3 = 40 $T4 = 40 __$ReturnUdt$ = 80 $T5 = 88 p$ = 88 size$ = 96 ?mysubspan6@@YA?AV?$span@H$0?0@gsl@@PEAH_J@Z PROC ; mysubspan6, COMDAT ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 211 $LN191: push rbx sub rsp, 64 ; 00000040H mov QWORD PTR $T2[rsp], -2 mov rbx, rcx xor eax, eax mov DWORD PTR $T5[rsp], eax ; Line 212 test rdx, rdx je SHORT $LN2@mysubspan6 ; File c:\projects\gsl\include\gsl\span ; Line 336 test r8, r8 js SHORT $LN20@mysubspan6 ; Line 631 add r8, -3 js SHORT $LN61@mysubspan6 ; Line 633 add rdx, 12 call ??0?$span@H$0?0@gsl@@AEAA@UKnownNotNull@01@_J@Z ; gsl::span<int,-1>::span<int,-1> ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 219 mov rax, rbx add rsp, 64 ; 00000040H pop rbx ret 0 $LN2@mysubspan6: ; File c:\projects\gsl\include\gsl\span ; Line 333 mov QWORD PTR [rcx], rax ; Line 596 mov QWORD PTR [rcx+8], rax ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 219 mov rax, rbx add rsp, 64 ; 00000040H pop rbx ret 0 $LN20@mysubspan6: ; File c:\projects\gsl\include\gsl\span ; Line 336 lea rdx, OFFSET FLAT:??_C@_0ED@NAHIIAGE@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T4[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T5[rsp], 4 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> npad 1 $LN61@mysubspan6: ; Line 631 lea rdx, OFFSET FLAT:??_C@_0ED@KIOHOGJB@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T3[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T5[rsp], 8 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN187@mysubspan6: ?mysubspan6@@YA?AV?$span@H$0?0@gsl@@PEAH_J@Z ENDP ; mysubspan6 _TEXT ENDS ; COMDAT text$x text$x SEGMENT $T2 = 32 $T3 = 40 $T4 = 40 __$ReturnUdt$ = 80 $T5 = 88 p$ = 88 size$ = 96 ?dtor$2@?0??mysubspan6@@YA?AV?$span@H$0?0@gsl@@PEAH_J@Z@4HA PROC ; `mysubspan6'::`1'::dtor$2 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T5[rbp] and eax, 4 test eax, eax je SHORT $LN23@dtor$2 and DWORD PTR $T5[rbp], -5 lea rcx, QWORD PTR $T4[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN23@dtor$2: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$2@?0??mysubspan6@@YA?AV?$span@H$0?0@gsl@@PEAH_J@Z@4HA ENDP ; `mysubspan6'::`1'::dtor$2 text$x ENDS ; COMDAT text$x text$x SEGMENT $T2 = 32 $T3 = 40 $T4 = 40 __$ReturnUdt$ = 80 $T5 = 88 p$ = 88 size$ = 96 ?dtor$9@?0??mysubspan6@@YA?AV?$span@H$0?0@gsl@@PEAH_J@Z@4HA PROC ; `mysubspan6'::`1'::dtor$9 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T5[rbp] and eax, 8 test eax, eax je SHORT $LN66@dtor$9 and DWORD PTR $T5[rbp], -9 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN66@dtor$9: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$9@?0??mysubspan6@@YA?AV?$span@H$0?0@gsl@@PEAH_J@Z@4HA ENDP ; `mysubspan6'::`1'::dtor$9 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T2 = 32 $T3 = 40 $T4 = 40 __$ReturnUdt$ = 80 $T5 = 88 p$ = 88 size$ = 96 ?dtor$2@?0??mysubspan6@@YA?AV?$span@H$0?0@gsl@@PEAH_J@Z@4HA PROC ; `mysubspan6'::`1'::dtor$2 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T5[rbp] and eax, 4 test eax, eax je SHORT $LN23@dtor$2 and DWORD PTR $T5[rbp], -5 lea rcx, QWORD PTR $T4[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN23@dtor$2: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$2@?0??mysubspan6@@YA?AV?$span@H$0?0@gsl@@PEAH_J@Z@4HA ENDP ; `mysubspan6'::`1'::dtor$2 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T2 = 32 $T3 = 40 $T4 = 40 __$ReturnUdt$ = 80 $T5 = 88 p$ = 88 size$ = 96 ?dtor$9@?0??mysubspan6@@YA?AV?$span@H$0?0@gsl@@PEAH_J@Z@4HA PROC ; `mysubspan6'::`1'::dtor$9 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T5[rbp] and eax, 8 test eax, eax je SHORT $LN66@dtor$9 and DWORD PTR $T5[rbp], -9 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN66@dtor$9: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$9@?0??mysubspan6@@YA?AV?$span@H$0?0@gsl@@PEAH_J@Z@4HA ENDP ; `mysubspan6'::`1'::dtor$9 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT ?mysubspan5@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z _TEXT SEGMENT $T2 = 32 $T3 = 40 $T4 = 40 __$ReturnUdt$ = 80 $T5 = 88 p$ = 88 size$ = 96 i$ = 104 ?mysubspan5@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z PROC ; mysubspan5, COMDAT ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 199 $LN191: push rbx sub rsp, 64 ; 00000040H mov QWORD PTR $T2[rsp], -2 mov rbx, rcx xor eax, eax mov DWORD PTR $T5[rsp], eax ; Line 200 test rdx, rdx je SHORT $LN2@mysubspan5 ; File c:\projects\gsl\include\gsl\span ; Line 336 test r8, r8 js SHORT $LN20@mysubspan5 ; Line 631 test r9, r9 js SHORT $LN61@mysubspan5 sub r8, r9 js SHORT $LN61@mysubspan5 ; Line 633 lea rdx, QWORD PTR [rdx+r9*4] call ??0?$span@H$0?0@gsl@@AEAA@UKnownNotNull@01@_J@Z ; gsl::span<int,-1>::span<int,-1> ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 207 mov rax, rbx add rsp, 64 ; 00000040H pop rbx ret 0 $LN2@mysubspan5: ; File c:\projects\gsl\include\gsl\span ; Line 333 mov QWORD PTR [rcx], rax ; Line 596 mov QWORD PTR [rcx+8], rax ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 207 mov rax, rbx add rsp, 64 ; 00000040H pop rbx ret 0 $LN20@mysubspan5: ; File c:\projects\gsl\include\gsl\span ; Line 336 lea rdx, OFFSET FLAT:??_C@_0ED@NAHIIAGE@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T4[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T5[rsp], 4 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> npad 1 $LN61@mysubspan5: ; Line 631 lea rdx, OFFSET FLAT:??_C@_0ED@KIOHOGJB@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T3[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T5[rsp], 8 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN187@mysubspan5: ?mysubspan5@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z ENDP ; mysubspan5 _TEXT ENDS ; COMDAT text$x text$x SEGMENT $T2 = 32 $T3 = 40 $T4 = 40 __$ReturnUdt$ = 80 $T5 = 88 p$ = 88 size$ = 96 i$ = 104 ?dtor$2@?0??mysubspan5@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA PROC ; `mysubspan5'::`1'::dtor$2 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T5[rbp] and eax, 4 test eax, eax je SHORT $LN23@dtor$2 and DWORD PTR $T5[rbp], -5 lea rcx, QWORD PTR $T4[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN23@dtor$2: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$2@?0??mysubspan5@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA ENDP ; `mysubspan5'::`1'::dtor$2 text$x ENDS ; COMDAT text$x text$x SEGMENT $T2 = 32 $T3 = 40 $T4 = 40 __$ReturnUdt$ = 80 $T5 = 88 p$ = 88 size$ = 96 i$ = 104 ?dtor$9@?0??mysubspan5@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA PROC ; `mysubspan5'::`1'::dtor$9 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T5[rbp] and eax, 8 test eax, eax je SHORT $LN66@dtor$9 and DWORD PTR $T5[rbp], -9 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN66@dtor$9: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$9@?0??mysubspan5@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA ENDP ; `mysubspan5'::`1'::dtor$9 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T2 = 32 $T3 = 40 $T4 = 40 __$ReturnUdt$ = 80 $T5 = 88 p$ = 88 size$ = 96 i$ = 104 ?dtor$2@?0??mysubspan5@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA PROC ; `mysubspan5'::`1'::dtor$2 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T5[rbp] and eax, 4 test eax, eax je SHORT $LN23@dtor$2 and DWORD PTR $T5[rbp], -5 lea rcx, QWORD PTR $T4[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN23@dtor$2: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$2@?0??mysubspan5@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA ENDP ; `mysubspan5'::`1'::dtor$2 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T2 = 32 $T3 = 40 $T4 = 40 __$ReturnUdt$ = 80 $T5 = 88 p$ = 88 size$ = 96 i$ = 104 ?dtor$9@?0??mysubspan5@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA PROC ; `mysubspan5'::`1'::dtor$9 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T5[rbp] and eax, 8 test eax, eax je SHORT $LN66@dtor$9 and DWORD PTR $T5[rbp], -9 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN66@dtor$9: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$9@?0??mysubspan5@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA ENDP ; `mysubspan5'::`1'::dtor$9 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$?0$0A@X@?$span@H$0?0@gsl@@QEAA@XZ _TEXT SEGMENT $T1 = 0 this$ = 32 ??$?0$0A@X@?$span@H$0?0@gsl@@QEAA@XZ PROC ; gsl::span<int,-1>::span<int,-1><0,void>, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 384 $LN40: sub rsp, 24 mov QWORD PTR $T1[rsp], -2 ; Line 333 xor eax, eax mov QWORD PTR [rcx], rax ; Line 596 mov QWORD PTR [rcx+8], rax ; Line 384 mov rax, rcx add rsp, 24 ret 0 ??$?0$0A@X@?$span@H$0?0@gsl@@QEAA@XZ ENDP ; gsl::span<int,-1>::span<int,-1><0,void> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?mysubspan4@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z _TEXT SEGMENT $T2 = 32 $T3 = 40 $T4 = 40 __$ReturnUdt$ = 80 $T5 = 88 p$ = 88 size$ = 96 i$ = 104 ?mysubspan4@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z PROC ; mysubspan4, COMDAT ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 188 $LN195: push rbx sub rsp, 64 ; 00000040H mov QWORD PTR $T2[rsp], -2 mov rbx, rcx xor eax, eax mov DWORD PTR $T5[rsp], eax ; Line 189 test rdx, rdx je SHORT $LN2@mysubspan4 ; File c:\projects\gsl\include\gsl\span ; Line 336 test r8, r8 js SHORT $LN20@mysubspan4 ; Line 488 sub r8, r9 ; Line 631 js SHORT $LN65@mysubspan4 test r9, r9 js SHORT $LN65@mysubspan4 ; Line 633 lea rdx, QWORD PTR [rdx+r8*4] mov r8, r9 call ??0?$span@H$0?0@gsl@@AEAA@UKnownNotNull@01@_J@Z ; gsl::span<int,-1>::span<int,-1> ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 196 mov rax, rbx add rsp, 64 ; 00000040H pop rbx ret 0 $LN2@mysubspan4: ; File c:\projects\gsl\include\gsl\span ; Line 333 mov QWORD PTR [rcx], rax ; Line 596 mov QWORD PTR [rcx+8], rax ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 196 mov rax, rbx add rsp, 64 ; 00000040H pop rbx ret 0 $LN20@mysubspan4: ; File c:\projects\gsl\include\gsl\span ; Line 336 lea rdx, OFFSET FLAT:??_C@_0ED@NAHIIAGE@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T4[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T5[rsp], 4 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> npad 1 $LN65@mysubspan4: ; Line 631 lea rdx, OFFSET FLAT:??_C@_0ED@KIOHOGJB@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T3[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T5[rsp], 8 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN191@mysubspan4: ?mysubspan4@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z ENDP ; mysubspan4 _TEXT ENDS ; COMDAT text$x text$x SEGMENT $T2 = 32 $T3 = 40 $T4 = 40 __$ReturnUdt$ = 80 $T5 = 88 p$ = 88 size$ = 96 i$ = 104 ?dtor$2@?0??mysubspan4@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA PROC ; `mysubspan4'::`1'::dtor$2 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T5[rbp] and eax, 4 test eax, eax je SHORT $LN23@dtor$2 and DWORD PTR $T5[rbp], -5 lea rcx, QWORD PTR $T4[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN23@dtor$2: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$2@?0??mysubspan4@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA ENDP ; `mysubspan4'::`1'::dtor$2 text$x ENDS ; COMDAT text$x text$x SEGMENT $T2 = 32 $T3 = 40 $T4 = 40 __$ReturnUdt$ = 80 $T5 = 88 p$ = 88 size$ = 96 i$ = 104 ?dtor$9@?0??mysubspan4@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA PROC ; `mysubspan4'::`1'::dtor$9 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T5[rbp] and eax, 8 test eax, eax je SHORT $LN70@dtor$9 and DWORD PTR $T5[rbp], -9 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN70@dtor$9: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$9@?0??mysubspan4@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA ENDP ; `mysubspan4'::`1'::dtor$9 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T2 = 32 $T3 = 40 $T4 = 40 __$ReturnUdt$ = 80 $T5 = 88 p$ = 88 size$ = 96 i$ = 104 ?dtor$2@?0??mysubspan4@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA PROC ; `mysubspan4'::`1'::dtor$2 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T5[rbp] and eax, 4 test eax, eax je SHORT $LN23@dtor$2 and DWORD PTR $T5[rbp], -5 lea rcx, QWORD PTR $T4[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN23@dtor$2: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$2@?0??mysubspan4@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA ENDP ; `mysubspan4'::`1'::dtor$2 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T2 = 32 $T3 = 40 $T4 = 40 __$ReturnUdt$ = 80 $T5 = 88 p$ = 88 size$ = 96 i$ = 104 ?dtor$9@?0??mysubspan4@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA PROC ; `mysubspan4'::`1'::dtor$9 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T5[rbp] and eax, 8 test eax, eax je SHORT $LN70@dtor$9 and DWORD PTR $T5[rbp], -9 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN70@dtor$9: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$9@?0??mysubspan4@@YA?AV?$span@H$0?0@gsl@@PEAH_J1@Z@4HA ENDP ; `mysubspan4'::`1'::dtor$9 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT ?mysubspan3@@YA_JXZ _TEXT SEGMENT $T1 = 0 ?mysubspan3@@YA_JXZ PROC ; mysubspan3, COMDAT ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 177 $LN228: sub rsp, 24 mov QWORD PTR $T1[rsp], -2 ; Line 183 mov eax, 3 ; Line 184 add rsp, 24 ret 0 ?mysubspan3@@YA_JXZ ENDP ; mysubspan3 _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?mysubspan2@@YA_J_J@Z _TEXT SEGMENT $T1 = 32 $T2 = 40 $T3 = 48 x$ = 72 __$ArrayPad$ = 96 i$ = 128 ?mysubspan2@@YA_J_J@Z PROC ; mysubspan2, COMDAT ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 166 $LN233: sub rsp, 120 ; 00000078H mov QWORD PTR $T2[rsp], -2 mov rax, QWORD PTR __security_cookie xor rax, rsp mov QWORD PTR __$ArrayPad$[rsp], rax mov DWORD PTR $T1[rsp], 0 ; Line 167 movdqa xmm0, XMMWORD PTR __xmm@00000003000000020000000100000000 movdqu XMMWORD PTR x$[rsp], xmm0 mov DWORD PTR x$[rsp+16], 4 mov DWORD PTR x$[rsp+20], 5 ; File c:\projects\gsl\include\gsl\span ; Line 488 mov eax, 6 cmp rax, rcx ; Line 631 js SHORT $LN105@mysubspan2 test rcx, rcx js SHORT $LN105@mysubspan2 ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 172 mov rax, rcx ; Line 173 mov rcx, QWORD PTR __$ArrayPad$[rsp] xor rcx, rsp call __security_check_cookie add rsp, 120 ; 00000078H ret 0 $LN105@mysubspan2: ; File c:\projects\gsl\include\gsl\span ; Line 631 lea rdx, OFFSET FLAT:??_C@_0ED@KIOHOGJB@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T3[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T1[rsp], 16 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN230@mysubspan2: ?mysubspan2@@YA_J_J@Z ENDP ; mysubspan2 _TEXT ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 48 x$ = 72 __$ArrayPad$ = 96 i$ = 128 ?dtor$13@?0??mysubspan2@@YA_J_J@Z@4HA PROC ; `mysubspan2'::`1'::dtor$13 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T1[rbp] and eax, 16 test eax, eax je SHORT $LN110@dtor$13 and DWORD PTR $T1[rbp], -17 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN110@dtor$13: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$13@?0??mysubspan2@@YA_J_J@Z@4HA ENDP ; `mysubspan2'::`1'::dtor$13 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 48 x$ = 72 __$ArrayPad$ = 96 i$ = 128 ?dtor$13@?0??mysubspan2@@YA_J_J@Z@4HA PROC ; `mysubspan2'::`1'::dtor$13 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T1[rbp] and eax, 16 test eax, eax je SHORT $LN110@dtor$13 and DWORD PTR $T1[rbp], -17 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN110@dtor$13: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$13@?0??mysubspan2@@YA_J_J@Z@4HA ENDP ; `mysubspan2'::`1'::dtor$13 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$?0$05@?$span@H$05@gsl@@QEAA@AEAY05H@Z _TEXT SEGMENT $T1 = 0 this$ = 32 arr$ = 40 ??$?0$05@?$span@H$05@gsl@@QEAA@AEAY05H@Z PROC ; gsl::span<int,6>::span<int,6><6>, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 395 $LN25: sub rsp, 24 mov QWORD PTR $T1[rsp], -2 ; Line 590 mov QWORD PTR [rcx], rdx ; Line 395 mov rax, rcx add rsp, 24 ret 0 ??$?0$05@?$span@H$05@gsl@@QEAA@AEAY05H@Z ENDP ; gsl::span<int,6>::span<int,6><6> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?data@?$storage_type@V?$extent_type@$05@details@gsl@@@?$span@H$05@gsl@@QEBAPEAHXZ _TEXT SEGMENT this$ = 8 ?data@?$storage_type@V?$extent_type@$05@details@gsl@@@?$span@H$05@gsl@@QEBAPEAHXZ PROC ; gsl::span<int,6>::storage_type<gsl::details::extent_type<6> >::data, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 602 mov rax, QWORD PTR [rcx] ret 0 ?data@?$storage_type@V?$extent_type@$05@details@gsl@@@?$span@H$05@gsl@@QEBAPEAHXZ ENDP ; gsl::span<int,6>::storage_type<gsl::details::extent_type<6> >::data _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?size@?$extent_type@$05@details@gsl@@QEBA_JXZ _TEXT SEGMENT this$ = 8 ?size@?$extent_type@$05@details@gsl@@QEBA_JXZ PROC ; gsl::details::extent_type<6>::size, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 323 mov eax, 6 ret 0 ?size@?$extent_type@$05@details@gsl@@QEBA_JXZ ENDP ; gsl::details::extent_type<6>::size _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??0?$extent_type@$05@details@gsl@@QEAA@_J@Z _TEXT SEGMENT $T1 = 32 $T2 = 40 this$ = 80 $T3 = 88 size$ = 88 ??0?$extent_type@$05@details@gsl@@QEAA@_J@Z PROC ; gsl::details::extent_type<6>::extent_type<6>, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 321 $LN19: sub rsp, 72 ; 00000048H mov QWORD PTR $T1[rsp], -2 mov DWORD PTR $T3[rsp], 0 cmp rdx, 6 jne SHORT $LN3@extent_typ mov rax, rcx add rsp, 72 ; 00000048H ret 0 $LN3@extent_typ: lea rdx, OFFSET FLAT:??_C@_0ED@JOPLHMJE@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T2[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T3[rsp], 1 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN16@extent_typ: ??0?$extent_type@$05@details@gsl@@QEAA@_J@Z ENDP ; gsl::details::extent_type<6>::extent_type<6> _TEXT ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 this$ = 80 $T3 = 88 size$ = 88 ?dtor$0@?0???0?$extent_type@$05@details@gsl@@QEAA@_J@Z@4HA PROC ; `gsl::details::extent_type<6>::extent_type<6>'::`1'::dtor$0 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T3[rbp] and eax, 1 test eax, eax je SHORT $LN6@dtor$0 and DWORD PTR $T3[rbp], -2 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN6@dtor$0: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$0@?0???0?$extent_type@$05@details@gsl@@QEAA@_J@Z@4HA ENDP ; `gsl::details::extent_type<6>::extent_type<6>'::`1'::dtor$0 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 this$ = 80 $T3 = 88 size$ = 88 ?dtor$0@?0???0?$extent_type@$05@details@gsl@@QEAA@_J@Z@4HA PROC ; `gsl::details::extent_type<6>::extent_type<6>'::`1'::dtor$0 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T3[rbp] and eax, 1 test eax, eax je SHORT $LN6@dtor$0 and DWORD PTR $T3[rbp], -2 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN6@dtor$0: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$0@?0???0?$extent_type@$05@details@gsl@@QEAA@_J@Z@4HA ENDP ; `gsl::details::extent_type<6>::extent_type<6>'::`1'::dtor$0 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT ??0?$extent_type@$05@details@gsl@@QEAA@XZ _TEXT SEGMENT this$ = 8 ??0?$extent_type@$05@details@gsl@@QEAA@XZ PROC ; gsl::details::extent_type<6>::extent_type<6>, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 311 mov rax, rcx ret 0 ??0?$extent_type@$05@details@gsl@@QEAA@XZ ENDP ; gsl::details::extent_type<6>::extent_type<6> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?data@?$span@H$05@gsl@@QEBAPEAHXZ _TEXT SEGMENT this$ = 8 ?data@?$span@H$05@gsl@@QEBAPEAHXZ PROC ; gsl::span<int,6>::data, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 515 mov rax, QWORD PTR [rcx] ret 0 ?data@?$span@H$05@gsl@@QEBAPEAHXZ ENDP ; gsl::span<int,6>::data _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?size@?$span@H$05@gsl@@QEBA_JXZ _TEXT SEGMENT this$ = 8 ?size@?$span@H$05@gsl@@QEBA_JXZ PROC ; gsl::span<int,6>::size, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 498 mov eax, 6 ret 0 ?size@?$span@H$05@gsl@@QEBA_JXZ ENDP ; gsl::span<int,6>::size _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?subspan@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J0@Z _TEXT SEGMENT $T1 = 48 $T2 = 56 $T3 = 64 tmp$4 = 64 this$ = 112 __$ReturnUdt$ = 120 offset$ = 128 count$ = 136 ?subspan@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J0@Z PROC ; gsl::span<int,6>::subspan, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 493 $LN75: push rbx sub rsp, 96 ; 00000060H mov QWORD PTR $T2[rsp], -2 mov rbx, rdx mov DWORD PTR $T1[rsp], 0 ; Line 515 mov rax, QWORD PTR [rcx] ; Line 333 mov QWORD PTR tmp$4[rsp], 6 ; Line 596 mov QWORD PTR tmp$4[rsp+8], rax ; Line 599 test rax, rax je SHORT $LN73@subspan ; Line 494 mov BYTE PTR [rsp+32], 0 lea rcx, QWORD PTR tmp$4[rsp] call ?make_subspan@?$span@H$0?0@gsl@@AEBA?AV12@_J0V?$subspan_selector@$0?0@12@@Z ; gsl::span<int,-1>::make_subspan mov rax, rbx ; Line 495 add rsp, 96 ; 00000060H pop rbx ret 0 $LN73@subspan: ; Line 599 lea rdx, OFFSET FLAT:??_C@_0ED@HPBMEGKB@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T3[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T1[rsp], 4 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN71@subspan: ?subspan@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J0@Z ENDP ; gsl::span<int,6>::subspan _TEXT ENDS ; COMDAT text$x text$x SEGMENT $T1 = 48 $T2 = 56 $T3 = 64 tmp$4 = 64 this$ = 112 __$ReturnUdt$ = 120 offset$ = 128 count$ = 136 ?dtor$4@?0??subspan@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J0@Z@4HA PROC ; `gsl::span<int,6>::subspan'::`1'::dtor$4 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T1[rbp] and eax, 4 test eax, eax je SHORT $LN41@dtor$4 and DWORD PTR $T1[rbp], -5 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN41@dtor$4: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$4@?0??subspan@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J0@Z@4HA ENDP ; `gsl::span<int,6>::subspan'::`1'::dtor$4 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 48 $T2 = 56 $T3 = 64 tmp$4 = 64 this$ = 112 __$ReturnUdt$ = 120 offset$ = 128 count$ = 136 ?dtor$4@?0??subspan@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J0@Z@4HA PROC ; `gsl::span<int,6>::subspan'::`1'::dtor$4 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T1[rbp] and eax, 4 test eax, eax je SHORT $LN41@dtor$4 and DWORD PTR $T1[rbp], -5 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN41@dtor$4: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$4@?0??subspan@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J0@Z@4HA ENDP ; `gsl::span<int,6>::subspan'::`1'::dtor$4 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT ?last@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J@Z _TEXT SEGMENT $T2 = 32 $T3 = 40 $T4 = 40 this$ = 80 __$ReturnUdt$ = 88 $T5 = 96 count$ = 96 ?last@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J@Z PROC ; gsl::span<int,6>::last, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 487 $LN166: push rbx sub rsp, 64 ; 00000040H mov QWORD PTR $T2[rsp], -2 mov rbx, rdx mov DWORD PTR $T5[rsp], 0 ; Line 488 mov eax, 6 sub rax, r8 ; Line 515 mov rdx, QWORD PTR [rcx] ; Line 599 test rdx, rdx je SHORT $LN164@last ; Line 631 test rax, rax js SHORT $LN77@last test r8, r8 js SHORT $LN77@last ; Line 633 lea rdx, QWORD PTR [rdx+rax*4] mov rcx, rbx call ??0?$span@H$0?0@gsl@@AEAA@UKnownNotNull@01@_J@Z ; gsl::span<int,-1>::span<int,-1> ; Line 488 mov rax, rbx ; Line 489 add rsp, 64 ; 00000040H pop rbx ret 0 $LN164@last: ; Line 599 lea rdx, OFFSET FLAT:??_C@_0ED@HPBMEGKB@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T4[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T5[rsp], 4 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> npad 1 $LN77@last: ; Line 631 lea rdx, OFFSET FLAT:??_C@_0ED@KIOHOGJB@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T3[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T5[rsp], 8 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN162@last: ?last@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J@Z ENDP ; gsl::span<int,6>::last _TEXT ENDS ; COMDAT text$x text$x SEGMENT $T2 = 32 $T3 = 40 $T4 = 40 this$ = 80 __$ReturnUdt$ = 88 $T5 = 96 count$ = 96 ?dtor$4@?0??last@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J@Z@4HA PROC ; `gsl::span<int,6>::last'::`1'::dtor$4 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T5[rbp] and eax, 4 test eax, eax je SHORT $LN45@dtor$4 and DWORD PTR $T5[rbp], -5 lea rcx, QWORD PTR $T4[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN45@dtor$4: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$4@?0??last@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J@Z@4HA ENDP ; `gsl::span<int,6>::last'::`1'::dtor$4 text$x ENDS ; COMDAT text$x text$x SEGMENT $T2 = 32 $T3 = 40 $T4 = 40 this$ = 80 __$ReturnUdt$ = 88 $T5 = 96 count$ = 96 ?dtor$9@?0??last@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J@Z@4HA PROC ; `gsl::span<int,6>::last'::`1'::dtor$9 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T5[rbp] and eax, 8 test eax, eax je SHORT $LN82@dtor$9 and DWORD PTR $T5[rbp], -9 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN82@dtor$9: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$9@?0??last@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J@Z@4HA ENDP ; `gsl::span<int,6>::last'::`1'::dtor$9 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T2 = 32 $T3 = 40 $T4 = 40 this$ = 80 __$ReturnUdt$ = 88 $T5 = 96 count$ = 96 ?dtor$4@?0??last@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J@Z@4HA PROC ; `gsl::span<int,6>::last'::`1'::dtor$4 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T5[rbp] and eax, 4 test eax, eax je SHORT $LN45@dtor$4 and DWORD PTR $T5[rbp], -5 lea rcx, QWORD PTR $T4[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN45@dtor$4: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$4@?0??last@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J@Z@4HA ENDP ; `gsl::span<int,6>::last'::`1'::dtor$4 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T2 = 32 $T3 = 40 $T4 = 40 this$ = 80 __$ReturnUdt$ = 88 $T5 = 96 count$ = 96 ?dtor$9@?0??last@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J@Z@4HA PROC ; `gsl::span<int,6>::last'::`1'::dtor$9 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T5[rbp] and eax, 8 test eax, eax je SHORT $LN82@dtor$9 and DWORD PTR $T5[rbp], -9 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN82@dtor$9: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$9@?0??last@?$span@H$05@gsl@@QEBA?AV?$span@H$0?0@2@_J@Z@4HA ENDP ; `gsl::span<int,6>::last'::`1'::dtor$9 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT ?mysubspan1@@YA_JXZ _TEXT SEGMENT $T1 = 0 ?mysubspan1@@YA_JXZ PROC ; mysubspan1, COMDAT ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 155 $LN233: sub rsp, 24 mov QWORD PTR $T1[rsp], -2 ; Line 161 mov eax, 3 ; Line 162 add rsp, 24 ret 0 ?mysubspan1@@YA_JXZ ENDP ; mysubspan1 _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$convert_span@EV?$span@G$0?0@gsl@@@@YA?AV?$span@E$0?0@gsl@@V?$span@G$0?0@1@@Z _TEXT SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 $T4 = 80 __$ReturnUdt$ = 80 s$ = 88 ??$convert_span@EV?$span@G$0?0@gsl@@@@YA?AV?$span@E$0?0@gsl@@V?$span@G$0?0@1@@Z PROC ; convert_span<unsigned char,gsl::span<unsigned short,-1> >, COMDAT ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 129 $LN73: sub rsp, 72 ; 00000048H mov QWORD PTR $T1[rsp], -2 mov DWORD PTR $T4[rsp], 0 ; File c:\projects\gsl\include\gsl\span ; Line 515 mov r8, QWORD PTR [rdx+8] ; Line 498 mov rax, QWORD PTR [rdx] ; Line 501 add rax, rax ; Line 336 mov QWORD PTR [rcx], rax js SHORT $LN33@convert_sp ; Line 596 mov QWORD PTR [rcx+8], r8 ; Line 599 test r8, r8 jne SHORT $LN23@convert_sp test rax, rax jne SHORT $LN71@convert_sp $LN23@convert_sp: ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 133 mov rax, rcx ; Line 134 add rsp, 72 ; 00000048H ret 0 $LN71@convert_sp: ; File c:\projects\gsl\include\gsl\span ; Line 599 lea rdx, OFFSET FLAT:??_C@_0ED@HPBMEGKB@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T3[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T4[rsp], 2 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> npad 1 $LN33@convert_sp: ; Line 336 lea rdx, OFFSET FLAT:??_C@_0ED@NAHIIAGE@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T2[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T4[rsp], 4 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN69@convert_sp: ??$convert_span@EV?$span@G$0?0@gsl@@@@YA?AV?$span@E$0?0@gsl@@V?$span@G$0?0@1@@Z ENDP ; convert_span<unsigned char,gsl::span<unsigned short,-1> > _TEXT ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 $T4 = 80 __$ReturnUdt$ = 80 s$ = 88 ?dtor$2@?0???$convert_span@EV?$span@G$0?0@gsl@@@@YA?AV?$span@E$0?0@gsl@@V?$span@G$0?0@1@@Z@4HA PROC ; `convert_span<unsigned char,gsl::span<unsigned short,-1> >'::`1'::dtor$2 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 4 test eax, eax je SHORT $LN36@dtor$2 and DWORD PTR $T4[rbp], -5 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN36@dtor$2: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$2@?0???$convert_span@EV?$span@G$0?0@gsl@@@@YA?AV?$span@E$0?0@gsl@@V?$span@G$0?0@1@@Z@4HA ENDP ; `convert_span<unsigned char,gsl::span<unsigned short,-1> >'::`1'::dtor$2 text$x ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 $T4 = 80 __$ReturnUdt$ = 80 s$ = 88 ?dtor$1@?0???$convert_span@EV?$span@G$0?0@gsl@@@@YA?AV?$span@E$0?0@gsl@@V?$span@G$0?0@1@@Z@4HA PROC ; `convert_span<unsigned char,gsl::span<unsigned short,-1> >'::`1'::dtor$1 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 2 test eax, eax je SHORT $LN29@dtor$1 and DWORD PTR $T4[rbp], -3 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN29@dtor$1: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$1@?0???$convert_span@EV?$span@G$0?0@gsl@@@@YA?AV?$span@E$0?0@gsl@@V?$span@G$0?0@1@@Z@4HA ENDP ; `convert_span<unsigned char,gsl::span<unsigned short,-1> >'::`1'::dtor$1 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 $T4 = 80 __$ReturnUdt$ = 80 s$ = 88 ?dtor$2@?0???$convert_span@EV?$span@G$0?0@gsl@@@@YA?AV?$span@E$0?0@gsl@@V?$span@G$0?0@1@@Z@4HA PROC ; `convert_span<unsigned char,gsl::span<unsigned short,-1> >'::`1'::dtor$2 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 4 test eax, eax je SHORT $LN36@dtor$2 and DWORD PTR $T4[rbp], -5 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN36@dtor$2: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$2@?0???$convert_span@EV?$span@G$0?0@gsl@@@@YA?AV?$span@E$0?0@gsl@@V?$span@G$0?0@1@@Z@4HA ENDP ; `convert_span<unsigned char,gsl::span<unsigned short,-1> >'::`1'::dtor$2 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 $T4 = 80 __$ReturnUdt$ = 80 s$ = 88 ?dtor$1@?0???$convert_span@EV?$span@G$0?0@gsl@@@@YA?AV?$span@E$0?0@gsl@@V?$span@G$0?0@1@@Z@4HA PROC ; `convert_span<unsigned char,gsl::span<unsigned short,-1> >'::`1'::dtor$1 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 2 test eax, eax je SHORT $LN29@dtor$1 and DWORD PTR $T4[rbp], -3 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN29@dtor$1: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$1@?0???$convert_span@EV?$span@G$0?0@gsl@@@@YA?AV?$span@E$0?0@gsl@@V?$span@G$0?0@1@@Z@4HA ENDP ; `convert_span<unsigned char,gsl::span<unsigned short,-1> >'::`1'::dtor$1 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT ?test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z _TEXT SEGMENT $T1 = 32 $T2 = 48 $T3 = 48 $T4 = 48 $T5 = 48 $T6 = 96 Drive$ = 96 ?test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z PROC ; test_convert_span_Joe, COMDAT ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 145 $LN111: sub rsp, 88 ; 00000058H mov QWORD PTR $T1[rsp], -2 mov DWORD PTR $T6[rsp], 0 ; Line 146 movups xmm0, XMMWORD PTR [rcx+8] movaps XMMWORD PTR $T5[rsp], xmm0 ; File c:\projects\gsl\include\gsl\span ; Line 501 movq rax, xmm0 lea rcx, QWORD PTR [rax+rax] ; Line 336 test rcx, rcx js SHORT $LN35@test_conve ; Line 599 mov rax, QWORD PTR $T5[rsp+8] test rax, rax jne SHORT $LN25@test_conve test rcx, rcx jne SHORT $LN109@test_conve $LN25@test_conve: ; Line 509 test rcx, rcx je SHORT $LN74@test_conve ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 148 movzx eax, BYTE PTR [rax] ; Line 149 add rsp, 88 ; 00000058H ret 0 $LN74@test_conve: ; File c:\projects\gsl\include\gsl\span ; Line 509 lea rdx, OFFSET FLAT:??_C@_0ED@HAMNHNCO@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T4[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T6[rsp], 8 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> npad 1 $LN35@test_conve: ; Line 336 lea rdx, OFFSET FLAT:??_C@_0ED@NAHIIAGE@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T2[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T6[rsp], 4 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> npad 1 $LN109@test_conve: ; Line 599 lea rdx, OFFSET FLAT:??_C@_0ED@HPBMEGKB@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T3[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T6[rsp], 2 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN107@test_conve: ?test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z ENDP ; test_convert_span_Joe _TEXT ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 48 $T3 = 48 $T4 = 48 $T5 = 48 $T6 = 96 Drive$ = 96 ?dtor$2@?0??test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z@4HA PROC ; `test_convert_span_Joe'::`1'::dtor$2 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T6[rbp] and eax, 4 test eax, eax je SHORT $LN38@dtor$2 and DWORD PTR $T6[rbp], -5 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN38@dtor$2: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$2@?0??test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z@4HA ENDP ; `test_convert_span_Joe'::`1'::dtor$2 text$x ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 48 $T3 = 48 $T4 = 48 $T5 = 48 $T6 = 96 Drive$ = 96 ?dtor$1@?0??test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z@4HA PROC ; `test_convert_span_Joe'::`1'::dtor$1 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T6[rbp] and eax, 2 test eax, eax je SHORT $LN31@dtor$1 and DWORD PTR $T6[rbp], -3 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN31@dtor$1: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$1@?0??test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z@4HA ENDP ; `test_convert_span_Joe'::`1'::dtor$1 text$x ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 48 $T3 = 48 $T4 = 48 $T5 = 48 $T6 = 96 Drive$ = 96 ?dtor$9@?0??test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z@4HA PROC ; `test_convert_span_Joe'::`1'::dtor$9 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T6[rbp] and eax, 8 test eax, eax je SHORT $LN77@dtor$9 and DWORD PTR $T6[rbp], -9 lea rcx, QWORD PTR $T4[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN77@dtor$9: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$9@?0??test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z@4HA ENDP ; `test_convert_span_Joe'::`1'::dtor$9 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 48 $T3 = 48 $T4 = 48 $T5 = 48 $T6 = 96 Drive$ = 96 ?dtor$2@?0??test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z@4HA PROC ; `test_convert_span_Joe'::`1'::dtor$2 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T6[rbp] and eax, 4 test eax, eax je SHORT $LN38@dtor$2 and DWORD PTR $T6[rbp], -5 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN38@dtor$2: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$2@?0??test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z@4HA ENDP ; `test_convert_span_Joe'::`1'::dtor$2 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 48 $T3 = 48 $T4 = 48 $T5 = 48 $T6 = 96 Drive$ = 96 ?dtor$1@?0??test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z@4HA PROC ; `test_convert_span_Joe'::`1'::dtor$1 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T6[rbp] and eax, 2 test eax, eax je SHORT $LN31@dtor$1 and DWORD PTR $T6[rbp], -3 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN31@dtor$1: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$1@?0??test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z@4HA ENDP ; `test_convert_span_Joe'::`1'::dtor$1 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 48 $T3 = 48 $T4 = 48 $T5 = 48 $T6 = 96 Drive$ = 96 ?dtor$9@?0??test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z@4HA PROC ; `test_convert_span_Joe'::`1'::dtor$9 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T6[rbp] and eax, 8 test eax, eax je SHORT $LN77@dtor$9 and DWORD PTR $T6[rbp], -9 lea rcx, QWORD PTR $T4[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN77@dtor$9: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$9@?0??test_convert_span_Joe@@YAEAEAUIDE_DRIVE_STATE@@@Z@4HA ENDP ; `test_convert_span_Joe'::`1'::dtor$9 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$?0$05@?$span@E$0?0@gsl@@QEAA@AEAY05E@Z _TEXT SEGMENT $T1 = 0 this$ = 32 arr$ = 40 ??$?0$05@?$span@E$0?0@gsl@@QEAA@AEAY05E@Z PROC ; gsl::span<unsigned char,-1>::span<unsigned char,-1><6>, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 395 $LN29: sub rsp, 24 mov QWORD PTR $T1[rsp], -2 ; Line 333 mov QWORD PTR [rcx], 6 ; Line 590 mov QWORD PTR [rcx+8], rdx ; Line 395 mov rax, rcx add rsp, 24 ret 0 ??$?0$05@?$span@E$0?0@gsl@@QEAA@AEAY05E@Z ENDP ; gsl::span<unsigned char,-1>::span<unsigned char,-1><6> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?data@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEBAPEAEXZ _TEXT SEGMENT this$ = 8 ?data@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEBAPEAEXZ PROC ; gsl::span<unsigned char,-1>::storage_type<gsl::details::extent_type<-1> >::data, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 602 mov rax, QWORD PTR [rcx+8] ret 0 ?data@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@E$0?0@gsl@@QEBAPEAEXZ ENDP ; gsl::span<unsigned char,-1>::storage_type<gsl::details::extent_type<-1> >::data _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?CheckRange@?$span@E$0?0@gsl@@CA_N_J0@Z _TEXT SEGMENT idx$ = 8 size$ = 16 ?CheckRange@?$span@E$0?0@gsl@@CA_N_J0@Z PROC ; gsl::span<unsigned char,-1>::CheckRange, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 565 cmp rcx, rdx setb al ; Line 571 ret 0 ?CheckRange@?$span@E$0?0@gsl@@CA_N_J0@Z ENDP ; gsl::span<unsigned char,-1>::CheckRange _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?begin@?$span@E$0?0@gsl@@QEBA?AV?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@2@XZ _TEXT SEGMENT this$ = 8 __$ReturnUdt$ = 16 ?begin@?$span@E$0?0@gsl@@QEBA?AV?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@2@XZ PROC ; gsl::span<unsigned char,-1>::begin, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 145 mov QWORD PTR [rdx], rcx ; Line 518 mov rax, rdx ; Line 145 mov QWORD PTR [rdx+8], 0 ; Line 518 ret 0 ?begin@?$span@E$0?0@gsl@@QEBA?AV?$span_iterator@V?$span@E$0?0@gsl@@$0A@@details@2@XZ ENDP ; gsl::span<unsigned char,-1>::begin _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?data@?$span@E$0?0@gsl@@QEBAPEAEXZ _TEXT SEGMENT this$ = 8 ?data@?$span@E$0?0@gsl@@QEBAPEAEXZ PROC ; gsl::span<unsigned char,-1>::data, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 515 mov rax, QWORD PTR [rcx+8] ret 0 ?data@?$span@E$0?0@gsl@@QEBAPEAEXZ ENDP ; gsl::span<unsigned char,-1>::data _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??A?$span@E$0?0@gsl@@QEBAAEAE_J@Z _TEXT SEGMENT $T1 = 32 $T2 = 40 $T3 = 80 this$ = 80 idx$ = 88 ??A?$span@E$0?0@gsl@@QEBAAEAE_J@Z PROC ; gsl::span<unsigned char,-1>::operator[], COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 508 $LN39: sub rsp, 72 ; 00000048H mov QWORD PTR $T1[rsp], -2 mov DWORD PTR $T3[rsp], 0 ; Line 509 cmp rdx, QWORD PTR [rcx] jae SHORT $LN3@operator ; Line 510 mov rax, QWORD PTR [rcx+8] add rax, rdx ; Line 511 add rsp, 72 ; 00000048H ret 0 $LN3@operator: ; Line 509 lea rdx, OFFSET FLAT:??_C@_0ED@HAMNHNCO@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T2[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T3[rsp], 1 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN36@operator: ??A?$span@E$0?0@gsl@@QEBAAEAE_J@Z ENDP ; gsl::span<unsigned char,-1>::operator[] _TEXT ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 80 this$ = 80 idx$ = 88 ?dtor$0@?0???A?$span@E$0?0@gsl@@QEBAAEAE_J@Z@4HA PROC ; `gsl::span<unsigned char,-1>::operator[]'::`1'::dtor$0 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T3[rbp] and eax, 1 test eax, eax je SHORT $LN6@dtor$0 and DWORD PTR $T3[rbp], -2 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN6@dtor$0: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$0@?0???A?$span@E$0?0@gsl@@QEBAAEAE_J@Z@4HA ENDP ; `gsl::span<unsigned char,-1>::operator[]'::`1'::dtor$0 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 80 this$ = 80 idx$ = 88 ?dtor$0@?0???A?$span@E$0?0@gsl@@QEBAAEAE_J@Z@4HA PROC ; `gsl::span<unsigned char,-1>::operator[]'::`1'::dtor$0 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T3[rbp] and eax, 1 test eax, eax je SHORT $LN6@dtor$0 and DWORD PTR $T3[rbp], -2 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN6@dtor$0: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$0@?0???A?$span@E$0?0@gsl@@QEBAAEAE_J@Z@4HA ENDP ; `gsl::span<unsigned char,-1>::operator[]'::`1'::dtor$0 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT ?size@?$span@E$0?0@gsl@@QEBA_JXZ _TEXT SEGMENT this$ = 8 ?size@?$span@E$0?0@gsl@@QEBA_JXZ PROC ; gsl::span<unsigned char,-1>::size, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 498 mov rax, QWORD PTR [rcx] ret 0 ?size@?$span@E$0?0@gsl@@QEBA_JXZ ENDP ; gsl::span<unsigned char,-1>::size _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??0?$span@E$0?0@gsl@@QEAA@PEAE_J@Z _TEXT SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 $T4 = 80 this$ = 80 ptr$ = 88 count$ = 96 ??0?$span@E$0?0@gsl@@QEAA@PEAE_J@Z PROC ; gsl::span<unsigned char,-1>::span<unsigned char,-1>, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 386 $LN56: sub rsp, 72 ; 00000048H mov QWORD PTR $T1[rsp], -2 mov DWORD PTR $T4[rsp], 0 ; Line 336 mov QWORD PTR [rcx], r8 test r8, r8 js SHORT $LN17@span ; Line 596 mov QWORD PTR [rcx+8], rdx ; Line 599 test rdx, rdx jne SHORT $LN7@span test r8, r8 jne SHORT $LN54@span $LN7@span: ; Line 386 mov rax, rcx add rsp, 72 ; 00000048H ret 0 $LN54@span: ; Line 599 lea rdx, OFFSET FLAT:??_C@_0ED@HPBMEGKB@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T3[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T4[rsp], 2 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> npad 1 $LN17@span: ; Line 336 lea rdx, OFFSET FLAT:??_C@_0ED@NAHIIAGE@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T2[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T4[rsp], 4 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN52@span: ??0?$span@E$0?0@gsl@@QEAA@PEAE_J@Z ENDP ; gsl::span<unsigned char,-1>::span<unsigned char,-1> _TEXT ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 $T4 = 80 this$ = 80 ptr$ = 88 count$ = 96 ?dtor$2@?0???0?$span@E$0?0@gsl@@QEAA@PEAE_J@Z@4HA PROC ; `gsl::span<unsigned char,-1>::span<unsigned char,-1>'::`1'::dtor$2 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 4 test eax, eax je SHORT $LN20@dtor$2 and DWORD PTR $T4[rbp], -5 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN20@dtor$2: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$2@?0???0?$span@E$0?0@gsl@@QEAA@PEAE_J@Z@4HA ENDP ; `gsl::span<unsigned char,-1>::span<unsigned char,-1>'::`1'::dtor$2 text$x ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 $T4 = 80 this$ = 80 ptr$ = 88 count$ = 96 ?dtor$1@?0???0?$span@E$0?0@gsl@@QEAA@PEAE_J@Z@4HA PROC ; `gsl::span<unsigned char,-1>::span<unsigned char,-1>'::`1'::dtor$1 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 2 test eax, eax je SHORT $LN13@dtor$1 and DWORD PTR $T4[rbp], -3 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN13@dtor$1: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$1@?0???0?$span@E$0?0@gsl@@QEAA@PEAE_J@Z@4HA ENDP ; `gsl::span<unsigned char,-1>::span<unsigned char,-1>'::`1'::dtor$1 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 $T4 = 80 this$ = 80 ptr$ = 88 count$ = 96 ?dtor$2@?0???0?$span@E$0?0@gsl@@QEAA@PEAE_J@Z@4HA PROC ; `gsl::span<unsigned char,-1>::span<unsigned char,-1>'::`1'::dtor$2 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 4 test eax, eax je SHORT $LN20@dtor$2 and DWORD PTR $T4[rbp], -5 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN20@dtor$2: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$2@?0???0?$span@E$0?0@gsl@@QEAA@PEAE_J@Z@4HA ENDP ; `gsl::span<unsigned char,-1>::span<unsigned char,-1>'::`1'::dtor$2 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 $T4 = 80 this$ = 80 ptr$ = 88 count$ = 96 ?dtor$1@?0???0?$span@E$0?0@gsl@@QEAA@PEAE_J@Z@4HA PROC ; `gsl::span<unsigned char,-1>::span<unsigned char,-1>'::`1'::dtor$1 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 2 test eax, eax je SHORT $LN13@dtor$1 and DWORD PTR $T4[rbp], -3 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN13@dtor$1: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$1@?0???0?$span@E$0?0@gsl@@QEAA@PEAE_J@Z@4HA ENDP ; `gsl::span<unsigned char,-1>::span<unsigned char,-1>'::`1'::dtor$1 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT ?static_size_array_span@@YAXAEAUIDE_DRIVE_STATE@@@Z _TEXT SEGMENT $T1 = 32 $T2 = 40 $T3 = 80 Drive$ = 80 ?static_size_array_span@@YAXAEAUIDE_DRIVE_STATE@@@Z PROC ; static_size_array_span, COMDAT ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 96 $LN79: push rdi sub rsp, 64 ; 00000040H mov QWORD PTR $T1[rsp], -2 mov QWORD PTR [rsp+88], rbx mov QWORD PTR [rsp+96], rbp mov QWORD PTR [rsp+104], rsi mov rsi, rcx xor edi, edi mov DWORD PTR $T3[rsp], edi mov ebx, edi ; File c:\projects\gsl\include\gsl\span ; Line 395 lea rbp, OFFSET FLAT:??_7exception@std@@6B@ ; Line 509 cmp rbx, 6 $LN76@static_siz: jae SHORT $LN38@static_siz test dil, 2 je SHORT $LN66@static_siz and edi, -3 ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\vcruntime_exception.h ; Line 85 mov QWORD PTR $T2[rsp], rbp ; Line 86 lea rcx, QWORD PTR $T2[rsp+8] call __std_exception_destroy $LN66@static_siz: ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 101 mov BYTE PTR [rbx+rsi], 1 ; Line 99 inc rbx cmp rbx, 6 jl SHORT $LN76@static_siz ; Line 103 mov rbx, QWORD PTR [rsp+88] mov rbp, QWORD PTR [rsp+96] mov rsi, QWORD PTR [rsp+104] add rsp, 64 ; 00000040H pop rdi ret 0 $LN38@static_siz: ; File c:\projects\gsl\include\gsl\span ; Line 509 lea rdx, OFFSET FLAT:??_C@_0ED@HAMNHNCO@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T2[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 or edi, 2 mov DWORD PTR $T3[rsp], edi mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN75@static_siz: ?static_size_array_span@@YAXAEAUIDE_DRIVE_STATE@@@Z ENDP ; static_size_array_span _TEXT ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 80 Drive$ = 80 ?dtor$4@?0??static_size_array_span@@YAXAEAUIDE_DRIVE_STATE@@@Z@4HA PROC ; `static_size_array_span'::`1'::dtor$4 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T3[rbp] and eax, 2 test eax, eax je SHORT $LN41@dtor$4 and DWORD PTR $T3[rbp], -3 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN41@dtor$4: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$4@?0??static_size_array_span@@YAXAEAUIDE_DRIVE_STATE@@@Z@4HA ENDP ; `static_size_array_span'::`1'::dtor$4 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 80 Drive$ = 80 ?dtor$4@?0??static_size_array_span@@YAXAEAUIDE_DRIVE_STATE@@@Z@4HA PROC ; `static_size_array_span'::`1'::dtor$4 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T3[rbp] and eax, 2 test eax, eax je SHORT $LN41@dtor$4 and DWORD PTR $T3[rbp], -3 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN41@dtor$4: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$4@?0??static_size_array_span@@YAXAEAUIDE_DRIVE_STATE@@@Z@4HA ENDP ; `static_size_array_span'::`1'::dtor$4 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT ?data@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@G$0?0@gsl@@QEBAPEAGXZ _TEXT SEGMENT this$ = 8 ?data@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@G$0?0@gsl@@QEBAPEAGXZ PROC ; gsl::span<unsigned short,-1>::storage_type<gsl::details::extent_type<-1> >::data, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 602 mov rax, QWORD PTR [rcx+8] ret 0 ?data@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@G$0?0@gsl@@QEBAPEAGXZ ENDP ; gsl::span<unsigned short,-1>::storage_type<gsl::details::extent_type<-1> >::data _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?data@?$span@G$0?0@gsl@@QEBAPEAGXZ _TEXT SEGMENT this$ = 8 ?data@?$span@G$0?0@gsl@@QEBAPEAGXZ PROC ; gsl::span<unsigned short,-1>::data, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 515 mov rax, QWORD PTR [rcx+8] ret 0 ?data@?$span@G$0?0@gsl@@QEBAPEAGXZ ENDP ; gsl::span<unsigned short,-1>::data _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?size_bytes@?$span@G$0?0@gsl@@QEBA_JXZ _TEXT SEGMENT this$ = 8 ?size_bytes@?$span@G$0?0@gsl@@QEBA_JXZ PROC ; gsl::span<unsigned short,-1>::size_bytes, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 501 mov rax, QWORD PTR [rcx] add rax, rax ; Line 502 ret 0 ?size_bytes@?$span@G$0?0@gsl@@QEBA_JXZ ENDP ; gsl::span<unsigned short,-1>::size_bytes _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?size@?$span@G$0?0@gsl@@QEBA_JXZ _TEXT SEGMENT this$ = 8 ?size@?$span@G$0?0@gsl@@QEBA_JXZ PROC ; gsl::span<unsigned short,-1>::size, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 498 mov rax, QWORD PTR [rcx] ret 0 ?size@?$span@G$0?0@gsl@@QEBA_JXZ ENDP ; gsl::span<unsigned short,-1>::size _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?test_span_rangeiter@@YAXV?$span@H$0?0@gsl@@@Z _TEXT SEGMENT s$ = 8 ?test_span_rangeiter@@YAXV?$span@H$0?0@gsl@@@Z PROC ; test_span_rangeiter, COMDAT ; File c:\projects\gsl\tests\span_compile_only.cpp ; File c:\projects\gsl\include\gsl\span ; Line 602 mov rax, QWORD PTR [rcx+8] ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 70 xor edx, edx ; File c:\projects\gsl\include\gsl\span ; Line 542 mov rcx, QWORD PTR [rcx] lea r8, QWORD PTR [rcx*4] lea rcx, QWORD PTR [r8+rax] ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 70 shr r8, 2 cmp rax, rcx cmova r8, rdx test r8, r8 je SHORT $LN3@test_span_ cmp r8, 16 jb SHORT $LN25@test_span_ movdqa xmm1, XMMWORD PTR __xmm@00000001000000010000000100000001 mov rcx, r8 and rcx, -16 npad 6 $LL4@test_span_: ; Line 72 movdqu xmm0, XMMWORD PTR [rax] add rdx, 16 paddd xmm0, xmm1 movdqu XMMWORD PTR [rax], xmm0 movdqu xmm0, XMMWORD PTR [rax+16] paddd xmm0, xmm1 movdqu XMMWORD PTR [rax+16], xmm0 movdqu xmm0, XMMWORD PTR [rax+32] paddd xmm0, xmm1 movdqu XMMWORD PTR [rax+32], xmm0 movdqu xmm0, XMMWORD PTR [rax+48] paddd xmm0, xmm1 movdqu XMMWORD PTR [rax+48], xmm0 add rax, 64 ; 00000040H cmp rdx, rcx jne SHORT $LL4@test_span_ $LN25@test_span_: ; Line 70 cmp rdx, r8 je SHORT $LN3@test_span_ npad 8 $LL24@test_span_: ; Line 72 inc DWORD PTR [rax] lea rax, QWORD PTR [rax+4] inc rdx cmp rdx, r8 jne SHORT $LL24@test_span_ $LN3@test_span_: ; Line 74 ret 0 ?test_span_rangeiter@@YAXV?$span@H$0?0@gsl@@@Z ENDP ; test_span_rangeiter _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?_Seek_to@?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEAAXQEAH@Z _TEXT SEGMENT this$ = 8 p$ = 16 ?_Seek_to@?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEAAXQEAH@Z PROC ; gsl::details::span_iterator<gsl::span<int,-1>,0>::_Seek_to, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 294 mov rax, QWORD PTR [rcx] sub rdx, QWORD PTR [rax+8] sar rdx, 2 mov QWORD PTR [rcx+8], rdx ; Line 295 ret 0 ?_Seek_to@?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEAAXQEAH@Z ENDP ; gsl::details::span_iterator<gsl::span<int,-1>,0>::_Seek_to _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?_Unwrapped@?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEBAPEAHXZ _TEXT SEGMENT this$ = 8 ?_Unwrapped@?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEBAPEAHXZ PROC ; gsl::details::span_iterator<gsl::span<int,-1>,0>::_Unwrapped, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 280 mov rax, QWORD PTR [rcx] mov rdx, QWORD PTR [rcx+8] mov rcx, QWORD PTR [rax+8] lea rax, QWORD PTR [rcx+rdx*4] ; Line 281 ret 0 ?_Unwrapped@?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEBAPEAHXZ ENDP ; gsl::details::span_iterator<gsl::span<int,-1>,0>::_Unwrapped _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?_Verify_offset@?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEBAX_J@Z _TEXT SEGMENT $T1 = 32 $T2 = 40 this$ = 80 n$ = 88 ?_Verify_offset@?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEBAX_J@Z PROC ; gsl::details::span_iterator<gsl::span<int,-1>,0>::_Verify_offset, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 270 $LN21: sub rsp, 72 ; 00000048H mov QWORD PTR $T1[rsp], -2 ; Line 272 mov r8, QWORD PTR [rcx+8] add r8, rdx js SHORT $LN3@Verify_off ; Line 338 mov rax, QWORD PTR [rcx] ; Line 272 cmp r8, QWORD PTR [rax] jg SHORT $LN3@Verify_off ; Line 273 add rsp, 72 ; 00000048H ret 0 $LN3@Verify_off: ; Line 272 lea rdx, OFFSET FLAT:??_C@_0ED@LKBIKNJ@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T2[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> npad 1 $LN18@Verify_off: ?_Verify_offset@?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEBAX_J@Z ENDP ; gsl::details::span_iterator<gsl::span<int,-1>,0>::_Verify_offset _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?_Verify_range@details@gsl@@YAXV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@12@0@Z _TEXT SEGMENT $T1 = 32 $T2 = 40 lhs$ = 80 rhs$ = 88 ?_Verify_range@details@gsl@@YAXV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@12@0@Z PROC ; gsl::details::_Verify_range, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 264 $LN17: sub rsp, 72 ; 00000048H mov QWORD PTR $T1[rsp], -2 ; Line 265 mov rax, QWORD PTR [rdx] cmp QWORD PTR [rcx], rax jne SHORT $LN3@Verify_ran mov rax, QWORD PTR [rdx+8] cmp QWORD PTR [rcx+8], rax jg SHORT $LN3@Verify_ran ; Line 267 add rsp, 72 ; 00000048H ret 0 $LN3@Verify_ran: ; Line 265 lea rdx, OFFSET FLAT:??_C@_0ED@GOAPCFOK@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T2[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> npad 1 $LN14@Verify_ran: ?_Verify_range@details@gsl@@YAXV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@12@0@Z ENDP ; gsl::details::_Verify_range _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??9details@gsl@@YA_NV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@01@0@Z _TEXT SEGMENT $T1 = 0 $T2 = 16 lhs$ = 48 rhs$ = 56 ??9details@gsl@@YA_NV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@01@0@Z PROC ; gsl::details::operator!=, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 235 $LN9: sub rsp, 40 ; 00000028H ; Line 236 movups xmm1, XMMWORD PTR [rdx] movups xmm0, XMMWORD PTR [rcx] ; Line 231 movq rax, xmm1 ; Line 236 movaps XMMWORD PTR $T1[rsp], xmm1 ; Line 231 movq rcx, xmm0 ; Line 236 movaps XMMWORD PTR $T2[rsp], xmm0 ; Line 231 cmp rcx, rax jne SHORT $LN5@operator mov rax, QWORD PTR $T1[rsp+8] cmp QWORD PTR $T2[rsp+8], rax jne SHORT $LN5@operator ; Line 236 xor al, al ; Line 237 add rsp, 40 ; 00000028H ret 0 $LN5@operator: ; Line 236 mov al, 1 ; Line 237 add rsp, 40 ; 00000028H ret 0 ??9details@gsl@@YA_NV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@01@0@Z ENDP ; gsl::details::operator!= _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??8details@gsl@@YA_NV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@01@0@Z _TEXT SEGMENT lhs$ = 8 rhs$ = 16 ??8details@gsl@@YA_NV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@01@0@Z PROC ; gsl::details::operator==, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 231 mov rax, QWORD PTR [rdx] cmp QWORD PTR [rcx], rax jne SHORT $LN3@operator mov rax, QWORD PTR [rdx+8] cmp QWORD PTR [rcx+8], rax jne SHORT $LN3@operator mov al, 1 ; Line 232 ret 0 $LN3@operator: ; Line 231 xor al, al ; Line 232 ret 0 ??8details@gsl@@YA_NV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@01@0@Z ENDP ; gsl::details::operator== _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??E?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEAAAEAV012@XZ _TEXT SEGMENT $T1 = 32 $T2 = 40 $T3 = 80 this$ = 80 ??E?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEAAAEAV012@XZ PROC ; gsl::details::span_iterator<gsl::span<int,-1>,0>::operator++, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 168 $LN23: sub rsp, 72 ; 00000048H mov QWORD PTR $T1[rsp], -2 mov DWORD PTR $T3[rsp], 0 ; Line 169 mov rdx, QWORD PTR [rcx+8] test rdx, rdx js SHORT $LN3@operator ; Line 338 mov rax, QWORD PTR [rcx] ; Line 169 cmp rdx, QWORD PTR [rax] je SHORT $LN3@operator ; Line 170 lea rax, QWORD PTR [rdx+1] mov QWORD PTR [rcx+8], rax ; Line 171 mov rax, rcx ; Line 172 add rsp, 72 ; 00000048H ret 0 $LN3@operator: ; Line 169 lea rdx, OFFSET FLAT:??_C@_0ED@PLCCJGML@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T2[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T3[rsp], 1 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN20@operator: ??E?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEAAAEAV012@XZ ENDP ; gsl::details::span_iterator<gsl::span<int,-1>,0>::operator++ _TEXT ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 80 this$ = 80 ?dtor$0@?0???E?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEAAAEAV012@XZ@4HA PROC ; `gsl::details::span_iterator<gsl::span<int,-1>,0>::operator++'::`1'::dtor$0 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T3[rbp] and eax, 1 test eax, eax je SHORT $LN6@dtor$0 and DWORD PTR $T3[rbp], -2 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN6@dtor$0: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$0@?0???E?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEAAAEAV012@XZ@4HA ENDP ; `gsl::details::span_iterator<gsl::span<int,-1>,0>::operator++'::`1'::dtor$0 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 80 this$ = 80 ?dtor$0@?0???E?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEAAAEAV012@XZ@4HA PROC ; `gsl::details::span_iterator<gsl::span<int,-1>,0>::operator++'::`1'::dtor$0 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T3[rbp] and eax, 1 test eax, eax je SHORT $LN6@dtor$0 and DWORD PTR $T3[rbp], -2 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN6@dtor$0: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$0@?0???E?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEAAAEAV012@XZ@4HA ENDP ; `gsl::details::span_iterator<gsl::span<int,-1>,0>::operator++'::`1'::dtor$0 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT ??D?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEBAAEAHXZ _TEXT SEGMENT $T1 = 32 $T2 = 40 $T3 = 80 this$ = 80 ??D?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEBAAEAHXZ PROC ; gsl::details::span_iterator<gsl::span<int,-1>,0>::operator*, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 156 $LN27: sub rsp, 72 ; 00000048H mov QWORD PTR $T1[rsp], -2 mov DWORD PTR $T3[rsp], 0 ; Line 338 mov rax, QWORD PTR [rcx] ; Line 157 mov rdx, QWORD PTR [rcx+8] cmp rdx, QWORD PTR [rax] je SHORT $LN3@operator ; Line 158 mov rax, QWORD PTR [rax+8] lea rax, QWORD PTR [rax+rdx*4] ; Line 159 add rsp, 72 ; 00000048H ret 0 $LN3@operator: ; Line 157 lea rdx, OFFSET FLAT:??_C@_0ED@GHOHAFBM@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T2[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T3[rsp], 1 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN24@operator: ??D?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEBAAEAHXZ ENDP ; gsl::details::span_iterator<gsl::span<int,-1>,0>::operator* _TEXT ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 80 this$ = 80 ?dtor$0@?0???D?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEBAAEAHXZ@4HA PROC ; `gsl::details::span_iterator<gsl::span<int,-1>,0>::operator*'::`1'::dtor$0 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T3[rbp] and eax, 1 test eax, eax je SHORT $LN6@dtor$0 and DWORD PTR $T3[rbp], -2 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN6@dtor$0: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$0@?0???D?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEBAAEAHXZ@4HA ENDP ; `gsl::details::span_iterator<gsl::span<int,-1>,0>::operator*'::`1'::dtor$0 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 80 this$ = 80 ?dtor$0@?0???D?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEBAAEAHXZ@4HA PROC ; `gsl::details::span_iterator<gsl::span<int,-1>,0>::operator*'::`1'::dtor$0 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T3[rbp] and eax, 1 test eax, eax je SHORT $LN6@dtor$0 and DWORD PTR $T3[rbp], -2 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN6@dtor$0: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$0@?0???D?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEBAAEAHXZ@4HA ENDP ; `gsl::details::span_iterator<gsl::span<int,-1>,0>::operator*'::`1'::dtor$0 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT ??0?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEAA@PEBV?$span@H$0?0@2@_J@Z _TEXT SEGMENT this$ = 8 span$ = 16 idx$ = 24 ??0?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEAA@PEBV?$span@H$0?0@2@_J@Z PROC ; gsl::details::span_iterator<gsl::span<int,-1>,0>::span_iterator<gsl::span<int,-1>,0>, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 145 mov QWORD PTR [rcx], rdx ; Line 146 mov rax, rcx mov QWORD PTR [rcx+8], r8 ret 0 ??0?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@gsl@@QEAA@PEBV?$span@H$0?0@2@_J@Z ENDP ; gsl::details::span_iterator<gsl::span<int,-1>,0>::span_iterator<gsl::span<int,-1>,0> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?test_span_iter@@YAXV?$span@H$0?0@gsl@@@Z _TEXT SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 $T4 = 96 s$ = 96 ?test_span_iter@@YAXV?$span@H$0?0@gsl@@@Z PROC ; test_span_iter, COMDAT ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 60 $LN75: push rsi push rdi push r14 sub rsp, 64 ; 00000040H mov QWORD PTR $T1[rsp], -2 mov QWORD PTR [rsp+104], rbx mov QWORD PTR [rsp+112], rbp mov rbp, rcx xor ebx, ebx mov DWORD PTR $T4[rsp], ebx ; File c:\projects\gsl\include\gsl\span ; Line 145 mov edi, ebx mov esi, ebx lea r14, OFFSET FLAT:??_7exception@std@@6B@ $LL11@test_span_: ; Line 231 cmp rdi, QWORD PTR [rbp] je SHORT $LN3@test_span_ ; Line 157 test bl, 2 je SHORT $LN62@test_span_ and ebx, -3 ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\vcruntime_exception.h ; Line 85 mov QWORD PTR $T2[rsp], r14 ; Line 86 lea rcx, QWORD PTR $T2[rsp+8] call __std_exception_destroy $LN62@test_span_: ; File c:\projects\gsl\include\gsl\span ; Line 515 mov rax, QWORD PTR [rbp+8] ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 63 inc DWORD PTR [rsi+rax] ; File c:\projects\gsl\include\gsl\span ; Line 169 test rsi, rsi js SHORT $LN12@test_span_ cmp rdi, QWORD PTR [rbp] je SHORT $LN12@test_span_ test bl, 1 je SHORT $LN28@test_span_ and ebx, -2 ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\vcruntime_exception.h ; Line 85 mov QWORD PTR $T3[rsp], r14 ; Line 86 lea rcx, QWORD PTR $T3[rsp+8] call __std_exception_destroy $LN28@test_span_: ; File c:\projects\gsl\include\gsl\span ; Line 170 inc rdi add rsi, 4 jmp SHORT $LL11@test_span_ $LN3@test_span_: ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 65 mov rbx, QWORD PTR [rsp+104] mov rbp, QWORD PTR [rsp+112] add rsp, 64 ; 00000040H pop r14 pop rdi pop rsi ret 0 $LN12@test_span_: ; File c:\projects\gsl\include\gsl\span ; Line 169 lea rdx, OFFSET FLAT:??_C@_0ED@PLCCJGML@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T3[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 or ebx, 1 mov DWORD PTR $T4[rsp], ebx mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN72@test_span_: ?test_span_iter@@YAXV?$span@H$0?0@gsl@@@Z ENDP ; test_span_iter _TEXT ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 $T4 = 96 s$ = 96 ?dtor$0@?0??test_span_iter@@YAXV?$span@H$0?0@gsl@@@Z@4HA PROC ; `test_span_iter'::`1'::dtor$0 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 1 test eax, eax je SHORT $LN15@dtor$0 and DWORD PTR $T4[rbp], -2 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN15@dtor$0: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$0@?0??test_span_iter@@YAXV?$span@H$0?0@gsl@@@Z@4HA ENDP ; `test_span_iter'::`1'::dtor$0 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 $T4 = 96 s$ = 96 ?dtor$0@?0??test_span_iter@@YAXV?$span@H$0?0@gsl@@@Z@4HA PROC ; `test_span_iter'::`1'::dtor$0 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 1 test eax, eax je SHORT $LN15@dtor$0 and DWORD PTR $T4[rbp], -2 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN15@dtor$0: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$0@?0??test_span_iter@@YAXV?$span@H$0?0@gsl@@@Z@4HA ENDP ; `test_span_iter'::`1'::dtor$0 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT ?test_span_for@@YAXV?$span@H$0?0@gsl@@@Z _TEXT SEGMENT $T1 = 32 $T2 = 40 $T3 = 96 s$ = 96 ?test_span_for@@YAXV?$span@H$0?0@gsl@@@Z PROC ; test_span_for, COMDAT ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 51 $LN54: push rsi push rdi push r14 sub rsp, 64 ; 00000040H mov QWORD PTR $T1[rsp], -2 mov QWORD PTR [rsp+104], rbx mov QWORD PTR [rsp+112], rbp mov r14, rcx xor edi, edi mov DWORD PTR $T3[rsp], edi ; Line 52 mov ebx, edi ; File c:\projects\gsl\include\gsl\span ; Line 498 mov rsi, QWORD PTR [rcx] ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 52 test rsi, rsi jle SHORT $LN3@test_span_ ; File c:\projects\gsl\include\gsl\span ; Line 602 lea rbp, OFFSET FLAT:??_7exception@std@@6B@ ; Line 509 cmp rbx, rsi $LN51@test_span_: jae SHORT $LN12@test_span_ test dil, 1 je SHORT $LN40@test_span_ and edi, -2 ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\vcruntime_exception.h ; Line 85 mov QWORD PTR $T2[rsp], rbp ; Line 86 lea rcx, QWORD PTR $T2[rsp+8] call __std_exception_destroy $LN40@test_span_: ; File c:\projects\gsl\include\gsl\span ; Line 510 mov rax, QWORD PTR [r14+8] ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 54 inc DWORD PTR [rax+rbx*4] ; Line 52 inc rbx cmp rbx, rsi jl SHORT $LN51@test_span_ $LN3@test_span_: ; Line 56 mov rbx, QWORD PTR [rsp+104] mov rbp, QWORD PTR [rsp+112] add rsp, 64 ; 00000040H pop r14 pop rdi pop rsi ret 0 $LN12@test_span_: ; File c:\projects\gsl\include\gsl\span ; Line 509 lea rdx, OFFSET FLAT:??_C@_0ED@HAMNHNCO@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T2[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 or edi, 1 mov DWORD PTR $T3[rsp], edi mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN50@test_span_: ?test_span_for@@YAXV?$span@H$0?0@gsl@@@Z ENDP ; test_span_for _TEXT ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 96 s$ = 96 ?dtor$0@?0??test_span_for@@YAXV?$span@H$0?0@gsl@@@Z@4HA PROC ; `test_span_for'::`1'::dtor$0 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T3[rbp] and eax, 1 test eax, eax je SHORT $LN15@dtor$0 and DWORD PTR $T3[rbp], -2 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN15@dtor$0: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$0@?0??test_span_for@@YAXV?$span@H$0?0@gsl@@@Z@4HA ENDP ; `test_span_for'::`1'::dtor$0 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 96 s$ = 96 ?dtor$0@?0??test_span_for@@YAXV?$span@H$0?0@gsl@@@Z@4HA PROC ; `test_span_for'::`1'::dtor$0 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T3[rbp] and eax, 1 test eax, eax je SHORT $LN15@dtor$0 and DWORD PTR $T3[rbp], -2 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN15@dtor$0: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$0@?0??test_span_for@@YAXV?$span@H$0?0@gsl@@@Z@4HA ENDP ; `test_span_for'::`1'::dtor$0 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT ?make_subspan@?$span@H$0?0@gsl@@AEBA?AV12@_J0V?$subspan_selector@$0?0@12@@Z _TEXT SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 this$ = 80 __$ReturnUdt$ = 88 $T4 = 96 offset$ = 96 count$ = 104 __formal$ = 112 ?make_subspan@?$span@H$0?0@gsl@@AEBA?AV12@_J0V?$subspan_selector@$0?0@12@@Z PROC ; gsl::span<int,-1>::make_subspan, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 630 $LN54: push rbx sub rsp, 64 ; 00000040H mov QWORD PTR $T1[rsp], -2 mov r10, r8 mov rbx, rdx mov DWORD PTR $T4[rsp], 0 ; Line 631 test r8, r8 js SHORT $LN4@make_subsp ; Line 498 mov r8, QWORD PTR [rcx] ; Line 631 sub r8, r10 js SHORT $LN4@make_subsp ; Line 633 cmp r9, -1 jne SHORT $LN2@make_subsp mov rax, QWORD PTR [rcx+8] lea rdx, QWORD PTR [rax+r10*4] ; Line 637 mov rcx, rbx call ??0?$span@H$0?0@gsl@@AEAA@UKnownNotNull@01@_J@Z ; gsl::span<int,-1>::span<int,-1> mov rax, rbx add rsp, 64 ; 00000040H pop rbx ret 0 $LN2@make_subsp: ; Line 635 test r9, r9 js SHORT $LN6@make_subsp cmp r8, r9 jl SHORT $LN6@make_subsp ; Line 636 mov rax, QWORD PTR [rcx+8] lea rdx, QWORD PTR [rax+r10*4] mov r8, r9 ; Line 637 mov rcx, rbx call ??0?$span@H$0?0@gsl@@AEAA@UKnownNotNull@01@_J@Z ; gsl::span<int,-1>::span<int,-1> mov rax, rbx add rsp, 64 ; 00000040H pop rbx ret 0 $LN6@make_subsp: ; Line 635 lea rdx, OFFSET FLAT:??_C@_0ED@MMILCDJF@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T2[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T4[rsp], 2 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> npad 1 $LN4@make_subsp: ; Line 631 lea rdx, OFFSET FLAT:??_C@_0ED@KIOHOGJB@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T3[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T4[rsp], 1 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN50@make_subsp: ?make_subspan@?$span@H$0?0@gsl@@AEBA?AV12@_J0V?$subspan_selector@$0?0@12@@Z ENDP ; gsl::span<int,-1>::make_subspan _TEXT ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 this$ = 80 __$ReturnUdt$ = 88 $T4 = 96 offset$ = 96 count$ = 104 __formal$ = 112 ?dtor$0@?0??make_subspan@?$span@H$0?0@gsl@@AEBA?AV12@_J0V?$subspan_selector@$0?0@12@@Z@4HA PROC ; `gsl::span<int,-1>::make_subspan'::`1'::dtor$0 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 1 test eax, eax je SHORT $LN9@dtor$0 and DWORD PTR $T4[rbp], -2 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN9@dtor$0: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$0@?0??make_subspan@?$span@H$0?0@gsl@@AEBA?AV12@_J0V?$subspan_selector@$0?0@12@@Z@4HA ENDP ; `gsl::span<int,-1>::make_subspan'::`1'::dtor$0 text$x ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 this$ = 80 __$ReturnUdt$ = 88 $T4 = 96 offset$ = 96 count$ = 104 __formal$ = 112 ?dtor$1@?0??make_subspan@?$span@H$0?0@gsl@@AEBA?AV12@_J0V?$subspan_selector@$0?0@12@@Z@4HA PROC ; `gsl::span<int,-1>::make_subspan'::`1'::dtor$1 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 2 test eax, eax je SHORT $LN12@dtor$1 and DWORD PTR $T4[rbp], -3 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN12@dtor$1: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$1@?0??make_subspan@?$span@H$0?0@gsl@@AEBA?AV12@_J0V?$subspan_selector@$0?0@12@@Z@4HA ENDP ; `gsl::span<int,-1>::make_subspan'::`1'::dtor$1 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 this$ = 80 __$ReturnUdt$ = 88 $T4 = 96 offset$ = 96 count$ = 104 __formal$ = 112 ?dtor$0@?0??make_subspan@?$span@H$0?0@gsl@@AEBA?AV12@_J0V?$subspan_selector@$0?0@12@@Z@4HA PROC ; `gsl::span<int,-1>::make_subspan'::`1'::dtor$0 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 1 test eax, eax je SHORT $LN9@dtor$0 and DWORD PTR $T4[rbp], -2 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN9@dtor$0: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$0@?0??make_subspan@?$span@H$0?0@gsl@@AEBA?AV12@_J0V?$subspan_selector@$0?0@12@@Z@4HA ENDP ; `gsl::span<int,-1>::make_subspan'::`1'::dtor$0 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 this$ = 80 __$ReturnUdt$ = 88 $T4 = 96 offset$ = 96 count$ = 104 __formal$ = 112 ?dtor$1@?0??make_subspan@?$span@H$0?0@gsl@@AEBA?AV12@_J0V?$subspan_selector@$0?0@12@@Z@4HA PROC ; `gsl::span<int,-1>::make_subspan'::`1'::dtor$1 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 2 test eax, eax je SHORT $LN12@dtor$1 and DWORD PTR $T4[rbp], -3 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN12@dtor$1: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$1@?0??make_subspan@?$span@H$0?0@gsl@@AEBA?AV12@_J0V?$subspan_selector@$0?0@12@@Z@4HA ENDP ; `gsl::span<int,-1>::make_subspan'::`1'::dtor$1 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT ??0?$span@H$0?0@gsl@@AEAA@UKnownNotNull@01@_J@Z _TEXT SEGMENT $T1 = 32 $T2 = 40 $T3 = 80 this$ = 80 ptr$ = 88 count$ = 96 ??0?$span@H$0?0@gsl@@AEAA@UKnownNotNull@01@_J@Z PROC ; gsl::span<int,-1>::span<int,-1>, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 612 $LN40: sub rsp, 72 ; 00000048H mov QWORD PTR $T1[rsp], -2 mov DWORD PTR $T3[rsp], 0 ; Line 336 mov QWORD PTR [rcx], r8 test r8, r8 js SHORT $LN12@span ; Line 590 mov QWORD PTR [rcx+8], rdx ; Line 612 mov rax, rcx add rsp, 72 ; 00000048H ret 0 $LN12@span: ; Line 336 lea rdx, OFFSET FLAT:??_C@_0ED@NAHIIAGE@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T2[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T3[rsp], 2 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN37@span: ??0?$span@H$0?0@gsl@@AEAA@UKnownNotNull@01@_J@Z ENDP ; gsl::span<int,-1>::span<int,-1> _TEXT ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 80 this$ = 80 ptr$ = 88 count$ = 96 ?dtor$1@?0???0?$span@H$0?0@gsl@@AEAA@UKnownNotNull@01@_J@Z@4HA PROC ; `gsl::span<int,-1>::span<int,-1>'::`1'::dtor$1 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T3[rbp] and eax, 2 test eax, eax je SHORT $LN15@dtor$1 and DWORD PTR $T3[rbp], -3 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN15@dtor$1: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$1@?0???0?$span@H$0?0@gsl@@AEAA@UKnownNotNull@01@_J@Z@4HA ENDP ; `gsl::span<int,-1>::span<int,-1>'::`1'::dtor$1 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 80 this$ = 80 ptr$ = 88 count$ = 96 ?dtor$1@?0???0?$span@H$0?0@gsl@@AEAA@UKnownNotNull@01@_J@Z@4HA PROC ; `gsl::span<int,-1>::span<int,-1>'::`1'::dtor$1 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T3[rbp] and eax, 2 test eax, eax je SHORT $LN15@dtor$1 and DWORD PTR $T3[rbp], -3 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN15@dtor$1: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$1@?0???0?$span@H$0?0@gsl@@AEAA@UKnownNotNull@01@_J@Z@4HA ENDP ; `gsl::span<int,-1>::span<int,-1>'::`1'::dtor$1 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT ?data@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEBAPEAHXZ _TEXT SEGMENT this$ = 8 ?data@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEBAPEAHXZ PROC ; gsl::span<int,-1>::storage_type<gsl::details::extent_type<-1> >::data, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 602 mov rax, QWORD PTR [rcx+8] ret 0 ?data@?$storage_type@V?$extent_type@$0?0@details@gsl@@@?$span@H$0?0@gsl@@QEBAPEAHXZ ENDP ; gsl::span<int,-1>::storage_type<gsl::details::extent_type<-1> >::data _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?CheckRange@?$span@H$0?0@gsl@@CA_N_J0@Z _TEXT SEGMENT idx$ = 8 size$ = 16 ?CheckRange@?$span@H$0?0@gsl@@CA_N_J0@Z PROC ; gsl::span<int,-1>::CheckRange, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 565 cmp rcx, rdx setb al ; Line 571 ret 0 ?CheckRange@?$span@H$0?0@gsl@@CA_N_J0@Z ENDP ; gsl::span<int,-1>::CheckRange _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?_Unchecked_end@?$span@H$0?0@gsl@@QEBAPEAHXZ _TEXT SEGMENT this$ = 8 ?_Unchecked_end@?$span@H$0?0@gsl@@QEBAPEAHXZ PROC ; gsl::span<int,-1>::_Unchecked_end, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 542 mov rdx, QWORD PTR [rcx] mov rax, QWORD PTR [rcx+8] lea rax, QWORD PTR [rax+rdx*4] ; Line 543 ret 0 ?_Unchecked_end@?$span@H$0?0@gsl@@QEBAPEAHXZ ENDP ; gsl::span<int,-1>::_Unchecked_end _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?_Unchecked_begin@?$span@H$0?0@gsl@@QEBAPEAHXZ _TEXT SEGMENT this$ = 8 ?_Unchecked_begin@?$span@H$0?0@gsl@@QEBAPEAHXZ PROC ; gsl::span<int,-1>::_Unchecked_begin, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 538 mov rax, QWORD PTR [rcx+8] ret 0 ?_Unchecked_begin@?$span@H$0?0@gsl@@QEBAPEAHXZ ENDP ; gsl::span<int,-1>::_Unchecked_begin _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?end@?$span@H$0?0@gsl@@QEBA?AV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@2@XZ _TEXT SEGMENT this$ = 8 __$ReturnUdt$ = 16 ?end@?$span@H$0?0@gsl@@QEBA?AV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@2@XZ PROC ; gsl::span<int,-1>::end, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 145 mov rax, QWORD PTR [rcx] mov QWORD PTR [rdx+8], rax ; Line 519 mov rax, rdx ; Line 145 mov QWORD PTR [rdx], rcx ; Line 519 ret 0 ?end@?$span@H$0?0@gsl@@QEBA?AV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@2@XZ ENDP ; gsl::span<int,-1>::end _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?begin@?$span@H$0?0@gsl@@QEBA?AV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@2@XZ _TEXT SEGMENT this$ = 8 __$ReturnUdt$ = 16 ?begin@?$span@H$0?0@gsl@@QEBA?AV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@2@XZ PROC ; gsl::span<int,-1>::begin, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 145 mov QWORD PTR [rdx], rcx ; Line 518 mov rax, rdx ; Line 145 mov QWORD PTR [rdx+8], 0 ; Line 518 ret 0 ?begin@?$span@H$0?0@gsl@@QEBA?AV?$span_iterator@V?$span@H$0?0@gsl@@$0A@@details@2@XZ ENDP ; gsl::span<int,-1>::begin _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?data@?$span@H$0?0@gsl@@QEBAPEAHXZ _TEXT SEGMENT this$ = 8 ?data@?$span@H$0?0@gsl@@QEBAPEAHXZ PROC ; gsl::span<int,-1>::data, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 515 mov rax, QWORD PTR [rcx+8] ret 0 ?data@?$span@H$0?0@gsl@@QEBAPEAHXZ ENDP ; gsl::span<int,-1>::data _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??A?$span@H$0?0@gsl@@QEBAAEAH_J@Z _TEXT SEGMENT $T1 = 32 $T2 = 40 $T3 = 80 this$ = 80 idx$ = 88 ??A?$span@H$0?0@gsl@@QEBAAEAH_J@Z PROC ; gsl::span<int,-1>::operator[], COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 508 $LN39: sub rsp, 72 ; 00000048H mov QWORD PTR $T1[rsp], -2 mov DWORD PTR $T3[rsp], 0 ; Line 509 cmp rdx, QWORD PTR [rcx] jae SHORT $LN3@operator ; Line 510 mov rax, QWORD PTR [rcx+8] lea rax, QWORD PTR [rax+rdx*4] ; Line 511 add rsp, 72 ; 00000048H ret 0 $LN3@operator: ; Line 509 lea rdx, OFFSET FLAT:??_C@_0ED@HAMNHNCO@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T2[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T3[rsp], 1 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN36@operator: ??A?$span@H$0?0@gsl@@QEBAAEAH_J@Z ENDP ; gsl::span<int,-1>::operator[] _TEXT ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 80 this$ = 80 idx$ = 88 ?dtor$0@?0???A?$span@H$0?0@gsl@@QEBAAEAH_J@Z@4HA PROC ; `gsl::span<int,-1>::operator[]'::`1'::dtor$0 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T3[rbp] and eax, 1 test eax, eax je SHORT $LN6@dtor$0 and DWORD PTR $T3[rbp], -2 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN6@dtor$0: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$0@?0???A?$span@H$0?0@gsl@@QEBAAEAH_J@Z@4HA ENDP ; `gsl::span<int,-1>::operator[]'::`1'::dtor$0 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 80 this$ = 80 idx$ = 88 ?dtor$0@?0???A?$span@H$0?0@gsl@@QEBAAEAH_J@Z@4HA PROC ; `gsl::span<int,-1>::operator[]'::`1'::dtor$0 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T3[rbp] and eax, 1 test eax, eax je SHORT $LN6@dtor$0 and DWORD PTR $T3[rbp], -2 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN6@dtor$0: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$0@?0???A?$span@H$0?0@gsl@@QEBAAEAH_J@Z@4HA ENDP ; `gsl::span<int,-1>::operator[]'::`1'::dtor$0 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT ?size@?$span@H$0?0@gsl@@QEBA_JXZ _TEXT SEGMENT this$ = 8 ?size@?$span@H$0?0@gsl@@QEBA_JXZ PROC ; gsl::span<int,-1>::size, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 498 mov rax, QWORD PTR [rcx] ret 0 ?size@?$span@H$0?0@gsl@@QEBA_JXZ ENDP ; gsl::span<int,-1>::size _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?subspan@?$span@H$0?0@gsl@@QEBA?AV12@_J0@Z _TEXT SEGMENT this$ = 64 __$ReturnUdt$ = 72 offset$ = 80 count$ = 88 ?subspan@?$span@H$0?0@gsl@@QEBA?AV12@_J0@Z PROC ; gsl::span<int,-1>::subspan, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 493 $LN4: push rbx sub rsp, 48 ; 00000030H mov rbx, rdx ; Line 494 mov BYTE PTR [rsp+32], 0 call ?make_subspan@?$span@H$0?0@gsl@@AEBA?AV12@_J0V?$subspan_selector@$0?0@12@@Z ; gsl::span<int,-1>::make_subspan mov rax, rbx ; Line 495 add rsp, 48 ; 00000030H pop rbx ret 0 ?subspan@?$span@H$0?0@gsl@@QEBA?AV12@_J0@Z ENDP ; gsl::span<int,-1>::subspan _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?last@?$span@H$0?0@gsl@@QEBA?AV12@_J@Z _TEXT SEGMENT $T1 = 32 $T2 = 40 $T3 = 80 this$ = 80 __$ReturnUdt$ = 88 count$ = 96 ?last@?$span@H$0?0@gsl@@QEBA?AV12@_J@Z PROC ; gsl::span<int,-1>::last, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 487 $LN97: push rbx sub rsp, 64 ; 00000040H mov QWORD PTR $T1[rsp], -2 mov rbx, rdx mov DWORD PTR $T3[rsp], 0 ; Line 488 mov r9, QWORD PTR [rcx] sub r9, r8 ; Line 631 js SHORT $LN10@last test r8, r8 js SHORT $LN10@last ; Line 633 mov rax, QWORD PTR [rcx+8] lea rdx, QWORD PTR [rax+r9*4] mov rcx, rbx call ??0?$span@H$0?0@gsl@@AEAA@UKnownNotNull@01@_J@Z ; gsl::span<int,-1>::span<int,-1> ; Line 488 mov rax, rbx ; Line 489 add rsp, 64 ; 00000040H pop rbx ret 0 $LN10@last: ; Line 631 lea rdx, OFFSET FLAT:??_C@_0ED@KIOHOGJB@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T2[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T3[rsp], 1 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN94@last: ?last@?$span@H$0?0@gsl@@QEBA?AV12@_J@Z ENDP ; gsl::span<int,-1>::last _TEXT ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 80 this$ = 80 __$ReturnUdt$ = 88 count$ = 96 ?dtor$0@?0??last@?$span@H$0?0@gsl@@QEBA?AV12@_J@Z@4HA PROC ; `gsl::span<int,-1>::last'::`1'::dtor$0 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T3[rbp] and eax, 1 test eax, eax je SHORT $LN15@dtor$0 and DWORD PTR $T3[rbp], -2 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN15@dtor$0: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$0@?0??last@?$span@H$0?0@gsl@@QEBA?AV12@_J@Z@4HA ENDP ; `gsl::span<int,-1>::last'::`1'::dtor$0 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 80 this$ = 80 __$ReturnUdt$ = 88 count$ = 96 ?dtor$0@?0??last@?$span@H$0?0@gsl@@QEBA?AV12@_J@Z@4HA PROC ; `gsl::span<int,-1>::last'::`1'::dtor$0 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T3[rbp] and eax, 1 test eax, eax je SHORT $LN15@dtor$0 and DWORD PTR $T3[rbp], -2 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN15@dtor$0: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$0@?0??last@?$span@H$0?0@gsl@@QEBA?AV12@_J@Z@4HA ENDP ; `gsl::span<int,-1>::last'::`1'::dtor$0 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT ??0?$span@H$0?0@gsl@@QEAA@PEAH_J@Z _TEXT SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 $T4 = 80 this$ = 80 ptr$ = 88 count$ = 96 ??0?$span@H$0?0@gsl@@QEAA@PEAH_J@Z PROC ; gsl::span<int,-1>::span<int,-1>, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 386 $LN56: sub rsp, 72 ; 00000048H mov QWORD PTR $T1[rsp], -2 mov DWORD PTR $T4[rsp], 0 ; Line 336 mov QWORD PTR [rcx], r8 test r8, r8 js SHORT $LN17@span ; Line 596 mov QWORD PTR [rcx+8], rdx ; Line 599 test rdx, rdx jne SHORT $LN7@span test r8, r8 jne SHORT $LN54@span $LN7@span: ; Line 386 mov rax, rcx add rsp, 72 ; 00000048H ret 0 $LN54@span: ; Line 599 lea rdx, OFFSET FLAT:??_C@_0ED@HPBMEGKB@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T3[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T4[rsp], 2 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> npad 1 $LN17@span: ; Line 336 lea rdx, OFFSET FLAT:??_C@_0ED@NAHIIAGE@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T2[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T4[rsp], 4 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN52@span: ??0?$span@H$0?0@gsl@@QEAA@PEAH_J@Z ENDP ; gsl::span<int,-1>::span<int,-1> _TEXT ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 $T4 = 80 this$ = 80 ptr$ = 88 count$ = 96 ?dtor$2@?0???0?$span@H$0?0@gsl@@QEAA@PEAH_J@Z@4HA PROC ; `gsl::span<int,-1>::span<int,-1>'::`1'::dtor$2 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 4 test eax, eax je SHORT $LN20@dtor$2 and DWORD PTR $T4[rbp], -5 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN20@dtor$2: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$2@?0???0?$span@H$0?0@gsl@@QEAA@PEAH_J@Z@4HA ENDP ; `gsl::span<int,-1>::span<int,-1>'::`1'::dtor$2 text$x ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 $T4 = 80 this$ = 80 ptr$ = 88 count$ = 96 ?dtor$1@?0???0?$span@H$0?0@gsl@@QEAA@PEAH_J@Z@4HA PROC ; `gsl::span<int,-1>::span<int,-1>'::`1'::dtor$1 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 2 test eax, eax je SHORT $LN13@dtor$1 and DWORD PTR $T4[rbp], -3 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN13@dtor$1: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$1@?0???0?$span@H$0?0@gsl@@QEAA@PEAH_J@Z@4HA ENDP ; `gsl::span<int,-1>::span<int,-1>'::`1'::dtor$1 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 $T4 = 80 this$ = 80 ptr$ = 88 count$ = 96 ?dtor$2@?0???0?$span@H$0?0@gsl@@QEAA@PEAH_J@Z@4HA PROC ; `gsl::span<int,-1>::span<int,-1>'::`1'::dtor$2 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 4 test eax, eax je SHORT $LN20@dtor$2 and DWORD PTR $T4[rbp], -5 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN20@dtor$2: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$2@?0???0?$span@H$0?0@gsl@@QEAA@PEAH_J@Z@4HA ENDP ; `gsl::span<int,-1>::span<int,-1>'::`1'::dtor$2 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 40 $T4 = 80 this$ = 80 ptr$ = 88 count$ = 96 ?dtor$1@?0???0?$span@H$0?0@gsl@@QEAA@PEAH_J@Z@4HA PROC ; `gsl::span<int,-1>::span<int,-1>'::`1'::dtor$1 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T4[rbp] and eax, 2 test eax, eax je SHORT $LN13@dtor$1 and DWORD PTR $T4[rbp], -3 lea rcx, QWORD PTR $T3[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN13@dtor$1: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$1@?0???0?$span@H$0?0@gsl@@QEAA@PEAH_J@Z@4HA ENDP ; `gsl::span<int,-1>::span<int,-1>'::`1'::dtor$1 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT ?test_span_unoptimizable_rangecheck@@YAXV?$span@H$0?0@gsl@@H@Z _TEXT SEGMENT $T1 = 32 $T2 = 40 s$ = 96 $T3 = 104 len$ = 104 ?test_span_unoptimizable_rangecheck@@YAXV?$span@H$0?0@gsl@@H@Z PROC ; test_span_unoptimizable_rangecheck, COMDAT ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 41 $LN50: ; Line 42 test edx, edx jle $LN47@test_span_ push rdi push r14 push r15 sub rsp, 64 ; 00000040H mov QWORD PTR $T1[rsp], -2 mov QWORD PTR [rsp+96], rbx mov QWORD PTR [rsp+112], rbp mov QWORD PTR [rsp+120], rsi ; Line 41 mov r14, rcx xor edi, edi mov DWORD PTR $T3[rsp], edi ; Line 42 mov ebx, edi movsxd rbp, edx ; File c:\projects\gsl\include\gsl\span ; Line 338 mov rsi, QWORD PTR [rcx] ; Line 602 lea r15, OFFSET FLAT:??_7exception@std@@6B@ $LL4@test_span_: ; Line 509 cmp rbx, rsi jae SHORT $LN8@test_span_ test dil, 1 je SHORT $LN36@test_span_ and edi, -2 ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\vcruntime_exception.h ; Line 85 mov QWORD PTR $T2[rsp], r15 ; Line 86 lea rcx, QWORD PTR $T2[rsp+8] call __std_exception_destroy $LN36@test_span_: ; File c:\projects\gsl\include\gsl\span ; Line 510 mov rax, QWORD PTR [r14+8] ; File c:\projects\gsl\tests\span_compile_only.cpp ; Line 44 inc DWORD PTR [rax+rbx*4] ; Line 42 inc rbx cmp rbx, rbp jl SHORT $LL4@test_span_ ; Line 46 mov rbx, QWORD PTR [rsp+96] mov rbp, QWORD PTR [rsp+112] mov rsi, QWORD PTR [rsp+120] add rsp, 64 ; 00000040H pop r15 pop r14 pop rdi $LN47@test_span_: ret 0 $LN8@test_span_: ; File c:\projects\gsl\include\gsl\span ; Line 509 lea rdx, OFFSET FLAT:??_C@_0ED@HAMNHNCO@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T2[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 or edi, 1 mov DWORD PTR $T3[rsp], edi mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN46@test_span_: ?test_span_unoptimizable_rangecheck@@YAXV?$span@H$0?0@gsl@@H@Z ENDP ; test_span_unoptimizable_rangecheck _TEXT ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 s$ = 96 $T3 = 104 len$ = 104 ?dtor$0@?0??test_span_unoptimizable_rangecheck@@YAXV?$span@H$0?0@gsl@@H@Z@4HA PROC ; `test_span_unoptimizable_rangecheck'::`1'::dtor$0 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T3[rbp] and eax, 1 test eax, eax je SHORT $LN11@dtor$0 and DWORD PTR $T3[rbp], -2 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN11@dtor$0: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$0@?0??test_span_unoptimizable_rangecheck@@YAXV?$span@H$0?0@gsl@@H@Z@4HA ENDP ; `test_span_unoptimizable_rangecheck'::`1'::dtor$0 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 s$ = 96 $T3 = 104 len$ = 104 ?dtor$0@?0??test_span_unoptimizable_rangecheck@@YAXV?$span@H$0?0@gsl@@H@Z@4HA PROC ; `test_span_unoptimizable_rangecheck'::`1'::dtor$0 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T3[rbp] and eax, 1 test eax, eax je SHORT $LN11@dtor$0 and DWORD PTR $T3[rbp], -2 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN11@dtor$0: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$0@?0??test_span_unoptimizable_rangecheck@@YAXV?$span@H$0?0@gsl@@H@Z@4HA ENDP ; `test_span_unoptimizable_rangecheck'::`1'::dtor$0 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$narrow_cast@_KAEA_J@gsl@@YA_KAEA_J@Z _TEXT SEGMENT u$ = 8 ??$narrow_cast@_KAEA_J@gsl@@YA_KAEA_J@Z PROC ; gsl::narrow_cast<unsigned __int64,__int64 &>, COMDAT ; File c:\projects\gsl\include\gsl\gsl_util ; Line 100 mov rax, QWORD PTR [rcx] ; Line 101 ret 0 ??$narrow_cast@_KAEA_J@gsl@@YA_KAEA_J@Z ENDP ; gsl::narrow_cast<unsigned __int64,__int64 &> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z _TEXT SEGMENT $T1 = 32 exception$ = 80 ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z PROC ; gsl::details::throw_exception<gsl::fail_fast>, COMDAT ; File c:\projects\gsl\include\gsl\gsl_assert ; Line 143 $LN4: sub rsp, 72 ; 00000048H ; Line 144 call ??$forward@Ufail_fast@gsl@@@std@@YA$$QEAUfail_fast@gsl@@AEAU12@@Z ; std::forward<gsl::fail_fast> mov rdx, rax lea rcx, QWORD PTR $T1[rsp] call ??0fail_fast@gsl@@QEAA@$$QEAU01@@Z lea rdx, OFFSET FLAT:_TI3?AUfail_fast@gsl@@ lea rcx, QWORD PTR $T1[rsp] call _CxxThrowException int 3 $LN3@throw_exce: ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ENDP ; gsl::details::throw_exception<gsl::fail_fast> _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?size@?$extent_type@$0?0@details@gsl@@QEBA_JXZ _TEXT SEGMENT this$ = 8 ?size@?$extent_type@$0?0@details@gsl@@QEBA_JXZ PROC ; gsl::details::extent_type<-1>::size, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 338 mov rax, QWORD PTR [rcx] ret 0 ?size@?$extent_type@$0?0@details@gsl@@QEBA_JXZ ENDP ; gsl::details::extent_type<-1>::size _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??0?$extent_type@$0?0@details@gsl@@QEAA@_J@Z _TEXT SEGMENT $T1 = 32 $T2 = 40 $T3 = 80 this$ = 80 size$ = 88 ??0?$extent_type@$0?0@details@gsl@@QEAA@_J@Z PROC ; gsl::details::extent_type<-1>::extent_type<-1>, COMDAT ; File c:\projects\gsl\include\gsl\span ; Line 336 $LN19: sub rsp, 72 ; 00000048H mov QWORD PTR $T1[rsp], -2 mov DWORD PTR $T3[rsp], 0 mov QWORD PTR [rcx], rdx test rdx, rdx js SHORT $LN3@extent_typ mov rax, rcx add rsp, 72 ; 00000048H ret 0 $LN3@extent_typ: lea rdx, OFFSET FLAT:??_C@_0ED@NAHIIAGE@GSL?3?5Precondition?5failure?5at?5c?3@ lea rcx, QWORD PTR $T2[rsp] call ??0fail_fast@gsl@@QEAA@QEBD@Z ; gsl::fail_fast::fail_fast npad 1 mov DWORD PTR $T3[rsp], 1 mov rcx, rax call ??$throw_exception@Ufail_fast@gsl@@@details@gsl@@YAX$$QEAUfail_fast@1@@Z ; gsl::details::throw_exception<gsl::fail_fast> int 3 $LN16@extent_typ: ??0?$extent_type@$0?0@details@gsl@@QEAA@_J@Z ENDP ; gsl::details::extent_type<-1>::extent_type<-1> _TEXT ENDS ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 80 this$ = 80 size$ = 88 ?dtor$0@?0???0?$extent_type@$0?0@details@gsl@@QEAA@_J@Z@4HA PROC ; `gsl::details::extent_type<-1>::extent_type<-1>'::`1'::dtor$0 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T3[rbp] and eax, 1 test eax, eax je SHORT $LN6@dtor$0 and DWORD PTR $T3[rbp], -2 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN6@dtor$0: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$0@?0???0?$extent_type@$0?0@details@gsl@@QEAA@_J@Z@4HA ENDP ; `gsl::details::extent_type<-1>::extent_type<-1>'::`1'::dtor$0 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT text$x text$x SEGMENT $T1 = 32 $T2 = 40 $T3 = 80 this$ = 80 size$ = 88 ?dtor$0@?0???0?$extent_type@$0?0@details@gsl@@QEAA@_J@Z@4HA PROC ; `gsl::details::extent_type<-1>::extent_type<-1>'::`1'::dtor$0 push rbp sub rsp, 32 ; 00000020H mov rbp, rdx mov eax, DWORD PTR $T3[rbp] and eax, 1 test eax, eax je SHORT $LN6@dtor$0 and DWORD PTR $T3[rbp], -2 lea rcx, QWORD PTR $T2[rbp] call ??1fail_fast@gsl@@UEAA@XZ $LN6@dtor$0: add rsp, 32 ; 00000020H pop rbp ret 0 ?dtor$0@?0???0?$extent_type@$0?0@details@gsl@@QEAA@_J@Z@4HA ENDP ; `gsl::details::extent_type<-1>::extent_type<-1>'::`1'::dtor$0 text$x ENDS ; Function compile flags: /Ogtpy ; COMDAT ??_Gnarrowing_error@gsl@@UEAAPEAXI@Z _TEXT SEGMENT this$ = 48 __flags$ = 56 ??_Gnarrowing_error@gsl@@UEAAPEAXI@Z PROC ; gsl::narrowing_error::`scalar deleting destructor', COMDAT $LN12: mov QWORD PTR [rsp+8], rbx push rdi sub rsp, 32 ; 00000020H ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\vcruntime_exception.h ; Line 85 lea rax, OFFSET FLAT:??_7exception@std@@6B@ mov rdi, rcx mov QWORD PTR [rcx], rax mov ebx, edx ; Line 86 add rcx, 8 call __std_exception_destroy test bl, 1 je SHORT $LN9@scalar mov edx, 24 mov rcx, rdi call ??3@YAXPEAX_K@Z ; operator delete $LN9@scalar: mov rbx, QWORD PTR [rsp+48] mov rax, rdi add rsp, 32 ; 00000020H pop rdi ret 0 ??_Gnarrowing_error@gsl@@UEAAPEAXI@Z ENDP ; gsl::narrowing_error::`scalar deleting destructor' _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??0narrowing_error@gsl@@QEAA@$$QEAU01@@Z _TEXT SEGMENT this$ = 48 __that$ = 56 ??0narrowing_error@gsl@@QEAA@$$QEAU01@@Z PROC ; gsl::narrowing_error::narrowing_error, COMDAT $LN7: push rbx sub rsp, 32 ; 00000020H mov rbx, rcx mov rax, rdx ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\vcruntime_exception.h ; Line 67 lea rdx, QWORD PTR [rbx+8] ; Line 68 lea rcx, OFFSET FLAT:??_7exception@std@@6B@ mov QWORD PTR [rbx], rcx xor ecx, ecx mov QWORD PTR [rdx], rcx mov QWORD PTR [rdx+8], rcx ; Line 69 lea rcx, QWORD PTR [rax+8] call __std_exception_copy lea rax, OFFSET FLAT:??_7narrowing_error@gsl@@6B@ mov QWORD PTR [rbx], rax mov rax, rbx add rsp, 32 ; 00000020H pop rbx ret 0 ??0narrowing_error@gsl@@QEAA@$$QEAU01@@Z ENDP ; gsl::narrowing_error::narrowing_error _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??0narrowing_error@gsl@@QEAA@AEBU01@@Z _TEXT SEGMENT this$ = 48 __that$ = 56 ??0narrowing_error@gsl@@QEAA@AEBU01@@Z PROC ; gsl::narrowing_error::narrowing_error, COMDAT $LN7: push rbx sub rsp, 32 ; 00000020H mov rbx, rcx mov rax, rdx ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\vcruntime_exception.h ; Line 67 lea rdx, QWORD PTR [rbx+8] ; Line 68 lea rcx, OFFSET FLAT:??_7exception@std@@6B@ mov QWORD PTR [rbx], rcx xor ecx, ecx mov QWORD PTR [rdx], rcx mov QWORD PTR [rdx+8], rcx ; Line 69 lea rcx, QWORD PTR [rax+8] call __std_exception_copy lea rax, OFFSET FLAT:??_7narrowing_error@gsl@@6B@ mov QWORD PTR [rbx], rax mov rax, rbx add rsp, 32 ; 00000020H pop rbx ret 0 ??0narrowing_error@gsl@@QEAA@AEBU01@@Z ENDP ; gsl::narrowing_error::narrowing_error _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??1narrowing_error@gsl@@UEAA@XZ _TEXT SEGMENT this$ = 8 ??1narrowing_error@gsl@@UEAA@XZ PROC ; gsl::narrowing_error::~narrowing_error, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\vcruntime_exception.h ; Line 85 lea rax, OFFSET FLAT:??_7exception@std@@6B@ mov QWORD PTR [rcx], rax ; Line 86 add rcx, 8 jmp __std_exception_destroy ??1narrowing_error@gsl@@UEAA@XZ ENDP ; gsl::narrowing_error::~narrowing_error _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??0narrowing_error@gsl@@QEAA@XZ _TEXT SEGMENT this$ = 8 ??0narrowing_error@gsl@@QEAA@XZ PROC ; gsl::narrowing_error::narrowing_error, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\vcruntime_exception.h ; Line 49 xor eax, eax mov QWORD PTR [rcx+8], rax mov QWORD PTR [rcx+16], rax lea rax, OFFSET FLAT:??_7narrowing_error@gsl@@6B@ mov QWORD PTR [rcx], rax mov rax, rcx ret 0 ??0narrowing_error@gsl@@QEAA@XZ ENDP ; gsl::narrowing_error::narrowing_error _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??_Gfail_fast@gsl@@UEAAPEAXI@Z _TEXT SEGMENT this$ = 48 __flags$ = 56 ??_Gfail_fast@gsl@@UEAAPEAXI@Z PROC ; gsl::fail_fast::`scalar deleting destructor', COMDAT $LN15: mov QWORD PTR [rsp+8], rbx push rdi sub rsp, 32 ; 00000020H ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\vcruntime_exception.h ; Line 85 lea rax, OFFSET FLAT:??_7exception@std@@6B@ mov rdi, rcx mov QWORD PTR [rcx], rax mov ebx, edx ; Line 86 add rcx, 8 call __std_exception_destroy test bl, 1 je SHORT $LN12@scalar mov edx, 24 mov rcx, rdi call ??3@YAXPEAX_K@Z ; operator delete $LN12@scalar: mov rbx, QWORD PTR [rsp+48] mov rax, rdi add rsp, 32 ; 00000020H pop rdi ret 0 ??_Gfail_fast@gsl@@UEAAPEAXI@Z ENDP ; gsl::fail_fast::`scalar deleting destructor' _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??0fail_fast@gsl@@QEAA@$$QEAU01@@Z _TEXT SEGMENT this$ = 48 __that$ = 56 ??0fail_fast@gsl@@QEAA@$$QEAU01@@Z PROC ; gsl::fail_fast::fail_fast, COMDAT $LN10: push rbx sub rsp, 32 ; 00000020H mov rbx, rcx mov rax, rdx ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\vcruntime_exception.h ; Line 67 lea rdx, QWORD PTR [rbx+8] ; Line 68 lea rcx, OFFSET FLAT:??_7exception@std@@6B@ mov QWORD PTR [rbx], rcx xor ecx, ecx mov QWORD PTR [rdx], rcx mov QWORD PTR [rdx+8], rcx ; Line 69 lea rcx, QWORD PTR [rax+8] call __std_exception_copy lea rax, OFFSET FLAT:??_7fail_fast@gsl@@6B@ mov QWORD PTR [rbx], rax mov rax, rbx add rsp, 32 ; 00000020H pop rbx ret 0 ??0fail_fast@gsl@@QEAA@$$QEAU01@@Z ENDP ; gsl::fail_fast::fail_fast _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??0fail_fast@gsl@@QEAA@AEBU01@@Z _TEXT SEGMENT this$ = 48 __that$ = 56 ??0fail_fast@gsl@@QEAA@AEBU01@@Z PROC ; gsl::fail_fast::fail_fast, COMDAT $LN10: push rbx sub rsp, 32 ; 00000020H mov rbx, rcx mov rax, rdx ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\vcruntime_exception.h ; Line 67 lea rdx, QWORD PTR [rbx+8] ; Line 68 lea rcx, OFFSET FLAT:??_7exception@std@@6B@ mov QWORD PTR [rbx], rcx xor ecx, ecx mov QWORD PTR [rdx], rcx mov QWORD PTR [rdx+8], rcx ; Line 69 lea rcx, QWORD PTR [rax+8] call __std_exception_copy lea rax, OFFSET FLAT:??_7fail_fast@gsl@@6B@ mov QWORD PTR [rbx], rax mov rax, rbx add rsp, 32 ; 00000020H pop rbx ret 0 ??0fail_fast@gsl@@QEAA@AEBU01@@Z ENDP ; gsl::fail_fast::fail_fast _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??1fail_fast@gsl@@UEAA@XZ _TEXT SEGMENT this$ = 8 ??1fail_fast@gsl@@UEAA@XZ PROC ; gsl::fail_fast::~fail_fast, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\vcruntime_exception.h ; Line 85 lea rax, OFFSET FLAT:??_7exception@std@@6B@ mov QWORD PTR [rcx], rax ; Line 86 add rcx, 8 jmp __std_exception_destroy ??1fail_fast@gsl@@UEAA@XZ ENDP ; gsl::fail_fast::~fail_fast _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??0fail_fast@gsl@@QEAA@QEBD@Z _TEXT SEGMENT _InitData$1 = 32 this$ = 64 message$ = 72 ??0fail_fast@gsl@@QEAA@QEBD@Z PROC ; gsl::fail_fast::fail_fast, COMDAT ; File c:\projects\gsl\include\gsl\gsl_assert ; Line 99 $LN10: push rbx sub rsp, 48 ; 00000030H mov rbx, rcx ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\vcruntime_exception.h ; Line 56 mov BYTE PTR _InitData$1[rsp+8], 1 ; File c:\projects\gsl\include\gsl\gsl_assert ; Line 99 mov rax, rdx ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\vcruntime_exception.h ; Line 55 lea rcx, OFFSET FLAT:??_7exception@std@@6B@ lea rdx, QWORD PTR [rbx+8] ; Line 56 mov QWORD PTR _InitData$1[rsp], rax mov QWORD PTR [rbx], rcx xor ecx, ecx mov QWORD PTR [rdx], rcx mov QWORD PTR [rdx+8], rcx ; Line 57 lea rcx, QWORD PTR _InitData$1[rsp] call __std_exception_copy ; File c:\projects\gsl\include\gsl\gsl_assert ; Line 99 lea rax, OFFSET FLAT:??_7fail_fast@gsl@@6B@ mov QWORD PTR [rbx], rax mov rax, rbx add rsp, 48 ; 00000030H pop rbx ret 0 ??0fail_fast@gsl@@QEAA@QEBD@Z ENDP ; gsl::fail_fast::fail_fast _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??_Glogic_error@std@@UEAAPEAXI@Z _TEXT SEGMENT this$ = 48 __flags$ = 56 ??_Glogic_error@std@@UEAAPEAXI@Z PROC ; std::logic_error::`scalar deleting destructor', COMDAT $LN12: mov QWORD PTR [rsp+8], rbx push rdi sub rsp, 32 ; 00000020H ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\vcruntime_exception.h ; Line 85 lea rax, OFFSET FLAT:??_7exception@std@@6B@ mov rdi, rcx mov QWORD PTR [rcx], rax mov ebx, edx ; Line 86 add rcx, 8 call __std_exception_destroy test bl, 1 je SHORT $LN9@scalar mov edx, 24 mov rcx, rdi call ??3@YAXPEAX_K@Z ; operator delete $LN9@scalar: mov rbx, QWORD PTR [rsp+48] mov rax, rdi add rsp, 32 ; 00000020H pop rdi ret 0 ??_Glogic_error@std@@UEAAPEAXI@Z ENDP ; std::logic_error::`scalar deleting destructor' _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??0logic_error@std@@QEAA@$$QEAV01@@Z _TEXT SEGMENT this$ = 48 __that$ = 56 ??0logic_error@std@@QEAA@$$QEAV01@@Z PROC ; std::logic_error::logic_error, COMDAT $LN7: push rbx sub rsp, 32 ; 00000020H mov rbx, rcx mov rax, rdx ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\vcruntime_exception.h ; Line 67 lea rdx, QWORD PTR [rbx+8] ; Line 68 lea rcx, OFFSET FLAT:??_7exception@std@@6B@ mov QWORD PTR [rbx], rcx xor ecx, ecx mov QWORD PTR [rdx], rcx mov QWORD PTR [rdx+8], rcx ; Line 69 lea rcx, QWORD PTR [rax+8] call __std_exception_copy lea rax, OFFSET FLAT:??_7logic_error@std@@6B@ mov QWORD PTR [rbx], rax mov rax, rbx add rsp, 32 ; 00000020H pop rbx ret 0 ??0logic_error@std@@QEAA@$$QEAV01@@Z ENDP ; std::logic_error::logic_error _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??0logic_error@std@@QEAA@AEBV01@@Z _TEXT SEGMENT this$ = 48 __that$ = 56 ??0logic_error@std@@QEAA@AEBV01@@Z PROC ; std::logic_error::logic_error, COMDAT $LN7: push rbx sub rsp, 32 ; 00000020H mov rbx, rcx mov rax, rdx ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\vcruntime_exception.h ; Line 67 lea rdx, QWORD PTR [rbx+8] ; Line 68 lea rcx, OFFSET FLAT:??_7exception@std@@6B@ mov QWORD PTR [rbx], rcx xor ecx, ecx mov QWORD PTR [rdx], rcx mov QWORD PTR [rdx+8], rcx ; Line 69 lea rcx, QWORD PTR [rax+8] call __std_exception_copy lea rax, OFFSET FLAT:??_7logic_error@std@@6B@ mov QWORD PTR [rbx], rax mov rax, rbx add rsp, 32 ; 00000020H pop rbx ret 0 ??0logic_error@std@@QEAA@AEBV01@@Z ENDP ; std::logic_error::logic_error _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??1logic_error@std@@UEAA@XZ _TEXT SEGMENT this$ = 8 ??1logic_error@std@@UEAA@XZ PROC ; std::logic_error::~logic_error, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\vcruntime_exception.h ; Line 85 lea rax, OFFSET FLAT:??_7exception@std@@6B@ mov QWORD PTR [rcx], rax ; Line 86 add rcx, 8 jmp __std_exception_destroy ??1logic_error@std@@UEAA@XZ ENDP ; std::logic_error::~logic_error _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??0logic_error@std@@QEAA@PEBD@Z _TEXT SEGMENT _InitData$1 = 32 this$ = 64 _Message$ = 72 ??0logic_error@std@@QEAA@PEBD@Z PROC ; std::logic_error::logic_error, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\stdexcept ; Line 30 $LN8: push rbx sub rsp, 48 ; 00000030H mov rbx, rcx ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\vcruntime_exception.h ; Line 56 mov BYTE PTR _InitData$1[rsp+8], 1 ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\stdexcept ; Line 30 mov rax, rdx ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\vcruntime_exception.h ; Line 55 lea rcx, OFFSET FLAT:??_7exception@std@@6B@ lea rdx, QWORD PTR [rbx+8] ; Line 56 mov QWORD PTR _InitData$1[rsp], rax mov QWORD PTR [rbx], rcx xor ecx, ecx mov QWORD PTR [rdx], rcx mov QWORD PTR [rdx+8], rcx ; Line 57 lea rcx, QWORD PTR _InitData$1[rsp] call __std_exception_copy ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\stdexcept ; Line 30 lea rax, OFFSET FLAT:??_7logic_error@std@@6B@ mov QWORD PTR [rbx], rax ; Line 31 mov rax, rbx add rsp, 48 ; 00000030H pop rbx ret 0 ??0logic_error@std@@QEAA@PEBD@Z ENDP ; std::logic_error::logic_error _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??_Gexception@std@@UEAAPEAXI@Z _TEXT SEGMENT this$ = 48 __flags$ = 56 ??_Gexception@std@@UEAAPEAXI@Z PROC ; std::exception::`scalar deleting destructor', COMDAT $LN9: mov QWORD PTR [rsp+8], rbx push rdi sub rsp, 32 ; 00000020H ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\vcruntime_exception.h ; Line 85 lea rax, OFFSET FLAT:??_7exception@std@@6B@ mov rdi, rcx mov QWORD PTR [rcx], rax mov ebx, edx ; Line 86 add rcx, 8 call __std_exception_destroy test bl, 1 je SHORT $LN6@scalar mov edx, 24 mov rcx, rdi call ??3@YAXPEAX_K@Z ; operator delete $LN6@scalar: mov rbx, QWORD PTR [rsp+48] mov rax, rdi add rsp, 32 ; 00000020H pop rdi ret 0 ??_Gexception@std@@UEAAPEAXI@Z ENDP ; std::exception::`scalar deleting destructor' _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ?what@exception@std@@UEBAPEBDXZ _TEXT SEGMENT this$ = 8 ?what@exception@std@@UEBAPEBDXZ PROC ; std::exception::what, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\vcruntime_exception.h ; Line 91 mov rdx, QWORD PTR [rcx+8] lea rax, OFFSET FLAT:??_C@_0BC@EOODALEL@Unknown?5exception@ test rdx, rdx cmovne rax, rdx ; Line 92 ret 0 ?what@exception@std@@UEBAPEBDXZ ENDP ; std::exception::what _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??1exception@std@@UEAA@XZ _TEXT SEGMENT this$ = 8 ??1exception@std@@UEAA@XZ PROC ; std::exception::~exception, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\vcruntime_exception.h ; Line 85 lea rax, OFFSET FLAT:??_7exception@std@@6B@ mov QWORD PTR [rcx], rax ; Line 86 add rcx, 8 jmp __std_exception_destroy ??1exception@std@@UEAA@XZ ENDP ; std::exception::~exception _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??0exception@std@@QEAA@AEBV01@@Z _TEXT SEGMENT this$ = 48 _Other$ = 56 ??0exception@std@@QEAA@AEBV01@@Z PROC ; std::exception::exception, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\vcruntime_exception.h ; Line 68 $LN5: push rbx sub rsp, 32 ; 00000020H mov rbx, rcx mov rax, rdx lea rdx, QWORD PTR [rbx+8] lea rcx, OFFSET FLAT:??_7exception@std@@6B@ mov QWORD PTR [rbx], rcx xor ecx, ecx mov QWORD PTR [rdx], rcx mov QWORD PTR [rdx+8], rcx ; Line 69 lea rcx, QWORD PTR [rax+8] call __std_exception_copy ; Line 70 mov rax, rbx add rsp, 32 ; 00000020H pop rbx ret 0 ??0exception@std@@QEAA@AEBV01@@Z ENDP ; std::exception::exception _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??0exception@std@@QEAA@QEBD@Z _TEXT SEGMENT _InitData$ = 32 this$ = 64 _Message$ = 72 ??0exception@std@@QEAA@QEBD@Z PROC ; std::exception::exception, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\vcruntime_exception.h ; Line 55 $LN5: push rbx sub rsp, 48 ; 00000030H mov rbx, rcx ; Line 56 mov BYTE PTR _InitData$[rsp+8], 1 mov rax, rdx lea rcx, OFFSET FLAT:??_7exception@std@@6B@ lea rdx, QWORD PTR [rbx+8] mov QWORD PTR _InitData$[rsp], rax mov QWORD PTR [rbx], rcx xor ecx, ecx mov QWORD PTR [rdx], rcx mov QWORD PTR [rdx+8], rcx ; Line 57 lea rcx, QWORD PTR _InitData$[rsp] call __std_exception_copy ; Line 58 mov rax, rbx add rsp, 48 ; 00000030H pop rbx ret 0 ??0exception@std@@QEAA@QEBD@Z ENDP ; std::exception::exception _TEXT ENDS ; Function compile flags: /Ogtpy ; COMDAT ??0exception@std@@QEAA@XZ _TEXT SEGMENT this$ = 8 ??0exception@std@@QEAA@XZ PROC ; std::exception::exception, COMDAT ; File c:\program files (x86)\microsoft visual studio\2017\community\vc\tools\msvc\14.16.27023\include\vcruntime_exception.h ; Line 50 lea rax, OFFSET FLAT:??_7exception@std@@6B@ mov QWORD PTR [rcx], rax xor eax, eax mov QWORD PTR [rcx+8], rax mov QWORD PTR [rcx+16], rax ; Line 51 mov rax, rcx ret 0 ??0exception@std@@QEAA@XZ ENDP ; std::exception::exception _TEXT ENDS END
PongPro.asm
ShakedAvi/Pong-in-TASM-Assembly-8086
0
82126
<gh_stars>0 clearScreen proc mov ax, 0600h ;06 TO SCROLL & 00 FOR FULLJ SCREEN mov cx, 0000h ;STARTING COORDINATES mov dx, 184Fh ;ENDING COORDINATES int 10h ret clearScreen endp startPrint proc mov ah, 0 mov al, 2 int 10h push seg startMsg pop ds mov dx, offset startMsg mov ah, 9h int 21h mov ah, 1 ; Wait for keyboard input int 21h ret startPrint endp drawPaddle proc push bp mov bp, sp mov si, [paddleLen] mov cx,[xCoor] mov dx,[yCoor] mov al,[paddleColor] printPaddleX: ; Print dot mov bh,0h mov ah,0ch int 10h inc dx dec si cmp si, 0 jne printPaddleX mov si, [paddleLen] dec dx dec cx printPaddleY: ; Print dot mov bh,0h mov ah,0ch int 10h dec dx dec si cmp si, 0 jne printPaddleY pop bp ret 4 drawPaddle endp drawBall proc push bp mov bp, sp mov si, 3 mov cx,[xCoor] mov dx,[yCoor] mov al,[paddleColor] printBallX: ; Print dot mov bh,0h mov ah,0ch int 10h inc cx dec si cmp si, 0 jne printBallX mov si, 3 inc dx dec cx printBallY: ; Print dot mov bh,0h mov ah,0ch int 10h dec cx dec si cmp si, 0 jne printBallY mov si, 3 inc dx add cx, 3 printBallZ: ; Print dot mov bh,0h mov ah,0ch int 10h dec cx dec si cmp si, 0 jne printBallZ pop bp ret 4 drawBall endp waitMilliseconds proc readClockQuarter: mov ax, 40h mov es, ax mov ax, [Clock] FirstTickQuarter: cmp ax, [Clock] je FirstTickQuarter ; count 55/1000 sec mov cx, 1; 1x0.055sec = ~55/1000 sec DelayLoopQuarter: mov ax, [Clock] TickQuarter: cmp ax, [Clock] je TickQuarter loop DelayLoopQuarter ret waitMilliseconds endp waitHalfASecond proc readClock: mov ax, 40h mov es, ax mov ax, [Clock] FirstTick: cmp ax, [Clock] je FirstTick ; count 1/2 sec mov cx, 9 ; 9x0.055sec = ~1/2 sec DelayLoop: mov ax, [Clock] Tick: cmp ax, [Clock] je Tick loop DelayLoop ret waitHalfASecond endp printScore proc push bp mov bp, sp mov ah, 0 mov al, 2 int 10h push seg tabbing pop ds mov dx, offset tabbing mov ah, 9h int 21h mov dl, firstScore add dl, 30h mov ah, 2 int 21h mov dl, '-' mov ah, 2 int 21h mov dl, secondScore add dl, 30h mov ah, 2 int 21h call waitHalfASecond call waitHalfASecond call waitHalfASecond call waitHalfASecond call waitHalfASecond call waitHalfASecond mov ax, 13h ; Graphic Mode Set int 10h ; BIOS Graphic Mode Interrupt pop bp ret 4 printScore endp
vm_check/branching/0_jmp.asm
skiff-vm/skiff
0
177811
<filename>vm_check/branching/0_jmp.asm .init main .code leave: mov i0 @0 exit main: mov i0 @99 jmp leave exit
3-mid/impact/source/2d/dynamics/impact-d2-world.ads
charlie5/lace
20
15312
with impact.d2.Collision, impact.d2.contact.Manager, impact.d2.world_Callbacks, impact.d2.Solid, impact.d2.Joint, impact.d2.Math; package impact.d2.World -- -- The world class manages all physics entities, dynamic simulation, -- and asynchronous queries. The world also contains efficient memory -- management facilities. -- -- is use impact.d2.Math; type b2World is tagged private; --------- -- Forge function to_b2World (gravity : in b2Vec2) return b2World; -- -- Construct a world object. -- -- 'gravity' the world gravity vector. procedure destruct (Self : in out b2World); -- -- Destruct the world. All physics entities are destroyed and all heap memory is released. -------------- -- Attributes -- procedure SetDestructionListener (Self : in out b2World; listener : access world_callbacks.b2DestructionListener'Class); -- -- Register a destruction listener. The listener is owned by you and must -- remain in scope. procedure SetContactFilter (Self : in out b2World; filter : access world_callbacks.b2ContactFilter'Class); -- -- Register a contact filter to provide specific control over collision. -- Otherwise the default filter is used (b2_defaultFilter). The listener is -- owned by you and must remain in scope. procedure SetContactListener (Self : in out b2World; listener : access world_callbacks.b2ContactListener'Class); -- -- Register a contact event listener. The listener is owned by you and must -- remain in scope. function CreateBody (Self : access b2World; def : in solid.b2BodyDef) return access Solid.b2Body'Class; -- -- Create a rigid body given a definition. No reference to the definition -- is retained. -- This function is locked during callbacks. procedure add (Self : in out b2World; the_Object : access impact.d2.Solid.b2Body'Class); procedure DestroyBody (Self : in out b2World; solid : access impact.d2.Solid.b2Body'Class); -- -- Destroy a rigid body given a definition. No reference to the definition -- is retained. This function is locked during callbacks. -- This automatically deletes all associated shapes and joints. -- This function is locked during callbacks. function CreateJoint (Self : access b2World; def : in joint.b2JointDef) return access joint.b2Joint'Class; -- -- Create a joint to constrain bodies together. No reference to the definition -- is retained. This may cause the connected bodies to cease colliding. -- This function is locked during callbacks. -- Note: creating a joint doesn't wake the bodies. procedure DestroyJoint (Self : in out b2World; joint : access impact.d2.Joint.b2Joint'Class); -- -- Destroy a joint. This may cause the connected bodies to begin colliding. -- This function is locked during callbacks. procedure Step (Self : in out b2World; timeStep : in float32; velocityIterations : in int32; positionIterations : in int32); -- -- Take a time step. This performs collision detection, integration, -- and constraint solution. -- @param timeStep the amount of time to simulate, this should not vary. -- @param velocityIterations for the velocity constraint solver. -- @param positionIterations for the position constraint solver. procedure ClearForces (Self : in out b2World); -- -- Call this after you are done with time steps to clear the forces. You normally -- call this after each call to Step, unless you are performing sub-steps. By default, -- forces will be automatically cleared, so you don't need to call this function. -- @see SetAutoClearForces procedure QueryAABB (Self : access b2World; callback : access world_callbacks.b2QueryCallback; aabb : in collision.b2AABB); -- -- Query the world for all fixtures that potentially overlap the -- provided AABB. -- @param callback a user implemented callback class. -- @param aabb the query box. procedure RayCast (Self : access b2World; callback : access world_callbacks.b2RayCastCallback; point1, point2 : in b2Vec2); -- -- Ray-cast the world for all fixtures in the path of the ray. Your callback -- controls whether you get the closest point, any point, or n-points. -- The ray-cast ignores shapes that contain the starting point. -- @param callback a user implemented callback class. -- @param point1 the ray starting point -- @param point2 the ray ending point function GetBodyList (Self : in b2World) return access Solid.b2Body'Class; -- -- Get the world body list. With the returned body, use b2Body::GetNext to get -- the next body in the world list. A NULL body indicates the end of the list. -- @return the head of the world body list. function GetJointList (Self : in b2World) return access Joint.b2Joint'Class; -- -- Get the world joint list. With the returned joint, use b2Joint::GetNext to get -- the next joint in the world list. A NULL joint indicates the end of the list. -- @return the head of the world joint list. function GetContactList (Self : in b2World) return access Contact.b2Contact'Class; -- -- Get the world contact list. With the returned contact, use b2Contact::GetNext to get -- the next contact in the world list. A NULL contact indicates the end of the list. -- @return the head of the world contact list. -- @warning contacts are procedure SetAllowSleeping (Self : in out b2World; flag : in Boolean); -- -- Enable/disable sleep. procedure SetWarmStarting (Self : in out b2World; flag : in Boolean); -- -- Enable/disable warm starting. For testing. procedure SetContinuousPhysics (Self : in out b2World; flag : in Boolean); -- -- Enable/disable continuous physics. For testing. procedure SetSubStepping (Self : in out b2World; flag : in Boolean); -- -- Enable/disable single stepped continuous physics. For testing. function GetProxyCount (Self : in b2World) return int32; -- -- Get the number of broad-phase proxies. function GetBodyCount (Self : in b2World) return int32; -- -- Get the number of bodies. function GetJointCount (Self : in b2World) return int32; -- -- Get the number of joints. function GetContactCount (Self : in b2World) return int32; -- -- Get the number of contacts (each may have 0 or more contact points). function GetTreeHeight (Self : in b2World) return int32; -- -- Get the height of the dynamic tree. function GetTreeBalance (Self : in b2World) return int32; -- -- Get the balance of the dynamic tree. function GetTreeQuality (Self : in b2World) return float32; -- -- Get the quality metric of the dynamic tree. The smaller the better. -- The minimum is 1. procedure SetGravity (Self : in out b2World; gravity : in b2Vec2); -- -- Change the global gravity vector. function GetGravity (Self : in b2World) return b2Vec2; -- -- Get the global gravity vector. function IsLocked (Self : in b2World) return Boolean; -- -- Is the world locked (in the middle of a time step). procedure SetAutoClearForces (Self : in out b2World; flag : in Boolean); -- -- Set flag to control automatic clearing of forces after each time step. function GetAutoClearForces (Self : in b2World) return Boolean; -- -- Get the flag that controls automatic clearing of forces after each time step. -- todo: -- /// Shift the world origin. Useful for large worlds. -- /// The body shift formula is: position -= newOrigin -- /// @param newOrigin the new origin with respect to the old origin -- void ShiftOrigin(const b2Vec2& newOrigin); --------------------------------------------------- -- 'protected' subprograms for use by C 'friend's. -- -- m_flags e_newFixture : constant uint32 := 16#0001#; e_locked : constant uint32 := 16#0002#; e_clearForces : constant uint32 := 16#0004#; function m_contactManager (Self : access b2World) return access contact.manager.b2ContactManager; function m_flags (Self : access b2World) return access uint32; private type b2World is tagged record -- b2BlockAllocator m_blockAllocator; -- b2StackAllocator m_stackAllocator; m_flags : aliased uint32; m_contactManager : aliased contact.manager.b2ContactManager; m_bodyList : access Solid.b2Body'Class; m_jointList : Joint.view; m_bodyCount : int32; m_jointCount : int32; m_gravity : b2Vec2; m_allowSleep : Boolean; -- m_groundBody : access Solid.b2Body'Class; m_destructionListener : access world_callbacks.b2DestructionListener'Class; -- b2DebugDraw* m_debugDraw; m_inv_dt0 : float32; -- This is used to compute the time step ratio to support a variable time step. m_warmStarting : Boolean; -- This is for debugging the solver. m_continuousPhysics : Boolean; -- This is for debugging the solver. m_subStepping : Boolean; -- This is for debugging the solver. m_stepComplete : Boolean; end record; procedure Solve (Self : in out b2World; step : in b2TimeStep); procedure SolveTOI (Self : in out b2World; step : in b2TimeStep); -- procedure SolveTOI (Self : in out b2World; solid : access impact.d2.Solid.b2Body'Class); end impact.d2.World;
oeis/034/A034586.asm
neoneye/loda-programs
11
93592
<reponame>neoneye/loda-programs<filename>oeis/034/A034586.asm ; A034586: Log_2 of dimension of an irreducible Z_2 graded H-module for Clifford algebra Cl_n. ; Submitted by <NAME>(s3) ; 1,1,1,1,2,3,4,4,5,5,5,5,6,7,8,8,9,9,9,9,10,11,12,12,13,13,13,13,14,15,16,16,17,17,17,17,18,19,20,20,21,21,21,21,22,23,24,24,25,25,25,25,26,27,28,28,29,29,29,29,30,31,32,32,33,33,33,33,34,35 mov $1,$0 add $0,4 lpb $0 mul $0,7 mod $0,8 div $0,2 lpe add $1,$0 div $1,2 mov $0,$1
src/Internals/protypo-code_trees-interpreter-names.adb
fintatarta/protypo
0
18568
<reponame>fintatarta/protypo pragma Ada_2012; with Protypo.Code_Trees.Interpreter.Expressions; with Protypo.Code_Trees.Interpreter.Symbol_Table_References; pragma Warnings (Off, "no entities of ""Ada.Text_IO"" are referenced"); with Ada.Text_Io; use Ada.Text_Io; package body Protypo.Code_Trees.Interpreter.Names is --------------- -- Eval_Name -- --------------- function Eval_Name (Status : Interpreter_Access; Expr : not null Node_Access) return Name_Reference is --------- -- "+" -- --------- function "+" (X : Handler_Value) return Name_Reference is begin if not (X.Class in Handler_Classes) then raise Program_Error with X.Class'Image & "is not handler class"; end if; case Handler_Classes (X.Class) is when Array_Handler => return Name_Reference'(Class => Array_Reference, Array_Handler => Handlers.Get_Array (X)); when Record_Handler => return Name_Reference'(Class => Record_Reference, Record_Handler => Handlers.Get_Record (X)); when Ambivalent_Handler => return Name_Reference'(Class => Ambivalent_Reference, Ambivalent_Handler => Handlers.Get_Ambivalent (X)); when Function_Handler => return Name_Reference'(Class => Function_Reference, Function_Handler => Handlers.Get_Function (X), Parameters => <>); when Reference_Handler => return Name_Reference'(Class => Variable_Reference, Variable_Handler => Handlers.Get_Reference (X)); when Constant_Handler => return Name_Reference'(Class => Constant_Reference, Costant_Handler => Handlers.Get_Constant (X)); end case; end "+"; begin -- Put_Line ("#1" & Expr.Class'Image); if not (Expr.Class in Name) then raise Program_Error; end if; case Name (Expr.Class) is when Selected => declare Head : constant Name_Reference := Eval_Name (Status, Expr.Record_Var); Field : constant Id := Id (To_String (Expr.Field_Name)); begin case Head.Class is when Record_Reference => if not Head.Record_Handler.Is_Field (Field) then raise Bad_Field with "Unknown field '" & String (Field) & "'"; end if; return + Head.Record_Handler.Get (Field); when Ambivalent_Reference => if not Head.Ambivalent_Handler.Is_Field (Field) then raise Bad_Field with "Unknown field '" & String (Field) & "'"; end if; return + Head.Ambivalent_Handler.Get (Field); when others => raise Run_Time_Error with "Record access to non-record value, class=" & Head.Class'Image; end case; end; when Indexed => declare subtype Indexed_References is Value_Name_Class with Static_Predicate => Indexed_References in Array_Reference | Function_Reference | Ambivalent_Reference; Head : constant Name_Reference := Eval_Name (Status, Expr.Indexed_Var); Indexes : constant Engine_Value_Vectors.Vector := Expressions.Eval_Vector (Status, Expr.Indexes); begin if not (Head.Class in Indexed_References) then raise Run_Time_Error with "Indexed access to a value of class=" & Head.Class'Image & " at " & Tokens.Image (Expr.Source_Position) & " in an expression of class=" & Expr.Class'Image; end if; case Indexed_References (Head.Class) is when Array_Reference => return + Head.Array_Handler.Get (Indexes); when Function_Reference => return Name_Reference'(Class => Function_Call, Function_Handler => Head.Function_Handler, Parameters => Indexes); when Ambivalent_Reference => -- Put_Line ("@@@ index"); return + Head.Ambivalent_Handler.Get (Indexes); end case; end; when Identifier => declare use Api.Symbols.Protypo_Tables; use Protypo.Code_Trees.Interpreter.Symbol_Table_References; Ident : constant Id := To_Id (Expr.Id_Value); Position : Cursor := Status.Symbol_Table.Find (Ident); begin -- Put_Line ("@@@ searching '" & String(IDent) & "'"); if Position = No_Element then -- Put_Line ("@@@ not found '" & ID & "'"); -- -- The name is not in the symbol table: create it -- but leave it not initialized, it can be used only -- as a LHS. -- Status.Symbol_Table.Create (Name => Ident, Position => Position, Initial_Value => Void_Value); -- Put_Line ("@@@ inserted '" & ID & "' @" & Image (Position)); if Position = No_Element then raise Program_Error with "something bad"; end if; declare X : constant Api.Engine_Values.Handlers.Reference_Interface_Access := Symbol_Table_Reference (Position); Result : Name_Reference := (Class => Variable_Reference, Variable_Handler => X); begin -- Put_Line ("@@@ hh"); Result.Variable_Handler := X; -- Put_Line ("@@@ hhh"); return Result; end; else -- -- The name is in the symbol table. If its value is an -- handler, returnt the handler; otherwise return the -- reference to the symbol table. Remember that the -- result of the evaluation of a name is always a reference. -- declare Val : constant Engine_Value := Value (Position); begin if Val.Class in Handler_Classes then return + Val; else return Name_Reference' (Class => Variable_Reference, Variable_Handler => Symbol_Table_Reference (Position)); end if; end; end if; end; end case; exception when Handlers.Unknown_Field => raise Run_Time_Error with "Unknown field at " & Tokens.Image (Expr.Source_Position); end Eval_Name; end Protypo.Code_Trees.Interpreter.Names;
oeis/010/A010655.asm
neoneye/loda-programs
11
80982
; A010655: Decimal expansion of cube root of 85. ; Submitted by <NAME> ; 4,3,9,6,8,2,9,6,7,2,1,5,8,1,7,9,2,7,5,8,0,9,2,1,0,7,9,2,5,3,8,4,4,1,8,6,0,5,9,8,8,8,3,7,5,4,0,8,6,5,8,1,9,7,3,3,1,5,7,0,9,6,2,3,4,1,0,6,3,6,3,3,4,0,8,4,7,1,1,9,7,6,0,8,6,7,0,7,9,2,9,2,1,6,1,7,1,9,1,4 mov $3,$0 mul $3,2 lpb $3 add $6,$2 add $1,$6 add $1,$2 add $1,64 mov $2,$1 div $2,3 mul $2,64 div $2,7 sub $3,1 add $5,$2 add $6,$5 lpe mov $1,$5 mov $4,10 pow $4,$0 mul $4,4 div $2,$4 add $2,1 div $1,$2 mov $0,$1 add $0,$4 mod $0,10
notes/FOT/FOTC/Program/ABP/SimpleNetwork-SL.agda
asr/fotc
11
2069
<filename>notes/FOT/FOTC/Program/ABP/SimpleNetwork-SL.agda ------------------------------------------------------------------------------ -- A simple network using the Agda standard library ------------------------------------------------------------------------------ {-# OPTIONS --exact-split #-} {-# OPTIONS --no-sized-types #-} {-# OPTIONS --no-universe-polymorphism #-} {-# OPTIONS --without-K #-} -- From (Sander, 1992, pp. 68-69). module FOT.FOTC.Program.ABP.SimpleNetwork-SL where open import Codata.Musical.Stream open import Data.Bool.Base ------------------------------------------------------------------------------ postulate f₁ : {A : Set} → Stream A → Stream A → Stream A f₂ : {A : Set} → Stream A → Stream A {-# TERMINATING #-} trans : {A : Set} → Stream A → Stream A trans {A} is = os where ys os : Stream A ys = f₁ os is os = f₂ ys Ty : Set → Set Ty A = (Stream A → Stream A → Stream A) → (Stream A → Stream A) → Stream A → Stream A {-# TERMINATING #-} trans' hys : {A : Set} → Ty A trans' f₁ f₂ is = f₂ (hys f₁ f₂ is) hys f₁ f₂ is = f₁ (trans' f₁ f₂ is) is ------------------------------------------------------------------------------ -- References -- -- Sander, <NAME>. (1992). A Logic of Functional Programs with an -- Application to Concurrency. PhD thesis. Department of Computer -- Sciences: Chalmers University of Technology and University of -- Gothenburg.
oeis/142/A142766.asm
neoneye/loda-programs
11
98450
<filename>oeis/142/A142766.asm ; A142766: Primes congruent to 39 mod 59. ; Submitted by <NAME> ; 157,983,2281,2399,2753,3343,3461,3697,4051,4523,4759,4877,5113,5231,5821,5939,6529,6883,7001,7237,7591,9007,9479,9833,10069,11131,11839,12547,13963,14081,15497,15733,16087,18211,18329,18919,19037,19273,19391,20807,21397,21751,23167,23993,24229,25409,25763,25999,27061,27179,28123,28477,28949,29303,30011,31663,32371,32843,34141,34259,34613,34849,35911,36383,36973,37799,38153,38861,39097,39451,39569,40277,40867,41221,42283,44053,44171,44879,45233,45587,45823,46649,47711,47947,49009,49363,49481 mov $1,4 mov $2,$0 add $2,6 pow $2,2 lpb $2 add $1,34 sub $2,1 mov $3,$1 add $1,3 seq $3,10051 ; Characteristic function of primes: 1 if n is prime, else 0. sub $0,$3 add $1,22 mov $4,$0 max $4,0 cmp $4,$0 mul $2,$4 lpe mov $0,$1 sub $0,24
archive/agda-3/src/Test/ProblemWithDerivation-5.agda
m0davis/oscar
0
17113
<reponame>m0davis/oscar {-# OPTIONS --allow-unsolved-metas #-} open import Oscar.Class open import Oscar.Class.Reflexivity open import Oscar.Class.Symmetry open import Oscar.Class.Transitivity open import Oscar.Class.Transleftidentity open import Oscar.Prelude module Test.ProblemWithDerivation-5 where module Map {𝔵₁} {𝔛₁ : Ø 𝔵₁} {𝔵₂} {𝔛₂ : Ø 𝔵₂} {𝔯₁₂} {𝔯₁₂'} (ℜ₁₂ : 𝔛₁ → 𝔛₂ → Ø 𝔯₁₂) (ℜ₁₂' : 𝔛₁ → 𝔛₂ → Ø 𝔯₁₂') = ℭLASS (ℜ₁₂ , ℜ₁₂') (∀ P₁ P₂ → ℜ₁₂ P₁ P₂ → ℜ₁₂' P₁ P₂) module _ {𝔵₁} {𝔛₁ : Ø 𝔵₁} {𝔵₂} {𝔛₂ : Ø 𝔵₂} {𝔯₁₂} {ℜ₁₂ : 𝔛₁ → 𝔛₂ → Ø 𝔯₁₂} {𝔯₁₂'} {ℜ₁₂' : 𝔛₁ → 𝔛₂ → Ø 𝔯₁₂'} where map = Map.method ℜ₁₂ ℜ₁₂' module _ {𝔵₁} {𝔛₁ : Ø 𝔵₁} {𝔯₁₂} {ℜ₁₂ : 𝔛₁ → 𝔛₁ → Ø 𝔯₁₂} {𝔯₁₂'} {ℜ₁₂' : 𝔛₁ → 𝔛₁ → Ø 𝔯₁₂'} where smap = Map.method ℜ₁₂ ℜ₁₂' -- FIXME this looks like a viable solution; but what if `-MapFromTransleftidentity` builds something addressable by smap (i.e., where 𝔛₁ ≡ 𝔛₂)? module _ {𝔵₁} {𝔛₁ : Ø 𝔵₁} {𝔵₂} {𝔛₂ : Ø 𝔵₂} {𝔯₁₂} {ℜ₁₂ : 𝔛₁ → 𝔛₂ → Ø 𝔯₁₂} where hmap = Map.method ℜ₁₂ ℜ₁₂ postulate A : Set B : Set _~A~_ : A → A → Set _~B~_ : B → B → Set s1 : A → B f1 : ∀ {x y} → x ~A~ y → s1 x ~B~ s1 y instance 𝓢urjectivity1 : Map.class {𝔛₁ = A} {𝔛₂ = A} _~A~_ (λ x y → s1 x ~B~ s1 y) 𝓢urjectivity1 .⋆ _ _ = f1 -- Oscar.Class.Hmap.Transleftidentity instance postulate -MapFromTransleftidentity : ∀ {𝔵} {𝔛 : Ø 𝔵} {𝔞} {𝔄 : 𝔛 → Ø 𝔞} {𝔟} {𝔅 : 𝔛 → Ø 𝔟} (let _∼_ = Arrow 𝔄 𝔅) {ℓ̇} {_∼̇_ : ∀ {x y} → x ∼ y → x ∼ y → Ø ℓ̇} {transitivity : Transitivity.type _∼_} {reflexivity : Reflexivity.type _∼_} {ℓ} ⦃ _ : Transleftidentity.class _∼_ _∼̇_ reflexivity transitivity ⦄ → ∀ {m n} → Map.class {𝔛₁ = Arrow 𝔄 𝔅 m n} {𝔛₂ = LeftExtensionṖroperty ℓ (Arrow 𝔄 𝔅) _∼̇_ m} (λ f P → π₀ (π₀ P) f) (λ f P → π₀ (π₀ P) (transitivity f reflexivity)) test-before : ∀ {x y} → x ~A~ y → s1 x ~B~ s1 y test-before = map _ _ postulate XX : Set BB : XX → Set EQ : ∀ {x y} → Arrow BB BB x y → Arrow BB BB x y → Set instance postulate -transleftidentity : Transleftidentity.class (Arrow BB BB) EQ (λ x₁ → magic) (λ x₁ x₂ x₃ → magic) test-after : ∀ {x y} → x ~A~ y → s1 x ~B~ s1 y test-after {x} {y} = map _ _ -- FIXME yellow test-after-s : ∀ {x y} → x ~A~ y → s1 x ~B~ s1 y test-after-s {x} {y} = smap _ _ testr : ∀ {m n ℓ} (P₁ : Arrow BB BB m n) (P₂ : LeftExtensionṖroperty ℓ (Arrow BB BB) EQ m) → π₀ (π₀ P₂) P₁ → π₀ (π₀ P₂) (flip {∅̂} {∅̂} {∅̂} {Arrow (λ z → BB z) (λ z → BB z) m n} {Arrow (λ z → BB z) (λ z → BB z) n n} {λ _ _ → Arrow BB BB m n} (λ _ _ _ → magic) (λ _ → magic) P₁) testr = map
tests/syntax/bad/testfile-for-4.adb
xuedong/mini-ada
0
4232
<filename>tests/syntax/bad/testfile-for-4.adb with Ada.Text_IO; use Ada.Text_IO; procedure Test is begin for i in 1 .. 10 loop p; end loop end;
src/kernel/common/sse.asm
martinszeltins/vertex
0
161428
global sse_available global sse_init sse_available: mov eax, 0x1 cpuid test edx, 1 << 25 mov eax, 0x1 jnz good mov eax, 0 good: ret sse_init: mov eax, cr0 and ax, 0xFFFB or ax, 0x2 mov cr0, eax mov eax, cr4 or ax, 3 << 9 mov cr4, eax ret
EELE371/Lab-6.asm
Dan-Laden/Projects
0
25459
<reponame>Dan-Laden/Projects ; Lab-5.asm ; Created on: Oct 4, 2018 ; Author: <NAME> INCLUDE 'derivative.inc' XDEF _Startup, main XREF __SEF_END_SSTACK SCL EQU 7 SDA EQU 6 DACADDR EQU $2C ORG $0060 BitCounter DS.B 1 Value DS.B 1 Direction DS.B 1 ;Start of Program Code ORG $E000 main: _Startup: ;Initialize variables CLR Value CLR BitCounter CLR Direction ;Of Mice and Men'ing the Watchdog LDA SOPT1 AND #%01111111 STA SOPT1 ;Setup parallel ports BSET 6, PTBD BSET 7, PTBD BSET 6, PTBDD BSET 7, PTBDD mainLoop: ;Start condition JSR I2CStartBit LDA #DACADDR ASLA JSR I2CTxByte ;Stop condition JSR I2CStopBit JSR I2CBitDelay BRA mainLoop I2CTxByte: ;Initialize variable LDX #$08 STX BitCounter I2CNextBit: ROLA BCC SendLow SendHigh: BSET SDA, PTBD JSR I2CSetupDelay setup: BSET SCL, PTBD JSR I2CBitDelay BRA I2CTxCont SendLow: BCLR SDA, PTBD JSR I2CSetupDelay BSET SCL, PTBD JSR I2CBitDelay I2CTxCont: BCLR SCL, PTBD DEC BitCounter BEQ 12CAckPoll BRA I2CNextBit I2CAckPoll: BSET SDA, PTBD BCLR SDA, PTBDD JSR I2CSetupDelay BSET SCL, PTBD JSR I2CBitDelay BRSET SDA, PTBD, I2CNoAck BCLR SCL, PTBD BSET SDA, PTBDD RTS I2CNoAck: BCLR SCL, PTBD BSET SDA, PTBDD RTS I2CStartBit: BCLR SDA, PTBD JSR I2CBitDelay BCLR SCL, PTBD RTS I2CStopBit: BCLR SDA, PTBD BSET SCL, PTBD BSET SDA, PTBD JSR I2CBitDelay RTS I2CSetupDelay: NOP NOP RTS I2CBitDelay: NOP NOP NOP NOP NOP NOP NOP RTS
shell/string.asm
leonardoruilova/xos
1
1327
;; xOS Shell ;; Copyright (c) 2017 by <NAME>. use32 ; strlen: ; Gets length of string ; In\ ESI = String ; Out\ EAX = Length in byte strlen: pusha mov ecx, 0 .loop: lodsb cmp al, 0 je .done inc ecx jmp .loop .done: mov [.tmp], ecx popa mov eax, [.tmp] ret align 4 .tmp dd 0 ; find_byte_in_string: ; Find a byte within a string ; In\ ESI = String ; In\ DL = Byte to find ; In\ ECX = Total bytes to search ; Out\ EFLAGS = Carry clear if byte found ; Out\ ESI = Pointer to byte in string find_byte_in_string: .loop: lodsb cmp al, dl je .found loop .loop stc ret .found: dec esi clc ret ; replace_byte_in_string: ; Replaces a byte in a string ; In\ ECX = Size of string ; In\ ESI = String ; In\ DL = Byte to find ; In\ DH = Byte to replace with ; Out\ Nothing replace_byte_in_string: mov [.byte_to_find], dl mov [.byte_to_replace], dh ;call strlen ;mov ecx, eax .loop: mov al, [esi] cmp al, [.byte_to_find] je .found inc esi dec ecx cmp ecx, 0 je .done jmp .loop .found: mov al, [.byte_to_replace] mov [esi], al inc esi dec ecx cmp ecx, 0 je .done jmp .loop .done: ret .byte_to_find db 0 .byte_to_replace db 0 ; int_to_string: ; Converts an unsigned integer to a string ; In\ EAX = Integer ; Out\ ESI = ASCIIZ string int_to_string: push eax mov [.counter], 10 mov edi, .string mov ecx, 10 mov eax, 0 rep stosb mov esi, .string add esi, 9 pop eax .loop: cmp eax, 0 je .done2 mov ebx, 10 mov edx, 0 div ebx add dl, 48 mov byte[esi], dl dec esi sub byte[.counter], 1 cmp byte[.counter], 0 je .done jmp .loop .done: mov esi, .string ret .done2: cmp byte[.counter], 10 je .zero mov esi, .string .find_string_loop: lodsb cmp al, 0 jne .found_string jmp .find_string_loop .found_string: dec esi ret .zero: mov edi, .string mov al, '0' stosb mov al, 0 stosb mov esi, .string ret .string: times 11 db 0 .counter db 0 ; update_time: ; Updates the time in the task bar update_time: mov al, [.hour] mov [.hour_old], al mov al, [.minute] mov [.minute_old], al mov ebp, XOS_GET_TIME int 0x60 mov [.hour], ah mov [.minute], al ;mov [.second], bl cmp ah, [.hour_old] jne .do_minute cmp al, [.minute_old] je .quit .do_minute: cmp [.minute], 9 jle .minute_small movzx eax, [.minute] call int_to_string mov edi, time_text+3 movsw jmp .do_hour .minute_small: movzx eax, [.minute] add al, 48 ; '0' mov byte[time_text+3], "0" mov byte[time_text+4], al .do_hour: cmp [.hour], 0 je .midnight cmp [.hour], 9 jle .hour_small cmp [.hour], 12 jg .pm .am: movzx eax, [.hour] call int_to_string mov edi, time_text movsw mov word[time_text+6], "AM" jmp .done .midnight: mov word[time_text], "12" mov word[time_text+6], "AM" jmp .done .hour_small: movzx eax, [.hour] add al, 48 mov byte[time_text], "0" mov byte[time_text+1], al mov word[time_text+6], "AM" jmp .done .pm: movzx eax, [.hour] sub eax, 12 cmp eax, 0 je .12_pm cmp eax, 9 jle .pm_small call int_to_string mov edi, time_text movsw mov word[time_text+6], "PM" jmp .done .pm_small: add al, 48 mov byte[time_text], "0" mov byte[time_text+1], al mov word[time_text+6], "PM" jmp .done .12_pm: mov word[time_text], "12" mov word[time_text+6], "PM" jmp .done .done: mov eax, [window_handle] call xwidget_redraw .quit: ret .hour db 0 .minute db 0 .hour_old db 0 .minute_old db 0
programs/oeis/296/A296515.asm
karttu/loda
1
23681
; A296515: Number of edges in a maximal planar graph with n vertices. ; 0,0,1,3,6,9,12,15,18,21,24,27,30,33,36,39,42,45,48,51,54,57,60,63,66,69,72,75,78,81,84,87,90,93,96,99,102,105,108,111,114,117,120,123,126,129,132,135,138 mov $1,$0 trn $0,1 add $1,$0 trn $1,4 add $1,$0
programs/oeis/036/A036217.asm
jmorken/loda
1
27198
; A036217: Expansion of 1/(1-3*x)^5; 5-fold convolution of A000244 (powers of 3). ; 1,15,135,945,5670,30618,153090,721710,3247695,14073345,59108049,241805655,967222620,3794488740,14635885140,55616363532,208561363245,772903875555,2833980877035,10291825290285,37050571045026,132323468017950,469146841154550,1652212788413850,5782744759448475 add $0,4 mov $3,3 pow $3,$0 bin $0,4 mov $2,$3 lpb $2 mul $0,$2 mod $2,5 lpe mov $1,$0 div $1,81
Arquitetura de Computadores/Atividade 02/ex02.asm
antuniooh/ExercisesFEI
1
24984
DATA QUE 30h MOV 50h, #DATA MOV A, #0FFh XCH A, DATA MOV R2, #DATA
Transynther/x86/_processed/NONE/_xt_sm_/i7-7700_9_0x48_notsx.log_21829_957.asm
ljhsiun2/medusa
9
92894
<filename>Transynther/x86/_processed/NONE/_xt_sm_/i7-7700_9_0x48_notsx.log_21829_957.asm<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: ret .global s_faulty_load s_faulty_load: push %r12 push %r13 push %r14 push %r15 push %rcx push %rdi push %rdx push %rsi // REPMOV lea addresses_WC+0x11154, %rsi lea addresses_WT+0x13d4a, %rdi nop nop nop nop and $24236, %r13 mov $7, %rcx rep movsl nop nop nop nop and $37818, %rsi // Store lea addresses_A+0xf3e7, %rdx dec %r12 movb $0x51, (%rdx) nop cmp $63273, %rsi // Store lea addresses_UC+0x139ca, %rdx nop nop nop nop xor %rsi, %rsi mov $0x5152535455565758, %r15 movq %r15, (%rdx) sub %rcx, %rcx // REPMOV lea addresses_A+0xb48a, %rsi lea addresses_WT+0xf5ca, %rdi nop xor $21948, %r14 mov $2, %rcx rep movsw nop nop nop nop dec %rsi // Store lea addresses_PSE+0xbdca, %r14 nop sub %rdi, %rdi mov $0x5152535455565758, %r15 movq %r15, %xmm2 movups %xmm2, (%r14) nop nop dec %rdx // Store lea addresses_WT+0xd5ca, %r15 nop nop nop nop nop add $43433, %r12 mov $0x5152535455565758, %rdx movq %rdx, %xmm1 vmovups %ymm1, (%r15) nop nop nop nop xor $19437, %rdi // Faulty Load lea addresses_PSE+0xbdca, %rcx nop nop nop nop nop xor %rsi, %rsi mov (%rcx), %dx lea oracles, %rdi and $0xff, %rdx shlq $12, %rdx mov (%rdi,%rdx,1), %rdx pop %rsi pop %rdx pop %rdi pop %rcx pop %r15 pop %r14 pop %r13 pop %r12 ret /* <gen_faulty_load> [REF] {'OP': 'LOAD', 'src': {'same': False, 'NT': False, 'AVXalign': False, 'size': 32, 'type': 'addresses_PSE', 'congruent': 0}} {'dst': {'same': False, 'congruent': 7, 'type': 'addresses_WT'}, 'OP': 'REPM', 'src': {'same': False, 'congruent': 1, 'type': 'addresses_WC'}} {'dst': {'same': False, 'NT': False, 'AVXalign': False, 'size': 1, 'type': 'addresses_A', 'congruent': 0}, 'OP': 'STOR'} {'dst': {'same': False, 'NT': False, 'AVXalign': False, 'size': 8, 'type': 'addresses_UC', 'congruent': 8}, 'OP': 'STOR'} {'dst': {'same': False, 'congruent': 10, 'type': 'addresses_WT'}, 'OP': 'REPM', 'src': {'same': False, 'congruent': 6, 'type': 'addresses_A'}} {'dst': {'same': True, 'NT': False, 'AVXalign': False, 'size': 16, 'type': 'addresses_PSE', 'congruent': 0}, 'OP': 'STOR'} {'dst': {'same': False, 'NT': False, 'AVXalign': False, 'size': 32, 'type': 'addresses_WT', 'congruent': 11}, 'OP': 'STOR'} [Faulty Load] {'OP': 'LOAD', 'src': {'same': True, 'NT': False, 'AVXalign': False, 'size': 2, 'type': 'addresses_PSE', 'congruent': 0}} <gen_prepare_buffer> {'58': 21829} 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 58 */
bugs/bug25.ada
daveshields/AdaEd
3
5345
<reponame>daveshields/AdaEd procedure main IS package pack is function func return integer; end pack; package body pack is function func return integer is begin return 1; end func; end pack; begin null; exception when pack.func.error => null; end main;
3-mid/physics/interface/source/private/box2d/box2d_physics.ads
charlie5/lace
20
29821
with float_Math; package box2d_Physics -- -- Provides an implementation of the physics interface using a binding to the Box2D C library. -- is pragma Pure; package Math renames float_Math; Error : exception; end box2d_Physics;
oeml-sdk/ada/src/model/-models.ads
scorninpc/coinapi-sdk
0
16716
<reponame>scorninpc/coinapi-sdk -- OEML _ REST API -- This section will provide necessary information about the `CoinAPI OEML REST API` protocol. This API is also available in the Postman application: <a href=\"https://postman.coinapi.io/\" target=\"_blank\">https://postman.coinapi.io/</a> -- -- The version of the OpenAPI document: v1 -- Contact: <EMAIL> -- -- NOTE: This package is auto generated by OpenAPI-Generator 5.0.0. -- https://openapi-generator.tech -- Do not edit the class manually. with Swagger.Streams; with Ada.Containers.Vectors; package .Models is type Severity_Type is record end record; package Severity_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => Severity_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in Severity_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in Severity_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out Severity_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out Severity_Type_Vectors.Vector); -- ------------------------------ -- Message object. -- ------------------------------ type Message_Type is record P_Type : Swagger.Nullable_UString; Severity : .Models.Severity_Type; Exchange_Id : Swagger.Nullable_UString; Message : Swagger.Nullable_UString; end record; package Message_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => Message_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in Message_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in Message_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out Message_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out Message_Type_Vectors.Vector); -- ------------------------------ -- JSON validation error. -- ------------------------------ type ValidationError_Type is record P_Type : Swagger.Nullable_UString; Title : Swagger.Nullable_UString; Status : Swagger.Number; Trace_Id : Swagger.Nullable_UString; Errors : Swagger.Nullable_UString; end record; package ValidationError_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => ValidationError_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ValidationError_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in ValidationError_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ValidationError_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out ValidationError_Type_Vectors.Vector); type OrdType_Type is record end record; package OrdType_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => OrdType_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrdType_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrdType_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrdType_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrdType_Type_Vectors.Vector); type OrdStatus_Type is record end record; package OrdStatus_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => OrdStatus_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrdStatus_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrdStatus_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrdStatus_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrdStatus_Type_Vectors.Vector); type OrderCancelAllRequest_Type is record Exchange_Id : Swagger.UString; end record; package OrderCancelAllRequest_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => OrderCancelAllRequest_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrderCancelAllRequest_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrderCancelAllRequest_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrderCancelAllRequest_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrderCancelAllRequest_Type_Vectors.Vector); type OrderCancelSingleRequest_Type is record Exchange_Id : Swagger.UString; Exchange_Order_Id : Swagger.Nullable_UString; Client_Order_Id : Swagger.Nullable_UString; end record; package OrderCancelSingleRequest_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => OrderCancelSingleRequest_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrderCancelSingleRequest_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrderCancelSingleRequest_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrderCancelSingleRequest_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrderCancelSingleRequest_Type_Vectors.Vector); type OrdSide_Type is record end record; package OrdSide_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => OrdSide_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrdSide_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrdSide_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrdSide_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrdSide_Type_Vectors.Vector); type TimeInForce_Type is record end record; package TimeInForce_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => TimeInForce_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in TimeInForce_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in TimeInForce_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out TimeInForce_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out TimeInForce_Type_Vectors.Vector); type OrderNewSingleRequest_Type is record Exchange_Id : Swagger.UString; Client_Order_Id : Swagger.UString; Symbol_Id_Exchange : Swagger.Nullable_UString; Symbol_Id_Coinapi : Swagger.Nullable_UString; Amount_Order : Swagger.Number; Price : Swagger.Number; Side : .Models.OrdSide_Type; Order_Type : .Models.OrdType_Type; Time_In_Force : .Models.TimeInForce_Type; Expire_Time : Swagger.Nullable_Date; Exec_Inst : Swagger.UString_Vectors.Vector; end record; package OrderNewSingleRequest_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => OrderNewSingleRequest_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrderNewSingleRequest_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrderNewSingleRequest_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrderNewSingleRequest_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrderNewSingleRequest_Type_Vectors.Vector); -- ------------------------------ -- Relay fill information on working orders. -- ------------------------------ type Fills_Type is record Time : Swagger.Nullable_Date; Price : Swagger.Number; Amount : Swagger.Number; end record; package Fills_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => Fills_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in Fills_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in Fills_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out Fills_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out Fills_Type_Vectors.Vector); type OrderExecutionReport_Type is record Exchange_Id : Swagger.UString; Client_Order_Id : Swagger.UString; Symbol_Id_Exchange : Swagger.Nullable_UString; Symbol_Id_Coinapi : Swagger.Nullable_UString; Amount_Order : Swagger.Number; Price : Swagger.Number; Side : .Models.OrdSide_Type; Order_Type : .Models.OrdType_Type; Time_In_Force : .Models.TimeInForce_Type; Expire_Time : Swagger.Nullable_Date; Exec_Inst : Swagger.UString_Vectors.Vector; Client_Order_Id_Format_Exchange : Swagger.UString; Exchange_Order_Id : Swagger.Nullable_UString; Amount_Open : Swagger.Number; Amount_Filled : Swagger.Number; Avg_Px : Swagger.Number; Status : .Models.OrdStatus_Type; Status_History : Swagger.UString_Vectors.Vector_Vectors.Vector; Error_Message : Swagger.Nullable_UString; Fills : .Models.Fills_Type_Vectors.Vector; end record; package OrderExecutionReport_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => OrderExecutionReport_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrderExecutionReport_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrderExecutionReport_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrderExecutionReport_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrderExecutionReport_Type_Vectors.Vector); type OrderExecutionReportAllOf_Type is record Client_Order_Id_Format_Exchange : Swagger.UString; Exchange_Order_Id : Swagger.Nullable_UString; Amount_Open : Swagger.Number; Amount_Filled : Swagger.Number; Avg_Px : Swagger.Number; Status : .Models.OrdStatus_Type; Status_History : Swagger.UString_Vectors.Vector_Vectors.Vector; Error_Message : Swagger.Nullable_UString; Fills : .Models.Fills_Type_Vectors.Vector; end record; package OrderExecutionReportAllOf_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => OrderExecutionReportAllOf_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrderExecutionReportAllOf_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in OrderExecutionReportAllOf_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrderExecutionReportAllOf_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out OrderExecutionReportAllOf_Type_Vectors.Vector); type BalanceData_Type is record Asset_Id_Exchange : Swagger.Nullable_UString; Asset_Id_Coinapi : Swagger.Nullable_UString; Balance : float; Available : float; Locked : float; Last_Updated_By : Swagger.Nullable_UString; Rate_Usd : float; Traded : float; end record; package BalanceData_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => BalanceData_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in BalanceData_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in BalanceData_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out BalanceData_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out BalanceData_Type_Vectors.Vector); type Balance_Type is record Exchange_Id : Swagger.Nullable_UString; Data : .Models.BalanceData_Type_Vectors.Vector; end record; package Balance_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => Balance_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in Balance_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in Balance_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out Balance_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out Balance_Type_Vectors.Vector); type Position_Type is record Exchange_Id : Swagger.Nullable_UString; Data : .Models.PositionData_Type_Vectors.Vector; end record; package Position_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => Position_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in Position_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in Position_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out Position_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out Position_Type_Vectors.Vector); type PositionData_Type is record Symbol_Id_Exchange : Swagger.Nullable_UString; Symbol_Id_Coinapi : Swagger.Nullable_UString; Avg_Entry_Price : Swagger.Number; Quantity : Swagger.Number; Side : .Models.OrdSide_Type; Unrealized_Pnl : Swagger.Number; Leverage : Swagger.Number; Cross_Margin : Swagger.Nullable_Boolean; Liquidation_Price : Swagger.Number; Raw_Data : Swagger.Object; end record; package PositionData_Type_Vectors is new Ada.Containers.Vectors (Index_Type => Positive, Element_Type => PositionData_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in PositionData_Type); procedure Serialize (Into : in out Swagger.Streams.Output_Stream'Class; Name : in String; Value : in PositionData_Type_Vectors.Vector); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out PositionData_Type); procedure Deserialize (From : in Swagger.Value_Type; Name : in String; Value : out PositionData_Type_Vectors.Vector); end .Models;
oeis/171/A171545.asm
neoneye/loda-programs
11
16632
<reponame>neoneye/loda-programs<gh_stars>10-100 ; A171545: Decimal expansion of sqrt(2/7). ; Submitted by <NAME> ; 5,3,4,5,2,2,4,8,3,8,2,4,8,4,8,7,6,9,3,6,9,1,0,6,9,6,1,7,5,9,5,0,7,0,4,3,1,0,8,0,0,2,8,2,9,6,8,2,6,7,5,2,7,8,0,4,3,3,9,2,2,0,9,6,1,7,1,4,7,8,7,9,4,7,2,4,1,9,8,6,1,1,3,9,5,4,4,2,7,0,7,4,2,0,5,4,2,2,4,5 add $0,1 mov $1,1 mov $3,$0 mul $3,4 lpb $3 add $2,$1 mul $1,$3 mul $2,$3 add $1,$2 cmp $6,0 add $5,$6 div $1,$5 div $2,$5 add $2,$1 mul $1,2 add $2,$1 sub $3,1 lpe mov $4,10 pow $4,$0 div $2,$4 div $1,$2 mod $1,10 mov $0,$1
oeis/157/A157214.asm
neoneye/loda-programs
11
86171
; A157214: Decimal expansion of 18 + 5*sqrt(2). ; Submitted by <NAME> ; 2,5,0,7,1,0,6,7,8,1,1,8,6,5,4,7,5,2,4,4,0,0,8,4,4,3,6,2,1,0,4,8,4,9,0,3,9,2,8,4,8,3,5,9,3,7,6,8,8,4,7,4,0,3,6,5,8,8,3,3,9,8,6,8,9,9,5,3,6,6,2,3,9,2,3,1,0,5,3,5,1,9,4,2,5,1,9,3,7,6,7,1,6,3,8,2,0,7,8,6 mov $1,1 mov $2,1 mov $3,$0 mul $3,4 lpb $3 add $1,$2 add $2,$1 mul $1,2 sub $3,1 lpe sub $1,40 mul $2,2 mov $4,10 pow $4,$0 div $2,$4 div $1,$2 mov $0,$1 add $0,$4 add $0,20 mod $0,10
TrafficLight13/Release/_old/TrafficLight13.asm
lugovskovp/TrafficLight13
10
241092
./Release/TrafficLight13.elf: file format elf32-avr Disassembly of section .text: 00000000 <__vectors>: 0: 39 c0 rjmp .+114 ; 0x74 <__ctors_end> 2: 5e c0 rjmp .+188 ; 0xc0 <__vector_1> 4: 45 c0 rjmp .+138 ; 0x90 <__bad_interrupt> 6: 45 c0 rjmp .+138 ; 0x92 <__vector_3> 8: 43 c0 rjmp .+134 ; 0x90 <__bad_interrupt> a: 42 c0 rjmp .+132 ; 0x90 <__bad_interrupt> c: 41 c0 rjmp .+130 ; 0x90 <__bad_interrupt> e: 40 c0 rjmp .+128 ; 0x90 <__bad_interrupt> 10: 3f c0 rjmp .+126 ; 0x90 <__bad_interrupt> 12: 3e c0 rjmp .+124 ; 0x90 <__bad_interrupt> 00000014 <__trampolines_end>: 14: 18 08 sbc r1, r8 16: 00 00 nop 18: 00 00 nop 1a: b9 00 .word 0x00b9 ; ???? 1c: 08 08 sbc r0, r8 1e: 18 08 sbc r1, r8 20: 09 00 .word 0x0009 ; ???? 22: 6f 00 .word 0x006f ; ???? 24: 09 09 sbc r16, r9 26: 00 00 nop 28: 00 00 nop 2a: 25 00 .word 0x0025 ; ???? 2c: 0d 0d add r16, r13 2e: 00 00 nop 30: 00 00 nop 32: 4a 00 .word 0x004a ; ???? 34: 18 10 cpse r1, r8 36: 00 00 nop 38: 00 00 nop 3a: 03 01 movw r0, r6 3c: 18 10 cpse r1, r8 3e: 08 00 .word 0x0008 ; ???? 40: 09 00 .word 0x0009 ; ???? 42: 6f 00 .word 0x006f ; ???? 44: 0c 04 cpc r0, r12 46: 00 00 nop 48: 00 00 nop 4a: 25 00 .word 0x0025 ; ???? 4c: 0d 05 cpc r16, r13 4e: 00 00 nop 50: 00 00 nop 52: 4a 00 .word 0x004a ; ???? 54: 05 05 cpc r16, r5 56: 05 00 .word 0x0005 ; ???? 58: 25 00 .word 0x0025 ; ???? ... 62: 00 00 nop 64: 1c 0c add r1, r12 66: 19 11 cpse r17, r9 68: 01 00 .word 0x0001 ; ???? 6a: 25 00 .word 0x0025 ; ???? 6c: 14 04 cpc r1, r4 6e: 11 11 cpse r17, r1 70: 01 00 .word 0x0001 ; ???? ... 00000074 <__ctors_end>: 74: 11 24 eor r1, r1 76: 1f be out 0x3f, r1 ; 63 78: cf e9 ldi r28, 0x9F ; 159 7a: cd bf out 0x3d, r28 ; 61 0000007c <__do_clear_bss>: 7c: 20 e0 ldi r18, 0x00 ; 0 7e: a0 e6 ldi r26, 0x60 ; 96 80: b0 e0 ldi r27, 0x00 ; 0 82: 01 c0 rjmp .+2 ; 0x86 <.do_clear_bss_start> 00000084 <.do_clear_bss_loop>: 84: 1d 92 st X+, r1 00000086 <.do_clear_bss_start>: 86: a8 36 cpi r26, 0x68 ; 104 88: b2 07 cpc r27, r18 8a: e1 f7 brne .-8 ; 0x84 <.do_clear_bss_loop> 8c: 8d d0 rcall .+282 ; 0x1a8 <main> 8e: c8 c1 rjmp .+912 ; 0x420 <_exit> 00000090 <__bad_interrupt>: 90: b7 cf rjmp .-146 ; 0x0 <__vectors> 00000092 <__vector_3>: 92: 1f 92 push r1 94: 0f 92 push r0 96: 0f b6 in r0, 0x3f ; 63 98: 0f 92 push r0 9a: 11 24 eor r1, r1 9c: 8f 93 push r24 9e: 9f 93 push r25 a0: 80 91 66 00 lds r24, 0x0066 ; 0x800066 <globalTimer> a4: 90 91 67 00 lds r25, 0x0067 ; 0x800067 <globalTimer+0x1> a8: 01 96 adiw r24, 0x01 ; 1 aa: 90 93 67 00 sts 0x0067, r25 ; 0x800067 <globalTimer+0x1> ae: 80 93 66 00 sts 0x0066, r24 ; 0x800066 <globalTimer> b2: 9f 91 pop r25 b4: 8f 91 pop r24 b6: 0f 90 pop r0 b8: 0f be out 0x3f, r0 ; 63 ba: 0f 90 pop r0 bc: 1f 90 pop r1 be: 18 95 reti 000000c0 <__vector_1>: c0: 1f 92 push r1 c2: 0f 92 push r0 c4: 0f b6 in r0, 0x3f ; 63 c6: 0f 92 push r0 c8: 11 24 eor r1, r1 ca: 8f 93 push r24 cc: 8b b7 in r24, 0x3b ; 59 ce: 8f 7b andi r24, 0xBF ; 191 d0: 8b bf out 0x3b, r24 ; 59 d2: 8a b7 in r24, 0x3a ; 58 d4: 8f 7b andi r24, 0xBF ; 191 d6: 8a bf out 0x3a, r24 ; 58 d8: 80 91 60 00 lds r24, 0x0060 ; 0x800060 <_edata> dc: 10 92 67 00 sts 0x0067, r1 ; 0x800067 <globalTimer+0x1> e0: 10 92 66 00 sts 0x0066, r1 ; 0x800066 <globalTimer> e4: 10 92 65 00 sts 0x0065, r1 ; 0x800065 <scan_button_cnt> e8: 8f 73 andi r24, 0x3F ; 63 ea: 83 60 ori r24, 0x03 ; 3 ec: 80 93 60 00 sts 0x0060, r24 ; 0x800060 <_edata> f0: 8f 91 pop r24 f2: 0f 90 pop r0 f4: 0f be out 0x3f, r0 ; 63 f6: 0f 90 pop r0 f8: 1f 90 pop r1 fa: 18 95 reti 000000fc <_Z8setPortshb>: fc: 17 ba out 0x17, r1 ; 23 fe: 18 ba out 0x18, r1 ; 24 100: 90 e0 ldi r25, 0x00 ; 0 102: 23 e0 ldi r18, 0x03 ; 3 104: 88 0f add r24, r24 106: 99 1f adc r25, r25 108: 2a 95 dec r18 10a: e1 f7 brne .-8 ; 0x104 <_Z8setPortshb+0x8> 10c: 9c 01 movw r18, r24 10e: 2c 5e subi r18, 0xEC ; 236 110: 3f 4f sbci r19, 0xFF ; 255 112: 61 11 cpse r22, r1 114: 03 c0 rjmp .+6 ; 0x11c <_Z8setPortshb+0x20> 116: e2 e0 ldi r30, 0x02 ; 2 118: f0 e0 ldi r31, 0x00 ; 0 11a: 02 c0 rjmp .+4 ; 0x120 <_Z8setPortshb+0x24> 11c: e0 e0 ldi r30, 0x00 ; 0 11e: f0 e0 ldi r31, 0x00 ; 0 120: e2 0f add r30, r18 122: f3 1f adc r31, r19 124: e4 91 lpm r30, Z 126: ed 7f andi r30, 0xFD ; 253 128: e7 bb out 0x17, r30 ; 23 12a: fc 01 movw r30, r24 12c: 66 23 and r22, r22 12e: 19 f0 breq .+6 ; 0x136 <_Z8setPortshb+0x3a> 130: eb 5e subi r30, 0xEB ; 235 132: ff 4f sbci r31, 0xFF ; 255 134: 02 c0 rjmp .+4 ; 0x13a <_Z8setPortshb+0x3e> 136: e9 5e subi r30, 0xE9 ; 233 138: ff 4f sbci r31, 0xFF ; 255 13a: e4 91 lpm r30, Z 13c: e2 60 ori r30, 0x02 ; 2 13e: e8 bb out 0x18, r30 ; 24 140: 08 95 ret 00000142 <_Z10setPeriodshb>: 142: 90 e0 ldi r25, 0x00 ; 0 144: 23 e0 ldi r18, 0x03 ; 3 146: 88 0f add r24, r24 148: 99 1f adc r25, r25 14a: 2a 95 dec r18 14c: e1 f7 brne .-8 ; 0x146 <_Z10setPeriodshb+0x4> 14e: fc 01 movw r30, r24 150: e8 5e subi r30, 0xE8 ; 232 152: ff 4f sbci r31, 0xFF ; 255 154: 45 91 lpm r20, Z+ 156: 54 91 lpm r21, Z 158: 41 15 cp r20, r1 15a: 51 05 cpc r21, r1 15c: 39 f0 breq .+14 ; 0x16c <_Z10setPeriodshb+0x2a> 15e: 20 91 66 00 lds r18, 0x0066 ; 0x800066 <globalTimer> 162: 30 91 67 00 lds r19, 0x0067 ; 0x800067 <globalTimer+0x1> 166: 24 0f add r18, r20 168: 35 1f adc r19, r21 16a: 02 c0 rjmp .+4 ; 0x170 <_Z10setPeriodshb+0x2e> 16c: 20 e0 ldi r18, 0x00 ; 0 16e: 30 e0 ldi r19, 0x00 ; 0 170: 30 93 64 00 sts 0x0064, r19 ; 0x800064 <tl_flash_end+0x1> 174: 20 93 63 00 sts 0x0063, r18 ; 0x800063 <tl_flash_end> 178: 66 23 and r22, r22 17a: a9 f0 breq .+42 ; 0x1a6 <_Z10setPeriodshb+0x64> 17c: fc 01 movw r30, r24 17e: e6 5e subi r30, 0xE6 ; 230 180: ff 4f sbci r31, 0xFF ; 255 182: 25 91 lpm r18, Z+ 184: 34 91 lpm r19, Z 186: 21 15 cp r18, r1 188: 31 05 cpc r19, r1 18a: 39 f0 breq .+14 ; 0x19a <_Z10setPeriodshb+0x58> 18c: 80 91 66 00 lds r24, 0x0066 ; 0x800066 <globalTimer> 190: 90 91 67 00 lds r25, 0x0067 ; 0x800067 <globalTimer+0x1> 194: 82 0f add r24, r18 196: 93 1f adc r25, r19 198: 02 c0 rjmp .+4 ; 0x19e <_Z10setPeriodshb+0x5c> 19a: 80 e0 ldi r24, 0x00 ; 0 19c: 90 e0 ldi r25, 0x00 ; 0 19e: 90 93 62 00 sts 0x0062, r25 ; 0x800062 <tl_signal_end+0x1> 1a2: 80 93 61 00 sts 0x0061, r24 ; 0x800061 <tl_signal_end> 1a6: 08 95 ret 000001a8 <main>: 1a8: 85 b7 in r24, 0x35 ; 53 1aa: 87 7e andi r24, 0xE7 ; 231 1ac: 85 bf out 0x35, r24 ; 53 1ae: 85 b7 in r24, 0x35 ; 53 1b0: 80 62 ori r24, 0x20 ; 32 1b2: 85 bf out 0x35, r24 ; 53 1b4: 85 e0 ldi r24, 0x05 ; 5 1b6: 83 bf out 0x33, r24 ; 51 1b8: 89 b7 in r24, 0x39 ; 57 1ba: 82 60 ori r24, 0x02 ; 2 1bc: 89 bf out 0x39, r24 ; 57 1be: 10 92 67 00 sts 0x0067, r1 ; 0x800067 <globalTimer+0x1> 1c2: 10 92 66 00 sts 0x0066, r1 ; 0x800066 <globalTimer> 1c6: 80 91 60 00 lds r24, 0x0060 ; 0x800060 <_edata> 1ca: 8c 7f andi r24, 0xFC ; 252 1cc: 10 92 65 00 sts 0x0065, r1 ; 0x800065 <scan_button_cnt> 1d0: 25 e0 ldi r18, 0x05 ; 5 1d2: 30 e0 ldi r19, 0x00 ; 0 1d4: 30 93 69 00 sts 0x0069, r19 ; 0x800069 <__bss_end+0x1> 1d8: 20 93 68 00 sts 0x0068, r18 ; 0x800068 <__bss_end> 1dc: 84 62 ori r24, 0x24 ; 36 1de: 80 93 60 00 sts 0x0060, r24 ; 0x800060 <_edata> 1e2: 78 94 sei 1e4: 1a e0 ldi r17, 0x0A ; 10 1e6: 00 e2 ldi r16, 0x20 ; 32 1e8: cd e4 ldi r28, 0x4D ; 77 1ea: d0 e0 ldi r29, 0x00 ; 0 1ec: 80 e1 ldi r24, 0x10 ; 16 1ee: f8 2e mov r15, r24 1f0: 80 91 66 00 lds r24, 0x0066 ; 0x800066 <globalTimer> 1f4: 90 91 67 00 lds r25, 0x0067 ; 0x800067 <globalTimer+0x1> 1f8: 97 ff sbrs r25, 7 1fa: 34 c0 rjmp .+104 ; 0x264 <main+0xbc> 1fc: 80 91 66 00 lds r24, 0x0066 ; 0x800066 <globalTimer> 200: 90 91 67 00 lds r25, 0x0067 ; 0x800067 <globalTimer+0x1> 204: 8f 5f subi r24, 0xFF ; 255 206: 9f 47 sbci r25, 0x7F ; 127 208: 90 93 67 00 sts 0x0067, r25 ; 0x800067 <globalTimer+0x1> 20c: 80 93 66 00 sts 0x0066, r24 ; 0x800066 <globalTimer> 210: 80 91 63 00 lds r24, 0x0063 ; 0x800063 <tl_flash_end> 214: 90 91 64 00 lds r25, 0x0064 ; 0x800064 <tl_flash_end+0x1> 218: 00 97 sbiw r24, 0x00 ; 0 21a: 79 f0 breq .+30 ; 0x23a <main+0x92> 21c: 8f 5f subi r24, 0xFF ; 255 21e: 9f 47 sbci r25, 0x7F ; 127 220: 90 93 64 00 sts 0x0064, r25 ; 0x800064 <tl_flash_end+0x1> 224: 80 93 63 00 sts 0x0063, r24 ; 0x800063 <tl_flash_end> 228: 80 91 68 00 lds r24, 0x0068 ; 0x800068 <__bss_end> 22c: 90 91 69 00 lds r25, 0x0069 ; 0x800069 <__bss_end+0x1> 230: 01 97 sbiw r24, 0x01 ; 1 232: 90 93 69 00 sts 0x0069, r25 ; 0x800069 <__bss_end+0x1> 236: 80 93 68 00 sts 0x0068, r24 ; 0x800068 <__bss_end> 23a: 80 91 61 00 lds r24, 0x0061 ; 0x800061 <tl_signal_end> 23e: 90 91 62 00 lds r25, 0x0062 ; 0x800062 <tl_signal_end+0x1> 242: 00 97 sbiw r24, 0x00 ; 0 244: 79 f0 breq .+30 ; 0x264 <main+0xbc> 246: 8f 5f subi r24, 0xFF ; 255 248: 9f 47 sbci r25, 0x7F ; 127 24a: 90 93 62 00 sts 0x0062, r25 ; 0x800062 <tl_signal_end+0x1> 24e: 80 93 61 00 sts 0x0061, r24 ; 0x800061 <tl_signal_end> 252: 80 91 68 00 lds r24, 0x0068 ; 0x800068 <__bss_end> 256: 90 91 69 00 lds r25, 0x0069 ; 0x800069 <__bss_end+0x1> 25a: 01 96 adiw r24, 0x01 ; 1 25c: 90 93 69 00 sts 0x0069, r25 ; 0x800069 <__bss_end+0x1> 260: 80 93 68 00 sts 0x0068, r24 ; 0x800068 <__bss_end> 264: b1 99 sbic 0x16, 1 ; 22 266: 1a c0 rjmp .+52 ; 0x29c <main+0xf4> 268: 90 91 65 00 lds r25, 0x0065 ; 0x800065 <scan_button_cnt> 26c: 9f 5f subi r25, 0xFF ; 255 26e: 90 93 65 00 sts 0x0065, r25 ; 0x800065 <scan_button_cnt> 272: 20 91 68 00 lds r18, 0x0068 ; 0x800068 <__bss_end> 276: 30 91 69 00 lds r19, 0x0069 ; 0x800069 <__bss_end+0x1> 27a: 29 1b sub r18, r25 27c: 31 09 sbc r19, r1 27e: 30 93 69 00 sts 0x0069, r19 ; 0x800069 <__bss_end+0x1> 282: 20 93 68 00 sts 0x0068, r18 ; 0x800068 <__bss_end> 286: 95 30 cpi r25, 0x05 ; 5 288: 48 f0 brcs .+18 ; 0x29c <main+0xf4> 28a: 80 91 60 00 lds r24, 0x0060 ; 0x800060 <_edata> 28e: 95 32 cpi r25, 0x25 ; 37 290: 10 f4 brcc .+4 ; 0x296 <main+0xee> 292: 80 64 ori r24, 0x40 ; 64 294: 01 c0 rjmp .+2 ; 0x298 <main+0xf0> 296: 80 6c ori r24, 0xC0 ; 192 298: 80 93 60 00 sts 0x0060, r24 ; 0x800060 <_edata> 29c: 80 91 63 00 lds r24, 0x0063 ; 0x800063 <tl_flash_end> 2a0: 90 91 64 00 lds r25, 0x0064 ; 0x800064 <tl_flash_end+0x1> 2a4: 00 97 sbiw r24, 0x00 ; 0 2a6: a1 f0 breq .+40 ; 0x2d0 <main+0x128> 2a8: 20 91 66 00 lds r18, 0x0066 ; 0x800066 <globalTimer> 2ac: 30 91 67 00 lds r19, 0x0067 ; 0x800067 <globalTimer+0x1> 2b0: 82 17 cp r24, r18 2b2: 93 07 cpc r25, r19 2b4: 68 f4 brcc .+26 ; 0x2d0 <main+0x128> 2b6: 60 91 60 00 lds r22, 0x0060 ; 0x800060 <_edata> 2ba: 60 27 eor r22, r16 2bc: 60 93 60 00 sts 0x0060, r22 ; 0x800060 <_edata> 2c0: 65 fb bst r22, 5 2c2: 66 27 eor r22, r22 2c4: 60 f9 bld r22, 0 2c6: 81 2f mov r24, r17 2c8: 19 df rcall .-462 ; 0xfc <_Z8setPortshb> 2ca: 60 e0 ldi r22, 0x00 ; 0 2cc: 81 2f mov r24, r17 2ce: 39 df rcall .-398 ; 0x142 <_Z10setPeriodshb> 2d0: 80 91 61 00 lds r24, 0x0061 ; 0x800061 <tl_signal_end> 2d4: 90 91 62 00 lds r25, 0x0062 ; 0x800062 <tl_signal_end+0x1> 2d8: 00 97 sbiw r24, 0x00 ; 0 2da: 59 f0 breq .+22 ; 0x2f2 <main+0x14a> 2dc: 20 91 66 00 lds r18, 0x0066 ; 0x800066 <globalTimer> 2e0: 30 91 67 00 lds r19, 0x0067 ; 0x800067 <globalTimer+0x1> 2e4: 82 17 cp r24, r18 2e6: 93 07 cpc r25, r19 2e8: 20 f4 brcc .+8 ; 0x2f2 <main+0x14a> 2ea: 80 91 60 00 lds r24, 0x0060 ; 0x800060 <_edata> 2ee: 85 fd sbrc r24, 5 2f0: 91 c0 rjmp .+290 ; 0x414 <__LOCK_REGION_LENGTH__+0x14> 2f2: 80 91 60 00 lds r24, 0x0060 ; 0x800060 <_edata> 2f6: 98 2f mov r25, r24 2f8: 93 70 andi r25, 0x03 ; 3 2fa: 92 30 cpi r25, 0x02 ; 2 2fc: 09 f4 brne .+2 ; 0x300 <main+0x158> 2fe: 50 c0 rjmp .+160 ; 0x3a0 <main+0x1f8> 300: 93 30 cpi r25, 0x03 ; 3 302: 19 f0 breq .+6 ; 0x30a <main+0x162> 304: 91 30 cpi r25, 0x01 ; 1 306: 31 f5 brne .+76 ; 0x354 <main+0x1ac> 308: 46 c0 rjmp .+140 ; 0x396 <main+0x1ee> 30a: 85 b7 in r24, 0x35 ; 53 30c: 87 7e andi r24, 0xE7 ; 231 30e: 85 bf out 0x35, r24 ; 53 310: 80 91 60 00 lds r24, 0x0060 ; 0x800060 <_edata> 314: 87 ff sbrs r24, 7 316: 13 c0 rjmp .+38 ; 0x33e <main+0x196> 318: 19 30 cpi r17, 0x09 ; 9 31a: 89 f4 brne .+34 ; 0x33e <main+0x196> 31c: 84 fd sbrc r24, 4 31e: 02 c0 rjmp .+4 ; 0x324 <main+0x17c> 320: 10 e0 ldi r17, 0x00 ; 0 322: 01 c0 rjmp .+2 ; 0x326 <main+0x17e> 324: 18 e0 ldi r17, 0x08 ; 8 326: 84 60 ori r24, 0x04 ; 4 328: 80 93 60 00 sts 0x0060, r24 ; 0x800060 <_edata> 32c: 80 91 68 00 lds r24, 0x0068 ; 0x800068 <__bss_end> 330: 90 91 69 00 lds r25, 0x0069 ; 0x800069 <__bss_end+0x1> 334: 81 2b or r24, r17 336: 90 93 69 00 sts 0x0069, r25 ; 0x800069 <__bss_end+0x1> 33a: 80 93 68 00 sts 0x0068, r24 ; 0x800068 <__bss_end> 33e: b1 9b sbis 0x16, 1 ; 22 340: 4f c0 rjmp .+158 ; 0x3e0 <main+0x238> 342: 80 91 60 00 lds r24, 0x0060 ; 0x800060 <_edata> 346: 87 ff sbrs r24, 7 348: 02 c0 rjmp .+4 ; 0x34e <main+0x1a6> 34a: 8c 7f andi r24, 0xFC ; 252 34c: 1c c0 rjmp .+56 ; 0x386 <main+0x1de> 34e: 8e 7f andi r24, 0xFE ; 254 350: 82 60 ori r24, 0x02 ; 2 352: 19 c0 rjmp .+50 ; 0x386 <main+0x1de> 354: 90 91 65 00 lds r25, 0x0065 ; 0x800065 <scan_button_cnt> 358: 99 23 and r25, r25 35a: 09 f4 brne .+2 ; 0x35e <main+0x1b6> 35c: 41 c0 rjmp .+130 ; 0x3e0 <main+0x238> 35e: 87 ff sbrs r24, 7 360: 05 c0 rjmp .+10 ; 0x36c <main+0x1c4> 362: 8d 7f andi r24, 0xFD ; 253 364: 85 60 ori r24, 0x05 ; 5 366: 80 93 60 00 sts 0x0060, r24 ; 0x800060 <_edata> 36a: 19 e0 ldi r17, 0x09 ; 9 36c: b1 9b sbis 0x16, 1 ; 22 36e: 38 c0 rjmp .+112 ; 0x3e0 <main+0x238> 370: 80 91 60 00 lds r24, 0x0060 ; 0x800060 <_edata> 374: 86 ff sbrs r24, 6 376: 09 c0 rjmp .+18 ; 0x38a <main+0x1e2> 378: 8f 25 eor r24, r15 37a: 84 fd sbrc r24, 4 37c: 02 c0 rjmp .+4 ; 0x382 <main+0x1da> 37e: 10 e0 ldi r17, 0x00 ; 0 380: 01 c0 rjmp .+2 ; 0x384 <main+0x1dc> 382: 18 e0 ldi r17, 0x08 ; 8 384: 84 60 ori r24, 0x04 ; 4 386: 80 93 60 00 sts 0x0060, r24 ; 0x800060 <_edata> 38a: 10 92 65 00 sts 0x0065, r1 ; 0x800065 <scan_button_cnt> 38e: 80 91 60 00 lds r24, 0x0060 ; 0x800060 <_edata> 392: 8f 73 andi r24, 0x3F ; 63 394: 11 c0 rjmp .+34 ; 0x3b8 <main+0x210> 396: b1 9b sbis 0x16, 1 ; 22 398: 23 c0 rjmp .+70 ; 0x3e0 <main+0x238> 39a: 8e 7f andi r24, 0xFE ; 254 39c: 82 60 ori r24, 0x02 ; 2 39e: 0c c0 rjmp .+24 ; 0x3b8 <main+0x210> 3a0: b1 99 sbic 0x16, 1 ; 22 3a2: 0d c0 rjmp .+26 ; 0x3be <main+0x216> 3a4: 85 b7 in r24, 0x35 ; 53 3a6: 87 7e andi r24, 0xE7 ; 231 3a8: 85 bf out 0x35, r24 ; 53 3aa: d0 93 69 00 sts 0x0069, r29 ; 0x800069 <__bss_end+0x1> 3ae: c0 93 68 00 sts 0x0068, r28 ; 0x800068 <__bss_end> 3b2: 80 91 60 00 lds r24, 0x0060 ; 0x800060 <_edata> 3b6: 83 60 ori r24, 0x03 ; 3 3b8: 80 93 60 00 sts 0x0060, r24 ; 0x800060 <_edata> 3bc: 11 c0 rjmp .+34 ; 0x3e0 <main+0x238> 3be: 10 92 65 00 sts 0x0065, r1 ; 0x800065 <scan_button_cnt> 3c2: 8f 73 andi r24, 0x3F ; 63 3c4: 84 60 ori r24, 0x04 ; 4 3c6: 80 93 60 00 sts 0x0060, r24 ; 0x800060 <_edata> 3ca: 85 b7 in r24, 0x35 ; 53 3cc: 87 7e andi r24, 0xE7 ; 231 3ce: 80 61 ori r24, 0x10 ; 16 3d0: 85 bf out 0x35, r24 ; 53 3d2: 8b b7 in r24, 0x3b ; 59 3d4: 80 64 ori r24, 0x40 ; 64 3d6: 8b bf out 0x3b, r24 ; 59 3d8: 8a b7 in r24, 0x3a ; 58 3da: 8f 7b andi r24, 0xBF ; 191 3dc: 8a bf out 0x3a, r24 ; 58 3de: 19 e0 ldi r17, 0x09 ; 9 3e0: 80 91 60 00 lds r24, 0x0060 ; 0x800060 <_edata> 3e4: 82 ff sbrs r24, 2 3e6: 0a c0 rjmp .+20 ; 0x3fc <main+0x254> 3e8: 8b 7f andi r24, 0xFB ; 251 3ea: 80 62 ori r24, 0x20 ; 32 3ec: 80 93 60 00 sts 0x0060, r24 ; 0x800060 <_edata> 3f0: 61 e0 ldi r22, 0x01 ; 1 3f2: 81 2f mov r24, r17 3f4: 83 de rcall .-762 ; 0xfc <_Z8setPortshb> 3f6: 61 e0 ldi r22, 0x01 ; 1 3f8: 81 2f mov r24, r17 3fa: a3 de rcall .-698 ; 0x142 <_Z10setPeriodshb> 3fc: 80 91 68 00 lds r24, 0x0068 ; 0x800068 <__bss_end> 400: 90 91 69 00 lds r25, 0x0069 ; 0x800069 <__bss_end+0x1> 404: 8b 57 subi r24, 0x7B ; 123 406: 91 09 sbc r25, r1 408: 90 93 67 00 sts 0x0067, r25 ; 0x800067 <globalTimer+0x1> 40c: 80 93 66 00 sts 0x0066, r24 ; 0x800066 <globalTimer> 410: 88 95 sleep 412: ee ce rjmp .-548 ; 0x1f0 <main+0x48> 414: 1f 5f subi r17, 0xFF ; 255 416: 17 70 andi r17, 0x07 ; 7 418: 84 60 ori r24, 0x04 ; 4 41a: 80 93 60 00 sts 0x0060, r24 ; 0x800060 <_edata> 41e: 69 cf rjmp .-302 ; 0x2f2 <main+0x14a> 00000420 <_exit>: 420: f8 94 cli 00000422 <__stop_program>: 422: ff cf rjmp .-2 ; 0x422 <__stop_program>
other.7z/SFC.7z/SFC/ソースデータ/ヨッシーアイランド/日本_Ver2/chip/ys_mplay0.asm
prismotizm/gigaleak
0
97268
Name: ys_mplay0.asm Type: file Size: 43685 Last-Modified: '2016-05-13T04:51:40Z' SHA-1: 8678B03BD6785EF98FBCD8E9BB97E9FDC3BE943F Description: null
libsrc/_DEVELOPMENT/l/sccz80/crt0/l_plong.asm
meesokim/z88dk
0
22751
<reponame>meesokim/z88dk ; Z88 Small C+ Run Time Library ; Long functions ; SECTION code_l_sccz80 PUBLIC l_plong l_plong: ld a,l ld (bc),a inc bc ld a,h ld (bc),a inc bc ld a,e ld (bc),a inc bc ld a,d ld (bc),a ret
oeis/022/A022314.asm
neoneye/loda-programs
11
104980
; A022314: a(n) = a(n-1) + a(n-2) + 1, with a(0) = 0, a(1) = 9. ; 0,9,10,20,31,52,84,137,222,360,583,944,1528,2473,4002,6476,10479,16956,27436,44393,71830,116224,188055,304280,492336,796617,1288954,2085572,3374527,5460100,8834628,14294729,23129358,37424088,60553447,97977536,158530984,256508521,415039506,671548028,1086587535,1758135564,2844723100,4602858665,7447581766,12050440432,19498022199,31548462632,51046484832,82594947465,133641432298,216236379764,349877812063,566114191828,915992003892,1482106195721,2398098199614,3880204395336,6278302594951,10158506990288 mov $1,1 mov $2,9 lpb $0 sub $0,1 mov $3,$2 mov $2,$1 add $1,$3 lpe sub $1,1 mov $0,$1
samples/model/samples-user-model.adb
Letractively/ada-ado
0
17539
<filename>samples/model/samples-user-model.adb ----------------------------------------------------------------------- -- Samples.User.Model -- Samples.User.Model ----------------------------------------------------------------------- -- File generated by ada-gen DO NOT MODIFY -- Template used: templates/model/package-body.xhtml -- Ada Generator: https://ada-gen.googlecode.com/svn/trunk Revision 166 ----------------------------------------------------------------------- -- Copyright (C) 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.Unchecked_Deallocation; package body Samples.User.Model is use type ADO.Objects.Object_Record_Access; use type ADO.Objects.Object_Ref; use type ADO.Objects.Object_Record; function User_Key (Id : in ADO.Identifier) return ADO.Objects.Object_Key is Result : ADO.Objects.Object_Key (Of_Type => ADO.Objects.KEY_STRING, Of_Class => USER_TABLE'Access); begin ADO.Objects.Set_Value (Result, Id); return Result; end User_Key; function User_Key (Id : in String) return ADO.Objects.Object_Key is Result : ADO.Objects.Object_Key (Of_Type => ADO.Objects.KEY_STRING, Of_Class => USER_TABLE'Access); begin ADO.Objects.Set_Value (Result, Id); return Result; end User_Key; function "=" (Left, Right : User_Ref'Class) return Boolean is begin return ADO.Objects.Object_Ref'Class (Left) = ADO.Objects.Object_Ref'Class (Right); end "="; procedure Set_Field (Object : in out User_Ref'Class; Impl : out User_Access) is Result : ADO.Objects.Object_Record_Access; begin Object.Prepare_Modify (Result); Impl := User_Impl (Result.all)'Access; end Set_Field; -- Internal method to allocate the Object_Record instance procedure Allocate (Object : in out User_Ref) is Impl : User_Access; begin Impl := new User_Impl; Impl.Version := 0; Impl.Status := 0; ADO.Objects.Set_Object (Object, Impl.all'Access); end Allocate; -- ---------------------------------------- -- Data object: User -- ---------------------------------------- procedure Set_Id (Object : in out User_Ref; Value : in ADO.Identifier) is Impl : User_Access; begin Set_Field (Object, Impl); ADO.Objects.Set_Field_Key_Value (Impl.all, 1, Value); end Set_Id; function Get_Id (Object : in User_Ref) return ADO.Identifier is Impl : constant User_Access := User_Impl (Object.Get_Object.all)'Access; begin return Impl.Get_Key_Value; end Get_Id; function Get_Version (Object : in User_Ref) return Integer is Impl : constant User_Access := User_Impl (Object.Get_Load_Object.all)'Access; begin return Impl.Version; end Get_Version; procedure Set_Name (Object : in out User_Ref; Value : in String) is Impl : User_Access; begin Set_Field (Object, Impl); ADO.Objects.Set_Field_String (Impl.all, 3, Impl.Name, Value); end Set_Name; procedure Set_Name (Object : in out User_Ref; Value : in Ada.Strings.Unbounded.Unbounded_String) is Impl : User_Access; begin Set_Field (Object, Impl); ADO.Objects.Set_Field_Unbounded_String (Impl.all, 3, Impl.Name, Value); end Set_Name; function Get_Name (Object : in User_Ref) return String is begin return Ada.Strings.Unbounded.To_String (Object.Get_Name); end Get_Name; function Get_Name (Object : in User_Ref) return Ada.Strings.Unbounded.Unbounded_String is Impl : constant User_Access := User_Impl (Object.Get_Load_Object.all)'Access; begin return Impl.Name; end Get_Name; procedure Set_Email (Object : in out User_Ref; Value : in String) is Impl : User_Access; begin Set_Field (Object, Impl); ADO.Objects.Set_Field_String (Impl.all, 4, Impl.Email, Value); end Set_Email; procedure Set_Email (Object : in out User_Ref; Value : in Ada.Strings.Unbounded.Unbounded_String) is Impl : User_Access; begin Set_Field (Object, Impl); ADO.Objects.Set_Field_Unbounded_String (Impl.all, 4, Impl.Email, Value); end Set_Email; function Get_Email (Object : in User_Ref) return String is begin return Ada.Strings.Unbounded.To_String (Object.Get_Email); end Get_Email; function Get_Email (Object : in User_Ref) return Ada.Strings.Unbounded.Unbounded_String is Impl : constant User_Access := User_Impl (Object.Get_Load_Object.all)'Access; begin return Impl.Email; end Get_Email; procedure Set_Date (Object : in out User_Ref; Value : in String) is Impl : User_Access; begin Set_Field (Object, Impl); ADO.Objects.Set_Field_String (Impl.all, 5, Impl.Date, Value); end Set_Date; procedure Set_Date (Object : in out User_Ref; Value : in Ada.Strings.Unbounded.Unbounded_String) is Impl : User_Access; begin Set_Field (Object, Impl); ADO.Objects.Set_Field_Unbounded_String (Impl.all, 5, Impl.Date, Value); end Set_Date; function Get_Date (Object : in User_Ref) return String is begin return Ada.Strings.Unbounded.To_String (Object.Get_Date); end Get_Date; function Get_Date (Object : in User_Ref) return Ada.Strings.Unbounded.Unbounded_String is Impl : constant User_Access := User_Impl (Object.Get_Load_Object.all)'Access; begin return Impl.Date; end Get_Date; procedure Set_Description (Object : in out User_Ref; Value : in String) is Impl : User_Access; begin Set_Field (Object, Impl); ADO.Objects.Set_Field_String (Impl.all, 6, Impl.Description, Value); end Set_Description; procedure Set_Description (Object : in out User_Ref; Value : in Ada.Strings.Unbounded.Unbounded_String) is Impl : User_Access; begin Set_Field (Object, Impl); ADO.Objects.Set_Field_Unbounded_String (Impl.all, 6, Impl.Description, Value); end Set_Description; function Get_Description (Object : in User_Ref) return String is begin return Ada.Strings.Unbounded.To_String (Object.Get_Description); end Get_Description; function Get_Description (Object : in User_Ref) return Ada.Strings.Unbounded.Unbounded_String is Impl : constant User_Access := User_Impl (Object.Get_Load_Object.all)'Access; begin return Impl.Description; end Get_Description; procedure Set_Status (Object : in out User_Ref; Value : in Integer) is Impl : User_Access; begin Set_Field (Object, Impl); ADO.Objects.Set_Field_Integer (Impl.all, 7, Impl.Status, Value); ADO.Objects.Set_Field_Integer (Impl.all, 7, Impl.Status, Value); end Set_Status; function Get_Status (Object : in User_Ref) return Integer is Impl : constant User_Access := User_Impl (Object.Get_Load_Object.all)'Access; begin return Impl.Status; end Get_Status; -- Copy of the object. procedure Copy (Object : in User_Ref; Into : in out User_Ref) is Result : User_Ref; begin if not Object.Is_Null then declare Impl : constant User_Access := User_Impl (Object.Get_Load_Object.all)'Access; Copy : constant User_Access := new User_Impl; begin ADO.Objects.Set_Object (Result, Copy.all'Access); Copy.Copy (Impl.all); Copy.Version := Impl.Version; Copy.Name := Impl.Name; Copy.Email := Impl.Email; Copy.Date := Impl.Date; Copy.Description := Impl.Description; Copy.Status := Impl.Status; end; end if; Into := Result; end Copy; procedure Find (Object : in out User_Ref; Session : in out ADO.Sessions.Session'Class; Query : in ADO.SQL.Query'Class; Found : out Boolean) is Impl : constant User_Access := new User_Impl; begin Impl.Find (Session, Query, Found); if Found then ADO.Objects.Set_Object (Object, Impl.all'Access); else ADO.Objects.Set_Object (Object, null); Destroy (Impl); end if; end Find; procedure Load (Object : in out User_Ref; Session : in out ADO.Sessions.Session'Class; Id : in ADO.Identifier) is Impl : constant User_Access := new User_Impl; Found : Boolean; Query : ADO.SQL.Query; begin Query.Bind_Param (Position => 1, Value => Id); Query.Set_Filter ("id = ?"); Impl.Find (Session, Query, Found); if not Found then Destroy (Impl); raise ADO.Objects.NOT_FOUND; end if; ADO.Objects.Set_Object (Object, Impl.all'Access); end Load; procedure Load (Object : in out User_Ref; Session : in out ADO.Sessions.Session'Class; Id : in ADO.Identifier; Found : out Boolean) is Impl : constant User_Access := new User_Impl; Query : ADO.SQL.Query; begin Query.Bind_Param (Position => 1, Value => Id); Query.Set_Filter ("id = ?"); Impl.Find (Session, Query, Found); if not Found then Destroy (Impl); else ADO.Objects.Set_Object (Object, Impl.all'Access); end if; end Load; procedure Save (Object : in out User_Ref; Session : in out ADO.Sessions.Master_Session'Class) is Impl : ADO.Objects.Object_Record_Access := Object.Get_Object; begin if Impl = null then Impl := new User_Impl; ADO.Objects.Set_Object (Object, Impl); end if; if not ADO.Objects.Is_Created (Impl.all) then Impl.Create (Session); else Impl.Save (Session); end if; end Save; procedure Delete (Object : in out User_Ref; Session : in out ADO.Sessions.Master_Session'Class) is Impl : constant ADO.Objects.Object_Record_Access := Object.Get_Object; begin if Impl /= null then Impl.Delete (Session); end if; end Delete; -- -------------------- -- Free the object -- -------------------- procedure Destroy (Object : access User_Impl) is type User_Impl_Ptr is access all User_Impl; procedure Unchecked_Free is new Ada.Unchecked_Deallocation (User_Impl, User_Impl_Ptr); Ptr : User_Impl_Ptr := User_Impl (Object.all)'Access; begin Unchecked_Free (Ptr); end Destroy; procedure Find (Object : in out User_Impl; Session : in out ADO.Sessions.Session'Class; Query : in ADO.SQL.Query'Class; Found : out Boolean) is Stmt : ADO.Statements.Query_Statement := Session.Create_Statement (USER_TABLE'Access); begin Stmt.Set_Parameters (Query); Stmt.Execute; if Stmt.Has_Elements then Object.Load (Stmt, Session); Stmt.Next; Found := not Stmt.Has_Elements; else Found := False; end if; end Find; overriding procedure Load (Object : in out User_Impl; Session : in out ADO.Sessions.Session'Class) is Found : Boolean; Query : ADO.SQL.Query; Id : constant ADO.Identifier := Object.Get_Key_Value; begin Query.Bind_Param (Position => 1, Value => Id); Query.Set_Filter ("id = ?"); Object.Find (Session, Query, Found); if not Found then raise ADO.Objects.NOT_FOUND; end if; end Load; procedure Save (Object : in out User_Impl; Session : in out ADO.Sessions.Master_Session'Class) is Stmt : ADO.Statements.Update_Statement := Session.Create_Statement (USER_TABLE'Access); begin if Object.Is_Modified (1) then Stmt.Save_Field (Name => COL_0_1_NAME, -- ID Value => Object.Get_Key); Object.Clear_Modified (1); end if; if Object.Is_Modified (3) then Stmt.Save_Field (Name => COL_2_1_NAME, -- NAME Value => Object.Name); Object.Clear_Modified (3); end if; if Object.Is_Modified (4) then Stmt.Save_Field (Name => COL_3_1_NAME, -- EMAIL Value => Object.Email); Object.Clear_Modified (4); end if; if Object.Is_Modified (5) then Stmt.Save_Field (Name => COL_4_1_NAME, -- DATE Value => Object.Date); Object.Clear_Modified (5); end if; if Object.Is_Modified (6) then Stmt.Save_Field (Name => COL_5_1_NAME, -- DESCRIPTION Value => Object.Description); Object.Clear_Modified (6); end if; if Object.Is_Modified (7) then Stmt.Save_Field (Name => COL_6_1_NAME, -- STATUS Value => Object.Status); Object.Clear_Modified (7); end if; if Stmt.Has_Save_Fields then Object.Version := Object.Version + 1; Stmt.Save_Field (Name => "version", Value => Object.Version); Stmt.Set_Filter (Filter => "id = ? and version = ?"); Stmt.Add_Param (Value => Object.Get_Key); Stmt.Add_Param (Value => Object.Version - 1); declare Result : Integer; begin Stmt.Execute (Result); if Result /= 1 then if Result /= 0 then raise ADO.Objects.UPDATE_ERROR; else raise ADO.Objects.LAZY_LOCK; end if; end if; end; end if; end Save; procedure Create (Object : in out User_Impl; Session : in out ADO.Sessions.Master_Session'Class) is Query : ADO.Statements.Insert_Statement := Session.Create_Statement (USER_TABLE'Access); Result : Integer; begin Object.Version := 1; Session.Allocate (Id => Object); Query.Save_Field (Name => COL_0_1_NAME, -- ID Value => Object.Get_Key); Query.Save_Field (Name => COL_1_1_NAME, -- object_version Value => Object.Version); Query.Save_Field (Name => COL_2_1_NAME, -- NAME Value => Object.Name); Query.Save_Field (Name => COL_3_1_NAME, -- EMAIL Value => Object.Email); Query.Save_Field (Name => COL_4_1_NAME, -- DATE Value => Object.Date); Query.Save_Field (Name => COL_5_1_NAME, -- DESCRIPTION Value => Object.Description); Query.Save_Field (Name => COL_6_1_NAME, -- STATUS Value => Object.Status); Query.Execute (Result); if Result /= 1 then raise ADO.Objects.INSERT_ERROR; end if; ADO.Objects.Set_Created (Object); end Create; procedure Delete (Object : in out User_Impl; Session : in out ADO.Sessions.Master_Session'Class) is Stmt : ADO.Statements.Delete_Statement := Session.Create_Statement (USER_TABLE'Access); begin Stmt.Set_Filter (Filter => "id = ?"); Stmt.Add_Param (Value => Object.Get_Key); Stmt.Execute; end Delete; function Get_Value (Item : in User_Ref; Name : in String) return Util.Beans.Objects.Object is Obj : constant ADO.Objects.Object_Record_Access := Item.Get_Load_Object; Impl : access User_Impl; begin if Obj = null then return Util.Beans.Objects.Null_Object; end if; Impl := User_Impl (Obj.all)'Access; if Name = "id" then return ADO.Objects.To_Object (Impl.Get_Key); end if; if Name = "name" then return Util.Beans.Objects.To_Object (Impl.Name); end if; if Name = "email" then return Util.Beans.Objects.To_Object (Impl.Email); end if; if Name = "date" then return Util.Beans.Objects.To_Object (Impl.Date); end if; if Name = "description" then return Util.Beans.Objects.To_Object (Impl.Description); end if; if Name = "status" then return Util.Beans.Objects.To_Object (Long_Long_Integer (Impl.Status)); end if; return Util.Beans.Objects.Null_Object; end Get_Value; procedure List (Object : in out User_Vector; Session : in out ADO.Sessions.Session'Class; Query : in ADO.SQL.Query'Class) is Stmt : ADO.Statements.Query_Statement := Session.Create_Statement (USER_TABLE'Access); begin Stmt.Set_Parameters (Query); Stmt.Execute; User_Vectors.Clear (Object); while Stmt.Has_Elements loop declare Item : User_Ref; Impl : constant User_Access := new User_Impl; begin Impl.Load (Stmt, Session); ADO.Objects.Set_Object (Item, Impl.all'Access); Object.Append (Item); end; Stmt.Next; end loop; end List; -- ------------------------------ -- Load the object from current iterator position -- ------------------------------ procedure Load (Object : in out User_Impl; Stmt : in out ADO.Statements.Query_Statement'Class; Session : in out ADO.Sessions.Session'Class) is pragma Unreferenced (Session); begin Object.Set_Key_Value (Stmt.Get_Identifier (0)); Object.Name := Stmt.Get_Unbounded_String (2); Object.Email := Stmt.Get_Unbounded_String (3); Object.Date := Stmt.Get_Unbounded_String (4); Object.Description := Stmt.Get_Unbounded_String (5); Object.Status := Stmt.Get_Integer (6); Object.Version := Stmt.Get_Integer (1); ADO.Objects.Set_Created (Object); end Load; -- -------------------- -- -- -------------------- procedure List (Object : in out User_Info_Vector; Session : in out ADO.Sessions.Session'Class; Context : in out ADO.Queries.Context'Class) is procedure Read (Into : in out User_Info); Stmt : ADO.Statements.Query_Statement := Session.Create_Statement (Context); Pos : Natural := 0; procedure Read (Into : in out User_Info) is begin Into.Id := Stmt.Get_Identifier (0); Into.Name := Stmt.Get_Unbounded_String (1); Into.Email := Stmt.Get_Unbounded_String (2); end Read; begin Stmt.Execute; User_Info_Vectors.Clear (Object); while Stmt.Has_Elements loop Object.Insert_Space (Before => Pos); Object.Update_Element (Index => Pos, Process => Read'Access); Pos := Pos + 1; Stmt.Next; end loop; end List; end Samples.User.Model;
Driver/Video/VGAlike/SVGA/svgaAdmin.asm
steakknife/pcgeos
504
170863
<gh_stars>100-1000 COMMENT }%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) GeoWorks 1990 -- All Rights Reserved PROJECT: PC GEOS MODULE: SVGA Video Driver FILE: svgaAdmin.asm AUTHOR: <NAME> ROUTINES: Name Description ---- ----------- VidScreenOn turn on video VidScreenOff turn off video VidTestEverex test for Everex Super VGA card VidSetEverex set Everex Super VGA mode REVISION HISTORY: Name Date Description ---- ---- ----------- jad 9/90 initial version jeremy 5/91 changed the VGA Wonder initialization to use a different mode subfunction; changed the OAK Technologies test to do a case-insensitive search through memory for the "Oak" validation string. DESCRIPTION: This file contains routines to implement some of the administrative parts of the driver. $Id: svgaAdmin.asm,v 1.1 97/04/18 11:42:25 newdeal Exp $ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%} VideoMisc segment resource COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% VidScreenOff %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Disable video output, for a screen saver CALLED BY: GLOBAL PASS: nothing RETURN: nothing DESTROYED: nothing PSEUDO CODE/STRATEGY: Disable the video output KNOWN BUGS/SIDE EFFECTS/IDEAS: none REVISION HISTORY: Name Date Description ---- ---- ----------- Jim 12/89 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ VidScreenOff proc far .enter ; first see if the screen is already blank dec ss:videoEnabled ; is it enabled js tooFar ; oops, called it to often jne done ; someone still wants it off ; now do the disable thing. mov ah, ALT_SELECT ; choose BIOS function number mov bl, VIDEO_SCREEN_ON_OFF ; choose sub-function number mov al, VGA_DISABLE_VIDEO ; disable it this time int VIDEO_BIOS done: .leave ret ; decremented too far, get back to zero tooFar: mov ss:videoEnabled, 0 jmp done VidScreenOff endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% VidScreenOn %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Enable video output, for a screen saver CALLED BY: GLOBAL PASS: nothing RETURN: nothing DESTROYED: nothing PSEUDO CODE/STRATEGY: Disable the video output KNOWN BUGS/SIDE EFFECTS/IDEAS: none REVISION HISTORY: Name Date Description ---- ---- ----------- Jim 12/89 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ VidScreenOn proc far .enter ; first see if the screen is already enabled inc ss:videoEnabled ; check for turn on cmp ss:videoEnabled, 1 ; is it enabled jg done ; yes, don't do it again mov ss:videoEnabled, 1 ; no, make sure it;s one ; enable video signal on card mov ah, ALT_SELECT ; choose BIOS function number mov bl, VIDEO_SCREEN_ON_OFF ; choose sub-function number mov al, VGA_ENABLE_VIDEO ; disable video signal int VIDEO_BIOS done: .leave ret VidScreenOn endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% VidTestVESA %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Test for VESA compatible board CALLED BY: INTERNAL VidTestDevice PASS: nothing RETURN: ax - DevicePresent enum DESTROYED: nothing PSEUDO CODE/STRATEGY: call VESA inquiry functins KNOWN BUGS/SIDE EFFECTS/IDEAS: none REVISION HISTORY: Name Date Description ---- ---- ----------- Jim 09/90 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ VESAInfoBlock struct VIB_sig byte 4 dup (?) ; 'VESA' - VESA signature VIB_ver word ; version number (hi byte = major #) VIB_oem fptr ; far pointer to OEM string VIB_caps byte 4 dup (?) ; video capabilities VIB_modes fptr ; pointer to table of modes VIB_future byte 240 dup (?) ; pad out to (at least) 256 bytes VESAInfoBlock ends VidTestVESA proc near uses es, di vesaInfo local VESAInfoBlock .enter ; use extended BIOS function 0x4f - 0 to determine if this ; is a VESA compatible board, then check the table of ; supported modes to determine if the 800x600 16-color mode ; is supported. segmov es, ss, di ; es -> stack lea di, vesaInfo ; es:di -> info block mov ah, VESA_BIOS_EXT ; use VESA bios extensions mov al, VESA_GET_SVGA_INFO ; basic info call int VIDEO_BIOS ; make bios call ; if al = VESA_BIOS_EXT, then there is a VESA compatible board ; there...actually, we need to check for the VESA signature too cmp ax, VESA_BIOS_EXT ; is this a VESA board ? jne notPresent ; no, exit cmp {byte} vesaInfo.VIB_sig, 'V' ; gimme a V jne notPresent cmp {byte} vesaInfo.VIB_sig[1], 'E' ; gimme a E jne notPresent cmp {byte} vesaInfo.VIB_sig[2], 'S' ; gimme a S jne notPresent cmp {byte} vesaInfo.VIB_sig[3], 'A' ; gimme a A jne notPresent ; OK, there is a VESA board out there. Check the mode table ; for the correct mode. les di, vesaInfo.VIB_modes ; get pointer to mode info mov ax, VESA_800x600_4BIT ; mode to check for checkLoop: cmp es:[di], 0xffff ; at mode table terminator? je notPresent scasw ; check this word jne checkLoop ; nope, on to next mode mov ax, DP_PRESENT ; yep, it's there done: .leave ret ; the extended BIOS functions are not supported, but assume ; that the 0x6a interface is there. notPresent: mov ax, DP_CANT_TELL ; assume not jmp done VidTestVESA endp if (0) COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% VidSetVESA %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Set VESA 800x600 mode CALLED BY: INTERNAL VidSetDevice PASS: nothing RETURN: nothing DESTROYED: nothing PSEUDO CODE/STRATEGY: call VESA set mode function KNOWN BUGS/SIDE EFFECTS/IDEAS: none REVISION HISTORY: Name Date Description ---- ---- ----------- Jim 09/90 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ VidSetVESA proc near uses ax,bx .enter ; just use the BIOS extension mov ah, VESA_BIOS_EXT mov al, VESA_SET_MODE mov bx, VESA_800x600_4BIT ; mode number, clear memory int VIDEO_BIOS .leave ret VidSetVESA endp endif COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% VidSetWithOldBIOS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Set VESA 800x600 mode, the old way CALLED BY: INTERNAL VidSetDevice PASS: di - VideoDevice enum RETURN: nothing DESTROYED: nothing PSEUDO CODE/STRATEGY: call VESA set mode function KNOWN BUGS/SIDE EFFECTS/IDEAS: none REVISION HISTORY: Name Date Description ---- ---- ----------- Jim 09/90 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ VidSetWithOldBIOS proc near uses ax,bx,di .enter ; check with the Kernel to see if the Loader already switched ; to this video mode, to display the splash screen segmov ds, dgroup, ax test ds:[driverState], mask VS_IGNORE_SPLASH_MODE jnz setIt mov ax, SGIT_CURRENT_SIMPLE_GRAPHICS_MODE call SysGetInfo ;al = SysSimpleGraphicsMode ;set by the loader (if any) cmp al, SSGM_SVGA_VESA ;SVGA? je done ;skip to end if so... setIt: ;set the video mode for the SVGA card ;just look up the mode bnumber and set it normally shr di, 1 ; make it a byte index mov ah, SET_VMODE mov al, cs:OldBIOSModeNums[di] int VIDEO_BIOS done: ; after setting the mode, init the palette. clr bx mov cx, 16 ; init first 16 entries segmov es, cs, dx mov dx, offset defVGAPalette mov ax, SET_DACREGS int VIDEO_BIOS .leave ret VidSetWithOldBIOS endp defVGAPalette label byte byte 0x00, 0x00, 0x00 byte 0x00, 0x00, 0x2a byte 0x00, 0x2a, 0x00 byte 0x00, 0x2a, 0x2a byte 0x2a, 0x00, 0x00 byte 0x2a, 0x00, 0x2a byte 0x2a, 0x15, 0x00 byte 0x2a, 0x2a, 0x2a byte 0x15, 0x15, 0x15 byte 0x15, 0x15, 0x3f byte 0x15, 0x3f, 0x15 byte 0x15, 0x3f, 0x3f byte 0x3f, 0x15, 0x15 byte 0x3f, 0x15, 0x3f byte 0x3f, 0x3f, 0x15 byte 0x3f, 0x3f, 0x3f OldBIOSModeNums label byte byte 0x6a ; VD_VESA_800 (ext mode set) byte 0x02 ; VD_EVEREX_VP800 (ext mode set) byte 0x05 ; VD_HEADLAND_800 (ext mode set) byte 0x52 ; VD_OAK_800 byte 0x6a ; VD_AHEAD_800 byte 0x54 ; VD_ATI_800 byte 0x6a ; VD_MAXLOGIC_800 byte 0x6a ; VD_CHIPS_800 byte 0x79 ; VD_GENOA_800 byte 0x5b ; VD_TVGA_800 byte 0x29 ; VD_TSENG_800 byte 0x58 ; VD_PARADISE_800 byte 0x6a ; VD_ZYMOS_POACH51 byte 0x29 ; VD_ORCHID_PRO_800 byte 0x29 ; VD_QUADRAM_SPECTRA byte 0x29 ; VD_SOTA byte 0x29 ; VD_STB byte 0x64 ; VD_CIRRUS_800 COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% VidTestEverex %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Test for the existance of a device CALLED BY: GLOBAL DriverStrategy PASS: nothing RETURN: ax - VideoPresent enum DESTROYED: nothing PSEUDO CODE/STRATEGY: The following Everex video cards support the 800x600 16-color mode we are trying to test for: EV-236 (Ultragraphics II) EV-678 (Viewpoint VGA) EV-673 (EVGA) EV-657_3 (Various revs of VGA cards) EV-659_2600 EV-659_2 The code to determine these board types was taken from a document that can be found on Everex's BBS at 415-683-2924 for 300/1200/2400 baud 8-1-N KNOWN BUGS/SIDE EFFECTS/IDEAS: none REVISION HISTORY: Name Date Description ---- ---- ----------- Jim 08/90 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ VidTestEverex proc near uses bx,di,es,cx, dx .enter ; first check for the Viewpoint and Ultragraphics, since ; there is a BIOS routine to find them mov ax, 7000h ; set up get-info function clr bx ; function number int VIDEO_BIOS cmp al, 70h ; check for valid completion jne checkSig ; all these cards support the mode ; OK, the BIOS call is there. Check to make sure we have ; a monitor that can support the 800x600 mode cmp cl, 6 ; have a super VGA display or better? jae foundIt ; yes, everything OK ; check the video bios for a string that starts with the ; chars "EV". This is the first part of the Everex signature, ; which is actually "EVEREX SYSTEM INC.". If checking the ; first two is not enough, we may have to check the whole ; string. We'll worry about that later. The signature can ; be anywhere in the first 0x1000 bytes of the BIOS. checkSig: mov ax, 0xc000 ; set up segreg to point there mov es, ax ; ds -> signature mov al, 'E' ; searching for an E clr di ; ds:si -> signature mov cx, 0x1000 ; check this far (at most) searchMore: repne scasb jcxz notFound ; not the right board cmp {byte} es:[di], 'V' ; is 2nd char V ? jne searchMore ; no, keep looking ; OK, we have our EV. Assume it's an Everex and look for ; the board number. di points at the V, and the board number ; is the next word after the signature mov ax, es:[di+EVLEN-1] ; get board number cmp ax, 0x5703 ; check for EV-657_3 je foundIt cmp ax, 0x572b ; check for EV-657_3 je foundIt cmp ax, 0x5902 ; check for EV-659_2 je foundIt cmp ax, 0x5926 ; check for EV-659_2600 jne notFound foundIt: mov ax, DP_PRESENT exit: .leave ret notFound: mov ax, DP_NOT_PRESENT jmp exit VidTestEverex endp EverexSig char "EVEREX SYSTEM INC." EVLEN equ $-EverexSig COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% VidSetEverex %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Write out a string CALLED BY: GLOBAL PASS: nothing RETURN: nothing DESTROYED: nothing PSEUDO CODE/STRATEGY: put pseudo code here KNOWN BUGS/SIDE EFFECTS/IDEAS: none REVISION HISTORY: Name Date Description ---- ---- ----------- Jim 03/90 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ VidSetEverex proc near uses ax,bx .enter ; initialize display driver variables ; set the video mode for the View800 card mov ah, SET_VMODE ; function # to set video mode mov al, EVEREX_SET_MODE ; signal Everex extended mode mov bl, EVEREX_800_MODE ; choose 800x600 16-color mode int VIDEO_BIOS ; use video BIOS call .leave ret VidSetEverex endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% VidTestHeadland %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Test for Video 7 compatible board CALLED BY: INTERNAL VidTestDevice PASS: nothing RETURN: nothing DESTROYED: nothing PSEUDO CODE/STRATEGY: just use the BIOS KNOWN BUGS/SIDE EFFECTS/IDEAS: none REVISION HISTORY: Name Date Description ---- ---- ----------- Jim 09/90 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ VidTestHeadland proc near uses bx .enter ; check for video 7 product mov ax, HEADLAND_INQUIRE ; extended BIOS mode function int VIDEO_BIOS cmp bx, '7V' ; video 7 product ? je checkBios cmp bx, 'TH' ; will use HT (for HeadlandTech) soon jne notPresent ; now check for the V7VGA chip checkBios: mov ax, HEADLAND_GET_CONFIG ; get memory configuration int VIDEO_BIOS cmp bh, 70h ; check chip version jb notPresent cmp bh, 7fh ; between 70 and 7f ja notPresent mov ax, DP_PRESENT done: .leave ret ; not present notPresent: mov ax, DP_NOT_PRESENT jmp done VidTestHeadland endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% VidSetHeadland %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Set Video 7 800x600 mode CALLED BY: INTERNAL VidSetDevice PASS: nothing RETURN: nothing DESTROYED: nothing PSEUDO CODE/STRATEGY: use BIOS KNOWN BUGS/SIDE EFFECTS/IDEAS: none REVISION HISTORY: Name Date Description ---- ---- ----------- Jim 09/90 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ VidSetHeadland proc near uses ax, bx .enter ; set the mode with the BIOS mov ax, HEADLAND_SET_MODE ; function # to set video mode mov bl, HEADLAND_800_MODE ; video mode to set int VIDEO_BIOS .leave ret VidSetHeadland endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% VidTestOak %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Test for OTI compatible board CALLED BY: INTERNAL VidTestDevice PASS: nothing RETURN: DevicePresent enum DESTROYED: ax, bx, cx PSEUDO CODE/STRATEGY: KNOWN BUGS/SIDE EFFECTS/IDEAS: none REVISION HISTORY: Name Date Description ---- ---- ----------- Jim 09/90 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ oakString char "OAK" VidTestOak proc near uses ds, es, si, di CHECK_STRING_LEN equ 3 ; .enter mov ax, 0xc000 ; check for "OAK VGA" at c000 mov ds, ax ; ds:si <- c000:0 clr si segmov es, cs, ax ; es:di <- ptr to check string lea di, oakString mov bx, 100 ; range in memory to search ; through, from c000. stringLoop: mov cx, CHECK_STRING_LEN ; call CompareStringIgnoreCase ; jnc stringFound inc si dec bx jnz stringLoop ; If we made it here, the string was NOT found. mov ax, DP_NOT_PRESENT jmp done stringFound: mov ax, DP_PRESENT done: .leave ret VidTestOak endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% VidTestAhead %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Test for Ahead Systems VGA WIzard CALLED BY: INTERNAL VidTestDevice PASS: nothing RETURN: nothing DESTROYED: nothing PSEUDO CODE/STRATEGY: got this out of "Advanced Programmers Guide to Super VGA Cards" by Sutty and Blair, page 256. KNOWN BUGS/SIDE EFFECTS/IDEAS: none REVISION HISTORY: Name Date Description ---- ---- ----------- Jim 09/90 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ VidTestAhead proc near uses ds, es, si, di, cx .enter ; first check for signature at c000:0025 mov di, 0xc000 ; point at VGA bios mov es, di mov di, 0x25 segmov ds, cs, si mov si, offset AheadString mov cx, size AheadString repe cmpsb mov ax, DP_PRESENT jcxz done mov ax, DP_NOT_PRESENT done: .leave ret VidTestAhead endp AheadString char "AHEAD" COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% VidTestATI %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Test for ATI VGA Wonder CALLED BY: INTERNAL VidTestDevice PASS: nothing RETURN: nothing DESTROYED: nothing PSEUDO CODE/STRATEGY: got this out of "Advanced Programmers Guide to Super VGA Cards" by Sutty and Blair, page 291. KNOWN BUGS/SIDE EFFECTS/IDEAS: none REVISION HISTORY: Name Date Description ---- ---- ----------- Jim 09/90 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ VidTestATI proc near uses ds, es, si, di, cx .enter ; first check for signature at c000:0031 mov di, 0xc000 ; point at VGA bios mov es, di mov di, 0x31 segmov ds, cs, si mov si, offset ATISig mov cx, size ATISig repe cmpsb mov ax, DP_PRESENT jcxz done mov ax, DP_NOT_PRESENT done: .leave ret VidTestATI endp ATISig char "761295520" COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% VidTestCirrus %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Test for Cirrus 510/520 chip sets CALLED BY: INTERNAL VidTestDevice PASS: nothing RETURN: nothing DESTROYED: nothing PSEUDO CODE/STRATEGY: got this out of "Advanced Programmers Guide to Super VGA Cards" by Sutty and Blair, page 313. KNOWN BUGS/SIDE EFFECTS/IDEAS: none REVISION HISTORY: Name Date Description ---- ---- ----------- Jim 09/90 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ VidTestCirrus proc near uses es, dx .enter ; do a quick check first to see if the BIOS is there... mov ax, 0xc000 ; point at VGA bios mov es, ax mov ax, DP_PRESENT cmp {word} es:[6], 'LC' ; check for Cirrus... je done ; yes, all done ; the easy way didn't work. try the hard way. clr ax ; point to BIOS data area mov es, ax mov dx, es:[463h] ; fetch CRTC address push dx ; ..and save it mov al, 0x0c ; index to start addr register out dx, al ; set up index inc dx in al, dx ; get current reg value mov ah, al ; ..and save it mov al, 0x0c ; save pair to restore with push ax clr al out dx, al ; new value for reg dec dx ; now fetch the unlock password mov al, 1fh ; index of ID reg out dx, al inc dx in al, dx ; read password mov ah, al ; save password ; enable extended registers mov dx, GR_SEQUENCER ; set up sequencer reg mov al, 0x06 ; index to extension control out dx, al inc dx mov al, ah ; set up password out dx, al in al, dx ; read back extension reg cmp al, 1 ; read back as '1' ? jne notPresent ; disable extended registers mov al, ah ; unlock password ror al, 1 ; compute lock password ror al, 1 ror al, 1 ror al, 1 out dx, al ; lock the registers in al, dx ; read extended control tst al ; is it zero ? jne notPresent pop ax ; restore restore values pop dx out dx, ax ; restore registers mov ax, DP_PRESENT done: .leave ret ; didn't make it. notPresent: pop ax ; restore stack pop dx out dx, ax ; restore reg mov ax, DP_NOT_PRESENT jmp done VidTestCirrus endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% VidTestCHiPS %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Test for CHiPS and Technologies 82C452 chip sets CALLED BY: INTERNAL VidTestDevice PASS: nothing RETURN: nothing DESTROYED: nothing PSEUDO CODE/STRATEGY: got this out of "Advanced Programmers Guide to Super VGA Cards" by Sutty and Blair, page 343. KNOWN BUGS/SIDE EFFECTS/IDEAS: none REVISION HISTORY: Name Date Description ---- ---- ----------- Jim 09/90 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ VidTestCHiPS proc near uses dx, es .enter ; place VGA in SETUP mode cli ; no interrupts now... mov dx, 46e8h ; addr of setup control reg in al, dx ; get current value or al, 10h ; turn setup bit on out dx, al ; place chip in setup mode ; enable extended register bank mov dx, 103h ; address of extended enable reg in al, dx ; get current value or al, 80h ; turn enable bit on out dx, al ; enable extended regs ; read global ID mov dx, 104h ; addr of global ID reg in al, dx ; read the ID mov ah, al ; save ID for later ; place VGA in normal mode mov dx, 46e8h ; address of setup control reg in al, dx ; get current value and al, 0efh ; clear setup bit out dx, al ; enable normal mode sti ; re-enable interrupts ; read version extended reg mov dx, 3d6h ; address of extended reg clr al out dx, al ; select version reg inc dx in al, dx ; get version value ; check if CHiPS 82C452 cmp ah, 5ah ; look for product ID (saved earlier) jne notPresent ; nope... mov ah, al and ah, 0f0h ; isolate chip id cmp al, 10h ; check for 82C452 id jne notPresent mov ax, DP_PRESENT done: .leave ret ; not here notPresent: mov ax, DP_NOT_PRESENT jmp done VidTestCHiPS endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% VidTestGenoa %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Test for Genoa SuperVGA card CALLED BY: INTERNAL VidTestDevice PASS: nothing RETURN: nothing DESTROYED: nothing PSEUDO CODE/STRATEGY: got this out of "Advanced Programmers Guide to Super VGA Cards" by Sutty and Blair, page 356. KNOWN BUGS/SIDE EFFECTS/IDEAS: none REVISION HISTORY: Name Date Description ---- ---- ----------- Jim 09/90 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ VidTestGenoa proc near uses es .enter ; load up the address of the ID bytes mov ax, 0xc000 ; VGA BIOS addr mov es, ax ; The SuperVGA book says that there is a double-word pointer ; at this location. The BIOS that is in the board that I ; have, and the User's guide that came from Genoa, both ; say that this is an offset into the C000 segment, not a ; dword pointer. ; les di, es:[37h] ; load up fptr mov di, es:[37h] ; load up nptr cmp {byte} es:[di], 77h ; check all 4 bytes jne notPresent cmp {byte} es:[di+1], 11h jne notPresent cmp {byte} es:[di+2], 99h jne notPresent cmp {byte} es:[di+3], 66h jne notPresent mov ax, DP_PRESENT done: .leave ret ; not here notPresent: mov ax, DP_NOT_PRESENT jmp done VidTestGenoa endp ; GenoaID byte 77h,11h,99h,66h COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% VidTestTrident %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Test for Trident TVGA chip (either ver1:8800BR or ver2:8800CS) CALLED BY: INTERNAL VidTestDevice PASS: nothing RETURN: nothing DESTROYED: nothing PSEUDO CODE/STRATEGY: got this out of "Advanced Programmers Guide to Super VGA Cards" by Sutty and Blair, page 413. KNOWN BUGS/SIDE EFFECTS/IDEAS: As per Trident documentation, the following version numbers are encoded in the chips: chip version number ---- -------------- 8800BR 1 8800CS 2 8900B 3 8900C 4 REVISION HISTORY: Name Date Description ---- ---- ----------- Jim 09/90 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ VidTestTrident proc near uses dx,es .enter ; address of extended reg bank mov dx, 3c4h mov al, 0bh ; index to version reg out dx, al inc dx in al, dx ; read version and al, 0fh ; only need lower nibble jz notPresent cmp al, 4 ; check for version 1-4 ja notPresent mov ax, DP_PRESENT done: .leave ret ; not here notPresent: mov ax, DP_NOT_PRESENT jmp done VidTestTrident endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% VidTestTseng %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Test for Tseng Labs chip ET3000 CALLED BY: INTERNAL VidTestDevice PASS: nothing RETURN: nothing DESTROYED: ax PSEUDO CODE/STRATEGY: got this out of "Advanced Programmers Guide to Super VGA Cards" by Sutty and Blair, page 443. NOTE: This also works for the ET4000 chip. KNOWN BUGS/SIDE EFFECTS/IDEAS: While this will detect the chips, and while most boards that have the chip will support the BIOS modes, not all will. Be careful when using this to determine if a video board is present... REVISION HISTORY: Name Date Description ---- ---- ----------- Jim 09/90 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ VidTestTseng proc near uses dx,es .enter mov dx, 3cdh ; address of page select register in al, dx ; read current value mov ah, al ; save for later and al, 0c0h ; preserve top two bits or al, 55h ; test value one out dx, al in al, dx ; read value just written cmp al, 55h ; is it the same ? jne notPresent ; nope, not the right device mov al, 0aah ; test value two out dx, al in al, dx cmp al, 0aah ; same value read back ? jne notPresent mov al, ah out dx, al mov ax, DP_PRESENT done: .leave ret ; not here notPresent: mov al, ah out dx, al mov ax, DP_NOT_PRESENT jmp done VidTestTseng endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% VidTestParadise %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Test for Western Digital board CALLED BY: INTERNAL VidTestDevice PASS: nothing RETURN: nothing DESTROYED: nothing PSEUDO CODE/STRATEGY: got this out of "Advanced Programmers Guide to Super VGA Cards" by Sutty and Blair, page 443. KNOWN BUGS/SIDE EFFECTS/IDEAS: none REVISION HISTORY: Name Date Description ---- ---- ----------- Jim 09/90 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ VidTestParadise proc near uses ds, si .enter ; first, we should check for a Paradise BIOS mov ax, 0xc000 ; point at the BIOS segment mov ds, ax ; ds -> BIOS mov si, 7dh ; offset to signature cmp {word} ds:[si], 4756h ; check first half of sig jne notPresent ; do more extensive check cmp {word} ds:[si+2], 3d41h ; check first half of sig jne notPresent ; yes, it's a wrap mov ax, DP_PRESENT done: .leave ret ; not here notPresent: mov ax, DP_NOT_PRESENT jmp done VidTestParadise endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% VidTestLaser %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Don't do anything to test this fucking board CALLED BY: INTERNAL VidTestDevice PASS: nothing RETURN: nothing DESTROYED: nothing PSEUDO CODE/STRATEGY: Just return with a ? code KNOWN BUGS/SIDE EFFECTS/IDEAS: none REVISION HISTORY: Name Date Description ---- ---- ----------- Jim 06/91 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ VidTestLaser proc near mov ax, DP_CANT_TELL ; tell the truth ret VidTestLaser endp COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% VidSetLaser %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Write out all the CRTC registers and tweak the board in the prescribed fashion. CALLED BY: INTERNAL VidSetDevice PASS: nothing RETURN: nothing DESTROYED: nothing PSEUDO CODE/STRATEGY: Write out the proper info, as per the undocumented Pascal source that we received from Laser. Wonderful. KNOWN BUGS/SIDE EFFECTS/IDEAS: none REVISION HISTORY: Name Date Description ---- ---- ----------- Jim 06/91 Initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ VidSetLaser proc near uses ax, cx, dx, ds, si .enter mov ax, 0x12 ; set to mode 12h int VIDEO_BIOS mov dx, 0x3c2 mov al, 0xeb out dx, al segmov ds, cs, si ; do sequencer registers mov cx, sizeSeqTable/2 mov si, offset seqTable mov dx, 0x3c4 ; sequencer i/o address seqLoop: lodsb out dx, al inc dx lodsb out dx, al dec dx loop seqLoop ; do CRTC registers mov cx, sizeCRTCTable/2 mov si, offset crtcTable mov dx, 0x3d4 ; sequencer i/o address crtcLoop: lodsb out dx, al inc dx lodsb out dx, al dec dx loop crtcLoop ; do some monkeying with the attribute chip mov dx, 0x3ba ; I don't know why we do these in al, dx ; IN instructions... mov dx, 0x3da ; I don't know why we do these in al, dx ; IN instructions... mov dx, 0x3c0 ; set up attribute cntrlr addr mov al, 0x11 ; address... out dx, al mov al, 0 ; data... out dx, al mov al, 0x20 out dx, al mov dx, 0x3ba ; I don't know why we do these in al, dx ; IN instructions... mov dx, 0x3da ; I don't know why we do these in al, dx ; IN instructions... mov dx, 0x3c0 ; set up attribute cntrlr addr mov al, 0x13 ; address... out dx, al mov al, 0 ; data... out dx, al mov al, 0x20 out dx, al .leave ret VidSetLaser endp seqTable label byte byte 0, 0x00 ; address, value byte 1, 0x01 ; address, value byte 2, 0x0f ; address, value byte 3, 0x00 ; address, value byte 4, 0x06 ; address, value byte 0, 0x03 ; address, value sizeSeqTable equ $-seqTable crtcTable label byte byte 0x11, 0x2c ; address, value byte 0x00, 0x7a ; address, value byte 0x01, 0x63 ; address, value byte 0x02, 0x63 ; address, value byte 0x03, 0x19 ; address, value byte 0x04, 0x69 ; address, value byte 0x05, 0x99 ; address, value byte 0x06, 0x68 ; address, value byte 0x07, 0xe0 ; address, value byte 0x08, 0x00 ; address, value byte 0x09, 0x60 ; address, value byte 0x0a, 0x00 ; address, value byte 0x0b, 0x00 ; address, value byte 0x0c, 0x00 ; address, value byte 0x0d, 0x00 ; address, value byte 0x0e, 0x00 ; address, value byte 0x0f, 0x00 ; address, value byte 0x10, 0x59 ; address, value byte 0x12, 0x57 ; address, value byte 0x13, 0x32 ; address, value byte 0x14, 0x00 ; address, value byte 0x15, 0x57 ; address, value byte 0x16, 0x60 ; address, value byte 0x17, 0xe3 ; address, value byte 0x18, 0xff ; address, value sizeCRTCTable equ $-crtcTable COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% CompareStringIgnoreCase %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: Use this when you want to compare two character strings and don't want to consider upper and lower case as different. CALLED BY: VidTestOak PASS: es:[di] - pointer to one string ds:[si] - pointer to the other cx - number of characters to check, != 0. RETURN: carry flag - set if strings do NOT match, clear if strings DO match. DESTROYED: ax, cx PSEUDO CODE/STRATEGY: KNOWN BUGS/SIDE EFFECTS/IDEAS: none REVISION HISTORY: Name Date Description ---- ---- ----------- Jeremy 5/6/91 Initial version. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ CompareStringIgnoreCase proc near uses di, si .enter compareLoop: mov al, ds:[si] ; get character from compare string call ToUpper ; force upper case cmp es:[di], al ; je nextChar ; it's the same character. Next! call ToLower ; force lower case cmp es:[di], al ; je nextChar ; it's the same character. Continue. stc ; flag: NOT the same string. jmp SHORT allDone nextChar: inc di ; inc si ; loop compareLoop ; clc ; if we made it here, the strings ; were the same. Flag it. allDone: .leave ret CompareStringIgnoreCase endp ; ; Force ASCII character in al to upper case. ; ToUpper proc near cmp al, 'a' ; is it in the range [a-z]? jb allDone ; cmp al, 'z' ; ja allDone ; ; The character is a lower-case letter. Convert it. sub al, 'a' ; add al, 'A' ; allDone: ret ToUpper endp ; ; Force ASCII character in al to lower case. ; ToLower proc near cmp al, 'A' ; is it in the range [a-z]? jb allDone ; cmp al, 'Z' ; ja allDone ; ; The character is a lower-case letter. Convert it. sub al, 'A' ; add al, 'a' ; allDone: ret ToLower endp VideoMisc ends
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0x84_notsx.log_21829_1336.asm
ljhsiun2/medusa
9
165867
<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r11 push %r12 push %r14 push %rbx push %rcx push %rdi push %rdx push %rsi lea addresses_WT_ht+0x556e, %rdi nop nop nop nop nop add $23589, %r11 mov $0x6162636465666768, %rdx movq %rdx, %xmm6 movups %xmm6, (%rdi) nop nop nop nop nop dec %r14 lea addresses_WT_ht+0xa4c2, %rbx nop nop xor %r12, %r12 mov (%rbx), %r11d nop nop add %r14, %r14 lea addresses_D_ht+0x5932, %rsi lea addresses_D_ht+0x13dd2, %rdi nop nop nop and $31981, %rdx mov $8, %rcx rep movsl nop cmp %rdi, %rdi lea addresses_WC_ht+0x462, %r12 add $60592, %r11 mov (%r12), %bx sub $60547, %rdi lea addresses_A_ht+0xf1c2, %rbx nop add %rcx, %rcx movb (%rbx), %dl and %r14, %r14 lea addresses_normal_ht+0x18ba2, %rsi lea addresses_UC_ht+0x141d4, %rdi clflush (%rsi) nop nop nop nop nop and %r11, %r11 mov $42, %rcx rep movsq nop nop nop nop nop inc %r12 lea addresses_WC_ht+0xee42, %rsi lea addresses_UC_ht+0x15592, %rdi nop nop nop sub %rdx, %rdx mov $18, %rcx rep movsw nop nop nop nop nop cmp %r11, %r11 pop %rsi pop %rdx pop %rdi pop %rcx pop %rbx pop %r14 pop %r12 pop %r11 ret .global s_faulty_load s_faulty_load: push %r10 push %r13 push %r14 push %r9 push %rax push %rcx // Faulty Load lea addresses_WT+0x7a42, %rax cmp %r9, %r9 mov (%rax), %ecx lea oracles, %rax and $0xff, %rcx shlq $12, %rcx mov (%rax,%rcx,1), %rcx pop %rcx pop %rax pop %r9 pop %r14 pop %r13 pop %r10 ret /* <gen_faulty_load> [REF] {'src': {'type': 'addresses_WT', 'same': False, 'size': 2, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'} [Faulty Load] {'src': {'type': 'addresses_WT', 'same': True, 'size': 4, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'} <gen_prepare_buffer> {'dst': {'type': 'addresses_WT_ht', 'same': False, 'size': 16, 'congruent': 1, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'} {'src': {'type': 'addresses_WT_ht', 'same': True, 'size': 4, 'congruent': 7, 'NT': False, 'AVXalign': True}, 'OP': 'LOAD'} {'src': {'type': 'addresses_D_ht', 'congruent': 4, 'same': False}, 'dst': {'type': 'addresses_D_ht', 'congruent': 4, 'same': False}, 'OP': 'REPM'} {'src': {'type': 'addresses_WC_ht', 'same': False, 'size': 2, 'congruent': 5, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'} {'src': {'type': 'addresses_A_ht', 'same': False, 'size': 1, 'congruent': 3, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'} {'src': {'type': 'addresses_normal_ht', 'congruent': 5, 'same': False}, 'dst': {'type': 'addresses_UC_ht', 'congruent': 1, 'same': False}, 'OP': 'REPM'} {'src': {'type': 'addresses_WC_ht', 'congruent': 9, 'same': True}, 'dst': {'type': 'addresses_UC_ht', 'congruent': 2, 'same': False}, 'OP': 'REPM'} {'39': 21829} 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 39 */
support/MinGW/lib/gcc/mingw32/9.2.0/adainclude/a-coprnu.adb
orb-zhuchen/Orb
0
2033
------------------------------------------------------------------------------ -- -- -- GNAT LIBRARY COMPONENTS -- -- -- -- A D A . C O N T A I N E R S . P R I M E _ N U M B E R S -- -- -- -- B o d y -- -- -- -- Copyright (C) 2004-2019, 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/>. -- -- -- -- This unit was originally developed by <NAME>. -- ------------------------------------------------------------------------------ package body Ada.Containers.Prime_Numbers is -------------- -- To_Prime -- -------------- function To_Prime (Length : Count_Type) return Hash_Type is I, J, K : Integer'Base; Index : Integer'Base; begin I := Primes'Last - Primes'First; Index := Primes'First; while I > 0 loop J := I / 2; K := Index + J; if Primes (K) < Hash_Type (Length) then Index := K + 1; I := I - J - 1; else I := J; end if; end loop; return Primes (Index); end To_Prime; end Ada.Containers.Prime_Numbers;
4-high/gel/source/gel-rig.ads
charlie5/lace
20
30789
<reponame>charlie5/lace with gel.Sprite, gel.Joint, gel.World, openGL, openGL.Model, openGL.Program, ada.Strings.unbounded.Hash, ada.Containers.Vectors, ada.Containers.hashed_Maps; private with collada.Library.visual_Scenes; package gel.Rig -- -- Provides GEL sprites which allow placing a collada skinned/rigged model into a GEL World. -- -- The rig motion can be controlled either by normal dynamics or pre-canned animations. -- is type Item is tagged limited private; type View is access all Item'Class; type Views is array (Positive range <>) of View; use Math; -------------- --- Core Types -- type motion_Mode is (Dynamics, Animation); procedure motion_Mode_is (Self : in out Item; Now : in motion_Mode); subtype bone_Id is ada.Strings.unbounded.unbounded_String; null_Id : constant bone_Id := ada.Strings.unbounded.null_unbounded_String; subtype controller_joint_Id is ada.Strings.unbounded.unbounded_String; -------------- --- Containers -- package inverse_bind_matrix_Vectors is new ada.Containers.Vectors (Positive, Matrix_4x4); subtype inverse_bind_matrix_Vector is inverse_bind_matrix_Vectors.Vector; -------------- --- Joints Ids -- subtype gel_joint_Id is ada.Strings.unbounded.unbounded_String; package gel_joint_id_Maps_of_gel_Joint is new ada.Containers.hashed_Maps (Key_type => gel_joint_Id, Element_type => gel.Joint.view, Hash => ada.Strings.unbounded.Hash, equivalent_Keys => ada.Strings.unbounded."=", "=" => gel.Joint."="); subtype gel_joint_id_Map_of_gel_Joint is gel_joint_id_Maps_of_gel_Joint.Map; package joint_Id_Maps_of_bone_site_offset is new ada.Containers.hashed_Maps (Key_type => controller_joint_Id, Element_type => Vector_3, Hash => ada.Strings.unbounded.Hash, equivalent_Keys => ada.Strings.unbounded."=", "=" => "="); subtype joint_Id_Map_of_bone_site_offset is joint_Id_Maps_of_bone_site_offset.Map; ------------ --- Bone Ids -- package bone_id_Maps_of_sprite is new ada.Containers.hashed_Maps (Key_type => bone_Id, Element_type => gel.Sprite.view, Hash => ada.Strings.unbounded.Hash, equivalent_Keys => ada.Strings.unbounded."=", "=" => gel.Sprite."="); subtype bone_id_Map_of_sprite is bone_id_Maps_of_sprite.Map; ---------------- --- Bone Details -- use type math.Degrees; type bone_Details is record Length : math.Real := 1.0; width_Factor, depth_Factor : math.Real := 0.1; -- Factor * Length gives width and depth. pitch_Limits, yaw_Limits, roll_Limits : gel.Sprite.DoF_Limits := (to_Radians (-15.0), to_Radians ( 15.0)); end record; Unspecified : constant := -1.0; function to_Details (Length : Real := Unspecified; width_Factor, depth_Factor : Real := 0.1; pitch_Limits, yaw_Limits, roll_Limits : gel.Sprite.DoF_Limits := (to_Radians (-15.0), to_Radians ( 15.0))) return bone_Details; package bone_id_Maps_of_details is new ada.Containers.hashed_Maps (Key_Type => bone_id, Element_Type => bone_Details, Hash => ada.Strings.unbounded.Hash, Equivalent_Keys => ada.Strings.unbounded."=", "=" => "="); subtype bone_id_Map_of_details is bone_id_Maps_of_details.Map; --------- --- Forge -- package Forge is function new_Rig (in_World : in gel.World.view; Model : in openGL.Model.view; Mass : in Real := 0.0; is_Kinematic : in Boolean := False) return Rig.view; function new_Rig (bone_Sprites : in bone_id_Map_of_sprite; joint_inv_bind_Matrices : in inverse_bind_matrix_Vector; joint_site_Offets : in joint_Id_Map_of_bone_site_offset; Model : in openGL.Model.view) return Rig.view; end Forge; procedure define (Self : in out Item; in_World : in gel.World.view; Model : in openGL.Model.view; Mass : in Real := 0.0; is_Kinematic : in Boolean := False; bone_Details : in bone_id_Map_of_details := bone_id_Maps_of_details.empty_Map); -------------- --- Attributes -- procedure Site_is (Self : in out Item; Now : in Vector_3); procedure Spin_is (Self : in out Item; Now : in Matrix_3x3); function bone_Sprites (Self : in Item) return bone_id_Map_of_sprite; function skin_Sprite (Self : in Item'Class) return gel.Sprite.view; function base_Sprite (Self : in Item'Class) return gel.Sprite.view; function Sprite (Self : in Item'Class; Bone : in bone_Id) return gel.Sprite.view; function Joints (Self : in Item) return gel_joint_id_Map_of_gel_Joint; procedure joint_inv_bind_Matrices_are (Self : in out Item'Class; Now : in inverse_bind_matrix_Vector); function joint_inv_bind_Matrices (Self : in Item'Class) return inverse_bind_matrix_Vector; function joint_site_Offets (Self : in Item'Class) return joint_Id_Map_of_bone_site_offset; procedure assume_Pose (Self : in out Item); procedure enable_Graphics (Self : in out Item); procedure evolve (Self : in out Item'Class; world_Age : in Duration); ------------- --- Animation -- subtype scene_joint_Id is ada.Strings.unbounded.unbounded_String; package bone_id_Maps_of_transform is new ada.Containers.hashed_Maps (Key_Type => bone_id, Element_Type => Matrix_4x4, Hash => ada.Strings.unbounded.Hash, Equivalent_Keys => ada.Strings.unbounded."=", "=" => "="); subtype bone_id_Map_of_transform is bone_id_Maps_of_transform.Map; procedure animation_Transforms_are (Self : in out Item'Class; Now : in bone_id_Map_of_transform); type axis_Kind is (x_Axis, y_Axis, z_Axis); procedure set_rotation_Angle (Self : in out Item'Class; for_Joint : in scene_joint_Id; Axis : in Axis_Kind; To : in Real); -- TODO: Use Radians type (and below). procedure set_x_rotation_Angle (Self : in out Item'Class; for_Joint : in scene_joint_Id; To : in Real); procedure set_y_rotation_Angle (Self : in out Item'Class; for_Joint : in scene_joint_Id; To : in Real); procedure set_z_rotation_Angle (Self : in out Item'Class; for_Joint : in scene_joint_Id; To : in Real); procedure set_Location (Self : in out Item'Class; for_Joint : in scene_joint_Id; To : in Vector_3); procedure set_Location_x (Self : in out Item'Class; for_Joint : in scene_joint_Id; To : in Real); procedure set_Location_y (Self : in out Item'Class; for_Joint : in scene_joint_Id; To : in Real); procedure set_Location_z (Self : in out Item'Class; for_Joint : in scene_joint_Id; To : in Real); procedure set_Transform (Self : in out Item'Class; for_Joint : in scene_joint_Id; To : in Matrix_4x4); procedure update_all_global_Transforms (Self : in out Item'Class); procedure animate (Self : in out Item; world_Age : in Duration); procedure reset_Animation (Self : in out Item); private -- gl_transform_Vector -- package gl_transform_Vectors is new ada.Containers.Vectors (Positive, openGL.Matrix_4x4); subtype gl_transform_Vector is gl_transform_Vectors.Vector; -- joint_id_Map_of_matrix_4x4 -- package joint_id_Maps_of_matrix_4x4 is new ada.Containers.hashed_Maps (Key_type => scene_joint_Id, Element_type => Matrix_4x4, Hash => ada.Strings.unbounded.Hash, equivalent_Keys => ada.Strings.unbounded."=", "=" => "="); subtype joint_id_Map_of_matrix_4x4 is joint_id_Maps_of_matrix_4x4.Map; -- joint_id_Map_of_scene_node -- package joint_id_Maps_of_scene_node is new ada.Containers.hashed_Maps (Key_type => scene_joint_Id, Element_type => collada.Library.visual_Scenes.Node_view, Hash => ada.Strings.unbounded.Hash, equivalent_Keys => ada.Strings.unbounded."=", "=" => collada.Library.visual_Scenes."="); subtype joint_id_Map_of_scene_node is joint_id_Maps_of_scene_node.Map; -- joint_id_Map_of_slot -- package joint_id_Maps_of_slot is new ada.Containers.hashed_Maps (Key_type => scene_joint_Id, Element_type => Positive, Hash => ada.Strings.unbounded.Hash, equivalent_Keys => ada.Strings.unbounded."=", "=" => "="); subtype joint_id_Map_of_slot is joint_id_Maps_of_slot.Map; -- skin_program_Parameters -- type skin_program_Parameters is new opengl.Program.Parameters with record bone_Transforms : gl_transform_Vector; joint_Map_of_slot : joint_id_Map_of_slot; end record; overriding procedure enable (Self : in out skin_program_Parameters); -- joint_id_Map_of_joint_id -- package joint_id_Maps_of_joint_id is new ada.Containers.hashed_Maps (Key_type => scene_joint_Id, Element_type => scene_joint_Id, Hash => ada.Strings.unbounded.Hash, equivalent_Keys => ada.Strings.unbounded."=", "=" => ada.Strings.unbounded."="); subtype joint_id_Map_of_joint_id is joint_id_Maps_of_joint_id.Map; -- scene_Joint -- type scene_Joint is record Node : collada.Library.visual_Scenes.Node_view; Transform : Matrix_4x4; end record; package joint_id_Maps_of_scene_Joint is new ada.Containers.hashed_Maps (Key_type => scene_joint_Id, Element_type => scene_Joint, Hash => ada.Strings.unbounded.Hash, equivalent_Keys => ada.Strings.unbounded."=", "=" => "="); subtype joint_id_Map_of_scene_Joint is joint_id_Maps_of_scene_Joint.Map; -- Transform -- type Transform is record Rotation : Quaternion := linear_Algebra_3D.to_Quaternion (linear_Algebra_3D.x_Rotation_from (0.0)); Translation : Vector_3 := (0.0, 0.0, 0.0); end record; type Transforms is array (Positive range <>) of Transform; type Transforms_view is access all Transforms; -- animation_Channel -- type animation_Channel is record Target : access collada.Library.visual_Scenes.Transform; target_Joint : scene_joint_Id; Times : access collada.float_Array; Values : access collada.float_Array; Cursor : Index := 0; -- Current frame of the anmination. initial_Angle : Real; -- For angle interpolation during 'rotation' animation. current_Angle : Real := 0.0; -- interp_Delta : Real := 0.0; -- initial_Site : Vector_3; -- For location interpolation during 'translation' animation. current_Site : Vector_3; -- site_interp_Delta : Vector_3; -- initial_Transform : Transform; -- For matrix interpolation during 'full_transform' animation. current_Transform : Transform; -- slerp_Time : Real; -- Slerp Time (T) value in range '0.0 .. 1.0'. -- TODO: use 'unit_Interval' type. Transforms : Transforms_view; Transform_interp_Delta : Real; -- Rate at which the SLERP time parameter increases. end record; subtype channel_Id is scene_joint_Id; package channel_id_Maps_of_animation_Channel is new ada.Containers.hashed_Maps (Key_Type => channel_Id, Element_Type => animation_Channel, Hash => ada.Strings.unbounded.Hash, Equivalent_Keys => ada.Strings.unbounded."=", "=" => "="); subtype channel_id_Map_of_animation_Channel is channel_id_Maps_of_animation_Channel.Map; -- Rig Item -- type Item is tagged limited record Mode : motion_Mode := Dynamics; joint_Sprites : bone_id_Map_of_sprite; -- Sprite to show location/rotation of joints (mainly for debugging). bone_Sprites : bone_id_Map_of_sprite; -- A sprite for each bone. skin_Sprite : gel.Sprite.view; -- A sprite for the skin. bind_shape_Matrix : Matrix_4x4; Joints : gel_joint_id_Map_of_gel_Joint; joint_inv_bind_Matrices : inverse_bind_matrix_Vector; -- The joint inverse transforms when in the bind pose. phys_joint_site_Offets : joint_Id_Map_of_bone_site_offset; -- Offset from the bone site to the joint site when in the bind pose. anim_joint_site_Offets : joint_Id_Map_of_bone_site_offset; -- Offset from the bone site to the joint site when in the bind pose. joint_pose_Transforms : joint_id_Map_of_matrix_4x4; -- The joint transforms when in the skeletal pose. joint_Parent : joint_id_Map_of_joint_id; collada_Joints : joint_id_Map_of_scene_node; scene_Joints : joint_id_Map_of_scene_Joint; root_Joint : collada.Library.visual_scenes.Node_view; animation_Transforms : bone_id_Map_of_transform; bone_pose_Transforms : bone_id_Map_of_transform; -- The bone transforms when in the skeletal pose. Channels : channel_id_Map_of_animation_Channel; start_Time : Duration := 0.0; overall_Site : Vector_3 := (0.0, 0.0, 0.0); Model : openGL.Model.view; program_Parameters : aliased skin_program_Parameters; end record; function Parent_of (Self : in Item; the_Bone : in bone_Id) return bone_Id; function joint_site_Offet (Self : in Item; for_Bone : in bone_Id) return Vector_3; function joint_inv_bind_Matrix (Self : in Item; for_Bone : in bone_Id) return Matrix_4x4; function joint_bind_Matrix (Self : in Item; for_Bone : in bone_Id) return Matrix_4x4; end gel.Rig;
LAB 2/sub.asm
Mawlong/Computer-Organization-and-Architecture
0
173144
.data .text .globl main main: li $t0,5 li $t1,4 sub $t2,$t0,$t1 li $v0, 10 syscall
lesson07/rustless/src/main/antlr/ast/Rust.g4
alepoydes/writing-compiler-for-neophytes
7
413
grammar Rust; @header { package rustless.ast; import rustless.*; import java.util.Map; import java.util.Arrays; } repl[Context ctx] : 'quit' EOF { System.exit(0); } | expr[ctx] EOF { System.out.format("\n %s\n\n", $expr.value.toString()); } | instruction[ctx] ; module[Context ctx]: (function[ctx])* EOF ; function[Context ctx]: 'fn' ID '(' argumentDeclarationList ')' block[ctx] (';'|) ; block[Context ctx]: '{' (instruction[ctx] ';')* '}' ; instruction[Context ctx] : declaration[ctx] | ID '=' expr[ctx] { if(!$ctx.variables.containsKey($ID.text)) throw new ParseCancellationException(String.format("Variable '%s' is not defined",$ID.text)); $ctx.variables.put($ID.text,$expr.value); } | functionCall[ctx] | macroCall[ctx] ; declaration[Context ctx] : 'let' 'mut'? ID { $ctx.variables.put($ID.text,new Value()); } | 'let' 'mut'? ID '=' expr[ctx] { $ctx.variables.put($ID.text,$expr.value); } ; functionCall[Context ctx] returns [Value value] : ID '(' argumentList[ctx] ')' { $value=ctx.call($ID.text,$argumentList.arg); } ; macroCall[Context ctx] : ID '!' '(' argumentList[ctx] ')' { throw new ParseCancellationException("Macros are not implemented"); } ; argumentList[Context ctx] returns [List<Value> arg] : | a=argument[ctx] { $arg=new ArrayList(); $arg.add($a.value); } ( ',' b=argument[ctx] { $arg.add($b.value); } )* ; argument[Context ctx] returns [Value value]: expr[ctx] { $value=$expr.value; } ; argumentDeclarationList : | arg+=argumentDeclaration ( ',' arg+=argumentDeclaration )* ; argumentDeclaration: ID ; expr[Context ctx] returns [Value value] : a=expr4[ctx] op='||' b=expr[ctx] { $value=ctx.call($op.text,$a.value,$b.value); } | a=expr4[ctx] { $value=$a.value; } ; expr4[Context ctx] returns [Value value] : a=expr5[ctx] op='&&' b=expr4[ctx] { $value=ctx.call($op.text,$a.value,$b.value); } | a=expr5[ctx] { $value=$a.value; } ; expr5[Context ctx] returns [Value value] : a=expr6[ctx] op=('<'|'>'|'>='|'<='|'=='|'!=') b=expr5[ctx] { $value=ctx.call($op.text,$a.value,$b.value); } | a=expr6[ctx] { $value=$a.value; } ; expr6[Context ctx] returns [Value value] : a=expr7[ctx] op='|' b=expr6[ctx] { $value=ctx.call($op.text,$a.value,$b.value); } | a=expr7[ctx] { $value=$a.value; } ; expr7[Context ctx] returns [Value value] : a=expr8[ctx] op='^' b=expr7[ctx] { $value=ctx.call($op.text,$a.value,$b.value); } | a=expr8[ctx] { $value=$a.value; } ; expr8[Context ctx] returns [Value value] : a=expr9[ctx] op='&' b=expr8[ctx] { $value=ctx.call($op.text,$a.value,$b.value); } | a=expr9[ctx] { $value=$a.value; } ; expr9[Context ctx] returns [Value value] : a=expr10[ctx] op=('<<'|'>>') b=expr9[ctx] { $value=ctx.call($op.text,$a.value,$b.value); } | a=expr10[ctx] { $value=$a.value; } ; expr10[Context ctx] returns [Value value] : a=expr20[ctx] { $value=$a.value; } ( op=('+'|'-') b=expr20[ctx] { $value=ctx.call($op.text,$value,$b.value); } )* ; expr20[Context ctx] returns [Value value] : a=expr30[ctx] { $value=$a.value; } ( op=('*'|'/'|'%') b=expr30[ctx] { $value=ctx.call($op.text,$value,$b.value); } )* ; expr30[Context ctx] returns [Value value] : functionCall[ctx] { $value=$functionCall.value; } | op=('-'|'!') a=expr30[ctx] { $value=ctx.call($op.text,$a.value); } | b=expr40[ctx] { $value=$b.value; } ; expr40[Context ctx] returns [Value value] : ID { $value=$ctx.variables.get($ID.text); if($value==null) throw new ParseCancellationException(String.format("Variable '%s' is not defined",$ID.text)); } | literal { $value=$literal.value; } | '(' expr[ctx] ')' { $value=$expr.value; } ; literal returns [Value value] : FLOAT { $value=new Value(Double.parseDouble($text)); } | INT { $value=new Value(Integer.parseInt($text)); } | STRING { $value=new Value($text); } | TRUE { $value=new Value(true); } | FALSE { $value=new Value(false); } ; TRUE: 'true' ; FALSE: 'false' ; ID : [a-zA-Z][a-zA-Z0-9]* ; fragment NEWLINE : [\r]?[\n] ; INT : [0-9]+ ; FLOAT : [0-9]+([.][0-9]+)?([Ee][-]?[0-9]+)? ; STRING : '"' ( ESC | ~[\\"] )* '"'; fragment ESC : '\\"' | '\\\\' ; WS : [ \n\r\t]+ -> channel(HIDDEN);
org.alloytools.alloy.diff/misc/string/string2.als
jringert/alloy-diff
1
4633
<filename>org.alloytools.alloy.diff/misc/string/string2.als sig A { x : String } run {A.x="Jan"} for 3
programs/oeis/184/A184578.asm
karttu/loda
0
241228
; A184578: a(n) = floor((n+1/3)*sqrt(2)), complement of A184579. ; 1,3,4,6,7,8,10,11,13,14,16,17,18,20,21,23,24,25,27,28,30,31,32,34,35,37,38,40,41,42,44,45,47,48,49,51,52,54,55,57,58,59,61,62,64,65,66,68,69,71,72,74,75,76,78,79,81,82,83,85,86,88,89,90,92,93,95,96,98,99,100,102,103,105,106,107,109,110,112,113,115,116,117,119,120,122,123,124,126,127,129,130,131,133,134,136,137,139,140,141,143,144,146,147,148,150,151,153,154,156,157,158,160,161,163,164,165,167,168,170,171,173,174,175,177,178,180,181,182,184,185,187,188,189,191,192,194,195,197,198,199,201,202,204,205,206,208,209,211,212,214,215,216,218,219,221,222,223,225,226,228,229,230,232,233,235,236,238,239,240,242,243,245,246,247,249,250,252,253,255,256,257,259,260,262,263,264,266,267,269,270,272,273,274,276,277,279,280,281,283,284,286,287,288,290,291,293,294,296,297,298,300,301,303,304,305,307,308,310,311,313,314,315,317,318,320,321,322,324,325,327,328,329,331,332,334,335,337,338,339,341,342,344,345,346,348,349,351,352,354 add $0,100 pow $0,2 sub $0,8 mov $1,1 mov $2,1 lpb $0,1 trn $0,$1 add $3,$2 mov $1,$3 lpe sub $1,141
basicStopwatch.asm
HamHaZe/Stopwatch
1
95155
#include P16F84A.INC __config _XT_OSC & _WDT_OFF & _PWRTE_ON ;File Registers used by delay subroutine DELAY_COUNT1 EQU H'21' DELAY_COUNT2 EQU H'22' DELAY_COUNT3 EQU H'23' DELAYER EQU H'24' ORG h'0' bsf STATUS,5 ;select bank 1 movlw B'00000000' ;set up port B as all outputs movwf TRISB movlw B'00000011' movwf TRISA bcf STATUS,5 ;select bank 0 movlw B'01000000' movwf PORTB start_loop: ; Turn on LED to show it's in the start loop movlw B'00001100' movwf PORTA ; Test if either button is pressed movlw B'00001110' ; Should be 00000010 subwf PORTA btfsc STATUS,Z ; If PORTA = W goto reset_loop ; goes to resetloop if reset button pressed btfss STATUS,C ; If PORTA < W goto stopwatch ; goes to main stopwatch code goto start_loop ; Else loops back to start loop reset_loop: ; Resets code movlw B'00000000' movwf DELAYER goto start_loop pause_loop: ; Turn on LED to show it's in pause loop movlw PORTB addlw B'00000001' movwf PORTB ; Holds the stopwatch in a loop while paused ; Test if either button is pressed movlw B'00000010' subwf PORTA btfsc STATUS,Z ; If PORTA = W goto reset_loop ; goes to resetloop if reset button pressed btfss STATUS,C ; If PORTA < W goto stopwatch ; goes to main stopwatch code goto pause_loop ; Else loops back to start loop stopwatch: ; Actual stopwatch code movfw DELAYER call conversion movwf PORTB call delay incfsz DELAYER,F goto stopwatch delay: ; Initialise delay counters movlw H'FA' movwf DELAY_COUNT1 movlw H'90' movwf DELAY_COUNT2 movlw H'06' movwf DELAY_COUNT3 delay_loop ; Check whether start/stop button is pressed movlw B'00000001' subwf PORTA btfsc STATUS,Z ; If PORTA = W goto pause_loop ; goes to resetloop if reset button pressed decfsz DELAY_COUNT1,F ; inner most loop goto delay_loop ; decrements and loops until delay_count1=0 decfsz DELAY_COUNT2,F ; middle loop goto delay_loop decfsz DELAY_COUNT3,F ; outer loop goto delay_loop return conversion: addwf PCL ; add w to the PC (jump) retlw B'01000000' ; 0 return 7 seg code. retlw B'01011110' ; 1 retlw B'00100100' ; 2 retlw B'00001100' ; 3 retlw B'00011010' ; 4 retlw B'10001000' ; 5 retlw B'10000000' ; 6 retlw B'01011100' ; 7 retlw B'00000000' ; 8 retlw B'00011000' ; 9 movlw B'00000000' movwf DELAYER goto stopwatch end
src/bitmap-color_conversion.adb
ellamosi/Ada_BMP_Library
0
16612
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2015-2017, AdaCore -- -- -- -- Redistribution and use in source and binary forms, with or without -- -- modification, are permitted provided that the following conditions are -- -- met: -- -- 1. Redistributions of source code must retain the above copyright -- -- notice, this list of conditions and the following disclaimer. -- -- 2. Redistributions in binary form must reproduce the above copyright -- -- notice, this list of conditions and the following disclaimer in -- -- the documentation and/or other materials provided with the -- -- distribution. -- -- 3. Neither the name of the copyright holder nor the names of its -- -- contributors may be used to endorse or promote products derived -- -- from this software without specific prior written permission. -- -- -- -- THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS -- -- "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT -- -- LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR -- -- A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT -- -- HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, -- -- SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT -- -- LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, -- -- DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY -- -- THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT -- -- (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE -- -- OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. -- -- -- ------------------------------------------------------------------------------ package body Bitmap.Color_Conversion is -------------------------- -- Bitmap_Color_To_Word -- -------------------------- function Bitmap_Color_To_Word (Mode : Bitmap_Color_Mode; Col : Bitmap_Color) return UInt32 is Ret : UInt32 := 0; procedure Add_UInt8 (Value : UInt8; Pos : Natural; Size : Positive) with Inline; function Luminance return UInt8; -------------- -- Add_UInt8 -- -------------- procedure Add_UInt8 (Value : UInt8; Pos : Natural; Size : Positive) is Val : constant UInt32 := Shift_Left (UInt32 (Shift_Right (Value, abs (Integer (Size) - 8))), Pos); begin Ret := Ret or Val; end Add_UInt8; --------------- -- Luminance -- --------------- function Luminance return UInt8 is begin return UInt8 (Shift_Right (UInt32 (Col.Red) * 3 + UInt32 (Col.Blue) + UInt32 (Col.Green) * 4, 3)); end Luminance; begin case Mode is when ARGB_8888 => Add_UInt8 (Col.Alpha, 24, 8); Add_UInt8 (Col.Red, 16, 8); Add_UInt8 (Col.Green, 8, 8); Add_UInt8 (Col.Blue, 0, 8); when RGB_888 => Add_UInt8 (Col.Red, 16, 8); Add_UInt8 (Col.Green, 8, 8); Add_UInt8 (Col.Blue, 0, 8); when RGB_565 => Add_UInt8 (Col.Red, 11, 5); Add_UInt8 (Col.Green, 5, 6); Add_UInt8 (Col.Blue, 0, 5); when ARGB_1555 => Add_UInt8 (Col.Alpha, 15, 1); Add_UInt8 (Col.Red, 10, 5); Add_UInt8 (Col.Green, 5, 5); Add_UInt8 (Col.Blue, 0, 5); when ARGB_4444 => Add_UInt8 (Col.Alpha, 12, 4); Add_UInt8 (Col.Red, 8, 4); Add_UInt8 (Col.Green, 4, 4); Add_UInt8 (Col.Blue, 0, 4); when L_8 => Add_UInt8 (Luminance, 0, 8); when AL_44 => Add_UInt8 (Col.Alpha, 4, 4); Add_UInt8 (Luminance, 0, 4); when AL_88 => Add_UInt8 (Col.Alpha, 8, 8); Add_UInt8 (Luminance, 0, 8); when L_4 => Add_UInt8 (Luminance, 0, 4); when A_8 => Add_UInt8 (Col.Alpha, 0, 8); when A_4 => Add_UInt8 (Col.Alpha, 0, 4); when M_1 => Ret := (if Luminance > 127 then 1 else 0); end case; return Ret; end Bitmap_Color_To_Word; -------------------------- -- Word_To_Bitmap_Color -- -------------------------- function Word_To_Bitmap_Color (Mode : Bitmap_Color_Mode; Col : UInt32) return Bitmap_Color is function Get_UInt8 (Pos : Natural; Size : Positive) return UInt8 with Inline; -------------- -- Get_UInt8 -- -------------- function Get_UInt8 (Pos : Natural; Size : Positive) return UInt8 is Ret : UInt8; Mask : constant UInt32 := Shift_Left (2 ** Size - 1, Pos); begin Ret := UInt8 (Shift_Right (Col and Mask, Pos)); if Size = 8 then return Ret; elsif Size = 1 then return (if Ret > 0 then 255 else 0); elsif Size >= 4 then -- return [7..3] => Ret[4 .. 0], [2 .. 0] => Ret[4 .. 2] return Shift_Left (Ret, 8 - Size) or Shift_Right (Ret, 2 * Size - 8); else raise Constraint_Error with "Unsupported color component size"; end if; end Get_UInt8; A, R, G, B : UInt8; begin case Mode is when ARGB_8888 => A := Get_UInt8 (24, 8); R := Get_UInt8 (16, 8); G := Get_UInt8 (8, 8); B := Get_UInt8 (0, 8); when RGB_888 => A := 255; R := Get_UInt8 (16, 8); G := Get_UInt8 (8, 8); B := Get_UInt8 (0, 8); when RGB_565 => A := 255; R := Get_UInt8 (11, 5); G := Get_UInt8 (5, 6); B := Get_UInt8 (0, 5); when ARGB_1555 => A := Get_UInt8 (15, 1); R := Get_UInt8 (10, 5); G := Get_UInt8 (5, 5); B := Get_UInt8 (0, 5); when ARGB_4444 => A := Get_UInt8 (12, 4); R := Get_UInt8 (8, 4); G := Get_UInt8 (4, 4); B := Get_UInt8 (0, 4); when L_8 => A := 255; R := Get_UInt8 (0, 8); G := R; B := R; when AL_44 => A := Get_UInt8 (4, 4); R := Get_UInt8 (0, 4); G := R; B := R; when AL_88 => A := Get_UInt8 (8, 8); R := Get_UInt8 (0, 8); G := R; B := R; when L_4 => A := 255; R := Get_UInt8 (0, 4); G := R; B := R; when A_8 => A := Get_UInt8 (0, 8); R := 255; G := 255; B := 255; when A_4 => A := Get_UInt8 (0, 4); R := 255; G := 255; B := 255; when M_1 => A := 255; if Col /= 0 then R := 255; G := 255; B := 255; else A := 0; R := 0; G := 0; end if; end case; return (Alpha => A, Red => R, Green => G, Blue => B); end Word_To_Bitmap_Color; end Bitmap.Color_Conversion;
Transynther/x86/_processed/AVXALIGN/_st_/i7-8650U_0xd2_notsx.log_2_1201.asm
ljhsiun2/medusa
9
25346
.global s_prepare_buffers s_prepare_buffers: push %r10 push %r11 push %r12 push %rbx push %rcx push %rdi push %rdx push %rsi lea addresses_WC_ht+0x25a4, %r12 nop nop nop sub %r10, %r10 mov (%r12), %cx nop nop nop nop nop sub %rcx, %rcx lea addresses_A_ht+0x13aa4, %rsi lea addresses_UC_ht+0x1d5a4, %rdi nop nop nop and $24941, %rdx mov $41, %rcx rep movsw nop nop add $42768, %rcx lea addresses_WT_ht+0x56a4, %rcx clflush (%rcx) cmp %rdi, %rdi mov $0x6162636465666768, %r10 movq %r10, (%rcx) nop nop and $1797, %r10 lea addresses_A_ht+0x1c5a4, %rsi lea addresses_D_ht+0xeae4, %rdi nop nop nop inc %rbx mov $77, %rcx rep movsl nop nop nop nop nop add $41075, %rbx lea addresses_WC_ht+0x9978, %r12 nop nop sub %rbx, %rbx mov (%r12), %edi nop nop dec %rdi lea addresses_UC_ht+0x1c724, %rdi nop nop xor %rcx, %rcx movb $0x61, (%rdi) nop nop xor $30391, %rdx lea addresses_A_ht+0x18a24, %rsi lea addresses_WT_ht+0xd1a4, %rdi nop nop nop sub %r11, %r11 mov $120, %rcx rep movsw nop nop nop add %rsi, %rsi lea addresses_A_ht+0x103a4, %rsi lea addresses_A_ht+0x1aba4, %rdi clflush (%rdi) nop nop nop nop cmp $28909, %rbx mov $58, %rcx rep movsw inc %rbx pop %rsi pop %rdx pop %rdi pop %rcx pop %rbx pop %r12 pop %r11 pop %r10 ret .global s_faulty_load s_faulty_load: push %r10 push %r12 push %r13 push %r15 push %r9 push %rbx push %rdi // Store lea addresses_PSE+0x1d2a4, %rdi nop nop nop nop nop and %r13, %r13 movw $0x5152, (%rdi) nop nop nop nop sub %r10, %r10 // Store lea addresses_A+0x4da4, %r15 clflush (%r15) nop nop nop nop xor $28258, %rbx mov $0x5152535455565758, %r13 movq %r13, %xmm1 vmovups %ymm1, (%r15) nop inc %rbx // Store lea addresses_WC+0x12e34, %r13 nop nop nop nop add %r10, %r10 movl $0x51525354, (%r13) cmp %r13, %r13 // Store lea addresses_PSE+0x15540, %r15 nop nop nop sub $59862, %rdi mov $0x5152535455565758, %rbx movq %rbx, %xmm5 movaps %xmm5, (%r15) nop dec %r9 // Store mov $0x7843330000000ec7, %rbx nop sub %r10, %r10 movw $0x5152, (%rbx) nop cmp %r13, %r13 // Store mov $0x3d93e90000000f04, %r12 nop and $52585, %r10 mov $0x5152535455565758, %rdi movq %rdi, (%r12) nop nop nop nop add $26776, %rdi // Faulty Load lea addresses_D+0x1fda4, %r12 nop nop nop dec %r13 mov (%r12), %r10 lea oracles, %r13 and $0xff, %r10 shlq $12, %r10 mov (%r13,%r10,1), %r10 pop %rdi pop %rbx pop %r9 pop %r15 pop %r13 pop %r12 pop %r10 ret /* <gen_faulty_load> [REF] {'OP': 'LOAD', 'src': {'type': 'addresses_D', 'size': 4, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_PSE', 'size': 2, 'AVXalign': False, 'NT': False, 'congruent': 8, 'same': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_A', 'size': 32, 'AVXalign': False, 'NT': False, 'congruent': 9, 'same': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_WC', 'size': 4, 'AVXalign': False, 'NT': False, 'congruent': 4, 'same': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_PSE', 'size': 16, 'AVXalign': True, 'NT': False, 'congruent': 1, 'same': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_NC', 'size': 2, 'AVXalign': False, 'NT': False, 'congruent': 0, 'same': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_NC', 'size': 8, 'AVXalign': False, 'NT': False, 'congruent': 5, 'same': False}} [Faulty Load] {'OP': 'LOAD', 'src': {'type': 'addresses_D', 'size': 8, 'AVXalign': True, 'NT': False, 'congruent': 0, 'same': True}} <gen_prepare_buffer> {'OP': 'LOAD', 'src': {'type': 'addresses_WC_ht', 'size': 2, 'AVXalign': False, 'NT': False, 'congruent': 10, 'same': False}} {'OP': 'REPM', 'src': {'type': 'addresses_A_ht', 'congruent': 7, 'same': False}, 'dst': {'type': 'addresses_UC_ht', 'congruent': 10, 'same': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_WT_ht', 'size': 8, 'AVXalign': False, 'NT': False, 'congruent': 8, 'same': False}} {'OP': 'REPM', 'src': {'type': 'addresses_A_ht', 'congruent': 9, 'same': False}, 'dst': {'type': 'addresses_D_ht', 'congruent': 4, 'same': False}} {'OP': 'LOAD', 'src': {'type': 'addresses_WC_ht', 'size': 4, 'AVXalign': False, 'NT': False, 'congruent': 2, 'same': False}} {'OP': 'STOR', 'dst': {'type': 'addresses_UC_ht', 'size': 1, 'AVXalign': False, 'NT': True, 'congruent': 7, 'same': False}} {'OP': 'REPM', 'src': {'type': 'addresses_A_ht', 'congruent': 7, 'same': False}, 'dst': {'type': 'addresses_WT_ht', 'congruent': 8, 'same': False}} {'OP': 'REPM', 'src': {'type': 'addresses_A_ht', 'congruent': 9, 'same': False}, 'dst': {'type': 'addresses_A_ht', 'congruent': 9, 'same': False}} {'36': 2} 36 36 */
tests/issue64/2.asm
NullMember/customasm
414
11706
#subruledef REG { my_reg => 0xA } #ruledef { test {Addr: u16} => 0x1 @ Addr test {register: REG} + {Imm: u16} => register`4 @ Imm_Unknown } test my_reg + 1 ; error:_:9: failed to resolve ; error:_:6: unknown
programs/oeis/270/A270257.asm
jmorken/loda
1
93498
; A270257: Number of 2X2X2 triangular 0..n arrays with some element plus some adjacent element totalling n exactly once. ; 0,12,24,48,72,108,144,192,240,300,360,432,504,588,672,768,864,972,1080,1200,1320,1452,1584,1728,1872,2028,2184,2352,2520,2700,2880,3072,3264,3468,3672,3888,4104,4332,4560,4800,5040,5292,5544,5808,6072,6348,6624 add $0,1 mov $1,$0 pow $1,2 div $1,2 mul $1,6
03-hybrid/f.asm
MKuranowski/STUD-ARKO
0
244572
section .text global f f: push ebp mov ebp, esp mov eax, [ebp+8] ; eax contains the first argument (char*) begin: mov cl, [eax] cmp cl, 0 jz end add cl, 1 mov [eax], cl inc eax jmp begin end: mov esp, ebp pop ebp ret
aunit/aunit-reporter-text.ads
btmalone/alog
0
384
<gh_stars>0 ------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- A U N I T . R E P O R T E R . T E X T -- -- -- -- S p e c -- -- -- -- -- -- Copyright (C) 2000-2013, AdaCore -- -- -- -- 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 is maintained by AdaCore (http://www.adacore.com) -- -- -- ------------------------------------------------------------------------------ -- Very simple reporter to console package AUnit.Reporter.Text is type Text_Reporter is new Reporter with private; procedure Set_Use_ANSI_Colors (Engine : in out Text_Reporter; Value : Boolean); -- Setting this value will enable colors output on an ANSI compatible -- terminal. -- By default, no color is used. procedure Report (Engine : Text_Reporter; R : in out Result'Class; Options : AUnit_Options := Default_Options); procedure Report_OK_Tests (Engine : Text_Reporter; R : in out Result'Class); procedure Report_Fail_Tests (Engine : Text_Reporter; R : in out Result'Class); procedure Report_Error_Tests (Engine : Text_Reporter; R : in out Result'Class); -- These subprograms implement the various parts of the Report. You -- can therefore chose in which order to report the various categories, -- and whether or not to report them. -- After calling any of these, the list of results has been modified in -- R, so you should get the counts first. private type Text_Reporter is new Reporter with record Use_ANSI : Boolean := False; end record; end AUnit.Reporter.Text;
openal-extension-float32_thin.ads
io7m/coreland-openal-ada
1
15041
<filename>openal-extension-float32_thin.ads -- Automatically generated, do not edit. package OpenAL.Extension.Float32_Thin is -- Constants AL_FORMAT_MONO_FLOAT32 : constant := 16#10010#; AL_FORMAT_STEREO_FLOAT32 : constant := 16#10011#; end OpenAL.Extension.Float32_Thin;
src/Categories/Yoneda/Properties.agda
MirceaS/agda-categories
0
7482
{-# OPTIONS --without-K --safe #-} open import Level open import Categories.Category using (Category; _[_,_]) -- Various conclusions that can be drawn from Yoneda -- over a particular Category C module Categories.Yoneda.Properties {o ℓ e : Level} (C : Category o ℓ e) where open import Function using (_$_; Inverse) -- else there's a conflict with the import below open import Function.Equality using (Π; _⟨$⟩_; cong) open import Relation.Binary using (module Setoid) import Relation.Binary.Reasoning.Setoid as SetoidR open import Data.Product using (_,_; Σ) open import Categories.Category.Product open import Categories.Category.Construction.Presheaves open import Categories.Category.Construction.Functors open import Categories.Category.Instance.Setoids open import Categories.Functor renaming (id to idF) open import Categories.Functor.Hom using (module Hom; Hom[_][-,_]; Hom[_][-,-]) open import Categories.Functor.Bifunctor open import Categories.Functor.Presheaf open import Categories.Functor.Construction.LiftSetoids open import Categories.NaturalTransformation using (NaturalTransformation; ntHelper) renaming (id to idN) open import Categories.NaturalTransformation.NaturalIsomorphism using (NaturalIsomorphism) open import Categories.Yoneda import Categories.Morphism as Mor import Categories.Morphism.Reasoning as MR import Categories.NaturalTransformation.Hom as NT-Hom open Category C open HomReasoning open NaturalTransformation open Yoneda C private module CE = Category.Equiv C module C = Category C YoFull : Full embed YoFull {X} {Y} = record { from = record { _⟨$⟩_ = λ ε → η ε X ⟨$⟩ id ; cong = λ i≈j → i≈j CE.refl } ; right-inverse-of = λ ε {x} {z} {y} z≈y → begin (η ε X ⟨$⟩ id) ∘ z ≈˘⟨ identityˡ ⟩ id ∘ (η ε X ⟨$⟩ id) ∘ z ≈˘⟨ commute ε z CE.refl ⟩ η ε x ⟨$⟩ id ∘ id ∘ z ≈⟨ cong (η ε x) (identityˡ ○ identityˡ ○ z≈y) ⟩ η ε x ⟨$⟩ y ∎ } YoFaithful : Faithful embed YoFaithful _ _ pres-≈ = ⟺ identityʳ ○ pres-≈ {_} {id} CE.refl ○ identityʳ YoFullyFaithful : FullyFaithful embed YoFullyFaithful = YoFull , YoFaithful open Mor C yoneda-iso : ∀ {A B : Obj} → NaturalIsomorphism Hom[ C ][-, A ] Hom[ C ][-, B ] → A ≅ B yoneda-iso {A} {B} niso = record { from = ⇒.η A ⟨$⟩ id ; to = ⇐.η B ⟨$⟩ id ; iso = record { isoˡ = begin (⇐.η B ⟨$⟩ id) ∘ (⇒.η A ⟨$⟩ id) ≈˘⟨ identityˡ ⟩ id ∘ (⇐.η B ⟨$⟩ id) ∘ (⇒.η A ⟨$⟩ id) ≈⟨ B⇒A.inverseʳ F⇐G refl ⟩ ⇐.η A ⟨$⟩ (⇒.η A ⟨$⟩ id) ≈⟨ isoX.isoˡ refl ⟩ id ∎ ; isoʳ = begin (⇒.η A ⟨$⟩ id) ∘ (⇐.η B ⟨$⟩ id) ≈˘⟨ identityˡ ⟩ id ∘ (⇒.η A ⟨$⟩ id) ∘ (⇐.η B ⟨$⟩ id) ≈⟨ A⇒B.inverseʳ F⇒G refl ⟩ ⇒.η B ⟨$⟩ (⇐.η B ⟨$⟩ id) ≈⟨ isoX.isoʳ refl ⟩ id ∎ } } where open NaturalIsomorphism niso A⇒B = yoneda-inverse A (Functor.F₀ embed B) B⇒A = yoneda-inverse B (Functor.F₀ embed A) module A⇒B = Inverse A⇒B module B⇒A = Inverse B⇒A module isoX {X} = Mor.Iso (iso X) module _ {o′ ℓ′ e′} {D : Category o′ ℓ′ e′} where private module D = Category D module _ {F G : Functor D C} where private module F = Functor F module G = Functor G Hom[-,F-] : Bifunctor C.op D (Setoids ℓ e) Hom[-,F-] = Hom[ C ][-,-] ∘F (idF ⁂ F) Hom[-,G-] : Bifunctor C.op D (Setoids ℓ e) Hom[-,G-] = Hom[ C ][-,-] ∘F (idF ⁂ G) nat-appʳ : ∀ X → NaturalTransformation Hom[-,F-] Hom[-,G-] → NaturalTransformation Hom[ C ][-, F.F₀ X ] Hom[ C ][-, G.F₀ X ] nat-appʳ X α = ntHelper record { η = λ Y → η α (Y , X) ; commute = λ {_ Y} f eq → cong (η α (Y , X)) (∘-resp-≈ˡ (⟺ F.identity)) ○ commute α (f , D.id) eq ○ ∘-resp-≈ˡ G.identity } transform : NaturalTransformation Hom[-,F-] Hom[-,G-] → NaturalTransformation F G transform α = ntHelper record { η = λ X → η α (F.F₀ X , X) ⟨$⟩ id ; commute = λ {X Y} f → begin (η α (F.F₀ Y , Y) ⟨$⟩ id) ∘ F.F₁ f ≈˘⟨ identityˡ ⟩ id ∘ (η α (F.F₀ Y , Y) ⟨$⟩ id) ∘ F.F₁ f ≈˘⟨ lower (yoneda.⇒.commute {Y = Hom[ C ][-, G.F₀ Y ] , _} (idN , F.F₁ f) {nat-appʳ Y α} {nat-appʳ Y α} (cong (η α _))) ⟩ η α (F.F₀ X , Y) ⟨$⟩ F.F₁ f ∘ id ≈⟨ cong (η α (F.F₀ X , Y)) (∘-resp-≈ʳ (⟺ identityˡ)) ⟩ η α (F.F₀ X , Y) ⟨$⟩ F.F₁ f ∘ id ∘ id ≈⟨ commute α (id , f) refl ⟩ G.F₁ f ∘ (η α (F.F₀ X , X) ⟨$⟩ id) ∘ id ≈⟨ refl⟩∘⟨ identityʳ ⟩ G.F₁ f ∘ (η α (F.F₀ X , X) ⟨$⟩ id) ∎ } module _ (F G : Functor D C) where private module F = Functor F module G = Functor G Hom[-,F-] : Bifunctor C.op D (Setoids ℓ e) Hom[-,F-] = Hom[ C ][-,-] ∘F (idF ⁂ F) Hom[-,G-] : Bifunctor C.op D (Setoids ℓ e) Hom[-,G-] = Hom[ C ][-,-] ∘F (idF ⁂ G) yoneda-NI : NaturalIsomorphism Hom[-,F-] Hom[-,G-] → NaturalIsomorphism F G yoneda-NI ni = record { F⇒G = transform F⇒G ; F⇐G = transform F⇐G ; iso = λ X → record { isoˡ = begin (⇐.η (G.F₀ X , X) ⟨$⟩ id) ∘ (⇒.η (F.F₀ X , X) ⟨$⟩ id) ≈˘⟨ identityˡ ⟩ id ∘ (⇐.η (G.F₀ X , X) ⟨$⟩ id) ∘ (⇒.η (F.F₀ X , X) ⟨$⟩ id) ≈˘⟨ lower (yoneda.⇒.commute {Y = Hom[ C ][-, F.F₀ X ] , _} (idN , (⇒.η (F.F₀ X , X) ⟨$⟩ C.id)) {nat-appʳ X F⇐G} {nat-appʳ X F⇐G} (cong (⇐.η _))) ⟩ ⇐.η (F.F₀ X , X) ⟨$⟩ (⇒.η (F.F₀ X , X) ⟨$⟩ id) ∘ id ≈⟨ cong (⇐.η _) identityʳ ⟩ ⇐.η (F.F₀ X , X) ⟨$⟩ (⇒.η (F.F₀ X , X) ⟨$⟩ id) ≈⟨ iso.isoˡ _ refl ⟩ id ∎ ; isoʳ = begin (⇒.η (F.F₀ X , X) ⟨$⟩ id) ∘ (⇐.η (G.F₀ X , X) ⟨$⟩ id) ≈˘⟨ identityˡ ⟩ id ∘ (⇒.η (F.F₀ X , X) ⟨$⟩ id) ∘ (⇐.η (G.F₀ X , X) ⟨$⟩ id) ≈˘⟨ lower (yoneda.⇒.commute {Y = Hom[ C ][-, G.F₀ X ] , _} (idN , (⇐.η (G.F₀ X , X) ⟨$⟩ C.id)) {nat-appʳ X F⇒G} {nat-appʳ X F⇒G} (cong (⇒.η _))) ⟩ ⇒.η (G.F₀ X , X) ⟨$⟩ (⇐.η (G.F₀ X , X) ⟨$⟩ id) ∘ id ≈⟨ cong (⇒.η _) identityʳ ⟩ ⇒.η (G.F₀ X , X) ⟨$⟩ (⇐.η (G.F₀ X , X) ⟨$⟩ id) ≈⟨ iso.isoʳ _ refl ⟩ id ∎ } } where open NaturalIsomorphism ni
oeis/294/A294349.asm
neoneye/loda-programs
11
18324
; A294349: Product of first n terms of the binomial transform of the Lucas numbers (A000032). ; Submitted by <NAME>(s1) ; 2,6,42,756,35532,4370436,1407280392,1186337370456,2618246576596392,15128228719573952976,228844715840995186667952,9062937281450932377610903056,939663463215395570775453650652192,255065069445576619918001465293982953056 mod $0,18 mov $1,2 mov $2,2 lpb $0 sub $0,1 add $3,$2 add $2,$3 sub $2,1 mul $1,$2 lpe mov $0,$1
src/fltk-widgets-menus-menu_buttons.adb
micahwelf/FLTK-Ada
1
18611
<reponame>micahwelf/FLTK-Ada with Interfaces.C, System; use type System.Address; package body FLTK.Widgets.Menus.Menu_Buttons is procedure menu_button_set_draw_hook (W, D : in System.Address); pragma Import (C, menu_button_set_draw_hook, "menu_button_set_draw_hook"); pragma Inline (menu_button_set_draw_hook); procedure menu_button_set_handle_hook (W, H : in System.Address); pragma Import (C, menu_button_set_handle_hook, "menu_button_set_handle_hook"); pragma Inline (menu_button_set_handle_hook); function new_fl_menu_button (X, Y, W, H : in Interfaces.C.int; Text : in Interfaces.C.char_array) return System.Address; pragma Import (C, new_fl_menu_button, "new_fl_menu_button"); pragma Inline (new_fl_menu_button); procedure free_fl_menu_button (M : in System.Address); pragma Import (C, free_fl_menu_button, "free_fl_menu_button"); pragma Inline (free_fl_menu_button); procedure fl_menu_button_type (M : in System.Address; T : in Interfaces.C.unsigned); pragma Import (C, fl_menu_button_type, "fl_menu_button_type"); pragma Inline (fl_menu_button_type); function fl_menu_button_popup (M : in System.Address) return System.Address; pragma Import (C, fl_menu_button_popup, "fl_menu_button_popup"); pragma Inline (fl_menu_button_popup); procedure fl_menu_button_draw (W : in System.Address); pragma Import (C, fl_menu_button_draw, "fl_menu_button_draw"); pragma Inline (fl_menu_button_draw); function fl_menu_button_handle (W : in System.Address; E : in Interfaces.C.int) return Interfaces.C.int; pragma Import (C, fl_menu_button_handle, "fl_menu_button_handle"); pragma Inline (fl_menu_button_handle); procedure Finalize (This : in out Menu_Button) is begin if This.Void_Ptr /= System.Null_Address and then This in Menu_Button'Class then if This.Needs_Dealloc then free_fl_menu_button (This.Void_Ptr); end if; This.Void_Ptr := System.Null_Address; end if; Finalize (Menu (This)); end Finalize; package body Forge is function Create (X, Y, W, H : in Integer; Text : in String) return Menu_Button is begin return This : Menu_Button do This.Void_Ptr := new_fl_menu_button (Interfaces.C.int (X), Interfaces.C.int (Y), Interfaces.C.int (W), Interfaces.C.int (H), Interfaces.C.To_C (Text)); fl_widget_set_user_data (This.Void_Ptr, Widget_Convert.To_Address (This'Unchecked_Access)); menu_button_set_draw_hook (This.Void_Ptr, Draw_Hook'Address); menu_button_set_handle_hook (This.Void_Ptr, Handle_Hook'Address); end return; end Create; end Forge; procedure Set_Popup_Kind (This : in out Menu_Button; Pop : in Popup_Buttons) is begin fl_menu_button_type (This.Void_Ptr, Popup_Buttons'Pos (Pop)); end Set_Popup_Kind; function Popup (This : in out Menu_Button) return FLTK.Menu_Items.Menu_Item is begin return Item : FLTK.Menu_Items.Menu_Item do Wrapper (Item).Void_Ptr := fl_menu_button_popup (This.Void_Ptr); end return; end Popup; procedure Draw (This : in out Menu_Button) is begin fl_menu_button_draw (This.Void_Ptr); end Draw; function Handle (This : in out Menu_Button; Event : in Event_Kind) return Event_Outcome is begin return Event_Outcome'Val (fl_menu_button_handle (This.Void_Ptr, Event_Kind'Pos (Event))); end Handle; end FLTK.Widgets.Menus.Menu_Buttons;
main.asm
Zeturic/bpre-dtan
1
177274
.gba .thumb .open "rom.gba", "test.gba", 0x08000000 .org allocation .area allocation_size .importobj "build/linked.o" .endarea .org 0x08050E24 .area 0xF0, 0xFE ldr r3, =SetTradeSceneStrings |1 bx r3 .pool .endarea .close
U494/Algol/algrt.asm
sboydlns/univacemulators
2
244034
<filename>U494/Algol/algrt.asm START . . UNIVAC 494 ALGOL RUN-TIME LIBRARY . . REGISTER USAGE: . B1 = SUBROUTINE RETURN ADDRESS . B2 = USER SUBROUTINE RETURN ADDRESS . B4 = PTR TO TOP OF CURRENT STACK . B5 = PTR TO LAST STACK BASED VARIABLE FOR THE . CURRENT BLOCK. . ER$DEF LCB$DEF L$ITEM$DEF FMCB$DEF . XREF ALG$STACK XREF POWERI . . EXIT CODES . ESOVFL EQU 1D . STACK OVERFLOW ESUNFL EQU 2D . STACK UNDERFLOW EHMTY EQU 3D . HEAP EXHAUSTED EHCRUPT EQU 4D . HEAP CORRUPTED EABADIDX EQU 5D . INVALID ARRAY INDEX . . VARIABLE TYPE CODES . DTINTEGER EQU 0D DTREAL EQU 1D DTSTRING EQU 3D DTLOGICAL EQU 4D . . +++++++++++++++++++++++++++++++++++++++++++++++ . . STACK ROUTINES . . +++++++++++++++++++++++++++++++++++++++++++++++ . S$LOW +0 . LOWEST STACK ADDRESS S$HIGH +0 . HIGHEST STACK ADDRESS . . ++++++++++ . ALG$INIT . . INITIALIZE THE STACK . . PARAMETERS: . STACK SIZE . . RETURNS: . NONE . ++++++++++ ALG$INIT* LA ALG$STACK . SAVE LOW STACK ADDR SA,W S$LOW A,W 0,B1 . COMPUTE HEAP LOW ADDR SA,W AH$HEAD+FMCB$START AN 1 . COMPUTE STACK HIGH ADDR SA,W S$HIGH MEMSIZ . GET THE PGM SIZE AN 1 . COMPUTE HEAP END SA,W AH$HEAD+FMCB$END LA AH$HEAD . INIT HEAP FREE LIST SA,W ALG$HEAP+LCB$HEAD SA,W ALG$HEAP+LCB$TAIL LA ALG$HEAP SA,W AH$HEAD+LI$LIST LB,W B4,S$HIGH . INIT CURRENT TOP PTR J 1,B1 . RETURN . ++++++++++ . PUSHA . . PUSH THE A REGISTER ONTO THE STACK . . PARAMETERS: . VALUE TO PUSH IN A . . RETURNS: . NONE . ++++++++++ PUSHA* SA,W S$SAVE SA,W 0,B4 . SAVE A ON TOP SLJ S$DECR LA,W S$SAVE J 0,B1 . ++++++++++ . PUSHQ . . PUSH THE Q REGISTER ONTO THE STACK . . PARAMETERS: . VALUE TO PUSH IN Q . . RETURNS: . NONE . ++++++++++ PUSHQ* SA,W S$SAVE SQ,W 0,B4 SLJ S$DECR LA,W S$SAVE J 0,B1 . ++++++++++ . PUSHAQ . . PUSH THE AQ REGISTER PAIR ONTO THE STACK . . PARAMETERS: . VALUE TO PUSH IN AQ . . RETURNS: . NONE . ++++++++++ PUSHAQ* DPS S$SAVE . SAVE VALUE TO PUSH SLJ S$DECR . DEC STACK TO ALLOW 2 WORDS DPL S$SAVE . PUSH VALUE DPS 0,B4 SLJ S$DECR DPL S$SAVE . RESTORE ORIGINAL AQ J 0,B1 . ++++++++++ . DECREMENT THE STACK POINTER AND CHECK FOR OVERFLOW . ++++++++++ S$DECR +0 JBD B4,$+1 SB,A B4 TA,W S$LOW,,YMORE J,L S$DECR . . STACK OVERFLOW DETECTED . TYPE SO$LEN,S$OVFL HALT ESOVFL . S$SAVE RES 2D S$OVFL +'STACK OVERFLOW' +' ^' SO$LEN EQU $-S$OVFL . ++++++++++ . POPA . . POP THE TOP OF THE STACK INTO A . . PARAMETERS: . NONE . . RETURNS: . POPPED VALUE IN A . ++++++++++ POPA* SLJ S$INCR LA,W 0,B4 J 0,B1 . ++++++++++ . POPQ . . POP THE TOP OF THE STACK INTO Q . . PARAMETERS: . NONE . . RETURNS: . POPPED VALUE IN Q . ++++++++++ POPQ* SA,W S$SAVE SLJ S$INCR LQ,W 0,B4 LA,W S$SAVE J 0,B1 . ++++++++++ . POPAQ . . POP THE TOP 2 WORDS OF THE STACK INTO AQ . . PARAMETERS: . NONE . . RETURNS: . POPPED VALUE IN AQ . ++++++++++ POPAQ* SLJ S$INCR DPL 0,B4 DPS S$SAVE SLJ S$INCR DPL S$SAVE J 0,B1 . ++++++++++ . INCREMENT THE STACK POINTER AND CHECK FOR UNDERFLOW . ++++++++++ S$INCR +0 SB,A B4 TA,W S$HIGH,,YMORE J S$UERR TBI B4,77777 J,L S$INCR HALT 666 . . STACK UNDERFLOW DETECTED . S$UERR TYPE SU$LEN,S$UNFL HALT ESUNFL . S$UNFL +'STACK UNDERFLOW' +' ^' SU$LEN EQU $-S$UNFL . +++++++++++++++++++++++++++++++++++++++++++++++ . . LIST ROUTINES . . USED BY THE HEAP MANAGER TO ADD AND REMOVE ITEMS . FROM THE FREE MEMORY LIST . . +++++++++++++++++++++++++++++++++++++++++++++++ . . ++++++++++ . INSERT AN ITEM INTO THE MIDDLE OF A LIST . . PARAMETERS: . LIST . ITEM TO INSERT . INSERT BEFORE ITEM. IF ZERO ADD TO TAIL. . . REGISTERS: . B2 = QUEUE . B3 = PARAMS . B5 = ITEM TO INSERT . B6 = MISC. . B7 = INSERT BEFORE THIS ITEM . ++++++++++ L$INSERT +0 SBW L$SAVE . SAVE REGISTERS LA,L L$INSERT . POINT TO PARAMS LB,A B3 A 3 . SAVE RTRN ADDR SA,L LIN$J LB,W B2,0,B3 . GET PTR TO LIST LB,W B5,1,B3 . GET PTR TO ITEM TO INSERT LA,W 2,B3,ANOT . GET PTR TO INSERT B4 ITEM J LIN$END . ZERO? ADD TO END OF LIST LB,A B7 LA,W LI$PRIOR,B7,ANOT . INSERT AT HEAD OF LIST? J LIN$NEWHD . YES LB,A B6 SA,W LI$PRIOR,B5 . UPDATE ITEM PRIOR SB,W B7,LI$NEXT,B5 . UPDATE ITEM NEXT SB,W B2,LI$LIST,B5 . UPDATE PTR TO LIST SB,W B5,LI$NEXT,B6 . UPDATE PRIOR'S NEXT SB,W B5,LI$PRIOR,B7 . UPDATE NEXT'S PRIOR J LIN$RTRN . LIN$NEWHD SZ,W LI$PRIOR,B5 . UPDATE ITEM PRIOR SB,W B7,LI$NEXT,B5 . UPDATE ITEM NEXT SB,W B2,LI$LIST,B5 . UPDATE PTR TO LIST SB,W B5,LI$PRIOR,B7 . UPDATE NEXT'S PRIOR SB,W B5,LCB$HEAD,B2 . UPDATE LIST HEAD . LIN$RTRN LBW L$SAVE . RESTORE REGISTERS LIN$J J $ . RETURN TO CALLER . LIN$END LA,W LCB$TAIL,B2,ANOT . GET END OF LIST J LIN$EMPTY . THERE ISN'T ONE LB,A B6 SA,W LI$PRIOR,B5 . ITEM PRIOR = TAIL SZ,W LI$NEXT,B5 . ITEM NEXT = ZERO SB,W B2,LI$LIST,B5 . SET ITEM LIST PTR SB,W B5,LI$NEXT,B6 . TAIL NEXT = ITEM SB,W B5,LCB$TAIL,B2 . TAIL = ITEM J LIN$RTRN . LIN$EMPTY SZ,W LI$NEXT,B5 . CLEAR NEXT / PRIOR SZ,W LI$PRIOR,B5 SB,W B2,LI$LIST,B5 . SET ITEM LIST PTR SB,W B5,LCB$HEAD,B2 . HEAD / TAIL = ITEM SB,W B5,LCB$TAIL,B2 J LIN$RTRN . ++++++++++ . DELETE AN ITEM FROM A QUEUE . . PARAMETERS: . QUEUE . ITEM TO DELETE . . REGISTERS: . B2 = QUEUE . B3 = PARAMS . B5 = ITEM TO INSERT . B7 = MISC . . ++++++++++ L$DELETE +0 SBW L$SAVE LA,L L$DELETE . POINT TO PARAMS LB,A B3 A 2 . SAVE RTRN ADDR SA,L LDE$J LB,W B2,0,B3 . GET PTR TO QUEUE LB,W B5,1,B3 . GET PTR TO ITEM TO DELETE LA,W LI$PRIOR,B5,ANOT . GET PRIOR J LDE$NOPRIOR . THERE ISN'T ONE LB,A B7 LA,W LI$NEXT,B5 . PRIOR'S NEXT = ITEM NEXT SA,W LI$NEXT,B7 J LDE$DONEXT LDE$NOPRIOR LA,W LI$NEXT,B5 . LIST HEAD = ITEM NEXT SA,W LCB$HEAD,B2 LDE$DONEXT LA,W LI$NEXT,B5,ANOT . GET NEXT J LDE$NONEXT . THERE ISN'T ONE LB,A B7 LA,W LI$PRIOR,B5 . NEXT'S PRIOR = ITEM PRIOR SA,W LI$PRIOR,B7 J LDE$DONE LDE$NONEXT LA,W LI$PRIOR,B5 . LIST TAIL = ITEM PRIOR SA,W LCB$TAIL,B2 LDE$DONE SZ,W LI$LIST,B5 . CLEAR LIST PTR SZ,W LI$NEXT,B5 . CLEAR NEXT / PRIOR SZ,W LI$PRIOR,B5 . LDE$RTRN LBW L$SAVE . RESTORE REGISTERS LDE$J J $ . RETURN TO CALLER . L$SAVE RES 7D . . +++++++++++++++++++++++++++++++++++++++++++++++ . FREE MEMORY (HEAP) MANAGER . +++++++++++++++++++++++++++++++++++++++++++++++ . ++++++++++ . . FM$GETMEM . . ALLOCATE A BLOCK OF MEMORY . . PARAMETERS: . SIZE TO ALLOCATE . . RETURNS: . SIZE TO ALLOCATE PARAMETER OVERWRITTEN WITH BLOCK ADDRESS. . ZERO IF REQUEST CANNOT BE GRANTED . . REGISTERS: . B2 = PTR TO PARAMETER / RETURN VALUE . B5 = FMCB . B6 = MISC . . . THE BLOCK ALLOCATED WILL BE AT LEAST 1 WORD LARGER THAN REQUESTED. . THIS FIRST WORD OF THE BLOC WILL CONTAIN THE BLOCK SIZE. . THE ADDRESS RETURNED TO THE CALLER WILL BE THE 2ND WORD . OF THE BLOCK. . . ++++++++++ FM$GETMEM +0 SA,W FM$A . SAVE REGISTERS SQ,W FM$Q SBW FM$B LA,L FM$GETMEM . GET RETURN ADDRESS LB,A B2 A 1 . BUMP PAST PARAMS SA,L FMG$J . SAVE RETURN ADDRESS LA,W 0,B2,ANOT . GET SIZE TO ALLOCATE J FMG$RTRN . ZERO BYTES REQUESTED, QUIT A 1 . ADD 1 FOR OVERHEAD TA FMCB$LEN,,YLESS . ALLOC. ENOUGH TO HOLD FMCB LA FMCB$LEN+1 SA,W FM$SIZE SZ,W 0,B2 . CLR RETURN VALUE LB B5,ALG$HEAP . GET PTR TO TAIL OF FREE LIST LA,W LCB$TAIL,B5,ANOT J HEAPBAD . LIST EMPTY, NEVER HAPPEN . FMG$LOOP LB,A B5 LA,W FMCB$END,B5 . CALC SIZE OF THIS BLOCK AN,W FMCB$START,B5 A 1 TA,W FM$SIZE,,YLESS . ENOUGH FOR THIS REQUEST? J FMG$NXTBLK . NO AN,W FM$SIZE . AT LEAST FMCB$LEN LEFT? TA FMCB$LEN,,YMORE J FMG$SIZOK . YES A,W FM$SIZE . NO, ALLOCATE ENTIRE BLOCK SA,W FM$SIZE FMG$SIZOK LA,W FMCB$END,B5 . YES, CALC NEW END ADDR AN,W FM$SIZE SA,W FMCB$END,B5 A 1 . CALC START ADDR THIS BLOCK LB,A B6 ZQ . CLEAR BUFFER TO ZERO R,W FM$SIZE,,ADV SQ,W 0,B6 LQ,W FM$SIZE . SAVE BLK SIZE AS 1ST WORD SQ,W 0,B6 A 1 . BUMP PAST OVERHEAD SA,W 0,B2 . SAVE FOR RTRN . IF FMCB IS EMPTY, FREE IT UNLESS IT IS THE HEAD OF THE . FREE MEMORY LIST LA,W FMCB$PRIOR,B5,ANOT . HEAD OF LIST? J FMG$RTRN . YES, WE'RE DONE LA,W FMCB$END,B5 . CALC SIZE REMAINING IN BLOCK AN,W FMCB$START,B5,ANEG J FMG$RTRN . BLOCK NOT EMPTY, QUIT SB,W B5,FMG$P1 . EMPTY, REMOVE FROM FREE LIST SLJ L$DELETE +ALG$HEAP FMG$P1 +0 . FMG$RTRN LA,W FM$A . RESTORE REGISTERS LQ,W FM$Q LBW FM$B FMG$J J $ . RETURN TO CALLER . FMG$NXTBLK LA,W LI$PRIOR,B5,ANOT . GET PTR TO PRIOR BLOCK J FMG$HMTY . NO MORE, QUIT J FMG$LOOP . FMG$HMTY TYPE HELEN,HEMSG HALT EHMTY . HEMSG +'HEAP EXHAUSTED' +' ^' HELEN EQU $-HEMSG . . ++++++++++ . FREE A BLOCK OF MEMORY . . PARAMETERS: . BLOCK START ADDRESS . . REGISTERS: . B2 = PARAMETER . B5 = FMCB . B6 = MISC . . FIRST WE TRY TO ADD THE BLOCK TO BE FREE'D TO AN EXISTING FREE . BLOCK. IF THAT DOESN'T WORK, WE ADD A NEW FREE BLOCK TO THE CHAIN. . ++++++++++ FM$FREEMEM +0 SA,W FM$A . SAVE REGISTERS SQ,W FM$Q SBW FM$B LA,L FM$FREEMEM . GET RETURN ADDRESS LB,A B2 A 1 . BUMP PAST PARAMS SA,L FMF$J . SAVE RETURN ADDRESS LA,W 0,B2,ANOT . SAVE BLK START ADDR J FMF$RTRN . ZERO, QUIT AN 1 . DEC. FOR OVERHEAD SA,W FM$BEGIN LB,A B5 . GET THE BLK SIZE LA,W 0,B5 SA,W FM$SIZE LB B5,ALG$HEAP . GET PTR TO HEAD OF FREE LIST LA,W LCB$HEAD,B5,ANOT J HEAPBAD . LIST EMPTY, NEVER HAPPEN . FMF$LOOP LB,A B5 LA,W FMCB$END,B5 . GET END OF FREE SPACE A 1 . BUMP BY 1 AN,W FM$BEGIN,,AZERO . = START OF BLK TO FREE? J FMF$CHKNEW . NO LA,W FMCB$END,B5 . YES, CALC NEW END A,W FM$SIZE SA,W FMCB$END,B5 . UPDATE CRNT FMCB . CONSOLIDATE ADJACENT FMCB'S IF THEY WOULD FORM ONE CONTIGUOUS . BLOCK FMF$CONS LA,W FMCB$NEXT,B5,ANOT . GET PTR TO NEXT FMCB J FMF$RTRN . THERE ISN'T ONE LB,A B6 LA,W FMCB$END,B5 . GET END THIS BLK A 1 . BUMP TO GET START OF NEXT AN,W FMCB$START,B6,AZERO . END OF THIS = START OF NEXT? J FMF$RTRN . NO, WE'RE DONE LA,W FMCB$END,B6 . SET THIS END TO NEXT END SA,W FMCB$END,B5 SB,W B6,FMF$P3 . REMOVE FCMB FROM LIST SLJ L$DELETE +ALG$HEAP FMF$P3 +0 . FMF$RTRN LA,W FM$A . RESTORE REGISTERS LQ,W FM$Q LBW FM$B FMF$J J $ . RETURN TO CALLER . FMF$CHKNEW TA 0,,YLESS . NEED TO INSERT FMCB? J FMF$NXTBLK . NO, NEXT BLOCK FMF$ADDNEW LA,W FM$BEGIN . ADD TO FREE LIST B4 CRNT BLK SA,W FMF$P1 SB,W B5,FMF$P2 SLJ L$INSERT +ALG$HEAP FMF$P1 +0 FMF$P2 +0 LB,W B5,FM$BEGIN . POINT TO NEW BLOCK LA,W FM$BEGIN . SAVE START / END SA,W FMCB$START,B5 A,W FM$SIZE AN 1 SA,W FMCB$END,B5 J FMF$CONS . FMF$NXTBLK LA,W LI$NEXT,B5,AZERO . GET PTR TO NEXT BLOCK J FMF$LOOP . GOT IT, CONTINUE LB,A B5 J FMF$ADDNEW . END OF LIST . HEAPBAD TYPE HBLEN,HBMSG HALT EHCRUPT . HBMSG +'HEAP FREE LIST CORRUPTED' +' ^' HBLEN EQU $-HBMSG . FM$BEGIN RES 1 FM$SIZE RES 1 FM$A RES 1 FM$Q RES 1 FM$B RES 7D . ++++++++++++++++++++++++++++++++++++++++++++++ . ARRAY ROUTINES . ++++++++++++++++++++++++++++++++++++++++++++++ . ++++++++++ . NEWARRAY . . ALLOCATE MEMORY FOR AN ARRAY. THE NUMBER OF DIMENSIONS IS . LIMITED TO 10. IF THE COMPILE ALLOWS MORE THAN THIS THE . SIZE OF NA$LIMITS MUST BE ADJUSTED ACCORDINGLY. . . AN ARRAY IS PREFACED BY A HEADER IN THE FOLLOWING FORMAT: . NUMBER OF DIMENSIONS (N) . SIZE OF ARRAY ITEM IN WORDS . LOWER-LIMIT-1 . UPPER-LIMIT-1 . . . . . . . LOWER-LIMIT-N . UPPER-LIMIT-N . . PARAMETERS: . LOWER-LIMIT1 . UPPER-LIMIT1 . . . . . . . LOWER-LIMITN . UPPER-LIMITN . N . ITEM-SIZE-IN-WORDS . . RETURNS: . ADDRESS OF ARRAY IN Q . . ++++++++++ NEWARRAY* SA,W NA$A . SAVE REGISTERS SBW NA$B . LQ,W 1,B4 . GET ITEM SIZE SQ,W NA$ITEMSZ SQ,W NA$TOTSZ . LA,W 2,B4 . GET # DIMENSIONS SA,W NA$DIM LB B4,2,B4 . POP THE STACK . . CALCULATE TOTAL ARRAY SIZE . LB,W B2,NA$DIM . INIT LOOP COUNT JBD B2,$+1 SB,A B2 . OFFSET TO LAST LIMIT LSA 1D . TABLE ENTRY LB,A B3 NA$LOOP LQ,W 1,B4 . GET UPPER LIMIT LA,W 2,B4 . GET LOWER LIMIT LB B4,2,B4 . POP THE STACK SA,W NA$LIMITS,B3 SQ,W NA$LIMITS+1,B3 ANQ,A . TOTAL # ITEMS AQ 1D ZA M,W NA$TOTSZ SQ,W NA$TOTSZ SB,A B3 . DEC LIMIT TABLE OFFSET AN 2D LB,A B3 JBD B2,NA$LOOP . LOOP UNTIL DONE . . ALLOCATE ENOUGH TO HOLD ARRAY FROM HEAP . LA,W NA$DIM . ADD ENOUGH TO HOLD LIMIT TBL LSA 1D A 2D A,W NA$TOTSZ SA,W NA$P1 SLJ FM$GETMEM NA$P1 +0 . LB,W B5,NA$P1 LQ,W NA$DIM . XFER # DIMENSIONS TO ARRAY SQ,W 0,B5 LQ,W NA$ITEMSZ . XFER ITEM SZ TO ARRAY SQ,W 1,B5 SB,A B5 . BUMP ARRAY BFR POINTER A 2D LB,A B5 LB B3,NA$LIMITS . XFER LIMITS TBL TO ARRAY NA$LOOP2 DPL 0,B3 DPS 0,B5 LB B3,2D,B3 . BUMP INDEX LB B5,2D,B5 . BUMP INDEX RD,W NA$DIM . DECR LOOP COUNT JT NA$LOOP2,,ANOT . NA$RTRN LQ,W NA$P1 LA,W NA$A . RESTORE REGISTERS SB,W B4,NA$B+3 LBW NA$B J 0,B1 . ++++++++++ . STRARRAY . . ALLOCATE MEMORY FOR A STRING ARRAY. . . PARAMETERS: . SAME AS FOR NEWARRAY WITH THE ADDITION OF A NEW PARAMETER . HOLDING THE LENGHT OF THE STRING IN CHARACTERS. . . RETURNS: . SAME AS FOR NEWARRAY . . ++++++++++ STRARRAY* SA,W SA$A . SAVE REGISTERS SBW SA$B LBPJB1 POPQ . SAVE STRING LENGTH SQ,W SA$LENGTH . LBPJB1 NEWARRAY SQ,W SA$Q . SAVE ARRAY ADDRESS LB,W B5,SA$Q . GET # DIMENSIONS LA,W 0,B5 LSA 1D . POINT TO ARRAY DATA A 2D A,W SA$Q LB,A B5 . LQ,W NS$SPACES . INITIALIZE ALL STRINGS SA$LOOP R,W NA$ITEMSZ,,ADV . TO SPACES SQ,W 0,B5 LA,W SA$LENGTH SA,W 0,B5 SB,A B5 . BUMP POINTER A,W NA$ITEMSZ LB,A B5 LA,W NA$TOTSZ . DECREMENT LOOP COUNT AN,W NA$ITEMSZ SA,W NA$TOTSZ,,AZERO J SA$LOOP . LA,W SA$A LQ,W SA$Q SB,W B4,SA$B+3 LBW SA$B J 0,B1 . SA$A RES 1D SA$Q RES 1D SA$B RES 7D SA$LENGTH RES 1D SA$DIM RES 1D . . ++++++++++ . FREEARRAY . . RELEASE THE MEMORY ASSIGNED TO AN ARRAY . . PARAMETERS: . ARRAY ADDRESS IN Q . . RETURNS: . NONE . ++++++++++ FREEARRAY* SQ,W $+2 SLJ FM$FREEMEM +0 J 0,B1 . ++++++++++ . ARRAYADR . . CALCULATE THE ADDRESS OF AN ARRAY ITEM . . PARAMETERS: . INDEX1 . . . . . . . INDEXN . ARRAY POINTER . N . . RETURNS . ADDRESS OF ARRAY ITEM IN A . . ++++++++++ ARRAYADR* SB,L B1,AA$RTRN . SAVE RETURN ADDR LQ,W 1,B4 . GET # OF INDEXES SQ,W NA$DIM LA,W 2,B4 . GET ARRAY BUFFER PTR LB,A B5 ANQ,W 0,B5,AZERO . # DIMENSIONS MATCH? J AA$BADIDX . NO, HARD FAIL LQ,W 1,B5 . GET ARRAY ITEM SIZE SQ,W NA$ITEMSZ LQ,W NA$DIM . POINT TO LAST DIMENSION LSQ 1D AQ,A SQ,A LB,A B5 . B5 = LAST LOWER LIMIT A 2D . POINT TO ARRAY DATA SA,W NA$ADDR LB B4,2,B4 . POP 2 ITEMS FROM STACK . AA$LOOP LQ,W 1,B4 . GET SUBSCRIPT LB B4,1,B4 . POP STACK ANQ,W 0,B5 . MAKE ZERO RELATIVE ZA M,W NA$ITEMSZ . GET OFFSET INTO DIMENSION AQ,W NA$ADDR . ADD TO TOTAL SO FAR SQ,W NA$ADDR LQ,W 1,B5 . GET UPPER LIMIT ANQ,W 0,B5 . GET # ITEMS THIS DIMENSION AQ 1D ZA M,W NA$ITEMSZ . GET TTL SIZE THIS DIMENSION SQ,W NA$ITEMSZ SB,A B5 . DECREMENT LIMIT TBL OFFSET AN 2D LB,A B5 RD,W NA$DIM JT AA$LOOP,,ANOT . LA,W NA$ADDR . RETURN ADDR OF ITEM AA$RTRN J $ . AA$BADIDX TYPE AA$LEN,AA$MSG HALT EABADIDX . AA$MSG +'RUN-TIME ERROR: WRONG NUMBER OF ARRAY INDICES' +' ^' AA$LEN EQU $-AA$MSG . ++++++++++ . GETARRAYQ . . DECODE THE ARRAY SUBSCRIPTS PASSED ON THE STACK AND RETURN . THE CONTENTS OF THE ADDRESSED ARRAY ITEM IN Q . . PARAMETERS: . . INDEX1 . . . . . . . INDEXN . ARRAY POINTER . N . . RETURNS: . ARRAY ITEM IN Q . ++++++++++ GETARRAYQ* SA,W NA$A . SAVE THE REGISTERS SBW NA$B . LBPJB1 ARRAYADR . DECODE SUBSCRIPTS . LB,A B5 . GET CONTENTS OF ARRAY ITEM LQ,W 0,B5 . LA,W NA$A . RESTORE REGISTERS SB,W B4,NA$B+3 LBW NA$B J 0,B1 . ++++++++++ . GETARRAYAQ . . DECODE THE ARRAY SUBSCRIPTS PASSED ON THE STACK AND RETURN . THE CONTENTS OF THE ADDRESSED ARRAY ITEM IN AQ . . PARAMETERS: . SEE GETARRAYQ . . ++++++++++ GETARRAYAQ* SBW NA$B . SAVE THE REGISTERS . LBPJB1 ARRAYADR . DECODE SUBSCRIPTS . LB,A B5 . GET CONTENTS OF ARRAY ITEM DPL 0,B5 . SB,W B4,NA$B+3 LBW NA$B . RESTORE THE REGISTERS J 0,B1 . . ++++++++++ . GETSARRAY . . DECODE THE ARRAY SUBSCRIPTS PASSED ON THE STACK AND RETURN . THE ADDRESS OF THE STRING ARRAY ITEM IN Q. . . PARAMETERS: . SEE GETARRAYQ . . ++++++++++ GETSARRAY* SA,W NA$A . SAVE THE REGISTERS SBW NA$B . LBPJB1 ARRAYADR . GET ADDRESS OF ITEM LQ,A . LA,W NA$A . RESTORE THE REGISTERS SB,W B4,NA$B+3 LBW NA$B J 0,B1 . . ++++++++++ . PUTARRAYQ . . DECODE THE ARRAY SUBSCRIPTS PASSED ON THE STACK AND UPDATE . THE ADDRESSED ARRAY ITEM WITH THE VALUE PASSED AS THE FIRST . PARAMETER. . . PARAMETERS: . . NEW ARRAY ITEM VALUE . INDEX1 . . . . . . . INDEXN . ARRAY POINTER . N . NEW VALUE IN Q . . RETURNS: . NEW ARRAY ITEM VALUE IN Q . ++++++++++ PUTARRAYQ* SA,W NA$A . SAVE THE REGISTERS SBW NA$B . LBPJB1 ARRAYADR . DECODE SUBSCRIPTS . LB,A B5 LBPJB1 POPQ . GET NEW VALUE SQ,W 0,B5 . UPDATE CONTENTS OF ITEM . LA,W NA$A . RESTORE REGISTERS SB,W B4,NA$B+3 LBW NA$B J 0,B1 . ++++++++++ . PUTARRAYAQ . . DECODE THE ARRAY SUBSCRIPTS PASSED ON THE STACK AND UPDATE . THE ADDRESSED ARRAY ITEM WITH THE VALUE PASSED AS THE FIRST . PARAMETER. . . PARAMETERS: . SEE GETARRAYQ . . RETURNS: . NEW ARRAY ITEM VALUE IN AQ . ++++++++++ PUTARRAYAQ* SBW NA$B . SAVE THE REGISTERS . LBPJB1 ARRAYADR . DECODE SUBSCRIPTS . LB,A B5 LBPJB1 POPAQ . GET NEW VALUE DPS 0,B5 . UPDATE CONTENTS OF ITEM . SB,W B4,NA$B+3 LBW NA$B . RESTORE THE REGISTERS J 0,B1 . NA$DIM RES 1D . # DIMENSIONS (MAX 10) NA$LIMITS RES 20D . TBL OF DIM LIMITS NA$ITEMSZ RES 1D NA$TOTSZ RES 1D NA$A RES 1D NA$Q RES 1D NA$B RES 7D NA$ADDR RES 1D NA$BFR RES 1D . . ++++++++++++++++++++++++++++++++++++++++++++++ . STRING ROUTINES . ++++++++++++++++++++++++++++++++++++++++++++++ . ++++++++++ . . NEWSTRING . . ALLOCATE A NEW STRING FROM THE HEAP . . PARAMETERS: . STRING LENGTH IN Q . . RETURNS: . PTR TO STRING IN Q . . ++++++++++ NEWSTRING* SA,W NA$A SBW NA$B . SQ,W NS$LEN . SAVE LENGTH FOR LATER ANQ 1D . CALC # WORDS REQUIRED TO ZA . HOLD STRING +1 FOR LENGTH D 5D AQ 2D SQ,W $+2 . ALLOC STRING BUFFER SLJ FM$GETMEM +0 LB,W B5,$-1 . GET BUFFER ADDRESS LA,W NS$SPACES . CLR BFR TO SPACES SQ,L $+1 R 0,,ADV SA,W 0,B5 LA,W NS$LEN . SET LENGTH IN CHARACTERS SA,W 0,B5 SB,A B5 . RETURN ADDR OF STRING LQ,A . LA,W NA$A LBW NA$B J 0,B1 . NS$LEN RES 1D NS$SPACES +' ' . ++++++++++ . FREESTRING . . RETURN A STRING BUFFER TO THE HEAP . . PARAMETERS: . ADDRESS OF STRING BUFFER IN Q . . RETURNS: . NONE . . ++++++++++ FREESTRING* SQ,W $+2 SLJ FM$FREEMEM +0 J 0,B1 . ++++++++++ . STRCPY . . COPY A (SUB)STRING TO ANOTHER (SUB)STRING . . PARAMETERS: . ALL PARAMETERS ARE PASSED ON THE STACK . SOURCE-STRING-POINTER . SOURCE-START . SOURCE-END . DEST-STRING-POINTER . DEST-START . DEST-END . . RETURNS: . NONE . . ++++++++++ STRCPY* SLJ SC$SAVE . SAVE REGISTERS SLJ SC$INIT . GET PARAMS, ETC. . LQ,W SC$DSTART TQ,W SC$DEND,,YMORE . PAST END OF DEST? J SC$RTRN . YES LQ,W SC$SSTART TQ,W SC$SEND,,YMORE . PAST END OF SOURCE? J SC$BLANKS . YES, DEST = SPACES . SC$LOOP LQ,L SC$SRC . SET UP SRC INSTRUCTIONS SQ,L SC$LOAD1 . LQ,L SC$DEST . SET UP DEST INSTRUCTIONS SQ,L SC$LOAD2 SQ,L SC$STORE . SC$LOAD1 LQ,W 0,B5 . GET SOURCE WORD LSAQ,U SC$SRC . GET BYTE INTO A NOT,X 77700 . CLEAR ALL BUT BYTE SA,W SC$BYTE SC$LOAD2 LQ,W 0,B6 . GET DEST WORD LSAQ,U SC$DEST . GET BYTE INTO A NOT 77 . CLEAR IT OR,W SC$BYTE . COPY BYTE TO A RSAQ,U SC$DEST . BACK INTO Q SC$STORE SQ,W 0,B6 . SAVE TO DEST . RI,W SC$DSTART . BUMP DEST BYTE # TA,W SC$DEND,,YMORE . END OF STRING? J SC$RTRN . YES LA 6D . BUMP DEST SHIFT COUNT RA,U SC$DEST TA 31D,,YLESS . NEXT WORD? J SC$SBUMP . NO LA 6D . YES, RESET SHIFT COUNT SA,U SC$DEST RI,L SC$DEST . BUMP WORD # SC$SBUMP RI,W SC$SSTART . BUMP SRC BYTE # TA,W SC$SEND,,YMORE . END OF STRING? J SC$BLANKS . YES LA 6D . BUMP SRC SHIFT COUNT RA,U SC$SRC TA 31D,,YLESS . NEXT WORD? J SC$LOOP . NO LA 6D . YES, RESET SHIFT COUNT SA,U SC$SRC RI,L SC$SRC . BUMP WORD # J SC$LOOP . SC$RTRN SLJ SC$RST . RESTORE REGISTERS J 0,B1 . . RIGHT FILL DESTINATION WITH SPACES . SC$BLANKS LQ,L SC$DEST . SET UP INSTRUCTIONS SQ,L SC$LOAD3 SQ,L SC$STORE2 SC$LOAD3 LQ,W 0,B6 LSAQ,U SC$DEST NOT 77 OR ' ' RSAQ,U SC$DEST SC$STORE2 SQ,W 0,B6 RI,W SC$DSTART . BUMP DEST BYTE # TA,W SC$DEND,,YMORE . END OF STRING? J SC$RTRN . YES LA 6D . BUMP DEST SHIFT COUNT RA,U SC$DEST TA 31D,,YLESS . NEXT WORD? J SC$BLANKS . NO LA 6D . YES, RESET SHIFT COUNT SA,U SC$DEST RI,L SC$DEST . BUMP WORD # J SC$BLANKS . ++++++++++ . STRCOMP . . COMPARE A (SUB)STRING TO ANOTHER (SUB)STRING . . PARAMETERS: . ALL PARAMETERS ARE PASSED ON THE STACK . SOURCE-STRING-POINTER . SOURCE-START . SOURCE-END . DEST-STRING-POINTER . DEST-START . DEST-END . . RETURNS: . RESULT OF COMPARISON IN A . -1 IF SOURCE < DEST . 0 IF SOURCE = DEST . 1 IF SOURCE > DEST . . ++++++++++ STRCOMP* SLJ SC$SAVE SLJ SC$INIT . SB,A B5 . POINT TO INTIAL WORD A,L SC$SRC LB,A B5 SB,A B6 A,L SC$DEST LB,A B6 SZ,W SC$A . ASSUME STRINGS ARE EQUAL . LQ,W SC$DSTART TQ,W SC$DEND,,YMORE . PAST END OF SUBSTRING? J SCO$CHKLSP . YES, CHK LEFT FOR ALL SPACES LQ,W SC$SSTART TQ,W SC$SEND,,YMORE . PAST END OF SUBSTRING? J SCO$CHKRSP . YES, CHK RIGHT FOR ALL SPACES . SCO$LOOP LQ,W 0,B6 . GET RIGHT HAND CHAR LSAQ,U SC$DEST NOT,X 77700 SA,W SC$BYTE LQ,W 0,B5 . GET LEFT HAND CHAR LSAQ,U SC$SRC NOT,X 77700 AN,W SC$BYTE,,AZERO . SUBTRACT RIGHT HAND CHAR J SCO$NEQ . NOT EQUAL, WE'RE ALMOST DONE . RI,W SC$DSTART . BUMP DEST BYTE # TA,W SC$DEND,,YMORE . END OF STRING? J SCO$CHKLSP . YES, CHECK LEFT FOR SPACES LA 6D . BUMP DEST SHIFT COUNT RA,U SC$DEST TA 31D,,YLESS . NEXT WORD? J SCO$SBUMP . NO LA 6D . YES, RESET SHIFT COUNT SA,U SC$DEST TBI B6,77777 . BUMP WORD PTR NOP SCO$SBUMP RI,W SC$SSTART . BUMP SRC BYTE # TA,W SC$SEND,,YMORE . END OF STRING? J SCO$CHKRSP . YES, CHECK RIGHT FOR SPACES LA 6D . BUMP SRC SHIFT COUNT RA,U SC$SRC TA 31D,,YLESS . NEXT WORD? J SCO$LOOP . NO LA 6D . YES, RESET SHIFT COUNT SA,U SC$SRC TBI B5,77777 NOP J SC$LOOP . SCO$NEQ LA,A 0,,APOS LA,X -1D,,ANEG . SRC < DEST LA 1D . SRC > DEST SA,W SC$A . SCO$RTRN SLJ SC$RST . RESTORE REGISTERS J 0,B1 . SCO$CHKLSP LA,W SC$SSTART . END OF LEFT STRING? TA,W SC$SEND,,YMORE . J SCO$RTRN . YES, STRINGS EQUAL LA 6D SA,U SC$DEST LB B6,NS$SPACES J SCO$SBUMP . SCO$CHKRSP LA,W SC$DSTART TA,W SC$DEND,,YMORE . END OF RIGHT STRING? J SCO$RTRN . YES, STRINGS EQUAL LA 6D SA,U SC$SRC LB B5,NS$SPACES J SCO$LOOP . ++++++++++ . INT2STRR . . CONVERT AN INTEGER IN Q TO THE RIGHT JUSTIFIED STRING GIVEN . BY THE STACK PARAMETERS. . . PARAMETERS: . INTEGER TO CONVERT IN Q . STACK: . DEST-STRING-POINTER . DEST-START . DEST-END . . RETURNS: . NONE . . ++++++++++ INT2STRR* SLJ SC$SAVE SLJ SC$INEG SQ,W SC$NUM SLJ SC$INIT1R . . CLEAR STRING TO SPACES I2S$CLEAR LQ,W 0,B6 . CLEAR CRNT CHAR TO SPACE LSAQ,U SC$DEST NOT 77 OR ' ' RSAQ,U SC$DEST SQ,W 0,B6 SLJ SC$DECR . DECREMENT STRING POINTERS J I2S$CLEAR . SLJ SC$INIT1R . RESTORE STRING INFO I2S$DIGIT LQ,W SC$NUM ZA . GET NEXT DIGIT D 10D OR '0' . CVT TO FIELDATA SA,W SC$BYTE SQ,W SC$NUM LQ,W 0,B6 LSAQ,U SC$DEST NOT 77 OR,W SC$BYTE RSAQ,U SC$DEST SQ,W 0,B6 LA,W SC$NUM,,ANOT . NUM = 0? J I2S$DONE . YES, WE'RE DONE SLJ SC$DECR . DECREMENT STRING POINTERS J I2S$DIGIT . I2S$DONE SLJ SC$DECR . DECREMENT STRING POINTERS J $+2 J I2S$RTRN LQ,W 0,B6 . ADD THE SIGN LSAQ,U SC$DEST NOT 77 OR,W SC$SIGN RSAQ,U SC$DEST SQ,W 0,B6 . I2S$RTRN SB,A B4 . RESET STACK PTR A 3D LB,A B4 SLJ SC$RST . RESTORE REGISTERS J 0,B1 . ++++++++++ . FLT2STR . . CONVERT A FLOATING POINT IN AQ TO 12 CHARACTER SCIENTIFIC FORMAT . IN THE STRING GIVEN BY THE STACK PARAMETERS. . . FORMAT -X.XXXX,+/-NNN . . PARAMETERS: . NUMBER TO CONVERT IN AQ . STACK: . DEST-STRING-POINTER . DEST-START . DEST-END . . RETURNS: . NONE . . ++++++++++ FLT2STR* SLJ SC$SAVE SLJ SC$FNEG DPS F2S$NUM . SAVE NUMBER FOR LATER SLJ SC$INIT1R . . CALCULATE THE POWER OF 10 EQUIVALENT TO THE NUMBER'S EXPONENT. . EXP10 = TRUNC(EXP2 * LOG10(2)) . DPL F2S$NUM . GET NUMBER FU F2S$EXP . UNPACK NUMBER TO GET EXPONENT LQ,W F2S$EXP . UNBIAS IT ANQ 1024D LBPJB1 INT2FLOATQ . BACK TO FLOAT FM LOG2 LBPJB1 TRUNC JT $+2,,QNEG . RESULT POSITIVE? AQ 1D . YES, BUMP BY 1 SQ,W F2S$EXP . SAVE IT . . SHIFT THE NUMBER BY THE APPROPRIATE # OF DECIMAL DIGITS TO GET . 5 DIGITS TO THE LEFT OF THE DECIMAL. . NUM = NUM * POW10(5 - EXP10) . DPL TEN . SET UP POWERI PARAMS DPS F2S$P1 F2S$LOOP LQ 5D . MAX. PRECISION ANQ,W F2S$EXP . - EXP SQ,W F2S$P2 . = # DECIMAL DIGITS TO SHIFT LBPJB1 POWERI . POW10(5 - EXP10) F2S$P1 RES 2D F2S$P2 RES 1D FM F2S$NUM . NUM = NUM * POW10(5 - EXP10) DPTL F2S$10K . RESULT < REQ'D PRECISION? J F2S$NUMOK . NOPE, WE'RE OK RD,W F2S$EXP . YES, DECR EXPONENT BY 1 J F2S$LOOP . AND TRY AGAIN F2S$NUMOK LBPJB1 INTEGER . ROUND TO INTEGER SQ,W F2S$NUM . . FORMAT THE EXPONENT . RD,W F2S$EXP . DOWN BY 1 LA,W SC$SPACE . SET SIGN TO POSITIVE SA,W F2S$SIGN LQ,W F2S$EXP,,QNEG . EXP NEGATIVE? J F2S$ECONT . NO LA,W SC$MINUS . YES SA,W F2S$SIGN NQ . NEGATE ORIGINAL EXP SQ,W F2S$EXP F2S$ECONT LB B2,2D . INIT LOOP COUNT F2S$ELOOP LQ,W F2S$EXP ZA . GET NEXT DIGIT D 10D OR '0' . CVT TO FIELDATA SA,W SC$BYTE SQ,W F2S$EXP LQ,W 0,B6 LSAQ,U SC$DEST NOT 77 OR,W SC$BYTE RSAQ,U SC$DEST SQ,W 0,B6 SLJ SC$DECR . DECREMENT STRING POINTERS JBD B2,F2S$ELOOP . LOOP . LQ,W 0,B6 . ADD EXPONENT SIGN LSAQ,U SC$DEST NOT 77 OR,W F2S$SIGN RSAQ,U SC$DEST SQ,W 0,B6 SLJ SC$DECR . DECREMENT STRING POINTERS J $+2 J F2S$RTRN . LQ,W 0,B6 . ADD COMMA SEPARATOR LSAQ,U SC$DEST NOT 77 OR,W F2S$COMMA RSAQ,U SC$DEST SQ,W 0,B6 SLJ SC$DECR . DECREMENT STRING POINTERS J $+2 J F2S$RTRN . . FORMAT THE NUMBER WITH 4 DECIMALS . LB B2,3D F2S$NLOOP LQ,W F2S$NUM . GET NEXT DIGIT ZA D 10D OR '0' . CVT TO FIELDATA SA,W SC$BYTE SQ,W F2S$NUM LQ,W 0,B6 LSAQ,U SC$DEST NOT 77 OR,W SC$BYTE RSAQ,U SC$DEST SQ,W 0,B6 SLJ SC$DECR . DECREMENT STRING POINTERS JBD B2,F2S$NLOOP . LOOP J $+2 J F2S$RTRN . LQ,W 0,B6 . ADD DECIMAL POINT LSAQ,U SC$DEST NOT 77 OR,W F2S$PERIOD RSAQ,U SC$DEST SQ,W 0,B6 SLJ SC$DECR . DECREMENT STRING POINTERS J $+2 J F2S$RTRN . LQ,W 0,B6 . ADD FINAL DIGIT LSAQ,U SC$DEST NOT 77 OR,W F2S$NUM OR '0' . CVT TO FIELDATA RSAQ,U SC$DEST SQ,W 0,B6 SLJ SC$DECR . DECREMENT STRING POINTERS J $+2 J F2S$RTRN . LQ,W 0,B6 . ADD NUMBER'S SIGN LSAQ,U SC$DEST NOT 77 OR,W SC$SIGN RSAQ,U SC$DEST SQ,W 0,B6 . F2S$RTRN SB,A B4 . RESET STACK PTR A 3D LB,A B4 SLJ SC$RST . RESTORE REGISTERS J 0,B1 . TEN DLD 10.0 LOG2 DLD 0.30103 . LOG10(2) F2S$EXP RES 2D F2S$NUM RES 2D F2S$10K DLD 10000.0 F2S$SIGN RES 1D F2S$COMMA +0, 0, 0, 0, 56 F2S$PERIOD +0, 0, 0, 0, 75 . ++++++++++ . SC$INIT . . COMMON SETUP FOR ROUTINES WITH 2 STRINGS . . ++++++++++ SC$INIT +0 LB,W B5,6,B4 . GET PARAMETERS LQ,W 5,B4 . SRC START INDEX ANQ 1D SQ,W SC$SSTART LQ,W 4,B4 TQ,W 0,B5,YMORE . PAST END OF STRING? LQ,W 0,B5 . YES, FORCE TO END SQ,W SC$SEND LB,W B6,3,B4 LQ,W 2,B4 . DEST START INDEX ANQ 1D SQ,W SC$DSTART LQ,W 1,B4 TQ,W 0,B6,YMORE . PAST END OF STRING? LQ,W 0,B6 . YES, FORCE TO END SQ,W SC$DEND SB,A B4 . RESET STACK PTR A 6D LB,A B4 . LQ,W SC$DSTART . GET DEST START ZA . NO D 5D . INITIAL DEST WORD # AQ 1D SQ,L SC$DEST A 1D . INITIAL DEST SHIFT COUNT LQ,A ZA M 6D SQ,U SC$DEST . LQ,W SC$SSTART . GET SOURCE START ZA . NO D 5D . INITIAL SRC WORD # AQ 1D SQ,L SC$SRC A 1D . INITIAL SRC SHIFT COUNT LQ,A ZA M 6D SQ,U SC$SRC . J,L SC$INIT . ++++++++++ . SC$INIT1R . . COMMON SETUP ROUTINE FOR ROUTINES WITH 1 RIGHT JUSTIFIED STRING . ++++++++++ SC$INIT1R +0 LB,W B6,3,B4 LQ,W 2,B4 . DEST START INDEX ANQ 1D SQ,W SC$DSTART LQ,W 1,B4 TQ,W 0,B6,YMORE . PAST END OF STRING? LQ,W 0,B6 . YES, FORCE TO END ANQ 1D . MAKE ZERO RELATIVE SQ,W SC$DEND . LQ,W SC$DEND . GET DEST END ZA D 5D . INITIAL DEST WORD # AQ 1D SQ,L SC$DEST A 1D . INITIAL DEST SHIFT COUNT LQ,A ZA M 6D SQ,U SC$DEST SB,A B6 . POINT TO INITIAL WORD A,L SC$DEST LB,A B6 . J,L SC$INIT1R . SC$SAVE +0 SA,W SC$A SQ,W SC$Q SBW SC$B J,L SC$SAVE . SC$RST +0 LA,W SC$A LQ,W SC$Q SB,W B4,SC$B+3 LBW SC$B J,L SC$RST . ++++++++++ . SC$DECR . . DECREMENT STRING POINTERS FOR ROUTINES WITH 1 RIGHT JUSTIFIED STRING . ++++++++++ SC$DECR +0 RD,W SC$DEND . DECR END CHAR PTR TA,W SC$DSTART,,YLESS . REACHED START OF SUBSTRING? J SCD$DONE . YES, WE'RE DONE LA,U SC$DEST . DECR SHIFT COUNT AN 6D SA,U SC$DEST,,AZERO . ZERO? J,L SC$DECR . NO, KEEP GOING LA 30D . RESET SHIFT COUNT SA,U SC$DEST JBD B6,$+1 . DECR WORD PTR J,L SC$DECR . KEEP GOING SCD$DONE LA,L SC$DECR . STRING FINISHED A 1D . RETURN TO P+1 LB,A B1 J 0,B1 . ++++++++++ . SC$INEG . . IF INTEGER IN Q IS NEGATIVE, SET THE SIGN TO '-' AND COMPLEMENT Q. . OTHERWISE MAKE SIGEN ' '. . ++++++++++ SC$INEG +0 JT SC$IPOS,,QPOS LA,W SC$MINUS SA,W SC$SIGN NQ J,L SC$INEG SC$IPOS LA,W SC$SPACE SA,W SC$SIGN J,L SC$INEG . . ++++++++++ . SC$FNEG . . IF FLOATING POINT NUMBER IN AQ IS NEGATIVE, SET THE SIGN TO '-' . AND COMPLEMENT AQ. . OTHERWISE MAKE SIGEN ' '. . ++++++++++ SC$FNEG +0 JT SC$FPOS,,APOS LB,W B2,SC$MINUS SB,W B2,SC$SIGN DPN J,L SC$FNEG SC$FPOS LB,W B2,SC$SPACE SB,W B2,SC$SIGN J,L SC$FNEG . SC$A RES 1D SC$Q RES 1D SC$B RES 7D SC$SSTART RES 1D SC$SEND RES 1D SC$DSTART RES 1D SC$DEND RES 1D SC$SRC RES 1D SC$DEST RES 1D SC$BYTE RES 1D SC$NUM RES 1D SC$SIGN RES 1D SC$SPACE +0, 0, 0, 0, 5 SC$MINUS +0, 0, 0, 0, 41 . . ++++++++++++++++++++++++++++++++++++++++++++++ . CONVERSTION ROUTINES . ++++++++++++++++++++++++++++++++++++++++++++++ . ++++++++++ . . CONVERT AN INTEGER IN A TO A FLOATING POINT NUMBER IN AQ . . . LBPJB1 INT2FLOAT . . ++++++++++ INT2FLOATA* SZ,W IF$NEG . CLEAR NEGATIVE FLAG JT IF$POS,,APOS LQ 1 . A < 0, SET NEG FLAG SQ,W IF$NEG NA . & MAKE A POSITIVE IF$POS SFS . GET # BITS LEFT OF MSB NQ AQ 1024D+28D+20D . CALC EXPONENT SQ,W IF$TEMP LQ,A . GET NUMBER IN AQ ZA FP IF$TEMP . COMBINE A&EXP INTO FLOATING POINT DPS IF$TEMP . NEGATE AQ IF REQD LA,W IF$NEG,,ANOT J IF$RTRN DPL IF$TEMP DPN DPS IF$TEMP IF$RTRN DPL IF$TEMP J 0,B1 . ++++++++++ . . CONVERT AN INTEGER IN Q TO A FLOATING POINT NUMBER IN AQ . . . LBPJB1 INT2FLOAT . . ++++++++++ INT2FLOATQ* SQ,A J INT2FLOATA . ++++++++++ . SIGNQ . . RETURNS -1 IF Q IS NEGATIVE, 0 IF Q IS ZERO OR 1 IF Q IS POSITIVE. . RESULT RETURNED IN Q . ++++++++++ SIGNQ* SA,W MATH$A SQ,A JT SQ$NEG,,ANEG JT SQ$ZERO,,AZERO LQ 1D . POSITIVE J SQ$RTRN SQ$NEG LQ,X -1D J SQ$RTRN SQ$ZERO LQ,0 SQ$RTRN LA,W MATH$A J 0,B1 . ++++++++++ . SIGNAQ . . RETURNS -1 IF AQ IS NEGATIVE, 0 IF AQ IS ZERO OR 1 IF AQ IS POSITIVE. . RESULT RETURNED IN Q . ++++++++++ SIGNAQ* JT SAQ$NEG,,ANEG JT SAQ$ZERO,,AZERO LQ 1D . POSITIVE J SAQ$RTRN SAQ$NEG LQ,X -1D J SAQ$RTRN SAQ$ZERO LQ,0 SAQ$RTRN J 0,B1 . MATH$A RES 1D IF$TEMP RES 2D IF$NEG RES 1D . ++++++++++ . TRUNC . . RETURN THE INTEGER PART OF THE FLOATING POINT NUMBER IN AQ . AS A 60-BIT INTEGER IN AQ. . ++++++++++ TRUNC* DPS IF$TEMP . SAVE ORIGINAL NUMBER SZ,W IF$NEG . ASSUME NUMBER IS POSITIVE JT T$POS,,APOS . IS IT NEGATIVE? DPN . YES, MAKE MANTISSA POSITIVE DPS IF$TEMP LA 1D . SET NEGATIVE FLAG SA,W IF$NEG T$POS DPL IF$TEMP . RESTORE NUMBER FU T$EXP . UNPACK FLOAT DPS IF$TEMP . SAVE MANTISSA LA,W T$EXP AN 1024D,,ANEG . UNBIAS THE EXPONENT J T$POS2 ZA . EXPONENT < 0 THEN INT = 0 LQ,A J 0,B1 . AND WE'RE DONE T$POS2 LQ 48D . # BITS TO SHIFT = 48 - EXP ANQ,A SQ,W T$EXP . SHIFT TO ELIMINATE FRACTION DPL IF$TEMP RSAQ,L T$EXP DPS IF$TEMP LA,W IF$NEG,,ANOT . IS NEGATIVE FLAG SET? J T$RTRN . NO DPL IF$TEMP . NEGATIVE FLAG IS SET DPN . SO MAKE NEGATIVE DPS IF$TEMP . T$RTRN DPL IF$TEMP J 0,B1 . T$EXP RES 1D . ++++++++++ . FRAC . . RETURN THE FRACTION PART OF THE FLOATING POINT NUMBER IN AQ . AS A FLOATING POINT NUMBER IN AQ . ++++++++++ FRAC* SB,W B2,F$B2 DPS F$ORIG . SAVE ORIGINAL NUMBER DPS IF$TEMP SZ,W IF$NEG . ASSUME NUMBER IS POSITIVE JT F$POS,,APOS . IS IT NEGATIVE? DPN . YES, MAKE MANTISSA POSITIVE DPS IF$TEMP LA 1D . SET NEGATIVE FLAG SA,W IF$NEG F$POS DPL IF$TEMP . RESTORE NUMBER FU T$EXP . UNPACK FLOAT DPS IF$TEMP . SAVE THE MANTISSA LA,W T$EXP AN 1024D,,ANEG . UNBIAS THE EXPONENT J F$POS2 DPL F$ORIG . EXPONENT < 0 THEN FRAC=PARAM LB,W B2,F$B2 J 0,B1 . AND WE'RE DONE F$POS2 AN 1D . DEC BY 1 FOR LOOP SA,W T$EXP . SHIFT TO ELIMINATE FRACTION DPL IF$TEMP LB,W B2,T$EXP . THIS NEEDS TO BE DONE IN A F$SHIFT LSAQ 1D . LOOP BECAUSE LEFT SHIFTS ARE LRSQ 1D . CIRCULAR LSQ 1D JBD B2,F$SHIFT DPS IF$TEMP LQ,W F$LO18 . LOSE SHIFTED OUT BITS LLP,A SA,W IF$TEMP DPL IF$TEMP DPTE F$ZERO . MANTISSA = 0 THEN RESULT = 0 J F$NOTZERO . NO SZ,W IF$TEMP . YES SZ,W IF$TEMP+1 J F$RTRN . F$NOTZERO FP F$EXP0 . ADD EXP OF ZERO AND NORMALIZE DPS IF$TEMP LA,W IF$NEG,,ANOT . IS NEGATIVE FLAG SET? J F$RTRN . NO DPL IF$TEMP . NEGATIVE FLAG IS SET DPN . SO MAKE NEGATIVE DPS IF$TEMP . F$RTRN LB,W B2,F$B2 DPL IF$TEMP J 0,B1 . F$B2 RES 1D F$ORIG RES 2D F$LO18 +777777 F$ZERO DLD 0.0 F$EXP0 +2000 . ++++++++++ . ENTIER . . RETURN THE INTEGER PART OF THE FLOATING POINT NUMBER IN AQ . SUCH THAT THE RESULT IS NOT GREATER THAN THE ORIGINAL. . I.E. ENTIER(3.5) = 3 WHILE ENTIER(-4.5) = -5. . . RESULT RETURNED AS A 60-BIT INTEGER IN AQ . ++++++++++ ENTIER* SB,W B1,E$B1 DPS E$ORIG . SAVE ORIGINAL # LBPJB1 TRUNC . GET INTEGER PART JT E$RTRN,,APOS . IF RESULT POSITIVE, WE'RE DONE DPS E$TEMP . NEGATIVE DPL E$ORIG . GET FRACTIONAL PART LBPJB1 FRAC DPTE F$ZERO . FRAC = ZERO? J E$ADJUST . NO, NEED TO ADJUST RESULT E$RTRN LB,W B1,E$B1 J 0,B1 . E$ADJUST DPL E$TEMP . RESULT = RESULT - 1 DPAN E$ONE J E$RTRN . E$ORIG RES 2D E$B1 RES 1D E$TEMP RES 2D E$ONE DLD 1 . ++++++++++ . INTEGER . . RETURN THE INTEGER PART OF THE FLOATING POINT NUMBER IN AQ . ROUNDED. RESULT RETURNED IN AQ . . ++++++++++ INTEGER* FA I$POINT5 J ENTIER . I$POINT5 DLD 0.5 . . +++++++++++++++++++++++++++++++++++++++++++++++++++ . FREE MEMORY LIST FOR THE HEAP . +++++++++++++++++++++++++++++++++++++++++++++++++++ ALG$HEAP L$IST AH$HEAD FM$CB END
src/dandanator/print_routines.asm
fjpena/sword-of-ianna-zx
67
247623
;----------------------------------------------------------------------------------------- ; PREP_PRT - Updates Print_Attr, SCR & ATTR Vars ;----------------------------------------------------------------------------------------- PREP_PRT: LD (PRINT_ATTR),A ; Set Attribute CALL CRtoSCREEN CALL CRtoATTR RET ;----------------------------------------------------------------------------------------- ;----------------------------------------------------------------------------------------- ; CRtoSCREEN - Converts a scr char coord into a SCREEN Address b,c = y,x positions ;----------------------------------------------------------------------------------------- CRtoSCREEN: ;PUSH DE LD A,C AND 31 LD L,A LD A,B LD D,A AND 24 ADD A,64 LD H,A LD A,D AND 7 RRC A RRC A RRC A OR L LD L,A ;POP DE LD (SCR_CUR_PTR),HL ; Update Variable RET ; ---------------------------------------------------------------------------------------- ;----------------------------------------------------------------------------------------- ; CRtoATTR - Converts a screen char coord into a ATTR Address b,c = y,x positions ;----------------------------------------------------------------------------------------- CRtoATTR: LD A,B RRCA RRCA RRCA LD L,A AND 3 ADD A,88 LD H,A LD A,L AND 224 LD L,A LD A,C AND 00011111b ADD A,L LD L,A LD (SCR_ATTR_PTR),HL ; Update Variable RET ; ---------------------------------------------------------------------------------------- ; ---------------------------------------------------------------------------------------- ; PRINTCHNUM - Prints Char Number N ;----------------------------------------------------------------------------------------- PRINTCHNUM: SUB 32 ; Adjust Ascii to charset LD H,0 ; Multiply value by 8 to get to right Char in Charset LD L,A ADD HL,HL ADD HL,HL ADD HL,HL PUSH HL ; LD DE,HL POP DE LD IY, CHARSETADDR ADD IY,DE CALL PRINTCHAR RET ; ---------------------------------------------------------------------------------------- ; ---------------------------------------------------------------------------------------- ; PRINTCHAR - Prints Char (IY points to the char. Uses HL as last Cur Pointer) ; ---------------------------------------------------------------------------------------- PRINTCHAR: LD B,8 ; 8 Lines per char LD HL, (SCR_CUR_PTR) ; Load Cursor Pointer y,x INC HL ; move Cursor pointer var to next position LD (SCR_CUR_PTR),HL ; update Cursor pointer to next position DEC HL ; Restore HL to current printing position LD A,(STROKEFLAG) ; Get if text should be crossed out SLA A SLA A ; Move bit to position 2 (check iteration 4) LD C,A ; Save to C BYTEPCHAR: LD A,C CP B LD A, (IY) ; Get Char to be printed, first line JR NZ, NOSTROKELINE LD A,255 NOSTROKELINE: LD (HL),A ; Move to Printing location INC H ; inc H so next line in char (ZX Spectrum Screen RAM) INC IY ; next line to be printed DJNZ BYTEPCHAR ; Repeat 8 lines LD A,(PRINT_ATTR) ; Load Attributes to print char with LD HL, (SCR_ATTR_PTR) LD (HL),A LD HL, SCR_ATTR_PTR ; Get pointer to ATTR INC (HL) ; Move Attribute cursor to next char RET ; ---------------------------------------------------------------------------------------- ; ---------------------------------------------------------------------------------------- ; PRINTSTR - Prints String - IX Points to the String start ; ---------------------------------------------------------------------------------------- PRINTSTR: LD A,(IX) ; A Contains first char to print OR A ; check for end of string (0) JR Z, FINSTR ; Finish printing if 0 SUB 32 ; ASCII to Charset, which begins on 32 LD H,0 ; Multiply value by 8 to get to right Char in Charset LD L,A ADD HL,HL ADD HL,HL ADD HL,HL PUSH HL ; LD DE,HL POP DE LD IY,CHARSETADDR ; Load Charset first Char ADD IY,DE ; Move to Char to be printed CALL PRINTCHAR ; Print Char INC IX ; Move to next char in string JR PRINTSTR ; Start over printing sequence FINSTR: RET ; ---------------------------------------------------------------------------------------- ; ---------------------------------------------------------------------------------------- ; INK2PAPER - moves ink of attribute stored in (PRINT_ATTR) to paper and sets ink to 0 ; Sets bright 1 and flash 0 ; ---------------------------------------------------------------------------------------- INK2PAPER: LD A, (PRINT_ATTR) ; Get storedAttribute AND 7 ; get Attr INK in A SLA A SLA A SLA A ; move Ink to Paper OR 64 ; ink 0 bright 1 LD (PRINT_ATTR),A ; Get storedAttribute RET ; ---------------------------------------------------------------------------------------- ; ---------------------------------------------------------------------------------------- ; CLS Main Screen by erasing attributes ; ---------------------------------------------------------------------------------------- CLS: ;EI ; Wait vertical retrace ;HALT ;DI LD BC,SCRATTRSIZE - 1 ; CLS Screen by writing attributes to 0 LD HL,RAMAREASCR+SCRPIXSIZE LD (HL),0 LD DE, RAMAREASCR+SCRPIXSIZE+1 ; Why Pasmo does not allow LD DE, HL ?? ;INC E LDIR RET ; ---------------------------------------------------------------------------------------- CHARSETADDR: incbin "charset.bin" SCR_CUR_PTR EQU 65000 ; Cursor Pointer in Screen (2 bytes) (HL) SCR_ATTR_PTR EQU 65002 ; Attr Pointer in Screen (2 bytes) (HL) PRINT_ATTR EQU 65007 ; Attribute used by printchar routine (1 byte) STROKEFLAG EQU 65084 ; Text print should be crossed out if <> 0 (1 byte) RAMAREASCR EQU 16384 ; Screen Address SCRPIXSIZE EQU 6144 ; Size of pixels in screen SCRATTRSIZE EQU 768 ; Size of attributes in screen
worker/deps/openssl/config/archs/VC-WIN64A/asm_avx2/crypto/poly1305/poly1305-x86_64.asm
SteveMcFarlin/mediasoup
1,666
243046
<gh_stars>1000+ default rel %define XMMWORD %define YMMWORD %define ZMMWORD section .text code align=64 EXTERN OPENSSL_ia32cap_P global poly1305_init global poly1305_blocks global poly1305_emit ALIGN 32 poly1305_init: mov QWORD[8+rsp],rdi ;WIN64 prologue mov QWORD[16+rsp],rsi mov rax,rsp $L$SEH_begin_poly1305_init: mov rdi,rcx mov rsi,rdx mov rdx,r8 xor rax,rax mov QWORD[rdi],rax mov QWORD[8+rdi],rax mov QWORD[16+rdi],rax cmp rsi,0 je NEAR $L$no_key lea r10,[poly1305_blocks] lea r11,[poly1305_emit] mov r9,QWORD[((OPENSSL_ia32cap_P+4))] lea rax,[poly1305_blocks_avx] lea rcx,[poly1305_emit_avx] bt r9,28 cmovc r10,rax cmovc r11,rcx lea rax,[poly1305_blocks_avx2] bt r9,37 cmovc r10,rax mov rax,2149646336 shr r9,32 and r9,rax cmp r9,rax je NEAR $L$init_base2_44 mov rax,0x0ffffffc0fffffff mov rcx,0x0ffffffc0ffffffc and rax,QWORD[rsi] and rcx,QWORD[8+rsi] mov QWORD[24+rdi],rax mov QWORD[32+rdi],rcx mov QWORD[rdx],r10 mov QWORD[8+rdx],r11 mov eax,1 $L$no_key: mov rdi,QWORD[8+rsp] ;WIN64 epilogue mov rsi,QWORD[16+rsp] DB 0F3h,0C3h ;repret $L$SEH_end_poly1305_init: ALIGN 32 poly1305_blocks: mov QWORD[8+rsp],rdi ;WIN64 prologue mov QWORD[16+rsp],rsi mov rax,rsp $L$SEH_begin_poly1305_blocks: mov rdi,rcx mov rsi,rdx mov rdx,r8 mov rcx,r9 $L$blocks: shr rdx,4 jz NEAR $L$no_data push rbx push rbp push r12 push r13 push r14 push r15 $L$blocks_body: mov r15,rdx mov r11,QWORD[24+rdi] mov r13,QWORD[32+rdi] mov r14,QWORD[rdi] mov rbx,QWORD[8+rdi] mov rbp,QWORD[16+rdi] mov r12,r13 shr r13,2 mov rax,r12 add r13,r12 jmp NEAR $L$oop ALIGN 32 $L$oop: add r14,QWORD[rsi] adc rbx,QWORD[8+rsi] lea rsi,[16+rsi] adc rbp,rcx mul r14 mov r9,rax mov rax,r11 mov r10,rdx mul r14 mov r14,rax mov rax,r11 mov r8,rdx mul rbx add r9,rax mov rax,r13 adc r10,rdx mul rbx mov rbx,rbp add r14,rax adc r8,rdx imul rbx,r13 add r9,rbx mov rbx,r8 adc r10,0 imul rbp,r11 add rbx,r9 mov rax,-4 adc r10,rbp and rax,r10 mov rbp,r10 shr r10,2 and rbp,3 add rax,r10 add r14,rax adc rbx,0 adc rbp,0 mov rax,r12 dec r15 jnz NEAR $L$oop mov QWORD[rdi],r14 mov QWORD[8+rdi],rbx mov QWORD[16+rdi],rbp mov r15,QWORD[rsp] mov r14,QWORD[8+rsp] mov r13,QWORD[16+rsp] mov r12,QWORD[24+rsp] mov rbp,QWORD[32+rsp] mov rbx,QWORD[40+rsp] lea rsp,[48+rsp] $L$no_data: $L$blocks_epilogue: mov rdi,QWORD[8+rsp] ;WIN64 epilogue mov rsi,QWORD[16+rsp] DB 0F3h,0C3h ;repret $L$SEH_end_poly1305_blocks: ALIGN 32 poly1305_emit: mov QWORD[8+rsp],rdi ;WIN64 prologue mov QWORD[16+rsp],rsi mov rax,rsp $L$SEH_begin_poly1305_emit: mov rdi,rcx mov rsi,rdx mov rdx,r8 $L$emit: mov r8,QWORD[rdi] mov r9,QWORD[8+rdi] mov r10,QWORD[16+rdi] mov rax,r8 add r8,5 mov rcx,r9 adc r9,0 adc r10,0 shr r10,2 cmovnz rax,r8 cmovnz rcx,r9 add rax,QWORD[rdx] adc rcx,QWORD[8+rdx] mov QWORD[rsi],rax mov QWORD[8+rsi],rcx mov rdi,QWORD[8+rsp] ;WIN64 epilogue mov rsi,QWORD[16+rsp] DB 0F3h,0C3h ;repret $L$SEH_end_poly1305_emit: ALIGN 32 __poly1305_block: mul r14 mov r9,rax mov rax,r11 mov r10,rdx mul r14 mov r14,rax mov rax,r11 mov r8,rdx mul rbx add r9,rax mov rax,r13 adc r10,rdx mul rbx mov rbx,rbp add r14,rax adc r8,rdx imul rbx,r13 add r9,rbx mov rbx,r8 adc r10,0 imul rbp,r11 add rbx,r9 mov rax,-4 adc r10,rbp and rax,r10 mov rbp,r10 shr r10,2 and rbp,3 add rax,r10 add r14,rax adc rbx,0 adc rbp,0 DB 0F3h,0C3h ;repret ALIGN 32 __poly1305_init_avx: mov r14,r11 mov rbx,r12 xor rbp,rbp lea rdi,[((48+64))+rdi] mov rax,r12 call __poly1305_block mov eax,0x3ffffff mov edx,0x3ffffff mov r8,r14 and eax,r14d mov r9,r11 and edx,r11d mov DWORD[((-64))+rdi],eax shr r8,26 mov DWORD[((-60))+rdi],edx shr r9,26 mov eax,0x3ffffff mov edx,0x3ffffff and eax,r8d and edx,r9d mov DWORD[((-48))+rdi],eax lea eax,[rax*4+rax] mov DWORD[((-44))+rdi],edx lea edx,[rdx*4+rdx] mov DWORD[((-32))+rdi],eax shr r8,26 mov DWORD[((-28))+rdi],edx shr r9,26 mov rax,rbx mov rdx,r12 shl rax,12 shl rdx,12 or rax,r8 or rdx,r9 and eax,0x3ffffff and edx,0x3ffffff mov DWORD[((-16))+rdi],eax lea eax,[rax*4+rax] mov DWORD[((-12))+rdi],edx lea edx,[rdx*4+rdx] mov DWORD[rdi],eax mov r8,rbx mov DWORD[4+rdi],edx mov r9,r12 mov eax,0x3ffffff mov edx,0x3ffffff shr r8,14 shr r9,14 and eax,r8d and edx,r9d mov DWORD[16+rdi],eax lea eax,[rax*4+rax] mov DWORD[20+rdi],edx lea edx,[rdx*4+rdx] mov DWORD[32+rdi],eax shr r8,26 mov DWORD[36+rdi],edx shr r9,26 mov rax,rbp shl rax,24 or r8,rax mov DWORD[48+rdi],r8d lea r8,[r8*4+r8] mov DWORD[52+rdi],r9d lea r9,[r9*4+r9] mov DWORD[64+rdi],r8d mov DWORD[68+rdi],r9d mov rax,r12 call __poly1305_block mov eax,0x3ffffff mov r8,r14 and eax,r14d shr r8,26 mov DWORD[((-52))+rdi],eax mov edx,0x3ffffff and edx,r8d mov DWORD[((-36))+rdi],edx lea edx,[rdx*4+rdx] shr r8,26 mov DWORD[((-20))+rdi],edx mov rax,rbx shl rax,12 or rax,r8 and eax,0x3ffffff mov DWORD[((-4))+rdi],eax lea eax,[rax*4+rax] mov r8,rbx mov DWORD[12+rdi],eax mov edx,0x3ffffff shr r8,14 and edx,r8d mov DWORD[28+rdi],edx lea edx,[rdx*4+rdx] shr r8,26 mov DWORD[44+rdi],edx mov rax,rbp shl rax,24 or r8,rax mov DWORD[60+rdi],r8d lea r8,[r8*4+r8] mov DWORD[76+rdi],r8d mov rax,r12 call __poly1305_block mov eax,0x3ffffff mov r8,r14 and eax,r14d shr r8,26 mov DWORD[((-56))+rdi],eax mov edx,0x3ffffff and edx,r8d mov DWORD[((-40))+rdi],edx lea edx,[rdx*4+rdx] shr r8,26 mov DWORD[((-24))+rdi],edx mov rax,rbx shl rax,12 or rax,r8 and eax,0x3ffffff mov DWORD[((-8))+rdi],eax lea eax,[rax*4+rax] mov r8,rbx mov DWORD[8+rdi],eax mov edx,0x3ffffff shr r8,14 and edx,r8d mov DWORD[24+rdi],edx lea edx,[rdx*4+rdx] shr r8,26 mov DWORD[40+rdi],edx mov rax,rbp shl rax,24 or r8,rax mov DWORD[56+rdi],r8d lea r8,[r8*4+r8] mov DWORD[72+rdi],r8d lea rdi,[((-48-64))+rdi] DB 0F3h,0C3h ;repret ALIGN 32 poly1305_blocks_avx: mov QWORD[8+rsp],rdi ;WIN64 prologue mov QWORD[16+rsp],rsi mov rax,rsp $L$SEH_begin_poly1305_blocks_avx: mov rdi,rcx mov rsi,rdx mov rdx,r8 mov rcx,r9 mov r8d,DWORD[20+rdi] cmp rdx,128 jae NEAR $L$blocks_avx test r8d,r8d jz NEAR $L$blocks $L$blocks_avx: and rdx,-16 jz NEAR $L$no_data_avx vzeroupper test r8d,r8d jz NEAR $L$base2_64_avx test rdx,31 jz NEAR $L$even_avx push rbx push rbp push r12 push r13 push r14 push r15 $L$blocks_avx_body: mov r15,rdx mov r8,QWORD[rdi] mov r9,QWORD[8+rdi] mov ebp,DWORD[16+rdi] mov r11,QWORD[24+rdi] mov r13,QWORD[32+rdi] mov r14d,r8d and r8,-2147483648 mov r12,r9 mov ebx,r9d and r9,-2147483648 shr r8,6 shl r12,52 add r14,r8 shr rbx,12 shr r9,18 add r14,r12 adc rbx,r9 mov r8,rbp shl r8,40 shr rbp,24 add rbx,r8 adc rbp,0 mov r9,-4 mov r8,rbp and r9,rbp shr r8,2 and rbp,3 add r8,r9 add r14,r8 adc rbx,0 adc rbp,0 mov r12,r13 mov rax,r13 shr r13,2 add r13,r12 add r14,QWORD[rsi] adc rbx,QWORD[8+rsi] lea rsi,[16+rsi] adc rbp,rcx call __poly1305_block test rcx,rcx jz NEAR $L$store_base2_64_avx mov rax,r14 mov rdx,r14 shr r14,52 mov r11,rbx mov r12,rbx shr rdx,26 and rax,0x3ffffff shl r11,12 and rdx,0x3ffffff shr rbx,14 or r14,r11 shl rbp,24 and r14,0x3ffffff shr r12,40 and rbx,0x3ffffff or rbp,r12 sub r15,16 jz NEAR $L$store_base2_26_avx vmovd xmm0,eax vmovd xmm1,edx vmovd xmm2,r14d vmovd xmm3,ebx vmovd xmm4,ebp jmp NEAR $L$proceed_avx ALIGN 32 $L$store_base2_64_avx: mov QWORD[rdi],r14 mov QWORD[8+rdi],rbx mov QWORD[16+rdi],rbp jmp NEAR $L$done_avx ALIGN 16 $L$store_base2_26_avx: mov DWORD[rdi],eax mov DWORD[4+rdi],edx mov DWORD[8+rdi],r14d mov DWORD[12+rdi],ebx mov DWORD[16+rdi],ebp ALIGN 16 $L$done_avx: mov r15,QWORD[rsp] mov r14,QWORD[8+rsp] mov r13,QWORD[16+rsp] mov r12,QWORD[24+rsp] mov rbp,QWORD[32+rsp] mov rbx,QWORD[40+rsp] lea rsp,[48+rsp] $L$no_data_avx: $L$blocks_avx_epilogue: mov rdi,QWORD[8+rsp] ;WIN64 epilogue mov rsi,QWORD[16+rsp] DB 0F3h,0C3h ;repret ALIGN 32 $L$base2_64_avx: push rbx push rbp push r12 push r13 push r14 push r15 $L$base2_64_avx_body: mov r15,rdx mov r11,QWORD[24+rdi] mov r13,QWORD[32+rdi] mov r14,QWORD[rdi] mov rbx,QWORD[8+rdi] mov ebp,DWORD[16+rdi] mov r12,r13 mov rax,r13 shr r13,2 add r13,r12 test rdx,31 jz NEAR $L$init_avx add r14,QWORD[rsi] adc rbx,QWORD[8+rsi] lea rsi,[16+rsi] adc rbp,rcx sub r15,16 call __poly1305_block $L$init_avx: mov rax,r14 mov rdx,r14 shr r14,52 mov r8,rbx mov r9,rbx shr rdx,26 and rax,0x3ffffff shl r8,12 and rdx,0x3ffffff shr rbx,14 or r14,r8 shl rbp,24 and r14,0x3ffffff shr r9,40 and rbx,0x3ffffff or rbp,r9 vmovd xmm0,eax vmovd xmm1,edx vmovd xmm2,r14d vmovd xmm3,ebx vmovd xmm4,ebp mov DWORD[20+rdi],1 call __poly1305_init_avx $L$proceed_avx: mov rdx,r15 mov r15,QWORD[rsp] mov r14,QWORD[8+rsp] mov r13,QWORD[16+rsp] mov r12,QWORD[24+rsp] mov rbp,QWORD[32+rsp] mov rbx,QWORD[40+rsp] lea rax,[48+rsp] lea rsp,[48+rsp] $L$base2_64_avx_epilogue: jmp NEAR $L$do_avx ALIGN 32 $L$even_avx: vmovd xmm0,DWORD[rdi] vmovd xmm1,DWORD[4+rdi] vmovd xmm2,DWORD[8+rdi] vmovd xmm3,DWORD[12+rdi] vmovd xmm4,DWORD[16+rdi] $L$do_avx: lea r11,[((-248))+rsp] sub rsp,0x218 vmovdqa XMMWORD[80+r11],xmm6 vmovdqa XMMWORD[96+r11],xmm7 vmovdqa XMMWORD[112+r11],xmm8 vmovdqa XMMWORD[128+r11],xmm9 vmovdqa XMMWORD[144+r11],xmm10 vmovdqa XMMWORD[160+r11],xmm11 vmovdqa XMMWORD[176+r11],xmm12 vmovdqa XMMWORD[192+r11],xmm13 vmovdqa XMMWORD[208+r11],xmm14 vmovdqa XMMWORD[224+r11],xmm15 $L$do_avx_body: sub rdx,64 lea rax,[((-32))+rsi] cmovc rsi,rax vmovdqu xmm14,XMMWORD[48+rdi] lea rdi,[112+rdi] lea rcx,[$L$const] vmovdqu xmm5,XMMWORD[32+rsi] vmovdqu xmm6,XMMWORD[48+rsi] vmovdqa xmm15,XMMWORD[64+rcx] vpsrldq xmm7,xmm5,6 vpsrldq xmm8,xmm6,6 vpunpckhqdq xmm9,xmm5,xmm6 vpunpcklqdq xmm5,xmm5,xmm6 vpunpcklqdq xmm8,xmm7,xmm8 vpsrlq xmm9,xmm9,40 vpsrlq xmm6,xmm5,26 vpand xmm5,xmm5,xmm15 vpsrlq xmm7,xmm8,4 vpand xmm6,xmm6,xmm15 vpsrlq xmm8,xmm8,30 vpand xmm7,xmm7,xmm15 vpand xmm8,xmm8,xmm15 vpor xmm9,xmm9,XMMWORD[32+rcx] jbe NEAR $L$skip_loop_avx vmovdqu xmm11,XMMWORD[((-48))+rdi] vmovdqu xmm12,XMMWORD[((-32))+rdi] vpshufd xmm13,xmm14,0xEE vpshufd xmm10,xmm14,0x44 vmovdqa XMMWORD[(-144)+r11],xmm13 vmovdqa XMMWORD[rsp],xmm10 vpshufd xmm14,xmm11,0xEE vmovdqu xmm10,XMMWORD[((-16))+rdi] vpshufd xmm11,xmm11,0x44 vmovdqa XMMWORD[(-128)+r11],xmm14 vmovdqa XMMWORD[16+rsp],xmm11 vpshufd xmm13,xmm12,0xEE vmovdqu xmm11,XMMWORD[rdi] vpshufd xmm12,xmm12,0x44 vmovdqa XMMWORD[(-112)+r11],xmm13 vmovdqa XMMWORD[32+rsp],xmm12 vpshufd xmm14,xmm10,0xEE vmovdqu xmm12,XMMWORD[16+rdi] vpshufd xmm10,xmm10,0x44 vmovdqa XMMWORD[(-96)+r11],xmm14 vmovdqa XMMWORD[48+rsp],xmm10 vpshufd xmm13,xmm11,0xEE vmovdqu xmm10,XMMWORD[32+rdi] vpshufd xmm11,xmm11,0x44 vmovdqa XMMWORD[(-80)+r11],xmm13 vmovdqa XMMWORD[64+rsp],xmm11 vpshufd xmm14,xmm12,0xEE vmovdqu xmm11,XMMWORD[48+rdi] vpshufd xmm12,xmm12,0x44 vmovdqa XMMWORD[(-64)+r11],xmm14 vmovdqa XMMWORD[80+rsp],xmm12 vpshufd xmm13,xmm10,0xEE vmovdqu xmm12,XMMWORD[64+rdi] vpshufd xmm10,xmm10,0x44 vmovdqa XMMWORD[(-48)+r11],xmm13 vmovdqa XMMWORD[96+rsp],xmm10 vpshufd xmm14,xmm11,0xEE vpshufd xmm11,xmm11,0x44 vmovdqa XMMWORD[(-32)+r11],xmm14 vmovdqa XMMWORD[112+rsp],xmm11 vpshufd xmm13,xmm12,0xEE vmovdqa xmm14,XMMWORD[rsp] vpshufd xmm12,xmm12,0x44 vmovdqa XMMWORD[(-16)+r11],xmm13 vmovdqa XMMWORD[128+rsp],xmm12 jmp NEAR $L$oop_avx ALIGN 32 $L$oop_avx: vpmuludq xmm10,xmm14,xmm5 vpmuludq xmm11,xmm14,xmm6 vmovdqa XMMWORD[32+r11],xmm2 vpmuludq xmm12,xmm14,xmm7 vmovdqa xmm2,XMMWORD[16+rsp] vpmuludq xmm13,xmm14,xmm8 vpmuludq xmm14,xmm14,xmm9 vmovdqa XMMWORD[r11],xmm0 vpmuludq xmm0,xmm9,XMMWORD[32+rsp] vmovdqa XMMWORD[16+r11],xmm1 vpmuludq xmm1,xmm2,xmm8 vpaddq xmm10,xmm10,xmm0 vpaddq xmm14,xmm14,xmm1 vmovdqa XMMWORD[48+r11],xmm3 vpmuludq xmm0,xmm2,xmm7 vpmuludq xmm1,xmm2,xmm6 vpaddq xmm13,xmm13,xmm0 vmovdqa xmm3,XMMWORD[48+rsp] vpaddq xmm12,xmm12,xmm1 vmovdqa XMMWORD[64+r11],xmm4 vpmuludq xmm2,xmm2,xmm5 vpmuludq xmm0,xmm3,xmm7 vpaddq xmm11,xmm11,xmm2 vmovdqa xmm4,XMMWORD[64+rsp] vpaddq xmm14,xmm14,xmm0 vpmuludq xmm1,xmm3,xmm6 vpmuludq xmm3,xmm3,xmm5 vpaddq xmm13,xmm13,xmm1 vmovdqa xmm2,XMMWORD[80+rsp] vpaddq xmm12,xmm12,xmm3 vpmuludq xmm0,xmm4,xmm9 vpmuludq xmm4,xmm4,xmm8 vpaddq xmm11,xmm11,xmm0 vmovdqa xmm3,XMMWORD[96+rsp] vpaddq xmm10,xmm10,xmm4 vmovdqa xmm4,XMMWORD[128+rsp] vpmuludq xmm1,xmm2,xmm6 vpmuludq xmm2,xmm2,xmm5 vpaddq xmm14,xmm14,xmm1 vpaddq xmm13,xmm13,xmm2 vpmuludq xmm0,xmm3,xmm9 vpmuludq xmm1,xmm3,xmm8 vpaddq xmm12,xmm12,xmm0 vmovdqu xmm0,XMMWORD[rsi] vpaddq xmm11,xmm11,xmm1 vpmuludq xmm3,xmm3,xmm7 vpmuludq xmm7,xmm4,xmm7 vpaddq xmm10,xmm10,xmm3 vmovdqu xmm1,XMMWORD[16+rsi] vpaddq xmm11,xmm11,xmm7 vpmuludq xmm8,xmm4,xmm8 vpmuludq xmm9,xmm4,xmm9 vpsrldq xmm2,xmm0,6 vpaddq xmm12,xmm12,xmm8 vpaddq xmm13,xmm13,xmm9 vpsrldq xmm3,xmm1,6 vpmuludq xmm9,xmm5,XMMWORD[112+rsp] vpmuludq xmm5,xmm4,xmm6 vpunpckhqdq xmm4,xmm0,xmm1 vpaddq xmm14,xmm14,xmm9 vmovdqa xmm9,XMMWORD[((-144))+r11] vpaddq xmm10,xmm10,xmm5 vpunpcklqdq xmm0,xmm0,xmm1 vpunpcklqdq xmm3,xmm2,xmm3 vpsrldq xmm4,xmm4,5 vpsrlq xmm1,xmm0,26 vpand xmm0,xmm0,xmm15 vpsrlq xmm2,xmm3,4 vpand xmm1,xmm1,xmm15 vpand xmm4,xmm4,XMMWORD[rcx] vpsrlq xmm3,xmm3,30 vpand xmm2,xmm2,xmm15 vpand xmm3,xmm3,xmm15 vpor xmm4,xmm4,XMMWORD[32+rcx] vpaddq xmm0,xmm0,XMMWORD[r11] vpaddq xmm1,xmm1,XMMWORD[16+r11] vpaddq xmm2,xmm2,XMMWORD[32+r11] vpaddq xmm3,xmm3,XMMWORD[48+r11] vpaddq xmm4,xmm4,XMMWORD[64+r11] lea rax,[32+rsi] lea rsi,[64+rsi] sub rdx,64 cmovc rsi,rax vpmuludq xmm5,xmm9,xmm0 vpmuludq xmm6,xmm9,xmm1 vpaddq xmm10,xmm10,xmm5 vpaddq xmm11,xmm11,xmm6 vmovdqa xmm7,XMMWORD[((-128))+r11] vpmuludq xmm5,xmm9,xmm2 vpmuludq xmm6,xmm9,xmm3 vpaddq xmm12,xmm12,xmm5 vpaddq xmm13,xmm13,xmm6 vpmuludq xmm9,xmm9,xmm4 vpmuludq xmm5,xmm4,XMMWORD[((-112))+r11] vpaddq xmm14,xmm14,xmm9 vpaddq xmm10,xmm10,xmm5 vpmuludq xmm6,xmm7,xmm2 vpmuludq xmm5,xmm7,xmm3 vpaddq xmm13,xmm13,xmm6 vmovdqa xmm8,XMMWORD[((-96))+r11] vpaddq xmm14,xmm14,xmm5 vpmuludq xmm6,xmm7,xmm1 vpmuludq xmm7,xmm7,xmm0 vpaddq xmm12,xmm12,xmm6 vpaddq xmm11,xmm11,xmm7 vmovdqa xmm9,XMMWORD[((-80))+r11] vpmuludq xmm5,xmm8,xmm2 vpmuludq xmm6,xmm8,xmm1 vpaddq xmm14,xmm14,xmm5 vpaddq xmm13,xmm13,xmm6 vmovdqa xmm7,XMMWORD[((-64))+r11] vpmuludq xmm8,xmm8,xmm0 vpmuludq xmm5,xmm9,xmm4 vpaddq xmm12,xmm12,xmm8 vpaddq xmm11,xmm11,xmm5 vmovdqa xmm8,XMMWORD[((-48))+r11] vpmuludq xmm9,xmm9,xmm3 vpmuludq xmm6,xmm7,xmm1 vpaddq xmm10,xmm10,xmm9 vmovdqa xmm9,XMMWORD[((-16))+r11] vpaddq xmm14,xmm14,xmm6 vpmuludq xmm7,xmm7,xmm0 vpmuludq xmm5,xmm8,xmm4 vpaddq xmm13,xmm13,xmm7 vpaddq xmm12,xmm12,xmm5 vmovdqu xmm5,XMMWORD[32+rsi] vpmuludq xmm7,xmm8,xmm3 vpmuludq xmm8,xmm8,xmm2 vpaddq xmm11,xmm11,xmm7 vmovdqu xmm6,XMMWORD[48+rsi] vpaddq xmm10,xmm10,xmm8 vpmuludq xmm2,xmm9,xmm2 vpmuludq xmm3,xmm9,xmm3 vpsrldq xmm7,xmm5,6 vpaddq xmm11,xmm11,xmm2 vpmuludq xmm4,xmm9,xmm4 vpsrldq xmm8,xmm6,6 vpaddq xmm2,xmm12,xmm3 vpaddq xmm3,xmm13,xmm4 vpmuludq xmm4,xmm0,XMMWORD[((-32))+r11] vpmuludq xmm0,xmm9,xmm1 vpunpckhqdq xmm9,xmm5,xmm6 vpaddq xmm4,xmm14,xmm4 vpaddq xmm0,xmm10,xmm0 vpunpcklqdq xmm5,xmm5,xmm6 vpunpcklqdq xmm8,xmm7,xmm8 vpsrldq xmm9,xmm9,5 vpsrlq xmm6,xmm5,26 vmovdqa xmm14,XMMWORD[rsp] vpand xmm5,xmm5,xmm15 vpsrlq xmm7,xmm8,4 vpand xmm6,xmm6,xmm15 vpand xmm9,xmm9,XMMWORD[rcx] vpsrlq xmm8,xmm8,30 vpand xmm7,xmm7,xmm15 vpand xmm8,xmm8,xmm15 vpor xmm9,xmm9,XMMWORD[32+rcx] vpsrlq xmm13,xmm3,26 vpand xmm3,xmm3,xmm15 vpaddq xmm4,xmm4,xmm13 vpsrlq xmm10,xmm0,26 vpand xmm0,xmm0,xmm15 vpaddq xmm1,xmm11,xmm10 vpsrlq xmm10,xmm4,26 vpand xmm4,xmm4,xmm15 vpsrlq xmm11,xmm1,26 vpand xmm1,xmm1,xmm15 vpaddq xmm2,xmm2,xmm11 vpaddq xmm0,xmm0,xmm10 vpsllq xmm10,xmm10,2 vpaddq xmm0,xmm0,xmm10 vpsrlq xmm12,xmm2,26 vpand xmm2,xmm2,xmm15 vpaddq xmm3,xmm3,xmm12 vpsrlq xmm10,xmm0,26 vpand xmm0,xmm0,xmm15 vpaddq xmm1,xmm1,xmm10 vpsrlq xmm13,xmm3,26 vpand xmm3,xmm3,xmm15 vpaddq xmm4,xmm4,xmm13 ja NEAR $L$oop_avx $L$skip_loop_avx: vpshufd xmm14,xmm14,0x10 add rdx,32 jnz NEAR $L$ong_tail_avx vpaddq xmm7,xmm7,xmm2 vpaddq xmm5,xmm5,xmm0 vpaddq xmm6,xmm6,xmm1 vpaddq xmm8,xmm8,xmm3 vpaddq xmm9,xmm9,xmm4 $L$ong_tail_avx: vmovdqa XMMWORD[32+r11],xmm2 vmovdqa XMMWORD[r11],xmm0 vmovdqa XMMWORD[16+r11],xmm1 vmovdqa XMMWORD[48+r11],xmm3 vmovdqa XMMWORD[64+r11],xmm4 vpmuludq xmm12,xmm14,xmm7 vpmuludq xmm10,xmm14,xmm5 vpshufd xmm2,XMMWORD[((-48))+rdi],0x10 vpmuludq xmm11,xmm14,xmm6 vpmuludq xmm13,xmm14,xmm8 vpmuludq xmm14,xmm14,xmm9 vpmuludq xmm0,xmm2,xmm8 vpaddq xmm14,xmm14,xmm0 vpshufd xmm3,XMMWORD[((-32))+rdi],0x10 vpmuludq xmm1,xmm2,xmm7 vpaddq xmm13,xmm13,xmm1 vpshufd xmm4,XMMWORD[((-16))+rdi],0x10 vpmuludq xmm0,xmm2,xmm6 vpaddq xmm12,xmm12,xmm0 vpmuludq xmm2,xmm2,xmm5 vpaddq xmm11,xmm11,xmm2 vpmuludq xmm3,xmm3,xmm9 vpaddq xmm10,xmm10,xmm3 vpshufd xmm2,XMMWORD[rdi],0x10 vpmuludq xmm1,xmm4,xmm7 vpaddq xmm14,xmm14,xmm1 vpmuludq xmm0,xmm4,xmm6 vpaddq xmm13,xmm13,xmm0 vpshufd xmm3,XMMWORD[16+rdi],0x10 vpmuludq xmm4,xmm4,xmm5 vpaddq xmm12,xmm12,xmm4 vpmuludq xmm1,xmm2,xmm9 vpaddq xmm11,xmm11,xmm1 vpshufd xmm4,XMMWORD[32+rdi],0x10 vpmuludq xmm2,xmm2,xmm8 vpaddq xmm10,xmm10,xmm2 vpmuludq xmm0,xmm3,xmm6 vpaddq xmm14,xmm14,xmm0 vpmuludq xmm3,xmm3,xmm5 vpaddq xmm13,xmm13,xmm3 vpshufd xmm2,XMMWORD[48+rdi],0x10 vpmuludq xmm1,xmm4,xmm9 vpaddq xmm12,xmm12,xmm1 vpshufd xmm3,XMMWORD[64+rdi],0x10 vpmuludq xmm0,xmm4,xmm8 vpaddq xmm11,xmm11,xmm0 vpmuludq xmm4,xmm4,xmm7 vpaddq xmm10,xmm10,xmm4 vpmuludq xmm2,xmm2,xmm5 vpaddq xmm14,xmm14,xmm2 vpmuludq xmm1,xmm3,xmm9 vpaddq xmm13,xmm13,xmm1 vpmuludq xmm0,xmm3,xmm8 vpaddq xmm12,xmm12,xmm0 vpmuludq xmm1,xmm3,xmm7 vpaddq xmm11,xmm11,xmm1 vpmuludq xmm3,xmm3,xmm6 vpaddq xmm10,xmm10,xmm3 jz NEAR $L$short_tail_avx vmovdqu xmm0,XMMWORD[rsi] vmovdqu xmm1,XMMWORD[16+rsi] vpsrldq xmm2,xmm0,6 vpsrldq xmm3,xmm1,6 vpunpckhqdq xmm4,xmm0,xmm1 vpunpcklqdq xmm0,xmm0,xmm1 vpunpcklqdq xmm3,xmm2,xmm3 vpsrlq xmm4,xmm4,40 vpsrlq xmm1,xmm0,26 vpand xmm0,xmm0,xmm15 vpsrlq xmm2,xmm3,4 vpand xmm1,xmm1,xmm15 vpsrlq xmm3,xmm3,30 vpand xmm2,xmm2,xmm15 vpand xmm3,xmm3,xmm15 vpor xmm4,xmm4,XMMWORD[32+rcx] vpshufd xmm9,XMMWORD[((-64))+rdi],0x32 vpaddq xmm0,xmm0,XMMWORD[r11] vpaddq xmm1,xmm1,XMMWORD[16+r11] vpaddq xmm2,xmm2,XMMWORD[32+r11] vpaddq xmm3,xmm3,XMMWORD[48+r11] vpaddq xmm4,xmm4,XMMWORD[64+r11] vpmuludq xmm5,xmm9,xmm0 vpaddq xmm10,xmm10,xmm5 vpmuludq xmm6,xmm9,xmm1 vpaddq xmm11,xmm11,xmm6 vpmuludq xmm5,xmm9,xmm2 vpaddq xmm12,xmm12,xmm5 vpshufd xmm7,XMMWORD[((-48))+rdi],0x32 vpmuludq xmm6,xmm9,xmm3 vpaddq xmm13,xmm13,xmm6 vpmuludq xmm9,xmm9,xmm4 vpaddq xmm14,xmm14,xmm9 vpmuludq xmm5,xmm7,xmm3 vpaddq xmm14,xmm14,xmm5 vpshufd xmm8,XMMWORD[((-32))+rdi],0x32 vpmuludq xmm6,xmm7,xmm2 vpaddq xmm13,xmm13,xmm6 vpshufd xmm9,XMMWORD[((-16))+rdi],0x32 vpmuludq xmm5,xmm7,xmm1 vpaddq xmm12,xmm12,xmm5 vpmuludq xmm7,xmm7,xmm0 vpaddq xmm11,xmm11,xmm7 vpmuludq xmm8,xmm8,xmm4 vpaddq xmm10,xmm10,xmm8 vpshufd xmm7,XMMWORD[rdi],0x32 vpmuludq xmm6,xmm9,xmm2 vpaddq xmm14,xmm14,xmm6 vpmuludq xmm5,xmm9,xmm1 vpaddq xmm13,xmm13,xmm5 vpshufd xmm8,XMMWORD[16+rdi],0x32 vpmuludq xmm9,xmm9,xmm0 vpaddq xmm12,xmm12,xmm9 vpmuludq xmm6,xmm7,xmm4 vpaddq xmm11,xmm11,xmm6 vpshufd xmm9,XMMWORD[32+rdi],0x32 vpmuludq xmm7,xmm7,xmm3 vpaddq xmm10,xmm10,xmm7 vpmuludq xmm5,xmm8,xmm1 vpaddq xmm14,xmm14,xmm5 vpmuludq xmm8,xmm8,xmm0 vpaddq xmm13,xmm13,xmm8 vpshufd xmm7,XMMWORD[48+rdi],0x32 vpmuludq xmm6,xmm9,xmm4 vpaddq xmm12,xmm12,xmm6 vpshufd xmm8,XMMWORD[64+rdi],0x32 vpmuludq xmm5,xmm9,xmm3 vpaddq xmm11,xmm11,xmm5 vpmuludq xmm9,xmm9,xmm2 vpaddq xmm10,xmm10,xmm9 vpmuludq xmm7,xmm7,xmm0 vpaddq xmm14,xmm14,xmm7 vpmuludq xmm6,xmm8,xmm4 vpaddq xmm13,xmm13,xmm6 vpmuludq xmm5,xmm8,xmm3 vpaddq xmm12,xmm12,xmm5 vpmuludq xmm6,xmm8,xmm2 vpaddq xmm11,xmm11,xmm6 vpmuludq xmm8,xmm8,xmm1 vpaddq xmm10,xmm10,xmm8 $L$short_tail_avx: vpsrldq xmm9,xmm14,8 vpsrldq xmm8,xmm13,8 vpsrldq xmm6,xmm11,8 vpsrldq xmm5,xmm10,8 vpsrldq xmm7,xmm12,8 vpaddq xmm13,xmm13,xmm8 vpaddq xmm14,xmm14,xmm9 vpaddq xmm10,xmm10,xmm5 vpaddq xmm11,xmm11,xmm6 vpaddq xmm12,xmm12,xmm7 vpsrlq xmm3,xmm13,26 vpand xmm13,xmm13,xmm15 vpaddq xmm14,xmm14,xmm3 vpsrlq xmm0,xmm10,26 vpand xmm10,xmm10,xmm15 vpaddq xmm11,xmm11,xmm0 vpsrlq xmm4,xmm14,26 vpand xmm14,xmm14,xmm15 vpsrlq xmm1,xmm11,26 vpand xmm11,xmm11,xmm15 vpaddq xmm12,xmm12,xmm1 vpaddq xmm10,xmm10,xmm4 vpsllq xmm4,xmm4,2 vpaddq xmm10,xmm10,xmm4 vpsrlq xmm2,xmm12,26 vpand xmm12,xmm12,xmm15 vpaddq xmm13,xmm13,xmm2 vpsrlq xmm0,xmm10,26 vpand xmm10,xmm10,xmm15 vpaddq xmm11,xmm11,xmm0 vpsrlq xmm3,xmm13,26 vpand xmm13,xmm13,xmm15 vpaddq xmm14,xmm14,xmm3 vmovd DWORD[(-112)+rdi],xmm10 vmovd DWORD[(-108)+rdi],xmm11 vmovd DWORD[(-104)+rdi],xmm12 vmovd DWORD[(-100)+rdi],xmm13 vmovd DWORD[(-96)+rdi],xmm14 vmovdqa xmm6,XMMWORD[80+r11] vmovdqa xmm7,XMMWORD[96+r11] vmovdqa xmm8,XMMWORD[112+r11] vmovdqa xmm9,XMMWORD[128+r11] vmovdqa xmm10,XMMWORD[144+r11] vmovdqa xmm11,XMMWORD[160+r11] vmovdqa xmm12,XMMWORD[176+r11] vmovdqa xmm13,XMMWORD[192+r11] vmovdqa xmm14,XMMWORD[208+r11] vmovdqa xmm15,XMMWORD[224+r11] lea rsp,[248+r11] $L$do_avx_epilogue: vzeroupper mov rdi,QWORD[8+rsp] ;WIN64 epilogue mov rsi,QWORD[16+rsp] DB 0F3h,0C3h ;repret $L$SEH_end_poly1305_blocks_avx: ALIGN 32 poly1305_emit_avx: mov QWORD[8+rsp],rdi ;WIN64 prologue mov QWORD[16+rsp],rsi mov rax,rsp $L$SEH_begin_poly1305_emit_avx: mov rdi,rcx mov rsi,rdx mov rdx,r8 cmp DWORD[20+rdi],0 je NEAR $L$emit mov eax,DWORD[rdi] mov ecx,DWORD[4+rdi] mov r8d,DWORD[8+rdi] mov r11d,DWORD[12+rdi] mov r10d,DWORD[16+rdi] shl rcx,26 mov r9,r8 shl r8,52 add rax,rcx shr r9,12 add r8,rax adc r9,0 shl r11,14 mov rax,r10 shr r10,24 add r9,r11 shl rax,40 add r9,rax adc r10,0 mov rax,r10 mov rcx,r10 and r10,3 shr rax,2 and rcx,-4 add rax,rcx add r8,rax adc r9,0 adc r10,0 mov rax,r8 add r8,5 mov rcx,r9 adc r9,0 adc r10,0 shr r10,2 cmovnz rax,r8 cmovnz rcx,r9 add rax,QWORD[rdx] adc rcx,QWORD[8+rdx] mov QWORD[rsi],rax mov QWORD[8+rsi],rcx mov rdi,QWORD[8+rsp] ;WIN64 epilogue mov rsi,QWORD[16+rsp] DB 0F3h,0C3h ;repret $L$SEH_end_poly1305_emit_avx: ALIGN 32 poly1305_blocks_avx2: mov QWORD[8+rsp],rdi ;WIN64 prologue mov QWORD[16+rsp],rsi mov rax,rsp $L$SEH_begin_poly1305_blocks_avx2: mov rdi,rcx mov rsi,rdx mov rdx,r8 mov rcx,r9 mov r8d,DWORD[20+rdi] cmp rdx,128 jae NEAR $L$blocks_avx2 test r8d,r8d jz NEAR $L$blocks $L$blocks_avx2: and rdx,-16 jz NEAR $L$no_data_avx2 vzeroupper test r8d,r8d jz NEAR $L$base2_64_avx2 test rdx,63 jz NEAR $L$even_avx2 push rbx push rbp push r12 push r13 push r14 push r15 $L$blocks_avx2_body: mov r15,rdx mov r8,QWORD[rdi] mov r9,QWORD[8+rdi] mov ebp,DWORD[16+rdi] mov r11,QWORD[24+rdi] mov r13,QWORD[32+rdi] mov r14d,r8d and r8,-2147483648 mov r12,r9 mov ebx,r9d and r9,-2147483648 shr r8,6 shl r12,52 add r14,r8 shr rbx,12 shr r9,18 add r14,r12 adc rbx,r9 mov r8,rbp shl r8,40 shr rbp,24 add rbx,r8 adc rbp,0 mov r9,-4 mov r8,rbp and r9,rbp shr r8,2 and rbp,3 add r8,r9 add r14,r8 adc rbx,0 adc rbp,0 mov r12,r13 mov rax,r13 shr r13,2 add r13,r12 $L$base2_26_pre_avx2: add r14,QWORD[rsi] adc rbx,QWORD[8+rsi] lea rsi,[16+rsi] adc rbp,rcx sub r15,16 call __poly1305_block mov rax,r12 test r15,63 jnz NEAR $L$base2_26_pre_avx2 test rcx,rcx jz NEAR $L$store_base2_64_avx2 mov rax,r14 mov rdx,r14 shr r14,52 mov r11,rbx mov r12,rbx shr rdx,26 and rax,0x3ffffff shl r11,12 and rdx,0x3ffffff shr rbx,14 or r14,r11 shl rbp,24 and r14,0x3ffffff shr r12,40 and rbx,0x3ffffff or rbp,r12 test r15,r15 jz NEAR $L$store_base2_26_avx2 vmovd xmm0,eax vmovd xmm1,edx vmovd xmm2,r14d vmovd xmm3,ebx vmovd xmm4,ebp jmp NEAR $L$proceed_avx2 ALIGN 32 $L$store_base2_64_avx2: mov QWORD[rdi],r14 mov QWORD[8+rdi],rbx mov QWORD[16+rdi],rbp jmp NEAR $L$done_avx2 ALIGN 16 $L$store_base2_26_avx2: mov DWORD[rdi],eax mov DWORD[4+rdi],edx mov DWORD[8+rdi],r14d mov DWORD[12+rdi],ebx mov DWORD[16+rdi],ebp ALIGN 16 $L$done_avx2: mov r15,QWORD[rsp] mov r14,QWORD[8+rsp] mov r13,QWORD[16+rsp] mov r12,QWORD[24+rsp] mov rbp,QWORD[32+rsp] mov rbx,QWORD[40+rsp] lea rsp,[48+rsp] $L$no_data_avx2: $L$blocks_avx2_epilogue: mov rdi,QWORD[8+rsp] ;WIN64 epilogue mov rsi,QWORD[16+rsp] DB 0F3h,0C3h ;repret ALIGN 32 $L$base2_64_avx2: push rbx push rbp push r12 push r13 push r14 push r15 $L$base2_64_avx2_body: mov r15,rdx mov r11,QWORD[24+rdi] mov r13,QWORD[32+rdi] mov r14,QWORD[rdi] mov rbx,QWORD[8+rdi] mov ebp,DWORD[16+rdi] mov r12,r13 mov rax,r13 shr r13,2 add r13,r12 test rdx,63 jz NEAR $L$init_avx2 $L$base2_64_pre_avx2: add r14,QWORD[rsi] adc rbx,QWORD[8+rsi] lea rsi,[16+rsi] adc rbp,rcx sub r15,16 call __poly1305_block mov rax,r12 test r15,63 jnz NEAR $L$base2_64_pre_avx2 $L$init_avx2: mov rax,r14 mov rdx,r14 shr r14,52 mov r8,rbx mov r9,rbx shr rdx,26 and rax,0x3ffffff shl r8,12 and rdx,0x3ffffff shr rbx,14 or r14,r8 shl rbp,24 and r14,0x3ffffff shr r9,40 and rbx,0x3ffffff or rbp,r9 vmovd xmm0,eax vmovd xmm1,edx vmovd xmm2,r14d vmovd xmm3,ebx vmovd xmm4,ebp mov DWORD[20+rdi],1 call __poly1305_init_avx $L$proceed_avx2: mov rdx,r15 mov r10d,DWORD[((OPENSSL_ia32cap_P+8))] mov r11d,3221291008 mov r15,QWORD[rsp] mov r14,QWORD[8+rsp] mov r13,QWORD[16+rsp] mov r12,QWORD[24+rsp] mov rbp,QWORD[32+rsp] mov rbx,QWORD[40+rsp] lea rax,[48+rsp] lea rsp,[48+rsp] $L$base2_64_avx2_epilogue: jmp NEAR $L$do_avx2 ALIGN 32 $L$even_avx2: mov r10d,DWORD[((OPENSSL_ia32cap_P+8))] vmovd xmm0,DWORD[rdi] vmovd xmm1,DWORD[4+rdi] vmovd xmm2,DWORD[8+rdi] vmovd xmm3,DWORD[12+rdi] vmovd xmm4,DWORD[16+rdi] $L$do_avx2: cmp rdx,512 jb NEAR $L$skip_avx512 and r10d,r11d test r10d,65536 jnz NEAR $L$blocks_avx512 $L$skip_avx512: lea r11,[((-248))+rsp] sub rsp,0x1c8 vmovdqa XMMWORD[80+r11],xmm6 vmovdqa XMMWORD[96+r11],xmm7 vmovdqa XMMWORD[112+r11],xmm8 vmovdqa XMMWORD[128+r11],xmm9 vmovdqa XMMWORD[144+r11],xmm10 vmovdqa XMMWORD[160+r11],xmm11 vmovdqa XMMWORD[176+r11],xmm12 vmovdqa XMMWORD[192+r11],xmm13 vmovdqa XMMWORD[208+r11],xmm14 vmovdqa XMMWORD[224+r11],xmm15 $L$do_avx2_body: lea rcx,[$L$const] lea rdi,[((48+64))+rdi] vmovdqa ymm7,YMMWORD[96+rcx] vmovdqu xmm9,XMMWORD[((-64))+rdi] and rsp,-512 vmovdqu xmm10,XMMWORD[((-48))+rdi] vmovdqu xmm6,XMMWORD[((-32))+rdi] vmovdqu xmm11,XMMWORD[((-16))+rdi] vmovdqu xmm12,XMMWORD[rdi] vmovdqu xmm13,XMMWORD[16+rdi] lea rax,[144+rsp] vmovdqu xmm14,XMMWORD[32+rdi] vpermd ymm9,ymm7,ymm9 vmovdqu xmm15,XMMWORD[48+rdi] vpermd ymm10,ymm7,ymm10 vmovdqu xmm5,XMMWORD[64+rdi] vpermd ymm6,ymm7,ymm6 vmovdqa YMMWORD[rsp],ymm9 vpermd ymm11,ymm7,ymm11 vmovdqa YMMWORD[(32-144)+rax],ymm10 vpermd ymm12,ymm7,ymm12 vmovdqa YMMWORD[(64-144)+rax],ymm6 vpermd ymm13,ymm7,ymm13 vmovdqa YMMWORD[(96-144)+rax],ymm11 vpermd ymm14,ymm7,ymm14 vmovdqa YMMWORD[(128-144)+rax],ymm12 vpermd ymm15,ymm7,ymm15 vmovdqa YMMWORD[(160-144)+rax],ymm13 vpermd ymm5,ymm7,ymm5 vmovdqa YMMWORD[(192-144)+rax],ymm14 vmovdqa YMMWORD[(224-144)+rax],ymm15 vmovdqa YMMWORD[(256-144)+rax],ymm5 vmovdqa ymm5,YMMWORD[64+rcx] vmovdqu xmm7,XMMWORD[rsi] vmovdqu xmm8,XMMWORD[16+rsi] vinserti128 ymm7,ymm7,XMMWORD[32+rsi],1 vinserti128 ymm8,ymm8,XMMWORD[48+rsi],1 lea rsi,[64+rsi] vpsrldq ymm9,ymm7,6 vpsrldq ymm10,ymm8,6 vpunpckhqdq ymm6,ymm7,ymm8 vpunpcklqdq ymm9,ymm9,ymm10 vpunpcklqdq ymm7,ymm7,ymm8 vpsrlq ymm10,ymm9,30 vpsrlq ymm9,ymm9,4 vpsrlq ymm8,ymm7,26 vpsrlq ymm6,ymm6,40 vpand ymm9,ymm9,ymm5 vpand ymm7,ymm7,ymm5 vpand ymm8,ymm8,ymm5 vpand ymm10,ymm10,ymm5 vpor ymm6,ymm6,YMMWORD[32+rcx] vpaddq ymm2,ymm9,ymm2 sub rdx,64 jz NEAR $L$tail_avx2 jmp NEAR $L$oop_avx2 ALIGN 32 $L$oop_avx2: vpaddq ymm0,ymm7,ymm0 vmovdqa ymm7,YMMWORD[rsp] vpaddq ymm1,ymm8,ymm1 vmovdqa ymm8,YMMWORD[32+rsp] vpaddq ymm3,ymm10,ymm3 vmovdqa ymm9,YMMWORD[96+rsp] vpaddq ymm4,ymm6,ymm4 vmovdqa ymm10,YMMWORD[48+rax] vmovdqa ymm5,YMMWORD[112+rax] vpmuludq ymm13,ymm7,ymm2 vpmuludq ymm14,ymm8,ymm2 vpmuludq ymm15,ymm9,ymm2 vpmuludq ymm11,ymm10,ymm2 vpmuludq ymm12,ymm5,ymm2 vpmuludq ymm6,ymm8,ymm0 vpmuludq ymm2,ymm8,ymm1 vpaddq ymm12,ymm12,ymm6 vpaddq ymm13,ymm13,ymm2 vpmuludq ymm6,ymm8,ymm3 vpmuludq ymm2,ymm4,YMMWORD[64+rsp] vpaddq ymm15,ymm15,ymm6 vpaddq ymm11,ymm11,ymm2 vmovdqa ymm8,YMMWORD[((-16))+rax] vpmuludq ymm6,ymm7,ymm0 vpmuludq ymm2,ymm7,ymm1 vpaddq ymm11,ymm11,ymm6 vpaddq ymm12,ymm12,ymm2 vpmuludq ymm6,ymm7,ymm3 vpmuludq ymm2,ymm7,ymm4 vmovdqu xmm7,XMMWORD[rsi] vpaddq ymm14,ymm14,ymm6 vpaddq ymm15,ymm15,ymm2 vinserti128 ymm7,ymm7,XMMWORD[32+rsi],1 vpmuludq ymm6,ymm8,ymm3 vpmuludq ymm2,ymm8,ymm4 vmovdqu xmm8,XMMWORD[16+rsi] vpaddq ymm11,ymm11,ymm6 vpaddq ymm12,ymm12,ymm2 vmovdqa ymm2,YMMWORD[16+rax] vpmuludq ymm6,ymm9,ymm1 vpmuludq ymm9,ymm9,ymm0 vpaddq ymm14,ymm14,ymm6 vpaddq ymm13,ymm13,ymm9 vinserti128 ymm8,ymm8,XMMWORD[48+rsi],1 lea rsi,[64+rsi] vpmuludq ymm6,ymm2,ymm1 vpmuludq ymm2,ymm2,ymm0 vpsrldq ymm9,ymm7,6 vpaddq ymm15,ymm15,ymm6 vpaddq ymm14,ymm14,ymm2 vpmuludq ymm6,ymm10,ymm3 vpmuludq ymm2,ymm10,ymm4 vpsrldq ymm10,ymm8,6 vpaddq ymm12,ymm12,ymm6 vpaddq ymm13,ymm13,ymm2 vpunpckhqdq ymm6,ymm7,ymm8 vpmuludq ymm3,ymm5,ymm3 vpmuludq ymm4,ymm5,ymm4 vpunpcklqdq ymm7,ymm7,ymm8 vpaddq ymm2,ymm13,ymm3 vpaddq ymm3,ymm14,ymm4 vpunpcklqdq ymm10,ymm9,ymm10 vpmuludq ymm4,ymm0,YMMWORD[80+rax] vpmuludq ymm0,ymm5,ymm1 vmovdqa ymm5,YMMWORD[64+rcx] vpaddq ymm4,ymm15,ymm4 vpaddq ymm0,ymm11,ymm0 vpsrlq ymm14,ymm3,26 vpand ymm3,ymm3,ymm5 vpaddq ymm4,ymm4,ymm14 vpsrlq ymm11,ymm0,26 vpand ymm0,ymm0,ymm5 vpaddq ymm1,ymm12,ymm11 vpsrlq ymm15,ymm4,26 vpand ymm4,ymm4,ymm5 vpsrlq ymm9,ymm10,4 vpsrlq ymm12,ymm1,26 vpand ymm1,ymm1,ymm5 vpaddq ymm2,ymm2,ymm12 vpaddq ymm0,ymm0,ymm15 vpsllq ymm15,ymm15,2 vpaddq ymm0,ymm0,ymm15 vpand ymm9,ymm9,ymm5 vpsrlq ymm8,ymm7,26 vpsrlq ymm13,ymm2,26 vpand ymm2,ymm2,ymm5 vpaddq ymm3,ymm3,ymm13 vpaddq ymm2,ymm2,ymm9 vpsrlq ymm10,ymm10,30 vpsrlq ymm11,ymm0,26 vpand ymm0,ymm0,ymm5 vpaddq ymm1,ymm1,ymm11 vpsrlq ymm6,ymm6,40 vpsrlq ymm14,ymm3,26 vpand ymm3,ymm3,ymm5 vpaddq ymm4,ymm4,ymm14 vpand ymm7,ymm7,ymm5 vpand ymm8,ymm8,ymm5 vpand ymm10,ymm10,ymm5 vpor ymm6,ymm6,YMMWORD[32+rcx] sub rdx,64 jnz NEAR $L$oop_avx2 DB 0x66,0x90 $L$tail_avx2: vpaddq ymm0,ymm7,ymm0 vmovdqu ymm7,YMMWORD[4+rsp] vpaddq ymm1,ymm8,ymm1 vmovdqu ymm8,YMMWORD[36+rsp] vpaddq ymm3,ymm10,ymm3 vmovdqu ymm9,YMMWORD[100+rsp] vpaddq ymm4,ymm6,ymm4 vmovdqu ymm10,YMMWORD[52+rax] vmovdqu ymm5,YMMWORD[116+rax] vpmuludq ymm13,ymm7,ymm2 vpmuludq ymm14,ymm8,ymm2 vpmuludq ymm15,ymm9,ymm2 vpmuludq ymm11,ymm10,ymm2 vpmuludq ymm12,ymm5,ymm2 vpmuludq ymm6,ymm8,ymm0 vpmuludq ymm2,ymm8,ymm1 vpaddq ymm12,ymm12,ymm6 vpaddq ymm13,ymm13,ymm2 vpmuludq ymm6,ymm8,ymm3 vpmuludq ymm2,ymm4,YMMWORD[68+rsp] vpaddq ymm15,ymm15,ymm6 vpaddq ymm11,ymm11,ymm2 vpmuludq ymm6,ymm7,ymm0 vpmuludq ymm2,ymm7,ymm1 vpaddq ymm11,ymm11,ymm6 vmovdqu ymm8,YMMWORD[((-12))+rax] vpaddq ymm12,ymm12,ymm2 vpmuludq ymm6,ymm7,ymm3 vpmuludq ymm2,ymm7,ymm4 vpaddq ymm14,ymm14,ymm6 vpaddq ymm15,ymm15,ymm2 vpmuludq ymm6,ymm8,ymm3 vpmuludq ymm2,ymm8,ymm4 vpaddq ymm11,ymm11,ymm6 vpaddq ymm12,ymm12,ymm2 vmovdqu ymm2,YMMWORD[20+rax] vpmuludq ymm6,ymm9,ymm1 vpmuludq ymm9,ymm9,ymm0 vpaddq ymm14,ymm14,ymm6 vpaddq ymm13,ymm13,ymm9 vpmuludq ymm6,ymm2,ymm1 vpmuludq ymm2,ymm2,ymm0 vpaddq ymm15,ymm15,ymm6 vpaddq ymm14,ymm14,ymm2 vpmuludq ymm6,ymm10,ymm3 vpmuludq ymm2,ymm10,ymm4 vpaddq ymm12,ymm12,ymm6 vpaddq ymm13,ymm13,ymm2 vpmuludq ymm3,ymm5,ymm3 vpmuludq ymm4,ymm5,ymm4 vpaddq ymm2,ymm13,ymm3 vpaddq ymm3,ymm14,ymm4 vpmuludq ymm4,ymm0,YMMWORD[84+rax] vpmuludq ymm0,ymm5,ymm1 vmovdqa ymm5,YMMWORD[64+rcx] vpaddq ymm4,ymm15,ymm4 vpaddq ymm0,ymm11,ymm0 vpsrldq ymm8,ymm12,8 vpsrldq ymm9,ymm2,8 vpsrldq ymm10,ymm3,8 vpsrldq ymm6,ymm4,8 vpsrldq ymm7,ymm0,8 vpaddq ymm12,ymm12,ymm8 vpaddq ymm2,ymm2,ymm9 vpaddq ymm3,ymm3,ymm10 vpaddq ymm4,ymm4,ymm6 vpaddq ymm0,ymm0,ymm7 vpermq ymm10,ymm3,0x2 vpermq ymm6,ymm4,0x2 vpermq ymm7,ymm0,0x2 vpermq ymm8,ymm12,0x2 vpermq ymm9,ymm2,0x2 vpaddq ymm3,ymm3,ymm10 vpaddq ymm4,ymm4,ymm6 vpaddq ymm0,ymm0,ymm7 vpaddq ymm12,ymm12,ymm8 vpaddq ymm2,ymm2,ymm9 vpsrlq ymm14,ymm3,26 vpand ymm3,ymm3,ymm5 vpaddq ymm4,ymm4,ymm14 vpsrlq ymm11,ymm0,26 vpand ymm0,ymm0,ymm5 vpaddq ymm1,ymm12,ymm11 vpsrlq ymm15,ymm4,26 vpand ymm4,ymm4,ymm5 vpsrlq ymm12,ymm1,26 vpand ymm1,ymm1,ymm5 vpaddq ymm2,ymm2,ymm12 vpaddq ymm0,ymm0,ymm15 vpsllq ymm15,ymm15,2 vpaddq ymm0,ymm0,ymm15 vpsrlq ymm13,ymm2,26 vpand ymm2,ymm2,ymm5 vpaddq ymm3,ymm3,ymm13 vpsrlq ymm11,ymm0,26 vpand ymm0,ymm0,ymm5 vpaddq ymm1,ymm1,ymm11 vpsrlq ymm14,ymm3,26 vpand ymm3,ymm3,ymm5 vpaddq ymm4,ymm4,ymm14 vmovd DWORD[(-112)+rdi],xmm0 vmovd DWORD[(-108)+rdi],xmm1 vmovd DWORD[(-104)+rdi],xmm2 vmovd DWORD[(-100)+rdi],xmm3 vmovd DWORD[(-96)+rdi],xmm4 vmovdqa xmm6,XMMWORD[80+r11] vmovdqa xmm7,XMMWORD[96+r11] vmovdqa xmm8,XMMWORD[112+r11] vmovdqa xmm9,XMMWORD[128+r11] vmovdqa xmm10,XMMWORD[144+r11] vmovdqa xmm11,XMMWORD[160+r11] vmovdqa xmm12,XMMWORD[176+r11] vmovdqa xmm13,XMMWORD[192+r11] vmovdqa xmm14,XMMWORD[208+r11] vmovdqa xmm15,XMMWORD[224+r11] lea rsp,[248+r11] $L$do_avx2_epilogue: vzeroupper mov rdi,QWORD[8+rsp] ;WIN64 epilogue mov rsi,QWORD[16+rsp] DB 0F3h,0C3h ;repret $L$SEH_end_poly1305_blocks_avx2: ALIGN 32 poly1305_blocks_avx512: mov QWORD[8+rsp],rdi ;WIN64 prologue mov QWORD[16+rsp],rsi mov rax,rsp $L$SEH_begin_poly1305_blocks_avx512: mov rdi,rcx mov rsi,rdx mov rdx,r8 mov rcx,r9 $L$blocks_avx512: mov eax,15 kmovw k2,eax lea r11,[((-248))+rsp] sub rsp,0x1c8 vmovdqa XMMWORD[80+r11],xmm6 vmovdqa XMMWORD[96+r11],xmm7 vmovdqa XMMWORD[112+r11],xmm8 vmovdqa XMMWORD[128+r11],xmm9 vmovdqa XMMWORD[144+r11],xmm10 vmovdqa XMMWORD[160+r11],xmm11 vmovdqa XMMWORD[176+r11],xmm12 vmovdqa XMMWORD[192+r11],xmm13 vmovdqa XMMWORD[208+r11],xmm14 vmovdqa XMMWORD[224+r11],xmm15 $L$do_avx512_body: lea rcx,[$L$const] lea rdi,[((48+64))+rdi] vmovdqa ymm9,YMMWORD[96+rcx] vmovdqu xmm11,XMMWORD[((-64))+rdi] and rsp,-512 vmovdqu xmm12,XMMWORD[((-48))+rdi] mov rax,0x20 vmovdqu xmm7,XMMWORD[((-32))+rdi] vmovdqu xmm13,XMMWORD[((-16))+rdi] vmovdqu xmm8,XMMWORD[rdi] vmovdqu xmm14,XMMWORD[16+rdi] vmovdqu xmm10,XMMWORD[32+rdi] vmovdqu xmm15,XMMWORD[48+rdi] vmovdqu xmm6,XMMWORD[64+rdi] vpermd zmm16,zmm9,zmm11 vpbroadcastq zmm5,QWORD[64+rcx] vpermd zmm17,zmm9,zmm12 vpermd zmm21,zmm9,zmm7 vpermd zmm18,zmm9,zmm13 vmovdqa64 ZMMWORD[rsp]{k2},zmm16 vpsrlq zmm7,zmm16,32 vpermd zmm22,zmm9,zmm8 vmovdqu64 ZMMWORD[rax*1+rsp]{k2},zmm17 vpsrlq zmm8,zmm17,32 vpermd zmm19,zmm9,zmm14 vmovdqa64 ZMMWORD[64+rsp]{k2},zmm21 vpermd zmm23,zmm9,zmm10 vpermd zmm20,zmm9,zmm15 vmovdqu64 ZMMWORD[64+rax*1+rsp]{k2},zmm18 vpermd zmm24,zmm9,zmm6 vmovdqa64 ZMMWORD[128+rsp]{k2},zmm22 vmovdqu64 ZMMWORD[128+rax*1+rsp]{k2},zmm19 vmovdqa64 ZMMWORD[192+rsp]{k2},zmm23 vmovdqu64 ZMMWORD[192+rax*1+rsp]{k2},zmm20 vmovdqa64 ZMMWORD[256+rsp]{k2},zmm24 vpmuludq zmm11,zmm16,zmm7 vpmuludq zmm12,zmm17,zmm7 vpmuludq zmm13,zmm18,zmm7 vpmuludq zmm14,zmm19,zmm7 vpmuludq zmm15,zmm20,zmm7 vpsrlq zmm9,zmm18,32 vpmuludq zmm25,zmm24,zmm8 vpmuludq zmm26,zmm16,zmm8 vpmuludq zmm27,zmm17,zmm8 vpmuludq zmm28,zmm18,zmm8 vpmuludq zmm29,zmm19,zmm8 vpsrlq zmm10,zmm19,32 vpaddq zmm11,zmm11,zmm25 vpaddq zmm12,zmm12,zmm26 vpaddq zmm13,zmm13,zmm27 vpaddq zmm14,zmm14,zmm28 vpaddq zmm15,zmm15,zmm29 vpmuludq zmm25,zmm23,zmm9 vpmuludq zmm26,zmm24,zmm9 vpmuludq zmm28,zmm17,zmm9 vpmuludq zmm29,zmm18,zmm9 vpmuludq zmm27,zmm16,zmm9 vpsrlq zmm6,zmm20,32 vpaddq zmm11,zmm11,zmm25 vpaddq zmm12,zmm12,zmm26 vpaddq zmm14,zmm14,zmm28 vpaddq zmm15,zmm15,zmm29 vpaddq zmm13,zmm13,zmm27 vpmuludq zmm25,zmm22,zmm10 vpmuludq zmm28,zmm16,zmm10 vpmuludq zmm29,zmm17,zmm10 vpmuludq zmm26,zmm23,zmm10 vpmuludq zmm27,zmm24,zmm10 vpaddq zmm11,zmm11,zmm25 vpaddq zmm14,zmm14,zmm28 vpaddq zmm15,zmm15,zmm29 vpaddq zmm12,zmm12,zmm26 vpaddq zmm13,zmm13,zmm27 vpmuludq zmm28,zmm24,zmm6 vpmuludq zmm29,zmm16,zmm6 vpmuludq zmm25,zmm21,zmm6 vpmuludq zmm26,zmm22,zmm6 vpmuludq zmm27,zmm23,zmm6 vpaddq zmm14,zmm14,zmm28 vpaddq zmm15,zmm15,zmm29 vpaddq zmm11,zmm11,zmm25 vpaddq zmm12,zmm12,zmm26 vpaddq zmm13,zmm13,zmm27 vmovdqu64 zmm10,ZMMWORD[rsi] vmovdqu64 zmm6,ZMMWORD[64+rsi] lea rsi,[128+rsi] vpsrlq zmm28,zmm14,26 vpandq zmm14,zmm14,zmm5 vpaddq zmm15,zmm15,zmm28 vpsrlq zmm25,zmm11,26 vpandq zmm11,zmm11,zmm5 vpaddq zmm12,zmm12,zmm25 vpsrlq zmm29,zmm15,26 vpandq zmm15,zmm15,zmm5 vpsrlq zmm26,zmm12,26 vpandq zmm12,zmm12,zmm5 vpaddq zmm13,zmm13,zmm26 vpaddq zmm11,zmm11,zmm29 vpsllq zmm29,zmm29,2 vpaddq zmm11,zmm11,zmm29 vpsrlq zmm27,zmm13,26 vpandq zmm13,zmm13,zmm5 vpaddq zmm14,zmm14,zmm27 vpsrlq zmm25,zmm11,26 vpandq zmm11,zmm11,zmm5 vpaddq zmm12,zmm12,zmm25 vpsrlq zmm28,zmm14,26 vpandq zmm14,zmm14,zmm5 vpaddq zmm15,zmm15,zmm28 vpunpcklqdq zmm7,zmm10,zmm6 vpunpckhqdq zmm6,zmm10,zmm6 vmovdqa32 zmm25,ZMMWORD[128+rcx] mov eax,0x7777 kmovw k1,eax vpermd zmm16,zmm25,zmm16 vpermd zmm17,zmm25,zmm17 vpermd zmm18,zmm25,zmm18 vpermd zmm19,zmm25,zmm19 vpermd zmm20,zmm25,zmm20 vpermd zmm16{k1},zmm25,zmm11 vpermd zmm17{k1},zmm25,zmm12 vpermd zmm18{k1},zmm25,zmm13 vpermd zmm19{k1},zmm25,zmm14 vpermd zmm20{k1},zmm25,zmm15 vpslld zmm21,zmm17,2 vpslld zmm22,zmm18,2 vpslld zmm23,zmm19,2 vpslld zmm24,zmm20,2 vpaddd zmm21,zmm21,zmm17 vpaddd zmm22,zmm22,zmm18 vpaddd zmm23,zmm23,zmm19 vpaddd zmm24,zmm24,zmm20 vpbroadcastq zmm30,QWORD[32+rcx] vpsrlq zmm9,zmm7,52 vpsllq zmm10,zmm6,12 vporq zmm9,zmm9,zmm10 vpsrlq zmm8,zmm7,26 vpsrlq zmm10,zmm6,14 vpsrlq zmm6,zmm6,40 vpandq zmm9,zmm9,zmm5 vpandq zmm7,zmm7,zmm5 vpaddq zmm2,zmm9,zmm2 sub rdx,192 jbe NEAR $L$tail_avx512 jmp NEAR $L$oop_avx512 ALIGN 32 $L$oop_avx512: vpmuludq zmm14,zmm17,zmm2 vpaddq zmm0,zmm7,zmm0 vpmuludq zmm15,zmm18,zmm2 vpandq zmm8,zmm8,zmm5 vpmuludq zmm11,zmm23,zmm2 vpandq zmm10,zmm10,zmm5 vpmuludq zmm12,zmm24,zmm2 vporq zmm6,zmm6,zmm30 vpmuludq zmm13,zmm16,zmm2 vpaddq zmm1,zmm8,zmm1 vpaddq zmm3,zmm10,zmm3 vpaddq zmm4,zmm6,zmm4 vmovdqu64 zmm10,ZMMWORD[rsi] vmovdqu64 zmm6,ZMMWORD[64+rsi] lea rsi,[128+rsi] vpmuludq zmm28,zmm19,zmm0 vpmuludq zmm29,zmm20,zmm0 vpmuludq zmm25,zmm16,zmm0 vpmuludq zmm26,zmm17,zmm0 vpaddq zmm14,zmm14,zmm28 vpaddq zmm15,zmm15,zmm29 vpaddq zmm11,zmm11,zmm25 vpaddq zmm12,zmm12,zmm26 vpmuludq zmm28,zmm18,zmm1 vpmuludq zmm29,zmm19,zmm1 vpmuludq zmm25,zmm24,zmm1 vpmuludq zmm27,zmm18,zmm0 vpaddq zmm14,zmm14,zmm28 vpaddq zmm15,zmm15,zmm29 vpaddq zmm11,zmm11,zmm25 vpaddq zmm13,zmm13,zmm27 vpunpcklqdq zmm7,zmm10,zmm6 vpunpckhqdq zmm6,zmm10,zmm6 vpmuludq zmm28,zmm16,zmm3 vpmuludq zmm29,zmm17,zmm3 vpmuludq zmm26,zmm16,zmm1 vpmuludq zmm27,zmm17,zmm1 vpaddq zmm14,zmm14,zmm28 vpaddq zmm15,zmm15,zmm29 vpaddq zmm12,zmm12,zmm26 vpaddq zmm13,zmm13,zmm27 vpmuludq zmm28,zmm24,zmm4 vpmuludq zmm29,zmm16,zmm4 vpmuludq zmm25,zmm22,zmm3 vpmuludq zmm26,zmm23,zmm3 vpaddq zmm14,zmm14,zmm28 vpmuludq zmm27,zmm24,zmm3 vpaddq zmm15,zmm15,zmm29 vpaddq zmm11,zmm11,zmm25 vpaddq zmm12,zmm12,zmm26 vpaddq zmm13,zmm13,zmm27 vpmuludq zmm25,zmm21,zmm4 vpmuludq zmm26,zmm22,zmm4 vpmuludq zmm27,zmm23,zmm4 vpaddq zmm0,zmm11,zmm25 vpaddq zmm1,zmm12,zmm26 vpaddq zmm2,zmm13,zmm27 vpsrlq zmm9,zmm7,52 vpsllq zmm10,zmm6,12 vpsrlq zmm3,zmm14,26 vpandq zmm14,zmm14,zmm5 vpaddq zmm4,zmm15,zmm3 vporq zmm9,zmm9,zmm10 vpsrlq zmm11,zmm0,26 vpandq zmm0,zmm0,zmm5 vpaddq zmm1,zmm1,zmm11 vpandq zmm9,zmm9,zmm5 vpsrlq zmm15,zmm4,26 vpandq zmm4,zmm4,zmm5 vpsrlq zmm12,zmm1,26 vpandq zmm1,zmm1,zmm5 vpaddq zmm2,zmm2,zmm12 vpaddq zmm0,zmm0,zmm15 vpsllq zmm15,zmm15,2 vpaddq zmm0,zmm0,zmm15 vpaddq zmm2,zmm2,zmm9 vpsrlq zmm8,zmm7,26 vpsrlq zmm13,zmm2,26 vpandq zmm2,zmm2,zmm5 vpaddq zmm3,zmm14,zmm13 vpsrlq zmm10,zmm6,14 vpsrlq zmm11,zmm0,26 vpandq zmm0,zmm0,zmm5 vpaddq zmm1,zmm1,zmm11 vpsrlq zmm6,zmm6,40 vpsrlq zmm14,zmm3,26 vpandq zmm3,zmm3,zmm5 vpaddq zmm4,zmm4,zmm14 vpandq zmm7,zmm7,zmm5 sub rdx,128 ja NEAR $L$oop_avx512 $L$tail_avx512: vpsrlq zmm16,zmm16,32 vpsrlq zmm17,zmm17,32 vpsrlq zmm18,zmm18,32 vpsrlq zmm23,zmm23,32 vpsrlq zmm24,zmm24,32 vpsrlq zmm19,zmm19,32 vpsrlq zmm20,zmm20,32 vpsrlq zmm21,zmm21,32 vpsrlq zmm22,zmm22,32 lea rsi,[rdx*1+rsi] vpaddq zmm0,zmm7,zmm0 vpmuludq zmm14,zmm17,zmm2 vpmuludq zmm15,zmm18,zmm2 vpmuludq zmm11,zmm23,zmm2 vpandq zmm8,zmm8,zmm5 vpmuludq zmm12,zmm24,zmm2 vpandq zmm10,zmm10,zmm5 vpmuludq zmm13,zmm16,zmm2 vporq zmm6,zmm6,zmm30 vpaddq zmm1,zmm8,zmm1 vpaddq zmm3,zmm10,zmm3 vpaddq zmm4,zmm6,zmm4 vmovdqu xmm7,XMMWORD[rsi] vpmuludq zmm28,zmm19,zmm0 vpmuludq zmm29,zmm20,zmm0 vpmuludq zmm25,zmm16,zmm0 vpmuludq zmm26,zmm17,zmm0 vpaddq zmm14,zmm14,zmm28 vpaddq zmm15,zmm15,zmm29 vpaddq zmm11,zmm11,zmm25 vpaddq zmm12,zmm12,zmm26 vmovdqu xmm8,XMMWORD[16+rsi] vpmuludq zmm28,zmm18,zmm1 vpmuludq zmm29,zmm19,zmm1 vpmuludq zmm25,zmm24,zmm1 vpmuludq zmm27,zmm18,zmm0 vpaddq zmm14,zmm14,zmm28 vpaddq zmm15,zmm15,zmm29 vpaddq zmm11,zmm11,zmm25 vpaddq zmm13,zmm13,zmm27 vinserti128 ymm7,ymm7,XMMWORD[32+rsi],1 vpmuludq zmm28,zmm16,zmm3 vpmuludq zmm29,zmm17,zmm3 vpmuludq zmm26,zmm16,zmm1 vpmuludq zmm27,zmm17,zmm1 vpaddq zmm14,zmm14,zmm28 vpaddq zmm15,zmm15,zmm29 vpaddq zmm12,zmm12,zmm26 vpaddq zmm13,zmm13,zmm27 vinserti128 ymm8,ymm8,XMMWORD[48+rsi],1 vpmuludq zmm28,zmm24,zmm4 vpmuludq zmm29,zmm16,zmm4 vpmuludq zmm25,zmm22,zmm3 vpmuludq zmm26,zmm23,zmm3 vpmuludq zmm27,zmm24,zmm3 vpaddq zmm3,zmm14,zmm28 vpaddq zmm15,zmm15,zmm29 vpaddq zmm11,zmm11,zmm25 vpaddq zmm12,zmm12,zmm26 vpaddq zmm13,zmm13,zmm27 vpmuludq zmm25,zmm21,zmm4 vpmuludq zmm26,zmm22,zmm4 vpmuludq zmm27,zmm23,zmm4 vpaddq zmm0,zmm11,zmm25 vpaddq zmm1,zmm12,zmm26 vpaddq zmm2,zmm13,zmm27 mov eax,1 vpermq zmm14,zmm3,0xb1 vpermq zmm4,zmm15,0xb1 vpermq zmm11,zmm0,0xb1 vpermq zmm12,zmm1,0xb1 vpermq zmm13,zmm2,0xb1 vpaddq zmm3,zmm3,zmm14 vpaddq zmm4,zmm4,zmm15 vpaddq zmm0,zmm0,zmm11 vpaddq zmm1,zmm1,zmm12 vpaddq zmm2,zmm2,zmm13 kmovw k3,eax vpermq zmm14,zmm3,0x2 vpermq zmm15,zmm4,0x2 vpermq zmm11,zmm0,0x2 vpermq zmm12,zmm1,0x2 vpermq zmm13,zmm2,0x2 vpaddq zmm3,zmm3,zmm14 vpaddq zmm4,zmm4,zmm15 vpaddq zmm0,zmm0,zmm11 vpaddq zmm1,zmm1,zmm12 vpaddq zmm2,zmm2,zmm13 vextracti64x4 ymm14,zmm3,0x1 vextracti64x4 ymm15,zmm4,0x1 vextracti64x4 ymm11,zmm0,0x1 vextracti64x4 ymm12,zmm1,0x1 vextracti64x4 ymm13,zmm2,0x1 vpaddq zmm3{k3}{z},zmm3,zmm14 vpaddq zmm4{k3}{z},zmm4,zmm15 vpaddq zmm0{k3}{z},zmm0,zmm11 vpaddq zmm1{k3}{z},zmm1,zmm12 vpaddq zmm2{k3}{z},zmm2,zmm13 vpsrlq ymm14,ymm3,26 vpand ymm3,ymm3,ymm5 vpsrldq ymm9,ymm7,6 vpsrldq ymm10,ymm8,6 vpunpckhqdq ymm6,ymm7,ymm8 vpaddq ymm4,ymm4,ymm14 vpsrlq ymm11,ymm0,26 vpand ymm0,ymm0,ymm5 vpunpcklqdq ymm9,ymm9,ymm10 vpunpcklqdq ymm7,ymm7,ymm8 vpaddq ymm1,ymm1,ymm11 vpsrlq ymm15,ymm4,26 vpand ymm4,ymm4,ymm5 vpsrlq ymm12,ymm1,26 vpand ymm1,ymm1,ymm5 vpsrlq ymm10,ymm9,30 vpsrlq ymm9,ymm9,4 vpaddq ymm2,ymm2,ymm12 vpaddq ymm0,ymm0,ymm15 vpsllq ymm15,ymm15,2 vpsrlq ymm8,ymm7,26 vpsrlq ymm6,ymm6,40 vpaddq ymm0,ymm0,ymm15 vpsrlq ymm13,ymm2,26 vpand ymm2,ymm2,ymm5 vpand ymm9,ymm9,ymm5 vpand ymm7,ymm7,ymm5 vpaddq ymm3,ymm3,ymm13 vpsrlq ymm11,ymm0,26 vpand ymm0,ymm0,ymm5 vpaddq ymm2,ymm9,ymm2 vpand ymm8,ymm8,ymm5 vpaddq ymm1,ymm1,ymm11 vpsrlq ymm14,ymm3,26 vpand ymm3,ymm3,ymm5 vpand ymm10,ymm10,ymm5 vpor ymm6,ymm6,YMMWORD[32+rcx] vpaddq ymm4,ymm4,ymm14 lea rax,[144+rsp] add rdx,64 jnz NEAR $L$tail_avx2 vpsubq ymm2,ymm2,ymm9 vmovd DWORD[(-112)+rdi],xmm0 vmovd DWORD[(-108)+rdi],xmm1 vmovd DWORD[(-104)+rdi],xmm2 vmovd DWORD[(-100)+rdi],xmm3 vmovd DWORD[(-96)+rdi],xmm4 vzeroall movdqa xmm6,XMMWORD[80+r11] movdqa xmm7,XMMWORD[96+r11] movdqa xmm8,XMMWORD[112+r11] movdqa xmm9,XMMWORD[128+r11] movdqa xmm10,XMMWORD[144+r11] movdqa xmm11,XMMWORD[160+r11] movdqa xmm12,XMMWORD[176+r11] movdqa xmm13,XMMWORD[192+r11] movdqa xmm14,XMMWORD[208+r11] movdqa xmm15,XMMWORD[224+r11] lea rsp,[248+r11] $L$do_avx512_epilogue: mov rdi,QWORD[8+rsp] ;WIN64 epilogue mov rsi,QWORD[16+rsp] DB 0F3h,0C3h ;repret $L$SEH_end_poly1305_blocks_avx512: ALIGN 32 poly1305_init_base2_44: mov QWORD[8+rsp],rdi ;WIN64 prologue mov QWORD[16+rsp],rsi mov rax,rsp $L$SEH_begin_poly1305_init_base2_44: mov rdi,rcx mov rsi,rdx mov rdx,r8 xor rax,rax mov QWORD[rdi],rax mov QWORD[8+rdi],rax mov QWORD[16+rdi],rax $L$init_base2_44: lea r10,[poly1305_blocks_vpmadd52] lea r11,[poly1305_emit_base2_44] mov rax,0x0ffffffc0fffffff mov rcx,0x0ffffffc0ffffffc and rax,QWORD[rsi] mov r8,0x00000fffffffffff and rcx,QWORD[8+rsi] mov r9,0x00000fffffffffff and r8,rax shrd rax,rcx,44 mov QWORD[40+rdi],r8 and rax,r9 shr rcx,24 mov QWORD[48+rdi],rax lea rax,[rax*4+rax] mov QWORD[56+rdi],rcx shl rax,2 lea rcx,[rcx*4+rcx] shl rcx,2 mov QWORD[24+rdi],rax mov QWORD[32+rdi],rcx mov QWORD[64+rdi],-1 mov QWORD[rdx],r10 mov QWORD[8+rdx],r11 mov eax,1 mov rdi,QWORD[8+rsp] ;WIN64 epilogue mov rsi,QWORD[16+rsp] DB 0F3h,0C3h ;repret $L$SEH_end_poly1305_init_base2_44: ALIGN 32 poly1305_blocks_vpmadd52: mov QWORD[8+rsp],rdi ;WIN64 prologue mov QWORD[16+rsp],rsi mov rax,rsp $L$SEH_begin_poly1305_blocks_vpmadd52: mov rdi,rcx mov rsi,rdx mov rdx,r8 mov rcx,r9 shr rdx,4 jz NEAR $L$no_data_vpmadd52 shl rcx,40 mov r8,QWORD[64+rdi] mov rax,3 mov r10,1 cmp rdx,4 cmovae rax,r10 test r8,r8 cmovns rax,r10 and rax,rdx jz NEAR $L$blocks_vpmadd52_4x sub rdx,rax mov r10d,7 mov r11d,1 kmovw k7,r10d lea r10,[$L$2_44_inp_permd] kmovw k1,r11d vmovq xmm21,rcx vmovdqa64 ymm19,YMMWORD[r10] vmovdqa64 ymm20,YMMWORD[32+r10] vpermq ymm21,ymm21,0xcf vmovdqa64 ymm22,YMMWORD[64+r10] vmovdqu64 ymm16{k7}{z},[rdi] vmovdqu64 ymm3{k7}{z},[40+rdi] vmovdqu64 ymm4{k7}{z},[32+rdi] vmovdqu64 ymm5{k7}{z},[24+rdi] vmovdqa64 ymm23,YMMWORD[96+r10] vmovdqa64 ymm24,YMMWORD[128+r10] jmp NEAR $L$oop_vpmadd52 ALIGN 32 $L$oop_vpmadd52: vmovdqu32 xmm18,XMMWORD[rsi] lea rsi,[16+rsi] vpermd ymm18,ymm19,ymm18 vpsrlvq ymm18,ymm18,ymm20 vpandq ymm18,ymm18,ymm22 vporq ymm18,ymm18,ymm21 vpaddq ymm16,ymm16,ymm18 vpermq ymm0{k7}{z},ymm16,0 vpermq ymm1{k7}{z},ymm16,85 vpermq ymm2{k7}{z},ymm16,170 vpxord ymm16,ymm16,ymm16 vpxord ymm17,ymm17,ymm17 vpmadd52luq ymm16,ymm0,ymm3 vpmadd52huq ymm17,ymm0,ymm3 vpmadd52luq ymm16,ymm1,ymm4 vpmadd52huq ymm17,ymm1,ymm4 vpmadd52luq ymm16,ymm2,ymm5 vpmadd52huq ymm17,ymm2,ymm5 vpsrlvq ymm18,ymm16,ymm23 vpsllvq ymm17,ymm17,ymm24 vpandq ymm16,ymm16,ymm22 vpaddq ymm17,ymm17,ymm18 vpermq ymm17,ymm17,147 vpaddq ymm16,ymm16,ymm17 vpsrlvq ymm18,ymm16,ymm23 vpandq ymm16,ymm16,ymm22 vpermq ymm18,ymm18,147 vpaddq ymm16,ymm16,ymm18 vpermq ymm18{k1}{z},ymm16,147 vpaddq ymm16,ymm16,ymm18 vpsllq ymm18,ymm18,2 vpaddq ymm16,ymm16,ymm18 dec rax jnz NEAR $L$oop_vpmadd52 vmovdqu64 YMMWORD[rdi]{k7},ymm16 test rdx,rdx jnz NEAR $L$blocks_vpmadd52_4x $L$no_data_vpmadd52: mov rdi,QWORD[8+rsp] ;WIN64 epilogue mov rsi,QWORD[16+rsp] DB 0F3h,0C3h ;repret $L$SEH_end_poly1305_blocks_vpmadd52: ALIGN 32 poly1305_blocks_vpmadd52_4x: mov QWORD[8+rsp],rdi ;WIN64 prologue mov QWORD[16+rsp],rsi mov rax,rsp $L$SEH_begin_poly1305_blocks_vpmadd52_4x: mov rdi,rcx mov rsi,rdx mov rdx,r8 mov rcx,r9 shr rdx,4 jz NEAR $L$no_data_vpmadd52_4x shl rcx,40 mov r8,QWORD[64+rdi] $L$blocks_vpmadd52_4x: vpbroadcastq ymm31,rcx vmovdqa64 ymm28,YMMWORD[$L$x_mask44] mov eax,5 vmovdqa64 ymm29,YMMWORD[$L$x_mask42] kmovw k1,eax test r8,r8 js NEAR $L$init_vpmadd52 vmovq xmm0,QWORD[rdi] vmovq xmm1,QWORD[8+rdi] vmovq xmm2,QWORD[16+rdi] test rdx,3 jnz NEAR $L$blocks_vpmadd52_2x_do $L$blocks_vpmadd52_4x_do: vpbroadcastq ymm3,QWORD[64+rdi] vpbroadcastq ymm4,QWORD[96+rdi] vpbroadcastq ymm5,QWORD[128+rdi] vpbroadcastq ymm16,QWORD[160+rdi] $L$blocks_vpmadd52_4x_key_loaded: vpsllq ymm17,ymm5,2 vpaddq ymm17,ymm17,ymm5 vpsllq ymm17,ymm17,2 test rdx,7 jz NEAR $L$blocks_vpmadd52_8x vmovdqu64 ymm26,YMMWORD[rsi] vmovdqu64 ymm27,YMMWORD[32+rsi] lea rsi,[64+rsi] vpunpcklqdq ymm25,ymm26,ymm27 vpunpckhqdq ymm27,ymm26,ymm27 vpsrlq ymm26,ymm27,24 vporq ymm26,ymm26,ymm31 vpaddq ymm2,ymm2,ymm26 vpandq ymm24,ymm25,ymm28 vpsrlq ymm25,ymm25,44 vpsllq ymm27,ymm27,20 vporq ymm25,ymm25,ymm27 vpandq ymm25,ymm25,ymm28 sub rdx,4 jz NEAR $L$tail_vpmadd52_4x jmp NEAR $L$oop_vpmadd52_4x ud2 ALIGN 32 $L$init_vpmadd52: vmovq xmm16,QWORD[24+rdi] vmovq xmm2,QWORD[56+rdi] vmovq xmm17,QWORD[32+rdi] vmovq xmm3,QWORD[40+rdi] vmovq xmm4,QWORD[48+rdi] vmovdqa ymm0,ymm3 vmovdqa ymm1,ymm4 vmovdqa ymm5,ymm2 mov eax,2 $L$mul_init_vpmadd52: vpxorq ymm18,ymm18,ymm18 vpmadd52luq ymm18,ymm16,ymm2 vpxorq ymm19,ymm19,ymm19 vpmadd52huq ymm19,ymm16,ymm2 vpxorq ymm20,ymm20,ymm20 vpmadd52luq ymm20,ymm17,ymm2 vpxorq ymm21,ymm21,ymm21 vpmadd52huq ymm21,ymm17,ymm2 vpxorq ymm22,ymm22,ymm22 vpmadd52luq ymm22,ymm3,ymm2 vpxorq ymm23,ymm23,ymm23 vpmadd52huq ymm23,ymm3,ymm2 vpmadd52luq ymm18,ymm3,ymm0 vpmadd52huq ymm19,ymm3,ymm0 vpmadd52luq ymm20,ymm4,ymm0 vpmadd52huq ymm21,ymm4,ymm0 vpmadd52luq ymm22,ymm5,ymm0 vpmadd52huq ymm23,ymm5,ymm0 vpmadd52luq ymm18,ymm17,ymm1 vpmadd52huq ymm19,ymm17,ymm1 vpmadd52luq ymm20,ymm3,ymm1 vpmadd52huq ymm21,ymm3,ymm1 vpmadd52luq ymm22,ymm4,ymm1 vpmadd52huq ymm23,ymm4,ymm1 vpsrlq ymm30,ymm18,44 vpsllq ymm19,ymm19,8 vpandq ymm0,ymm18,ymm28 vpaddq ymm19,ymm19,ymm30 vpaddq ymm20,ymm20,ymm19 vpsrlq ymm30,ymm20,44 vpsllq ymm21,ymm21,8 vpandq ymm1,ymm20,ymm28 vpaddq ymm21,ymm21,ymm30 vpaddq ymm22,ymm22,ymm21 vpsrlq ymm30,ymm22,42 vpsllq ymm23,ymm23,10 vpandq ymm2,ymm22,ymm29 vpaddq ymm23,ymm23,ymm30 vpaddq ymm0,ymm0,ymm23 vpsllq ymm23,ymm23,2 vpaddq ymm0,ymm0,ymm23 vpsrlq ymm30,ymm0,44 vpandq ymm0,ymm0,ymm28 vpaddq ymm1,ymm1,ymm30 dec eax jz NEAR $L$done_init_vpmadd52 vpunpcklqdq ymm4,ymm1,ymm4 vpbroadcastq xmm1,xmm1 vpunpcklqdq ymm5,ymm2,ymm5 vpbroadcastq xmm2,xmm2 vpunpcklqdq ymm3,ymm0,ymm3 vpbroadcastq xmm0,xmm0 vpsllq ymm16,ymm4,2 vpsllq ymm17,ymm5,2 vpaddq ymm16,ymm16,ymm4 vpaddq ymm17,ymm17,ymm5 vpsllq ymm16,ymm16,2 vpsllq ymm17,ymm17,2 jmp NEAR $L$mul_init_vpmadd52 ud2 ALIGN 32 $L$done_init_vpmadd52: vinserti128 ymm4,ymm1,xmm4,1 vinserti128 ymm5,ymm2,xmm5,1 vinserti128 ymm3,ymm0,xmm3,1 vpermq ymm4,ymm4,216 vpermq ymm5,ymm5,216 vpermq ymm3,ymm3,216 vpsllq ymm16,ymm4,2 vpaddq ymm16,ymm16,ymm4 vpsllq ymm16,ymm16,2 vmovq xmm0,QWORD[rdi] vmovq xmm1,QWORD[8+rdi] vmovq xmm2,QWORD[16+rdi] test rdx,3 jnz NEAR $L$done_init_vpmadd52_2x vmovdqu64 YMMWORD[64+rdi],ymm3 vpbroadcastq ymm3,xmm3 vmovdqu64 YMMWORD[96+rdi],ymm4 vpbroadcastq ymm4,xmm4 vmovdqu64 YMMWORD[128+rdi],ymm5 vpbroadcastq ymm5,xmm5 vmovdqu64 YMMWORD[160+rdi],ymm16 vpbroadcastq ymm16,xmm16 jmp NEAR $L$blocks_vpmadd52_4x_key_loaded ud2 ALIGN 32 $L$done_init_vpmadd52_2x: vmovdqu64 YMMWORD[64+rdi],ymm3 vpsrldq ymm3,ymm3,8 vmovdqu64 YMMWORD[96+rdi],ymm4 vpsrldq ymm4,ymm4,8 vmovdqu64 YMMWORD[128+rdi],ymm5 vpsrldq ymm5,ymm5,8 vmovdqu64 YMMWORD[160+rdi],ymm16 vpsrldq ymm16,ymm16,8 jmp NEAR $L$blocks_vpmadd52_2x_key_loaded ud2 ALIGN 32 $L$blocks_vpmadd52_2x_do: vmovdqu64 ymm5{k1}{z},[((128+8))+rdi] vmovdqu64 ymm16{k1}{z},[((160+8))+rdi] vmovdqu64 ymm3{k1}{z},[((64+8))+rdi] vmovdqu64 ymm4{k1}{z},[((96+8))+rdi] $L$blocks_vpmadd52_2x_key_loaded: vmovdqu64 ymm26,YMMWORD[rsi] vpxorq ymm27,ymm27,ymm27 lea rsi,[32+rsi] vpunpcklqdq ymm25,ymm26,ymm27 vpunpckhqdq ymm27,ymm26,ymm27 vpsrlq ymm26,ymm27,24 vporq ymm26,ymm26,ymm31 vpaddq ymm2,ymm2,ymm26 vpandq ymm24,ymm25,ymm28 vpsrlq ymm25,ymm25,44 vpsllq ymm27,ymm27,20 vporq ymm25,ymm25,ymm27 vpandq ymm25,ymm25,ymm28 jmp NEAR $L$tail_vpmadd52_2x ud2 ALIGN 32 $L$oop_vpmadd52_4x: vpaddq ymm0,ymm0,ymm24 vpaddq ymm1,ymm1,ymm25 vpxorq ymm18,ymm18,ymm18 vpmadd52luq ymm18,ymm16,ymm2 vpxorq ymm19,ymm19,ymm19 vpmadd52huq ymm19,ymm16,ymm2 vpxorq ymm20,ymm20,ymm20 vpmadd52luq ymm20,ymm17,ymm2 vpxorq ymm21,ymm21,ymm21 vpmadd52huq ymm21,ymm17,ymm2 vpxorq ymm22,ymm22,ymm22 vpmadd52luq ymm22,ymm3,ymm2 vpxorq ymm23,ymm23,ymm23 vpmadd52huq ymm23,ymm3,ymm2 vmovdqu64 ymm26,YMMWORD[rsi] vmovdqu64 ymm27,YMMWORD[32+rsi] lea rsi,[64+rsi] vpmadd52luq ymm18,ymm3,ymm0 vpmadd52huq ymm19,ymm3,ymm0 vpmadd52luq ymm20,ymm4,ymm0 vpmadd52huq ymm21,ymm4,ymm0 vpmadd52luq ymm22,ymm5,ymm0 vpmadd52huq ymm23,ymm5,ymm0 vpunpcklqdq ymm25,ymm26,ymm27 vpunpckhqdq ymm27,ymm26,ymm27 vpmadd52luq ymm18,ymm17,ymm1 vpmadd52huq ymm19,ymm17,ymm1 vpmadd52luq ymm20,ymm3,ymm1 vpmadd52huq ymm21,ymm3,ymm1 vpmadd52luq ymm22,ymm4,ymm1 vpmadd52huq ymm23,ymm4,ymm1 vpsrlq ymm30,ymm18,44 vpsllq ymm19,ymm19,8 vpandq ymm0,ymm18,ymm28 vpaddq ymm19,ymm19,ymm30 vpsrlq ymm26,ymm27,24 vporq ymm26,ymm26,ymm31 vpaddq ymm20,ymm20,ymm19 vpsrlq ymm30,ymm20,44 vpsllq ymm21,ymm21,8 vpandq ymm1,ymm20,ymm28 vpaddq ymm21,ymm21,ymm30 vpandq ymm24,ymm25,ymm28 vpsrlq ymm25,ymm25,44 vpsllq ymm27,ymm27,20 vpaddq ymm22,ymm22,ymm21 vpsrlq ymm30,ymm22,42 vpsllq ymm23,ymm23,10 vpandq ymm2,ymm22,ymm29 vpaddq ymm23,ymm23,ymm30 vpaddq ymm2,ymm2,ymm26 vpaddq ymm0,ymm0,ymm23 vpsllq ymm23,ymm23,2 vpaddq ymm0,ymm0,ymm23 vporq ymm25,ymm25,ymm27 vpandq ymm25,ymm25,ymm28 vpsrlq ymm30,ymm0,44 vpandq ymm0,ymm0,ymm28 vpaddq ymm1,ymm1,ymm30 sub rdx,4 jnz NEAR $L$oop_vpmadd52_4x $L$tail_vpmadd52_4x: vmovdqu64 ymm5,YMMWORD[128+rdi] vmovdqu64 ymm16,YMMWORD[160+rdi] vmovdqu64 ymm3,YMMWORD[64+rdi] vmovdqu64 ymm4,YMMWORD[96+rdi] $L$tail_vpmadd52_2x: vpsllq ymm17,ymm5,2 vpaddq ymm17,ymm17,ymm5 vpsllq ymm17,ymm17,2 vpaddq ymm0,ymm0,ymm24 vpaddq ymm1,ymm1,ymm25 vpxorq ymm18,ymm18,ymm18 vpmadd52luq ymm18,ymm16,ymm2 vpxorq ymm19,ymm19,ymm19 vpmadd52huq ymm19,ymm16,ymm2 vpxorq ymm20,ymm20,ymm20 vpmadd52luq ymm20,ymm17,ymm2 vpxorq ymm21,ymm21,ymm21 vpmadd52huq ymm21,ymm17,ymm2 vpxorq ymm22,ymm22,ymm22 vpmadd52luq ymm22,ymm3,ymm2 vpxorq ymm23,ymm23,ymm23 vpmadd52huq ymm23,ymm3,ymm2 vpmadd52luq ymm18,ymm3,ymm0 vpmadd52huq ymm19,ymm3,ymm0 vpmadd52luq ymm20,ymm4,ymm0 vpmadd52huq ymm21,ymm4,ymm0 vpmadd52luq ymm22,ymm5,ymm0 vpmadd52huq ymm23,ymm5,ymm0 vpmadd52luq ymm18,ymm17,ymm1 vpmadd52huq ymm19,ymm17,ymm1 vpmadd52luq ymm20,ymm3,ymm1 vpmadd52huq ymm21,ymm3,ymm1 vpmadd52luq ymm22,ymm4,ymm1 vpmadd52huq ymm23,ymm4,ymm1 mov eax,1 kmovw k1,eax vpsrldq ymm24,ymm18,8 vpsrldq ymm0,ymm19,8 vpsrldq ymm25,ymm20,8 vpsrldq ymm1,ymm21,8 vpaddq ymm18,ymm18,ymm24 vpaddq ymm19,ymm19,ymm0 vpsrldq ymm26,ymm22,8 vpsrldq ymm2,ymm23,8 vpaddq ymm20,ymm20,ymm25 vpaddq ymm21,ymm21,ymm1 vpermq ymm24,ymm18,0x2 vpermq ymm0,ymm19,0x2 vpaddq ymm22,ymm22,ymm26 vpaddq ymm23,ymm23,ymm2 vpermq ymm25,ymm20,0x2 vpermq ymm1,ymm21,0x2 vpaddq ymm18{k1}{z},ymm18,ymm24 vpaddq ymm19{k1}{z},ymm19,ymm0 vpermq ymm26,ymm22,0x2 vpermq ymm2,ymm23,0x2 vpaddq ymm20{k1}{z},ymm20,ymm25 vpaddq ymm21{k1}{z},ymm21,ymm1 vpaddq ymm22{k1}{z},ymm22,ymm26 vpaddq ymm23{k1}{z},ymm23,ymm2 vpsrlq ymm30,ymm18,44 vpsllq ymm19,ymm19,8 vpandq ymm0,ymm18,ymm28 vpaddq ymm19,ymm19,ymm30 vpaddq ymm20,ymm20,ymm19 vpsrlq ymm30,ymm20,44 vpsllq ymm21,ymm21,8 vpandq ymm1,ymm20,ymm28 vpaddq ymm21,ymm21,ymm30 vpaddq ymm22,ymm22,ymm21 vpsrlq ymm30,ymm22,42 vpsllq ymm23,ymm23,10 vpandq ymm2,ymm22,ymm29 vpaddq ymm23,ymm23,ymm30 vpaddq ymm0,ymm0,ymm23 vpsllq ymm23,ymm23,2 vpaddq ymm0,ymm0,ymm23 vpsrlq ymm30,ymm0,44 vpandq ymm0,ymm0,ymm28 vpaddq ymm1,ymm1,ymm30 sub rdx,2 ja NEAR $L$blocks_vpmadd52_4x_do vmovq QWORD[rdi],xmm0 vmovq QWORD[8+rdi],xmm1 vmovq QWORD[16+rdi],xmm2 vzeroall $L$no_data_vpmadd52_4x: mov rdi,QWORD[8+rsp] ;WIN64 epilogue mov rsi,QWORD[16+rsp] DB 0F3h,0C3h ;repret $L$SEH_end_poly1305_blocks_vpmadd52_4x: ALIGN 32 poly1305_blocks_vpmadd52_8x: mov QWORD[8+rsp],rdi ;WIN64 prologue mov QWORD[16+rsp],rsi mov rax,rsp $L$SEH_begin_poly1305_blocks_vpmadd52_8x: mov rdi,rcx mov rsi,rdx mov rdx,r8 mov rcx,r9 shr rdx,4 jz NEAR $L$no_data_vpmadd52_8x shl rcx,40 mov r8,QWORD[64+rdi] vmovdqa64 ymm28,YMMWORD[$L$x_mask44] vmovdqa64 ymm29,YMMWORD[$L$x_mask42] test r8,r8 js NEAR $L$init_vpmadd52 vmovq xmm0,QWORD[rdi] vmovq xmm1,QWORD[8+rdi] vmovq xmm2,QWORD[16+rdi] $L$blocks_vpmadd52_8x: vmovdqu64 ymm5,YMMWORD[128+rdi] vmovdqu64 ymm16,YMMWORD[160+rdi] vmovdqu64 ymm3,YMMWORD[64+rdi] vmovdqu64 ymm4,YMMWORD[96+rdi] vpsllq ymm17,ymm5,2 vpaddq ymm17,ymm17,ymm5 vpsllq ymm17,ymm17,2 vpbroadcastq ymm8,xmm5 vpbroadcastq ymm6,xmm3 vpbroadcastq ymm7,xmm4 vpxorq ymm18,ymm18,ymm18 vpmadd52luq ymm18,ymm16,ymm8 vpxorq ymm19,ymm19,ymm19 vpmadd52huq ymm19,ymm16,ymm8 vpxorq ymm20,ymm20,ymm20 vpmadd52luq ymm20,ymm17,ymm8 vpxorq ymm21,ymm21,ymm21 vpmadd52huq ymm21,ymm17,ymm8 vpxorq ymm22,ymm22,ymm22 vpmadd52luq ymm22,ymm3,ymm8 vpxorq ymm23,ymm23,ymm23 vpmadd52huq ymm23,ymm3,ymm8 vpmadd52luq ymm18,ymm3,ymm6 vpmadd52huq ymm19,ymm3,ymm6 vpmadd52luq ymm20,ymm4,ymm6 vpmadd52huq ymm21,ymm4,ymm6 vpmadd52luq ymm22,ymm5,ymm6 vpmadd52huq ymm23,ymm5,ymm6 vpmadd52luq ymm18,ymm17,ymm7 vpmadd52huq ymm19,ymm17,ymm7 vpmadd52luq ymm20,ymm3,ymm7 vpmadd52huq ymm21,ymm3,ymm7 vpmadd52luq ymm22,ymm4,ymm7 vpmadd52huq ymm23,ymm4,ymm7 vpsrlq ymm30,ymm18,44 vpsllq ymm19,ymm19,8 vpandq ymm6,ymm18,ymm28 vpaddq ymm19,ymm19,ymm30 vpaddq ymm20,ymm20,ymm19 vpsrlq ymm30,ymm20,44 vpsllq ymm21,ymm21,8 vpandq ymm7,ymm20,ymm28 vpaddq ymm21,ymm21,ymm30 vpaddq ymm22,ymm22,ymm21 vpsrlq ymm30,ymm22,42 vpsllq ymm23,ymm23,10 vpandq ymm8,ymm22,ymm29 vpaddq ymm23,ymm23,ymm30 vpaddq ymm6,ymm6,ymm23 vpsllq ymm23,ymm23,2 vpaddq ymm6,ymm6,ymm23 vpsrlq ymm30,ymm6,44 vpandq ymm6,ymm6,ymm28 vpaddq ymm7,ymm7,ymm30 vpunpcklqdq ymm26,ymm8,ymm5 vpunpckhqdq ymm5,ymm8,ymm5 vpunpcklqdq ymm24,ymm6,ymm3 vpunpckhqdq ymm3,ymm6,ymm3 vpunpcklqdq ymm25,ymm7,ymm4 vpunpckhqdq ymm4,ymm7,ymm4 vshufi64x2 zmm8,zmm26,zmm5,0x44 vshufi64x2 zmm6,zmm24,zmm3,0x44 vshufi64x2 zmm7,zmm25,zmm4,0x44 vmovdqu64 zmm26,ZMMWORD[rsi] vmovdqu64 zmm27,ZMMWORD[64+rsi] lea rsi,[128+rsi] vpsllq zmm10,zmm8,2 vpsllq zmm9,zmm7,2 vpaddq zmm10,zmm10,zmm8 vpaddq zmm9,zmm9,zmm7 vpsllq zmm10,zmm10,2 vpsllq zmm9,zmm9,2 vpbroadcastq zmm31,rcx vpbroadcastq zmm28,xmm28 vpbroadcastq zmm29,xmm29 vpbroadcastq zmm16,xmm9 vpbroadcastq zmm17,xmm10 vpbroadcastq zmm3,xmm6 vpbroadcastq zmm4,xmm7 vpbroadcastq zmm5,xmm8 vpunpcklqdq zmm25,zmm26,zmm27 vpunpckhqdq zmm27,zmm26,zmm27 vpsrlq zmm26,zmm27,24 vporq zmm26,zmm26,zmm31 vpaddq zmm2,zmm2,zmm26 vpandq zmm24,zmm25,zmm28 vpsrlq zmm25,zmm25,44 vpsllq zmm27,zmm27,20 vporq zmm25,zmm25,zmm27 vpandq zmm25,zmm25,zmm28 sub rdx,8 jz NEAR $L$tail_vpmadd52_8x jmp NEAR $L$oop_vpmadd52_8x ALIGN 32 $L$oop_vpmadd52_8x: vpaddq zmm0,zmm0,zmm24 vpaddq zmm1,zmm1,zmm25 vpxorq zmm18,zmm18,zmm18 vpmadd52luq zmm18,zmm16,zmm2 vpxorq zmm19,zmm19,zmm19 vpmadd52huq zmm19,zmm16,zmm2 vpxorq zmm20,zmm20,zmm20 vpmadd52luq zmm20,zmm17,zmm2 vpxorq zmm21,zmm21,zmm21 vpmadd52huq zmm21,zmm17,zmm2 vpxorq zmm22,zmm22,zmm22 vpmadd52luq zmm22,zmm3,zmm2 vpxorq zmm23,zmm23,zmm23 vpmadd52huq zmm23,zmm3,zmm2 vmovdqu64 zmm26,ZMMWORD[rsi] vmovdqu64 zmm27,ZMMWORD[64+rsi] lea rsi,[128+rsi] vpmadd52luq zmm18,zmm3,zmm0 vpmadd52huq zmm19,zmm3,zmm0 vpmadd52luq zmm20,zmm4,zmm0 vpmadd52huq zmm21,zmm4,zmm0 vpmadd52luq zmm22,zmm5,zmm0 vpmadd52huq zmm23,zmm5,zmm0 vpunpcklqdq zmm25,zmm26,zmm27 vpunpckhqdq zmm27,zmm26,zmm27 vpmadd52luq zmm18,zmm17,zmm1 vpmadd52huq zmm19,zmm17,zmm1 vpmadd52luq zmm20,zmm3,zmm1 vpmadd52huq zmm21,zmm3,zmm1 vpmadd52luq zmm22,zmm4,zmm1 vpmadd52huq zmm23,zmm4,zmm1 vpsrlq zmm30,zmm18,44 vpsllq zmm19,zmm19,8 vpandq zmm0,zmm18,zmm28 vpaddq zmm19,zmm19,zmm30 vpsrlq zmm26,zmm27,24 vporq zmm26,zmm26,zmm31 vpaddq zmm20,zmm20,zmm19 vpsrlq zmm30,zmm20,44 vpsllq zmm21,zmm21,8 vpandq zmm1,zmm20,zmm28 vpaddq zmm21,zmm21,zmm30 vpandq zmm24,zmm25,zmm28 vpsrlq zmm25,zmm25,44 vpsllq zmm27,zmm27,20 vpaddq zmm22,zmm22,zmm21 vpsrlq zmm30,zmm22,42 vpsllq zmm23,zmm23,10 vpandq zmm2,zmm22,zmm29 vpaddq zmm23,zmm23,zmm30 vpaddq zmm2,zmm2,zmm26 vpaddq zmm0,zmm0,zmm23 vpsllq zmm23,zmm23,2 vpaddq zmm0,zmm0,zmm23 vporq zmm25,zmm25,zmm27 vpandq zmm25,zmm25,zmm28 vpsrlq zmm30,zmm0,44 vpandq zmm0,zmm0,zmm28 vpaddq zmm1,zmm1,zmm30 sub rdx,8 jnz NEAR $L$oop_vpmadd52_8x $L$tail_vpmadd52_8x: vpaddq zmm0,zmm0,zmm24 vpaddq zmm1,zmm1,zmm25 vpxorq zmm18,zmm18,zmm18 vpmadd52luq zmm18,zmm9,zmm2 vpxorq zmm19,zmm19,zmm19 vpmadd52huq zmm19,zmm9,zmm2 vpxorq zmm20,zmm20,zmm20 vpmadd52luq zmm20,zmm10,zmm2 vpxorq zmm21,zmm21,zmm21 vpmadd52huq zmm21,zmm10,zmm2 vpxorq zmm22,zmm22,zmm22 vpmadd52luq zmm22,zmm6,zmm2 vpxorq zmm23,zmm23,zmm23 vpmadd52huq zmm23,zmm6,zmm2 vpmadd52luq zmm18,zmm6,zmm0 vpmadd52huq zmm19,zmm6,zmm0 vpmadd52luq zmm20,zmm7,zmm0 vpmadd52huq zmm21,zmm7,zmm0 vpmadd52luq zmm22,zmm8,zmm0 vpmadd52huq zmm23,zmm8,zmm0 vpmadd52luq zmm18,zmm10,zmm1 vpmadd52huq zmm19,zmm10,zmm1 vpmadd52luq zmm20,zmm6,zmm1 vpmadd52huq zmm21,zmm6,zmm1 vpmadd52luq zmm22,zmm7,zmm1 vpmadd52huq zmm23,zmm7,zmm1 mov eax,1 kmovw k1,eax vpsrldq zmm24,zmm18,8 vpsrldq zmm0,zmm19,8 vpsrldq zmm25,zmm20,8 vpsrldq zmm1,zmm21,8 vpaddq zmm18,zmm18,zmm24 vpaddq zmm19,zmm19,zmm0 vpsrldq zmm26,zmm22,8 vpsrldq zmm2,zmm23,8 vpaddq zmm20,zmm20,zmm25 vpaddq zmm21,zmm21,zmm1 vpermq zmm24,zmm18,0x2 vpermq zmm0,zmm19,0x2 vpaddq zmm22,zmm22,zmm26 vpaddq zmm23,zmm23,zmm2 vpermq zmm25,zmm20,0x2 vpermq zmm1,zmm21,0x2 vpaddq zmm18,zmm18,zmm24 vpaddq zmm19,zmm19,zmm0 vpermq zmm26,zmm22,0x2 vpermq zmm2,zmm23,0x2 vpaddq zmm20,zmm20,zmm25 vpaddq zmm21,zmm21,zmm1 vextracti64x4 ymm24,zmm18,1 vextracti64x4 ymm0,zmm19,1 vpaddq zmm22,zmm22,zmm26 vpaddq zmm23,zmm23,zmm2 vextracti64x4 ymm25,zmm20,1 vextracti64x4 ymm1,zmm21,1 vextracti64x4 ymm26,zmm22,1 vextracti64x4 ymm2,zmm23,1 vpaddq ymm18{k1}{z},ymm18,ymm24 vpaddq ymm19{k1}{z},ymm19,ymm0 vpaddq ymm20{k1}{z},ymm20,ymm25 vpaddq ymm21{k1}{z},ymm21,ymm1 vpaddq ymm22{k1}{z},ymm22,ymm26 vpaddq ymm23{k1}{z},ymm23,ymm2 vpsrlq ymm30,ymm18,44 vpsllq ymm19,ymm19,8 vpandq ymm0,ymm18,ymm28 vpaddq ymm19,ymm19,ymm30 vpaddq ymm20,ymm20,ymm19 vpsrlq ymm30,ymm20,44 vpsllq ymm21,ymm21,8 vpandq ymm1,ymm20,ymm28 vpaddq ymm21,ymm21,ymm30 vpaddq ymm22,ymm22,ymm21 vpsrlq ymm30,ymm22,42 vpsllq ymm23,ymm23,10 vpandq ymm2,ymm22,ymm29 vpaddq ymm23,ymm23,ymm30 vpaddq ymm0,ymm0,ymm23 vpsllq ymm23,ymm23,2 vpaddq ymm0,ymm0,ymm23 vpsrlq ymm30,ymm0,44 vpandq ymm0,ymm0,ymm28 vpaddq ymm1,ymm1,ymm30 vmovq QWORD[rdi],xmm0 vmovq QWORD[8+rdi],xmm1 vmovq QWORD[16+rdi],xmm2 vzeroall $L$no_data_vpmadd52_8x: mov rdi,QWORD[8+rsp] ;WIN64 epilogue mov rsi,QWORD[16+rsp] DB 0F3h,0C3h ;repret $L$SEH_end_poly1305_blocks_vpmadd52_8x: ALIGN 32 poly1305_emit_base2_44: mov QWORD[8+rsp],rdi ;WIN64 prologue mov QWORD[16+rsp],rsi mov rax,rsp $L$SEH_begin_poly1305_emit_base2_44: mov rdi,rcx mov rsi,rdx mov rdx,r8 mov r8,QWORD[rdi] mov r9,QWORD[8+rdi] mov r10,QWORD[16+rdi] mov rax,r9 shr r9,20 shl rax,44 mov rcx,r10 shr r10,40 shl rcx,24 add r8,rax adc r9,rcx adc r10,0 mov rax,r8 add r8,5 mov rcx,r9 adc r9,0 adc r10,0 shr r10,2 cmovnz rax,r8 cmovnz rcx,r9 add rax,QWORD[rdx] adc rcx,QWORD[8+rdx] mov QWORD[rsi],rax mov QWORD[8+rsi],rcx mov rdi,QWORD[8+rsp] ;WIN64 epilogue mov rsi,QWORD[16+rsp] DB 0F3h,0C3h ;repret $L$SEH_end_poly1305_emit_base2_44: ALIGN 64 $L$const: $L$mask24: DD 0x0ffffff,0,0x0ffffff,0,0x0ffffff,0,0x0ffffff,0 $L$129: DD 16777216,0,16777216,0,16777216,0,16777216,0 $L$mask26: DD 0x3ffffff,0,0x3ffffff,0,0x3ffffff,0,0x3ffffff,0 $L$permd_avx2: DD 2,2,2,3,2,0,2,1 $L$permd_avx512: DD 0,0,0,1,0,2,0,3,0,4,0,5,0,6,0,7 $L$2_44_inp_permd: DD 0,1,1,2,2,3,7,7 $L$2_44_inp_shift: DQ 0,12,24,64 $L$2_44_mask: DQ 0xfffffffffff,0xfffffffffff,0x3ffffffffff,0xffffffffffffffff $L$2_44_shift_rgt: DQ 44,44,42,64 $L$2_44_shift_lft: DQ 8,8,10,64 ALIGN 64 $L$x_mask44: DQ 0xfffffffffff,0xfffffffffff,0xfffffffffff,0xfffffffffff DQ 0xfffffffffff,0xfffffffffff,0xfffffffffff,0xfffffffffff $L$x_mask42: DQ 0x3ffffffffff,0x3ffffffffff,0x3ffffffffff,0x3ffffffffff DQ 0x3ffffffffff,0x3ffffffffff,0x3ffffffffff,0x3ffffffffff DB 80,111,108,121,49,51,48,53,32,102,111,114,32,120,56,54 DB 95,54,52,44,32,67,82,89,80,84,79,71,65,77,83,32 DB 98,121,32,60,97,112,112,114,111,64,111,112,101,110,115,115 DB 108,46,111,114,103,62,0 ALIGN 16 global xor128_encrypt_n_pad ALIGN 16 xor128_encrypt_n_pad: sub rdx,r8 sub rcx,r8 mov r10,r9 shr r9,4 jz NEAR $L$tail_enc nop $L$oop_enc_xmm: movdqu xmm0,XMMWORD[r8*1+rdx] pxor xmm0,XMMWORD[r8] movdqu XMMWORD[r8*1+rcx],xmm0 movdqa XMMWORD[r8],xmm0 lea r8,[16+r8] dec r9 jnz NEAR $L$oop_enc_xmm and r10,15 jz NEAR $L$done_enc $L$tail_enc: mov r9,16 sub r9,r10 xor eax,eax $L$oop_enc_byte: mov al,BYTE[r8*1+rdx] xor al,BYTE[r8] mov BYTE[r8*1+rcx],al mov BYTE[r8],al lea r8,[1+r8] dec r10 jnz NEAR $L$oop_enc_byte xor eax,eax $L$oop_enc_pad: mov BYTE[r8],al lea r8,[1+r8] dec r9 jnz NEAR $L$oop_enc_pad $L$done_enc: mov rax,r8 DB 0F3h,0C3h ;repret global xor128_decrypt_n_pad ALIGN 16 xor128_decrypt_n_pad: sub rdx,r8 sub rcx,r8 mov r10,r9 shr r9,4 jz NEAR $L$tail_dec nop $L$oop_dec_xmm: movdqu xmm0,XMMWORD[r8*1+rdx] movdqa xmm1,XMMWORD[r8] pxor xmm1,xmm0 movdqu XMMWORD[r8*1+rcx],xmm1 movdqa XMMWORD[r8],xmm0 lea r8,[16+r8] dec r9 jnz NEAR $L$oop_dec_xmm pxor xmm1,xmm1 and r10,15 jz NEAR $L$done_dec $L$tail_dec: mov r9,16 sub r9,r10 xor eax,eax xor r11,r11 $L$oop_dec_byte: mov r11b,BYTE[r8*1+rdx] mov al,BYTE[r8] xor al,r11b mov BYTE[r8*1+rcx],al mov BYTE[r8],r11b lea r8,[1+r8] dec r10 jnz NEAR $L$oop_dec_byte xor eax,eax $L$oop_dec_pad: mov BYTE[r8],al lea r8,[1+r8] dec r9 jnz NEAR $L$oop_dec_pad $L$done_dec: mov rax,r8 DB 0F3h,0C3h ;repret EXTERN __imp_RtlVirtualUnwind ALIGN 16 se_handler: push rsi push rdi push rbx push rbp push r12 push r13 push r14 push r15 pushfq sub rsp,64 mov rax,QWORD[120+r8] mov rbx,QWORD[248+r8] mov rsi,QWORD[8+r9] mov r11,QWORD[56+r9] mov r10d,DWORD[r11] lea r10,[r10*1+rsi] cmp rbx,r10 jb NEAR $L$common_seh_tail mov rax,QWORD[152+r8] mov r10d,DWORD[4+r11] lea r10,[r10*1+rsi] cmp rbx,r10 jae NEAR $L$common_seh_tail lea rax,[48+rax] mov rbx,QWORD[((-8))+rax] mov rbp,QWORD[((-16))+rax] mov r12,QWORD[((-24))+rax] mov r13,QWORD[((-32))+rax] mov r14,QWORD[((-40))+rax] mov r15,QWORD[((-48))+rax] mov QWORD[144+r8],rbx mov QWORD[160+r8],rbp mov QWORD[216+r8],r12 mov QWORD[224+r8],r13 mov QWORD[232+r8],r14 mov QWORD[240+r8],r15 jmp NEAR $L$common_seh_tail ALIGN 16 avx_handler: push rsi push rdi push rbx push rbp push r12 push r13 push r14 push r15 pushfq sub rsp,64 mov rax,QWORD[120+r8] mov rbx,QWORD[248+r8] mov rsi,QWORD[8+r9] mov r11,QWORD[56+r9] mov r10d,DWORD[r11] lea r10,[r10*1+rsi] cmp rbx,r10 jb NEAR $L$common_seh_tail mov rax,QWORD[152+r8] mov r10d,DWORD[4+r11] lea r10,[r10*1+rsi] cmp rbx,r10 jae NEAR $L$common_seh_tail mov rax,QWORD[208+r8] lea rsi,[80+rax] lea rax,[248+rax] lea rdi,[512+r8] mov ecx,20 DD 0xa548f3fc $L$common_seh_tail: mov rdi,QWORD[8+rax] mov rsi,QWORD[16+rax] mov QWORD[152+r8],rax mov QWORD[168+r8],rsi mov QWORD[176+r8],rdi mov rdi,QWORD[40+r9] mov rsi,r8 mov ecx,154 DD 0xa548f3fc mov rsi,r9 xor rcx,rcx mov rdx,QWORD[8+rsi] mov r8,QWORD[rsi] mov r9,QWORD[16+rsi] mov r10,QWORD[40+rsi] lea r11,[56+rsi] lea r12,[24+rsi] mov QWORD[32+rsp],r10 mov QWORD[40+rsp],r11 mov QWORD[48+rsp],r12 mov QWORD[56+rsp],rcx call QWORD[__imp_RtlVirtualUnwind] mov eax,1 add rsp,64 popfq pop r15 pop r14 pop r13 pop r12 pop rbp pop rbx pop rdi pop rsi DB 0F3h,0C3h ;repret section .pdata rdata align=4 ALIGN 4 DD $L$SEH_begin_poly1305_init wrt ..imagebase DD $L$SEH_end_poly1305_init wrt ..imagebase DD $L$SEH_info_poly1305_init wrt ..imagebase DD $L$SEH_begin_poly1305_blocks wrt ..imagebase DD $L$SEH_end_poly1305_blocks wrt ..imagebase DD $L$SEH_info_poly1305_blocks wrt ..imagebase DD $L$SEH_begin_poly1305_emit wrt ..imagebase DD $L$SEH_end_poly1305_emit wrt ..imagebase DD $L$SEH_info_poly1305_emit wrt ..imagebase DD $L$SEH_begin_poly1305_blocks_avx wrt ..imagebase DD $L$base2_64_avx wrt ..imagebase DD $L$SEH_info_poly1305_blocks_avx_1 wrt ..imagebase DD $L$base2_64_avx wrt ..imagebase DD $L$even_avx wrt ..imagebase DD $L$SEH_info_poly1305_blocks_avx_2 wrt ..imagebase DD $L$even_avx wrt ..imagebase DD $L$SEH_end_poly1305_blocks_avx wrt ..imagebase DD $L$SEH_info_poly1305_blocks_avx_3 wrt ..imagebase DD $L$SEH_begin_poly1305_emit_avx wrt ..imagebase DD $L$SEH_end_poly1305_emit_avx wrt ..imagebase DD $L$SEH_info_poly1305_emit_avx wrt ..imagebase DD $L$SEH_begin_poly1305_blocks_avx2 wrt ..imagebase DD $L$base2_64_avx2 wrt ..imagebase DD $L$SEH_info_poly1305_blocks_avx2_1 wrt ..imagebase DD $L$base2_64_avx2 wrt ..imagebase DD $L$even_avx2 wrt ..imagebase DD $L$SEH_info_poly1305_blocks_avx2_2 wrt ..imagebase DD $L$even_avx2 wrt ..imagebase DD $L$SEH_end_poly1305_blocks_avx2 wrt ..imagebase DD $L$SEH_info_poly1305_blocks_avx2_3 wrt ..imagebase DD $L$SEH_begin_poly1305_blocks_avx512 wrt ..imagebase DD $L$SEH_end_poly1305_blocks_avx512 wrt ..imagebase DD $L$SEH_info_poly1305_blocks_avx512 wrt ..imagebase section .xdata rdata align=8 ALIGN 8 $L$SEH_info_poly1305_init: DB 9,0,0,0 DD se_handler wrt ..imagebase DD $L$SEH_begin_poly1305_init wrt ..imagebase,$L$SEH_begin_poly1305_init wrt ..imagebase $L$SEH_info_poly1305_blocks: DB 9,0,0,0 DD se_handler wrt ..imagebase DD $L$blocks_body wrt ..imagebase,$L$blocks_epilogue wrt ..imagebase $L$SEH_info_poly1305_emit: DB 9,0,0,0 DD se_handler wrt ..imagebase DD $L$SEH_begin_poly1305_emit wrt ..imagebase,$L$SEH_begin_poly1305_emit wrt ..imagebase $L$SEH_info_poly1305_blocks_avx_1: DB 9,0,0,0 DD se_handler wrt ..imagebase DD $L$blocks_avx_body wrt ..imagebase,$L$blocks_avx_epilogue wrt ..imagebase $L$SEH_info_poly1305_blocks_avx_2: DB 9,0,0,0 DD se_handler wrt ..imagebase DD $L$base2_64_avx_body wrt ..imagebase,$L$base2_64_avx_epilogue wrt ..imagebase $L$SEH_info_poly1305_blocks_avx_3: DB 9,0,0,0 DD avx_handler wrt ..imagebase DD $L$do_avx_body wrt ..imagebase,$L$do_avx_epilogue wrt ..imagebase $L$SEH_info_poly1305_emit_avx: DB 9,0,0,0 DD se_handler wrt ..imagebase DD $L$SEH_begin_poly1305_emit_avx wrt ..imagebase,$L$SEH_begin_poly1305_emit_avx wrt ..imagebase $L$SEH_info_poly1305_blocks_avx2_1: DB 9,0,0,0 DD se_handler wrt ..imagebase DD $L$blocks_avx2_body wrt ..imagebase,$L$blocks_avx2_epilogue wrt ..imagebase $L$SEH_info_poly1305_blocks_avx2_2: DB 9,0,0,0 DD se_handler wrt ..imagebase DD $L$base2_64_avx2_body wrt ..imagebase,$L$base2_64_avx2_epilogue wrt ..imagebase $L$SEH_info_poly1305_blocks_avx2_3: DB 9,0,0,0 DD avx_handler wrt ..imagebase DD $L$do_avx2_body wrt ..imagebase,$L$do_avx2_epilogue wrt ..imagebase $L$SEH_info_poly1305_blocks_avx512: DB 9,0,0,0 DD avx_handler wrt ..imagebase DD $L$do_avx512_body wrt ..imagebase,$L$do_avx512_epilogue wrt ..imagebase
libsrc/target/nc100/padinitserial.asm
jpoikela/z88dk
640
103274
SECTION code_clib PUBLIC padinitserial PUBLIC _padinitserial .padinitserial ._padinitserial jp 0xb85a
Validation/pyFrame3DD-master/gcc-master/gcc/ada/par-ch8.adb
djamal2727/Main-Bearing-Analytical-Model
0
24708
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- P A R . C H 8 -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2020, 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. 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 COPYING3. If not, go to -- -- http://www.gnu.org/licenses for a complete copy of the license. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ pragma Style_Checks (All_Checks); -- Turn off subprogram body ordering check. Subprograms are in order -- by RM section rather than alphabetical separate (Par) package body Ch8 is ----------------------- -- Local Subprograms -- ----------------------- procedure Append_Use_Clause (Item_List : List_Id; Use_Node : Node_Id; Is_First : in out Boolean; Is_Last : in out Boolean); -- Append a use_clause to the Item_List, appropriately setting the Prev_Ids -- and More_Ids flags for each split use node. The flags Is_First and -- Is_Last track position of subtype_marks or names within the original -- use_clause. procedure P_Use_Package_Clause (Item_List : List_Id); procedure P_Use_Type_Clause (Item_List : List_Id); ----------------------- -- Append_Use_Clause -- ----------------------- procedure Append_Use_Clause (Item_List : List_Id; Use_Node : Node_Id; Is_First : in out Boolean; Is_Last : in out Boolean) is begin if Token /= Tok_Comma then if not Is_First then Set_Prev_Ids (Use_Node); end if; Append (Use_Node, Item_List); Is_Last := True; else Set_More_Ids (Use_Node); if not Is_First then Set_Prev_Ids (Use_Node); else Is_First := False; end if; Append (Use_Node, Item_List); Scan; -- Past comma end if; end Append_Use_Clause; --------------------- -- 8.4 Use Clause -- --------------------- -- USE_CLAUSE ::= USE_PACKAGE_CLAUSE | USE_TYPE_CLAUSE -- The caller has checked that the initial token is USE -- Error recovery: cannot raise Error_Resync procedure P_Use_Clause (Item_List : List_Id) is begin Scan; -- past USE if Token = Tok_Type or else Token = Tok_All then P_Use_Type_Clause (Item_List); else P_Use_Package_Clause (Item_List); end if; end P_Use_Clause; ----------------------------- -- 8.4 Use Package Clause -- ----------------------------- -- USE_PACKAGE_CLAUSE ::= use package_NAME {, package_NAME}; -- The caller has scanned out the USE keyword -- Error recovery: cannot raise Error_Resync procedure P_Use_Package_Clause (Item_List : List_Id) is Is_First : Boolean := True; Is_Last : Boolean := False; Use_Node : Node_Id; Use_Sloc : constant Source_Ptr := Prev_Token_Ptr; begin if Token = Tok_Package then Error_Msg_SC ("PACKAGE should not appear here"); Scan; -- Past PACKAGE end if; -- Loop through names in a single use_package_clause, generating an -- N_Use_Package_Clause node for each name encountered. loop Use_Node := New_Node (N_Use_Package_Clause, Use_Sloc); Set_Name (Use_Node, P_Qualified_Simple_Name); -- Locally chain each name's use-package node Append_Use_Clause (Item_List, Use_Node, Is_First, Is_Last); exit when Is_Last; end loop; TF_Semicolon; end P_Use_Package_Clause; -------------------------- -- 8.4 Use Type Clause -- -------------------------- -- USE_TYPE_CLAUSE ::= use [ALL] type SUBTYPE_MARK {, SUBTYPE_MARK}; -- The caller has checked that the initial token is USE, scanned it out -- and that the current token is either ALL or TYPE. -- Note: Use of ALL is an Ada 2012 feature -- Error recovery: cannot raise Error_Resync procedure P_Use_Type_Clause (Item_List : List_Id) is Use_Sloc : constant Source_Ptr := Prev_Token_Ptr; All_Present : Boolean; Is_First : Boolean := True; Is_Last : Boolean := False; Use_Node : Node_Id; begin if Token = Tok_All then Error_Msg_Ada_2012_Feature ("|`USE ALL TYPE`", Token_Ptr); All_Present := True; Scan; -- Past ALL if Token /= Tok_Type then Error_Msg_SC ("TYPE expected"); end if; else pragma Assert (Token = Tok_Type); All_Present := False; end if; if Ada_Version = Ada_83 then Error_Msg_SC ("(Ada 83) use type not allowed!"); end if; Scan; -- Past TYPE -- Loop through subtype_marks in one use_type_clause, generating a -- separate N_Use_Type_Clause node for each subtype_mark encountered. loop Use_Node := New_Node (N_Use_Type_Clause, Use_Sloc); Set_All_Present (Use_Node, All_Present); Set_Used_Operations (Use_Node, No_Elist); Set_Subtype_Mark (Use_Node, P_Subtype_Mark); No_Constraint; -- Locally chain each subtype_mark's use-type node Append_Use_Clause (Item_List, Use_Node, Is_First, Is_Last); exit when Is_Last; end loop; TF_Semicolon; end P_Use_Type_Clause; ------------------------------- -- 8.5 Renaming Declaration -- ------------------------------- -- Object renaming declarations and exception renaming declarations -- are parsed by P_Identifier_Declaration (3.3.1) -- Subprogram renaming declarations are parsed by P_Subprogram (6.1) -- Package renaming declarations are parsed by P_Package (7.1) -- Generic renaming declarations are parsed by P_Generic (12.1) ---------------------------------------- -- 8.5.1 Object Renaming Declaration -- ---------------------------------------- -- Parsed by P_Identifier_Declarations (3.3.1) ------------------------------------------- -- 8.5.2 Exception Renaming Declaration -- ------------------------------------------- -- Parsed by P_Identifier_Declarations (3.3.1) ----------------------------------------- -- 8.5.3 Package Renaming Declaration -- ----------------------------------------- -- Parsed by P_Package (7.1) -------------------------------------------- -- 8.5.4 Subprogram Renaming Declaration -- -------------------------------------------- -- Parsed by P_Subprogram (6.1) ----------------------------------------- -- 8.5.2 Generic Renaming Declaration -- ----------------------------------------- -- Parsed by P_Generic (12.1) end Ch8;
include/xlib.ads
docandrew/troodon
5
19504
<reponame>docandrew/troodon pragma Ada_2012; pragma Style_Checks (Off); with Interfaces.C; use Interfaces.C; with Interfaces.C.Strings; with X11; with System; package Xlib is XlibSpecificationRelease : constant := 6; -- /usr/include/X11/Xlib.h:36 X_HAVE_UTF8_STRING : constant := 1; -- /usr/include/X11/Xlib.h:70 -- unsupported macro: Bool int -- unsupported macro: Status int -- Troodon: remove these --True : constant := 1; -- /usr/include/X11/Xlib.h:84 --False : constant := 0; -- /usr/include/X11/Xlib.h:85 QueuedAlready : constant := 0; -- /usr/include/X11/Xlib.h:87 QueuedAfterReading : constant := 1; -- /usr/include/X11/Xlib.h:88 QueuedAfterFlush : constant := 2; -- /usr/include/X11/Xlib.h:89 -- arg-macro: function ConnectionNumber (dpy) -- return ((_XPrivDisplay)(dpy)).fd; -- arg-macro: function RootWindow (dpy, scr) -- return ScreenOfDisplay(dpy,scr).root; -- arg-macro: function DefaultScreen (dpy) -- return ((_XPrivDisplay)(dpy)).default_screen; -- arg-macro: function DefaultRootWindow (dpy) -- return ScreenOfDisplay(dpy,DefaultScreen(dpy)).root; -- arg-macro: function DefaultVisual (dpy, scr) -- return ScreenOfDisplay(dpy,scr).root_visual; -- arg-macro: function DefaultGC (dpy, scr) -- return ScreenOfDisplay(dpy,scr).default_gc; -- arg-macro: function BlackPixel (dpy, scr) -- return ScreenOfDisplay(dpy,scr).black_pixel; -- arg-macro: function WhitePixel (dpy, scr) -- return ScreenOfDisplay(dpy,scr).white_pixel; -- unsupported macro: AllPlanes ((unsigned long)~0L) -- arg-macro: function QLength (dpy) -- return ((_XPrivDisplay)(dpy)).qlen; -- arg-macro: function DisplayWidth (dpy, scr) -- return ScreenOfDisplay(dpy,scr).width; -- arg-macro: function DisplayHeight (dpy, scr) -- return ScreenOfDisplay(dpy,scr).height; -- arg-macro: function DisplayWidthMM (dpy, scr) -- return ScreenOfDisplay(dpy,scr).mwidth; -- arg-macro: function DisplayHeightMM (dpy, scr) -- return ScreenOfDisplay(dpy,scr).mheight; -- arg-macro: function DisplayPlanes (dpy, scr) -- return ScreenOfDisplay(dpy,scr).root_depth; -- arg-macro: function DisplayCells (dpy, scr) -- return DefaultVisual(dpy,scr).map_entries; -- arg-macro: function ScreenCount (dpy) -- return ((_XPrivDisplay)(dpy)).nscreens; -- arg-macro: function ServerVendor (dpy) -- return ((_XPrivDisplay)(dpy)).vendor; -- arg-macro: function ProtocolVersion (dpy) -- return ((_XPrivDisplay)(dpy)).proto_major_version; -- arg-macro: function ProtocolRevision (dpy) -- return ((_XPrivDisplay)(dpy)).proto_minor_version; -- arg-macro: function VendorRelease (dpy) -- return ((_XPrivDisplay)(dpy)).release; -- arg-macro: function DisplayString (dpy) -- return ((_XPrivDisplay)(dpy)).display_name; -- arg-macro: function DefaultDepth (dpy, scr) -- return ScreenOfDisplay(dpy,scr).root_depth; -- arg-macro: function DefaultColormap (dpy, scr) -- return ScreenOfDisplay(dpy,scr).cmap; -- arg-macro: function BitmapUnit (dpy) -- return ((_XPrivDisplay)(dpy)).bitmap_unit; -- arg-macro: function BitmapBitOrder (dpy) -- return ((_XPrivDisplay)(dpy)).bitmap_bit_order; -- arg-macro: function BitmapPad (dpy) -- return ((_XPrivDisplay)(dpy)).bitmap_pad; -- arg-macro: function ImageByteOrder (dpy) -- return ((_XPrivDisplay)(dpy)).byte_order; -- arg-macro: function NextRequest (dpy) -- return ((_XPrivDisplay)(dpy)).request + 1; -- arg-macro: function LastKnownRequestProcessed (dpy) -- return ((_XPrivDisplay)(dpy)).last_request_read; -- arg-macro: function ScreenOfDisplay (dpy, scr) -- return and((_XPrivDisplay)(dpy)).screens(scr); -- arg-macro: procedure DefaultScreenOfDisplay (dpy) -- ScreenOfDisplay(dpy,DefaultScreen(dpy)) -- arg-macro: function DisplayOfScreen (s) -- return (s).display; -- arg-macro: function RootWindowOfScreen (s) -- return (s).root; -- arg-macro: function BlackPixelOfScreen (s) -- return (s).black_pixel; -- arg-macro: function WhitePixelOfScreen (s) -- return (s).white_pixel; -- arg-macro: function DefaultColormapOfScreen (s) -- return (s).cmap; -- arg-macro: function DefaultDepthOfScreen (s) -- return (s).root_depth; -- arg-macro: function DefaultGCOfScreen (s) -- return (s).default_gc; -- arg-macro: function DefaultVisualOfScreen (s) -- return (s).root_visual; -- arg-macro: function WidthOfScreen (s) -- return (s).width; -- arg-macro: function HeightOfScreen (s) -- return (s).height; -- arg-macro: function WidthMMOfScreen (s) -- return (s).mwidth; -- arg-macro: function HeightMMOfScreen (s) -- return (s).mheight; -- arg-macro: function PlanesOfScreen (s) -- return (s).root_depth; -- arg-macro: function CellsOfScreen (s) -- return DefaultVisualOfScreen((s)).map_entries; -- arg-macro: function MinCmapsOfScreen (s) -- return (s).min_maps; -- arg-macro: function MaxCmapsOfScreen (s) -- return (s).max_maps; -- arg-macro: function DoesSaveUnders (s) -- return (s).save_unders; -- arg-macro: function DoesBackingStore (s) -- return (s).backing_store; -- arg-macro: function EventMaskOfScreen (s) -- return (s).root_input_mask; -- arg-macro: function XAllocID (dpy) -- return (*((_XPrivDisplay)(dpy)).resource_alloc)((dpy)); XNRequiredCharSet : aliased constant String := "requiredCharSet" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1110 XNQueryOrientation : aliased constant String := "queryOrientation" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1111 XNBaseFontName : aliased constant String := "baseFontName" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1112 XNOMAutomatic : aliased constant String := "omAutomatic" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1113 XNMissingCharSet : aliased constant String := "missingCharSet" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1114 XNDefaultString : aliased constant String := "defaultString" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1115 XNOrientation : aliased constant String := "orientation" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1116 XNDirectionalDependentDrawing : aliased constant String := "directionalDependentDrawing" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1117 XNContextualDrawing : aliased constant String := "contextualDrawing" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1118 XNFontInfo : aliased constant String := "fontInfo" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1119 XIMPreeditArea : constant := 16#0001#; -- /usr/include/X11/Xlib.h:1173 XIMPreeditCallbacks : constant := 16#0002#; -- /usr/include/X11/Xlib.h:1174 XIMPreeditPosition : constant := 16#0004#; -- /usr/include/X11/Xlib.h:1175 XIMPreeditNothing : constant := 16#0008#; -- /usr/include/X11/Xlib.h:1176 XIMPreeditNone : constant := 16#0010#; -- /usr/include/X11/Xlib.h:1177 XIMStatusArea : constant := 16#0100#; -- /usr/include/X11/Xlib.h:1178 XIMStatusCallbacks : constant := 16#0200#; -- /usr/include/X11/Xlib.h:1179 XIMStatusNothing : constant := 16#0400#; -- /usr/include/X11/Xlib.h:1180 XIMStatusNone : constant := 16#0800#; -- /usr/include/X11/Xlib.h:1181 XNVaNestedList : aliased constant String := "XNVaNestedList" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1183 XNQueryInputStyle : aliased constant String := "queryInputStyle" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1184 XNClientWindow : aliased constant String := "clientWindow" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1185 XNInputStyle : aliased constant String := "inputStyle" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1186 XNFocusWindow : aliased constant String := "focusWindow" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1187 XNResourceName : aliased constant String := "resourceName" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1188 XNResourceClass : aliased constant String := "resourceClass" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1189 XNGeometryCallback : aliased constant String := "geometryCallback" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1190 XNDestroyCallback : aliased constant String := "destroyCallback" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1191 XNFilterEvents : aliased constant String := "filterEvents" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1192 XNPreeditStartCallback : aliased constant String := "preeditStartCallback" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1193 XNPreeditDoneCallback : aliased constant String := "preeditDoneCallback" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1194 XNPreeditDrawCallback : aliased constant String := "preeditDrawCallback" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1195 XNPreeditCaretCallback : aliased constant String := "preeditCaretCallback" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1196 XNPreeditStateNotifyCallback : aliased constant String := "preeditStateNotifyCallback" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1197 XNPreeditAttributes : aliased constant String := "preeditAttributes" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1198 XNStatusStartCallback : aliased constant String := "statusStartCallback" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1199 XNStatusDoneCallback : aliased constant String := "statusDoneCallback" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1200 XNStatusDrawCallback : aliased constant String := "statusDrawCallback" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1201 XNStatusAttributes : aliased constant String := "statusAttributes" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1202 XNArea : aliased constant String := "area" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1203 XNAreaNeeded : aliased constant String := "areaNeeded" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1204 XNSpotLocation : aliased constant String := "spotLocation" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1205 XNColormap : aliased constant String := "colorMap" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1206 XNStdColormap : aliased constant String := "stdColorMap" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1207 XNForeground : aliased constant String := "foreground" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1208 XNBackground : aliased constant String := "background" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1209 XNBackgroundPixmap : aliased constant String := "backgroundPixmap" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1210 XNFontSet : aliased constant String := "fontSet" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1211 XNLineSpace : aliased constant String := "lineSpace" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1212 XNCursor : aliased constant String := "cursor" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1213 XNQueryIMValuesList : aliased constant String := "queryIMValuesList" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1215 XNQueryICValuesList : aliased constant String := "queryICValuesList" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1216 XNVisiblePosition : aliased constant String := "visiblePosition" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1217 XNR6PreeditCallback : aliased constant String := "r6PreeditCallback" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1218 XNStringConversionCallback : aliased constant String := "stringConversionCallback" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1219 XNStringConversion : aliased constant String := "stringConversion" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1220 XNResetState : aliased constant String := "resetState" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1221 XNHotKey : aliased constant String := "hotKey" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1222 XNHotKeyState : aliased constant String := "hotKeyState" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1223 XNPreeditState : aliased constant String := "preeditState" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1224 XNSeparatorofNestedList : aliased constant String := "separatorofNestedList" & ASCII.NUL; -- /usr/include/X11/Xlib.h:1225 XBufferOverflow : constant := -1; -- /usr/include/X11/Xlib.h:1227 XLookupNone : constant := 1; -- /usr/include/X11/Xlib.h:1228 XLookupChars : constant := 2; -- /usr/include/X11/Xlib.h:1229 XLookupKeySym : constant := 3; -- /usr/include/X11/Xlib.h:1230 XLookupBoth : constant := 4; -- /usr/include/X11/Xlib.h:1231 XIMReverse : constant := 1; -- /usr/include/X11/Xlib.h:1247 XIMUnderline : constant := (2**1); -- /usr/include/X11/Xlib.h:1248 XIMHighlight : constant := (2**2); -- /usr/include/X11/Xlib.h:1249 XIMPrimary : constant := (2**5); -- /usr/include/X11/Xlib.h:1250 XIMSecondary : constant := (2**6); -- /usr/include/X11/Xlib.h:1251 XIMTertiary : constant := (2**7); -- /usr/include/X11/Xlib.h:1252 XIMVisibleToForward : constant := (2**8); -- /usr/include/X11/Xlib.h:1253 XIMVisibleToBackword : constant := (2**9); -- /usr/include/X11/Xlib.h:1254 XIMVisibleToCenter : constant := (2**10); -- /usr/include/X11/Xlib.h:1255 XIMPreeditUnKnown : constant := 0; -- /usr/include/X11/Xlib.h:1269 XIMPreeditEnable : constant := 1; -- /usr/include/X11/Xlib.h:1270 XIMPreeditDisable : constant := (2**1); -- /usr/include/X11/Xlib.h:1271 XIMInitialState : constant := 1; -- /usr/include/X11/Xlib.h:1279 XIMPreserveState : constant := (2**1); -- /usr/include/X11/Xlib.h:1280 XIMStringConversionLeftEdge : constant := (16#00000001#); -- /usr/include/X11/Xlib.h:1284 XIMStringConversionRightEdge : constant := (16#00000002#); -- /usr/include/X11/Xlib.h:1285 XIMStringConversionTopEdge : constant := (16#00000004#); -- /usr/include/X11/Xlib.h:1286 XIMStringConversionBottomEdge : constant := (16#00000008#); -- /usr/include/X11/Xlib.h:1287 XIMStringConversionConcealed : constant := (16#00000010#); -- /usr/include/X11/Xlib.h:1288 XIMStringConversionWrapped : constant := (16#00000020#); -- /usr/include/X11/Xlib.h:1289 XIMStringConversionBuffer : constant := (16#0001#); -- /usr/include/X11/Xlib.h:1305 XIMStringConversionLine : constant := (16#0002#); -- /usr/include/X11/Xlib.h:1306 XIMStringConversionWord : constant := (16#0003#); -- /usr/include/X11/Xlib.h:1307 XIMStringConversionChar : constant := (16#0004#); -- /usr/include/X11/Xlib.h:1308 XIMStringConversionSubstitution : constant := (16#0001#); -- /usr/include/X11/Xlib.h:1312 XIMStringConversionRetrieval : constant := (16#0002#); -- /usr/include/X11/Xlib.h:1313 XIMHotKeyStateON : constant := (16#0001#); -- /usr/include/X11/Xlib.h:1378 XIMHotKeyStateOFF : constant := (16#0002#); -- /usr/include/X11/Xlib.h:1379 --Copyright 1985, 1986, 1987, 1991, 1998 The Open Group --Permission to use, copy, modify, distribute, and sell this software and its --documentation for any purpose is hereby granted without fee, provided that --the above copyright notice appear in all copies and that both that --copyright notice and this permission notice appear in supporting --documentation. --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 --OPEN GROUP 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. --Except as contained in this notice, the name of The Open Group shall not be --used in advertising or otherwise to promote the sale, use or other dealings --in this Software without prior written authorization from The Open Group. -- -- * Xlib.h - Header definition and support file for the C subroutine -- * interface library (Xlib) to the X Window System Protocol (V11). -- * Structures and symbols starting with "_" are private to the library. -- -- applications should not depend on these two headers being included! -- replace this with #include or typedef appropriate for your system -- skipped func _Xmblen -- API mentioning "UTF8" or "utf8" is an XFree86 extension, introduced in -- November 2000. Its presence is indicated through the following macro. -- The Xlib structs are full of implicit padding to properly align members. -- We can't clean that up without breaking ABI, so tell clang not to bother -- complaining about it. type XPointer is new Interfaces.C.Strings.chars_ptr; -- /usr/include/X11/Xlib.h:80 -- macros for screen oriented applications (toolkit) -- * Extensions need a way to hang private data on some structures. -- -- number returned by XRegisterExtension type u_XExtData; type u_XExtData is record number : aliased int; -- /usr/include/X11/Xlib.h:149 next : access u_XExtData; -- /usr/include/X11/Xlib.h:150 free_private : access function (arg1 : access u_XExtData) return int; -- /usr/include/X11/Xlib.h:151 private_data : XPointer; -- /usr/include/X11/Xlib.h:154 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:148 -- next item on list of data for structure -- called to free private storage -- data private to this extension. subtype XExtData is u_XExtData; -- /usr/include/X11/Xlib.h:155 -- * This file contains structures used by the extension mechanism. -- -- public to extension, cannot be changed -- extension number -- skipped anonymous struct anon_36 type XExtCodes is record extension : aliased int; -- /usr/include/X11/Xlib.h:161 major_opcode : aliased int; -- /usr/include/X11/Xlib.h:162 first_event : aliased int; -- /usr/include/X11/Xlib.h:163 first_error : aliased int; -- /usr/include/X11/Xlib.h:164 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:165 -- major op-code assigned by server -- first event number for the extension -- first error number for the extension -- * Data structure for retrieving info about pixmap formats. -- -- skipped anonymous struct anon_37 type XPixmapFormatValues is record depth : aliased int; -- /usr/include/X11/Xlib.h:172 bits_per_pixel : aliased int; -- /usr/include/X11/Xlib.h:173 scanline_pad : aliased int; -- /usr/include/X11/Xlib.h:174 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:175 -- * Data structure for setting graphics context. -- -- logical operation -- skipped anonymous struct anon_38 type XGCValues is record c_function : aliased int; -- /usr/include/X11/Xlib.h:182 plane_mask : aliased unsigned_long; -- /usr/include/X11/Xlib.h:183 foreground : aliased unsigned_long; -- /usr/include/X11/Xlib.h:184 background : aliased unsigned_long; -- /usr/include/X11/Xlib.h:185 line_width : aliased int; -- /usr/include/X11/Xlib.h:186 line_style : aliased int; -- /usr/include/X11/Xlib.h:187 cap_style : aliased int; -- /usr/include/X11/Xlib.h:188 join_style : aliased int; -- /usr/include/X11/Xlib.h:190 fill_style : aliased int; -- /usr/include/X11/Xlib.h:191 fill_rule : aliased int; -- /usr/include/X11/Xlib.h:193 arc_mode : aliased int; -- /usr/include/X11/Xlib.h:194 tile : aliased X11.Pixmap; -- /usr/include/X11/Xlib.h:195 stipple : aliased X11.Pixmap; -- /usr/include/X11/Xlib.h:196 ts_x_origin : aliased int; -- /usr/include/X11/Xlib.h:197 ts_y_origin : aliased int; -- /usr/include/X11/Xlib.h:198 the_font : aliased X11.Font; -- /usr/include/X11/Xlib.h:199 subwindow_mode : aliased int; -- /usr/include/X11/Xlib.h:200 graphics_exposures : aliased int; -- /usr/include/X11/Xlib.h:201 clip_x_origin : aliased int; -- /usr/include/X11/Xlib.h:202 clip_y_origin : aliased int; -- /usr/include/X11/Xlib.h:203 clip_mask : aliased X11.Pixmap; -- /usr/include/X11/Xlib.h:204 dash_offset : aliased int; -- /usr/include/X11/Xlib.h:205 dashes : aliased char; -- /usr/include/X11/Xlib.h:206 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:207 -- plane mask -- foreground pixel -- background pixel -- line width -- LineSolid, LineOnOffDash, LineDoubleDash -- CapNotLast, CapButt, -- CapRound, CapProjecting -- JoinMiter, JoinRound, JoinBevel -- FillSolid, FillTiled, -- FillStippled, FillOpaeueStippled -- EvenOddRule, WindingRule -- ArcChord, ArcPieSlice -- tile pixmap for tiling operations -- stipple 1 plane pixmap for stipping -- offset for tile or stipple operations -- default text font for text operations -- ClipByChildren, IncludeInferiors -- boolean, should exposures be generated -- origin for clipping -- bitmap clipping; other calls for rects -- patterned/dashed line information -- * Graphics context. The contents of this structure are implementation -- * dependent. A GC should be treated as opaque by application code. -- type u_XGC is null record; -- incomplete struct -- hook for extension to hang data -- protocol ID for graphics context -- there is more to this structure, but it is private to Xlib type GC is access all u_XGC; -- /usr/include/X11/Xlib.h:222 -- * Visual structure; contains information about colormapping possible. -- -- hook for extension to hang data -- skipped anonymous struct anon_39 type Visual is record ext_data : access XExtData; -- /usr/include/X11/Xlib.h:228 the_visualid : aliased X11.VisualID; -- /usr/include/X11/Xlib.h:229 c_class : aliased int; -- /usr/include/X11/Xlib.h:231 red_mask : aliased unsigned_long; -- /usr/include/X11/Xlib.h:235 green_mask : aliased unsigned_long; -- /usr/include/X11/Xlib.h:235 blue_mask : aliased unsigned_long; -- /usr/include/X11/Xlib.h:235 bits_per_rgb : aliased int; -- /usr/include/X11/Xlib.h:236 map_entries : aliased int; -- /usr/include/X11/Xlib.h:237 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:238 -- visual id of this visual -- C++ class of screen (monochrome, etc.) -- class of screen (monochrome, etc.) -- mask values -- log base 2 of distinct color values -- color map entries -- * Depth structure; contains information for each possible depth. -- -- this depth (Z) of the depth -- skipped anonymous struct anon_40 type Depth is record depth : aliased int; -- /usr/include/X11/Xlib.h:244 nvisuals : aliased int; -- /usr/include/X11/Xlib.h:245 visuals : access Visual; -- /usr/include/X11/Xlib.h:246 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:247 -- number of Visual types at this depth -- list of visuals possible at this depth -- * Information about the screen. The contents of this structure are -- * implementation dependent. A Screen should be treated as opaque -- * by application code. -- -- Forward declare before use for C++ -- (Troodon - edit) --type u_XDisplay is null record; -- incomplete struct --type XDisplay is null record; -- An 8 by max_keypermod array of modifiers -- * Display datatype maintaining display specific data. -- * The contents of this structure are implementation dependent. -- * A Display should be treated as opaque by application code. -- --(Troodon: edit) type Display is null record; -- /usr/include/X11/Xlib.h:487 -- hook for extension to hang data -- skipped anonymous struct anon_41 type Screen is record ext_data : access XExtData; -- /usr/include/X11/Xlib.h:258 u_display : access Display; -- /usr/include/X11/Xlib.h:259 root : aliased X11.Window; -- /usr/include/X11/Xlib.h:260 width : aliased int; -- /usr/include/X11/Xlib.h:261 height : aliased int; -- /usr/include/X11/Xlib.h:261 mwidth : aliased int; -- /usr/include/X11/Xlib.h:262 mheight : aliased int; -- /usr/include/X11/Xlib.h:262 ndepths : aliased int; -- /usr/include/X11/Xlib.h:263 depths : access Depth; -- /usr/include/X11/Xlib.h:264 root_depth : aliased int; -- /usr/include/X11/Xlib.h:265 root_visual : access Visual; -- /usr/include/X11/Xlib.h:266 default_gc : GC; -- /usr/include/X11/Xlib.h:267 cmap : aliased X11.Colormap; -- /usr/include/X11/Xlib.h:268 white_pixel : aliased unsigned_long; -- /usr/include/X11/Xlib.h:269 black_pixel : aliased unsigned_long; -- /usr/include/X11/Xlib.h:270 max_maps : aliased int; -- /usr/include/X11/Xlib.h:271 min_maps : aliased int; -- /usr/include/X11/Xlib.h:271 backing_store : aliased int; -- /usr/include/X11/Xlib.h:272 save_unders : aliased int; -- /usr/include/X11/Xlib.h:273 root_input_mask : aliased long; -- /usr/include/X11/Xlib.h:274 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:275 -- back pointer to display structure -- Root window id. -- width and height of screen -- width and height of in millimeters -- number of depths possible -- list of allowable depths on the screen -- bits per pixel -- root visual -- GC for the root root visual -- default color map -- White and Black pixel values -- max and min color maps -- Never, WhenMapped, Always -- initial root input mask -- * Format structure; describes ZFormat data the screen will understand. -- -- hook for extension to hang data -- skipped anonymous struct anon_42 type ScreenFormat is record ext_data : access XExtData; -- /usr/include/X11/Xlib.h:281 depth : aliased int; -- /usr/include/X11/Xlib.h:282 bits_per_pixel : aliased int; -- /usr/include/X11/Xlib.h:283 scanline_pad : aliased int; -- /usr/include/X11/Xlib.h:284 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:285 -- depth of this image format -- bits/pixel at this depth -- scanline must padded to this multiple -- * Data structure for setting window attributes. -- -- background or None or ParentRelative -- skipped anonymous struct anon_43 type XSetWindowAttributes is record background_pixmap : aliased X11.Pixmap; -- /usr/include/X11/Xlib.h:291 background_pixel : aliased unsigned_long; -- /usr/include/X11/Xlib.h:292 border_pixmap : aliased X11.Pixmap; -- /usr/include/X11/Xlib.h:293 border_pixel : aliased unsigned_long; -- /usr/include/X11/Xlib.h:294 bit_gravity : aliased int; -- /usr/include/X11/Xlib.h:295 win_gravity : aliased int; -- /usr/include/X11/Xlib.h:296 backing_store : aliased int; -- /usr/include/X11/Xlib.h:297 backing_planes : aliased unsigned_long; -- /usr/include/X11/Xlib.h:298 backing_pixel : aliased unsigned_long; -- /usr/include/X11/Xlib.h:299 save_under : aliased int; -- /usr/include/X11/Xlib.h:300 event_mask : aliased long; -- /usr/include/X11/Xlib.h:301 do_not_propagate_mask : aliased long; -- /usr/include/X11/Xlib.h:302 override_redirect : aliased int; -- /usr/include/X11/Xlib.h:303 the_colormap : aliased X11.Colormap; -- /usr/include/X11/Xlib.h:304 the_cursor : aliased X11.Cursor; -- /usr/include/X11/Xlib.h:305 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:306 -- background pixel -- border of the window -- border pixel value -- one of bit gravity values -- one of the window gravity values -- NotUseful, WhenMapped, Always -- planes to be preserved if possible -- value to use in restoring planes -- should bits under be saved? (popups) -- set of events that should be saved -- set of events that should not propagate -- boolean value for override-redirect -- color map to be associated with window -- cursor to be displayed (or None) -- location of window -- skipped anonymous struct anon_44 type XWindowAttributes is record x : aliased int; -- /usr/include/X11/Xlib.h:309 y : aliased int; -- /usr/include/X11/Xlib.h:309 width : aliased int; -- /usr/include/X11/Xlib.h:310 height : aliased int; -- /usr/include/X11/Xlib.h:310 border_width : aliased int; -- /usr/include/X11/Xlib.h:311 depth : aliased int; -- /usr/include/X11/Xlib.h:312 the_visual : access Visual; -- /usr/include/X11/Xlib.h:313 root : aliased X11.Window; -- /usr/include/X11/Xlib.h:314 c_class : aliased int; -- /usr/include/X11/Xlib.h:316 bit_gravity : aliased int; -- /usr/include/X11/Xlib.h:320 win_gravity : aliased int; -- /usr/include/X11/Xlib.h:321 backing_store : aliased int; -- /usr/include/X11/Xlib.h:322 backing_planes : aliased unsigned_long; -- /usr/include/X11/Xlib.h:323 backing_pixel : aliased unsigned_long; -- /usr/include/X11/Xlib.h:324 save_under : aliased int; -- /usr/include/X11/Xlib.h:325 the_colormap : aliased X11.Colormap; -- /usr/include/X11/Xlib.h:326 map_installed : aliased int; -- /usr/include/X11/Xlib.h:327 map_state : aliased int; -- /usr/include/X11/Xlib.h:328 all_event_masks : aliased long; -- /usr/include/X11/Xlib.h:329 your_event_mask : aliased long; -- /usr/include/X11/Xlib.h:330 do_not_propagate_mask : aliased long; -- /usr/include/X11/Xlib.h:331 override_redirect : aliased int; -- /usr/include/X11/Xlib.h:332 the_screen : access Screen; -- /usr/include/X11/Xlib.h:333 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:334 -- width and height of window -- border width of window -- depth of window -- the associated visual structure -- root of screen containing window -- C++ InputOutput, InputOnly -- InputOutput, InputOnly -- one of bit gravity values -- one of the window gravity values -- NotUseful, WhenMapped, Always -- planes to be preserved if possible -- value to be used when restoring planes -- boolean, should bits under be saved? -- color map to be associated with window -- boolean, is color map currently installed -- IsUnmapped, IsUnviewable, IsViewable -- set of events all people have interest in -- my event mask -- set of events that should not propagate -- boolean value for override-redirect -- back pointer to correct screen -- * Data structure for host setting; getting routines. -- * -- -- for example FamilyInternet -- skipped anonymous struct anon_45 type XHostAddress is record family : aliased int; -- /usr/include/X11/Xlib.h:342 length : aliased int; -- /usr/include/X11/Xlib.h:343 address : Interfaces.C.Strings.chars_ptr; -- /usr/include/X11/Xlib.h:344 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:345 -- length of address, in bytes -- pointer to where to find the bytes -- * Data structure for ServerFamilyInterpreted addresses in host routines -- -- length of type string, in bytes -- skipped anonymous struct anon_46 type XServerInterpretedAddress is record typelength : aliased int; -- /usr/include/X11/Xlib.h:351 valuelength : aliased int; -- /usr/include/X11/Xlib.h:352 c_type : Interfaces.C.Strings.chars_ptr; -- /usr/include/X11/Xlib.h:353 value : Interfaces.C.Strings.chars_ptr; -- /usr/include/X11/Xlib.h:354 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:355 -- length of value string, in bytes -- pointer to where to find the type string -- pointer to where to find the address -- * Data structure for "image" data, used by image manipulation routines. -- -- size of image type u_XImage; type funcs is record create_image : access function (arg1 : access Display; arg2 : access Visual; arg3 : unsigned; arg4 : int; arg5 : int; arg6 : Interfaces.C.Strings.chars_ptr; arg7 : unsigned; arg8 : unsigned; arg9 : int; arg10 : int) return access u_XImage; -- /usr/include/X11/Xlib.h:377 destroy_image : access function (arg1 : access u_XImage) return int; -- /usr/include/X11/Xlib.h:388 get_pixel : access function (arg1 : access u_XImage; arg2 : int; arg3 : int) return unsigned_long; -- /usr/include/X11/Xlib.h:389 put_pixel : access function (arg1 : access u_XImage; arg2 : int; arg3 : int; arg4 : unsigned_long) return int; -- /usr/include/X11/Xlib.h:390 sub_image : access function (arg1 : access u_XImage; arg2 : int; arg3 : int; arg4 : unsigned; arg5 : unsigned) return access u_XImage; -- /usr/include/X11/Xlib.h:391 add_pixel : access function (arg1 : access u_XImage; arg2 : long) return int; -- /usr/include/X11/Xlib.h:392 end record with Convention => C_Pass_By_Copy; type u_XImage is record width : aliased int; -- /usr/include/X11/Xlib.h:361 height : aliased int; -- /usr/include/X11/Xlib.h:361 xoffset : aliased int; -- /usr/include/X11/Xlib.h:362 format : aliased int; -- /usr/include/X11/Xlib.h:363 data : Interfaces.C.Strings.chars_ptr; -- /usr/include/X11/Xlib.h:364 byte_order : aliased int; -- /usr/include/X11/Xlib.h:365 bitmap_unit : aliased int; -- /usr/include/X11/Xlib.h:366 bitmap_bit_order : aliased int; -- /usr/include/X11/Xlib.h:367 bitmap_pad : aliased int; -- /usr/include/X11/Xlib.h:368 depth : aliased int; -- /usr/include/X11/Xlib.h:369 bytes_per_line : aliased int; -- /usr/include/X11/Xlib.h:370 bits_per_pixel : aliased int; -- /usr/include/X11/Xlib.h:371 red_mask : aliased unsigned_long; -- /usr/include/X11/Xlib.h:372 green_mask : aliased unsigned_long; -- /usr/include/X11/Xlib.h:373 blue_mask : aliased unsigned_long; -- /usr/include/X11/Xlib.h:374 obdata : XPointer; -- /usr/include/X11/Xlib.h:375 f : aliased funcs; -- /usr/include/X11/Xlib.h:393 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:360 -- number of pixels offset in X direction -- XYBitmap, XYPixmap, ZPixmap -- pointer to image data -- data byte order, LSBFirst, MSBFirst -- quant. of scanline 8, 16, 32 -- LSBFirst, MSBFirst -- 8, 16, 32 either XY or ZPixmap -- depth of image -- accelarator to next line -- bits per pixel (ZPixmap) -- bits in z arrangement -- hook for the object routines to hang on -- image manipulation routines -- display -- visual -- depth -- format -- offset -- data -- width -- height -- bitmap_pad -- bytes_per_line subtype XImage is u_XImage; -- /usr/include/X11/Xlib.h:394 -- * Data structure for XReconfigureWindow -- -- skipped anonymous struct anon_47 type XWindowChanges is record x : aliased int; -- /usr/include/X11/Xlib.h:400 y : aliased int; -- /usr/include/X11/Xlib.h:400 width : aliased int; -- /usr/include/X11/Xlib.h:401 height : aliased int; -- /usr/include/X11/Xlib.h:401 border_width : aliased int; -- /usr/include/X11/Xlib.h:402 sibling : aliased X11.Window; -- /usr/include/X11/Xlib.h:403 stack_mode : aliased int; -- /usr/include/X11/Xlib.h:404 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:405 -- * Data structure used by color operations -- -- skipped anonymous struct anon_48 type XColor is record pixel : aliased unsigned_long; -- /usr/include/X11/Xlib.h:411 red : aliased unsigned_short; -- /usr/include/X11/Xlib.h:412 green : aliased unsigned_short; -- /usr/include/X11/Xlib.h:412 blue : aliased unsigned_short; -- /usr/include/X11/Xlib.h:412 flags : aliased char; -- /usr/include/X11/Xlib.h:413 pad : aliased char; -- /usr/include/X11/Xlib.h:414 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:415 -- do_red, do_green, do_blue -- * Data structures for graphics operations. On most machines, these are -- * congruent with the wire protocol structures, so reformatting the data -- * can be avoided on these architectures. -- -- skipped anonymous struct anon_49 type XSegment is record x1 : aliased short; -- /usr/include/X11/Xlib.h:423 y1 : aliased short; -- /usr/include/X11/Xlib.h:423 x2 : aliased short; -- /usr/include/X11/Xlib.h:423 y2 : aliased short; -- /usr/include/X11/Xlib.h:423 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:424 -- skipped anonymous struct anon_50 type XPoint is record x : aliased short; -- /usr/include/X11/Xlib.h:427 y : aliased short; -- /usr/include/X11/Xlib.h:427 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:428 -- skipped anonymous struct anon_51 type XRectangle is record x : aliased short; -- /usr/include/X11/Xlib.h:431 y : aliased short; -- /usr/include/X11/Xlib.h:431 width : aliased unsigned_short; -- /usr/include/X11/Xlib.h:432 height : aliased unsigned_short; -- /usr/include/X11/Xlib.h:432 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:433 -- skipped anonymous struct anon_52 type XArc is record x : aliased short; -- /usr/include/X11/Xlib.h:436 y : aliased short; -- /usr/include/X11/Xlib.h:436 width : aliased unsigned_short; -- /usr/include/X11/Xlib.h:437 height : aliased unsigned_short; -- /usr/include/X11/Xlib.h:437 angle1 : aliased short; -- /usr/include/X11/Xlib.h:438 angle2 : aliased short; -- /usr/include/X11/Xlib.h:438 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:439 -- Data structure for XChangeKeyboardControl -- skipped anonymous struct anon_53 type XKeyboardControl is record key_click_percent : aliased int; -- /usr/include/X11/Xlib.h:445 bell_percent : aliased int; -- /usr/include/X11/Xlib.h:446 bell_pitch : aliased int; -- /usr/include/X11/Xlib.h:447 bell_duration : aliased int; -- /usr/include/X11/Xlib.h:448 led : aliased int; -- /usr/include/X11/Xlib.h:449 led_mode : aliased int; -- /usr/include/X11/Xlib.h:450 key : aliased int; -- /usr/include/X11/Xlib.h:451 auto_repeat_mode : aliased int; -- /usr/include/X11/Xlib.h:452 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:453 -- On, Off, Default -- Data structure for XGetKeyboardControl -- skipped anonymous struct anon_54 subtype XKeyboardState_array1030 is Interfaces.C.char_array (0 .. 31); type XKeyboardState is record key_click_percent : aliased int; -- /usr/include/X11/Xlib.h:458 bell_percent : aliased int; -- /usr/include/X11/Xlib.h:459 bell_pitch : aliased unsigned; -- /usr/include/X11/Xlib.h:460 bell_duration : aliased unsigned; -- /usr/include/X11/Xlib.h:460 led_mask : aliased unsigned_long; -- /usr/include/X11/Xlib.h:461 global_auto_repeat : aliased int; -- /usr/include/X11/Xlib.h:462 auto_repeats : aliased XKeyboardState_array1030; -- /usr/include/X11/Xlib.h:463 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:464 -- Data structure for XGetMotionEvents. -- skipped anonymous struct anon_55 type XTimeCoord is record the_time : aliased X11.Time; -- /usr/include/X11/Xlib.h:469 x : aliased short; -- /usr/include/X11/Xlib.h:470 y : aliased short; -- /usr/include/X11/Xlib.h:470 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:471 -- Data structure for X{Set,Get}ModifierMapping -- The server's max # of keys per modifier -- skipped anonymous struct anon_56 type XModifierKeymap is record max_keypermod : aliased int; -- /usr/include/X11/Xlib.h:476 modifiermap : access X11.KeyCode; -- /usr/include/X11/Xlib.h:477 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:478 -- Forward declare before use for C++ type u_XPrivate is null record; -- incomplete struct type u_XrmHashBucketRec is null record; -- incomplete struct -- hook for extension to hang data -- skipped anonymous struct anon_57 -- Network socket. -- major version of server's X protocol -- minor version of servers X protocol -- vendor of the server hardware -- allocator function -- screen byte order, LSBFirst, MSBFirst -- padding and data requirements -- padding requirements on bitmaps -- LeastSignificant or MostSignificant -- number of pixmap formats in list -- pixmap format list -- release of the server -- Length of input event queue -- seq number of last event read -- sequence number of last request. -- maximum number 32 bit words in request -- "host:display" string used on this connect -- default screen for operations -- number of screens on this server -- pointer to list of screens -- size of motion buffer -- minimum defined keycode -- maximum defined keycode -- contents of defaults from server -- there is more to this structure, but it is private to Xlib --(Troodon: edit) --type u_XPrivDisplay is access all anon_57; -- /usr/include/X11/Xlib.h:550 -- * Definitions of specific events. -- -- of event -- skipped anonymous struct anon_58 type XKeyEvent is record c_type : aliased int; -- /usr/include/X11/Xlib.h:558 serial : aliased unsigned_long; -- /usr/include/X11/Xlib.h:559 send_event : aliased int; -- /usr/include/X11/Xlib.h:560 the_display : access Display; -- /usr/include/X11/Xlib.h:561 the_window : aliased X11.Window; -- /usr/include/X11/Xlib.h:562 root : aliased X11.Window; -- /usr/include/X11/Xlib.h:563 subwindow : aliased X11.Window; -- /usr/include/X11/Xlib.h:564 the_time : aliased X11.Time; -- /usr/include/X11/Xlib.h:565 x : aliased int; -- /usr/include/X11/Xlib.h:566 y : aliased int; -- /usr/include/X11/Xlib.h:566 x_root : aliased int; -- /usr/include/X11/Xlib.h:567 y_root : aliased int; -- /usr/include/X11/Xlib.h:567 state : aliased unsigned; -- /usr/include/X11/Xlib.h:568 keycode : aliased unsigned; -- /usr/include/X11/Xlib.h:569 same_screen : aliased int; -- /usr/include/X11/Xlib.h:570 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:571 -- # of last request processed by server -- true if this came from a SendEvent request -- Display the event was read from -- "event" window it is reported relative to -- root window that the event occurred on -- child window -- milliseconds -- pointer x, y coordinates in event window -- coordinates relative to root -- key or button mask -- detail -- same screen flag subtype XKeyPressedEvent is XKeyEvent; -- /usr/include/X11/Xlib.h:572 subtype XKeyReleasedEvent is XKeyEvent; -- /usr/include/X11/Xlib.h:573 -- of event -- skipped anonymous struct anon_59 type XButtonEvent is record c_type : aliased int; -- /usr/include/X11/Xlib.h:576 serial : aliased unsigned_long; -- /usr/include/X11/Xlib.h:577 send_event : aliased int; -- /usr/include/X11/Xlib.h:578 the_display : access Display; -- /usr/include/X11/Xlib.h:579 the_window : aliased X11.Window; -- /usr/include/X11/Xlib.h:580 root : aliased X11.Window; -- /usr/include/X11/Xlib.h:581 subwindow : aliased X11.Window; -- /usr/include/X11/Xlib.h:582 the_time : aliased X11.Time; -- /usr/include/X11/Xlib.h:583 x : aliased int; -- /usr/include/X11/Xlib.h:584 y : aliased int; -- /usr/include/X11/Xlib.h:584 x_root : aliased int; -- /usr/include/X11/Xlib.h:585 y_root : aliased int; -- /usr/include/X11/Xlib.h:585 state : aliased unsigned; -- /usr/include/X11/Xlib.h:586 button : aliased unsigned; -- /usr/include/X11/Xlib.h:587 same_screen : aliased int; -- /usr/include/X11/Xlib.h:588 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:589 -- # of last request processed by server -- true if this came from a SendEvent request -- Display the event was read from -- "event" window it is reported relative to -- root window that the event occurred on -- child window -- milliseconds -- pointer x, y coordinates in event window -- coordinates relative to root -- key or button mask -- detail -- same screen flag subtype XButtonPressedEvent is XButtonEvent; -- /usr/include/X11/Xlib.h:590 subtype XButtonReleasedEvent is XButtonEvent; -- /usr/include/X11/Xlib.h:591 -- of event -- skipped anonymous struct anon_60 type XMotionEvent is record c_type : aliased int; -- /usr/include/X11/Xlib.h:594 serial : aliased unsigned_long; -- /usr/include/X11/Xlib.h:595 send_event : aliased int; -- /usr/include/X11/Xlib.h:596 the_display : access Display; -- /usr/include/X11/Xlib.h:597 the_window : aliased X11.Window; -- /usr/include/X11/Xlib.h:598 root : aliased X11.Window; -- /usr/include/X11/Xlib.h:599 subwindow : aliased X11.Window; -- /usr/include/X11/Xlib.h:600 the_time : aliased X11.Time; -- /usr/include/X11/Xlib.h:601 x : aliased int; -- /usr/include/X11/Xlib.h:602 y : aliased int; -- /usr/include/X11/Xlib.h:602 x_root : aliased int; -- /usr/include/X11/Xlib.h:603 y_root : aliased int; -- /usr/include/X11/Xlib.h:603 state : aliased unsigned; -- /usr/include/X11/Xlib.h:604 is_hint : aliased char; -- /usr/include/X11/Xlib.h:605 same_screen : aliased int; -- /usr/include/X11/Xlib.h:606 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:607 -- # of last request processed by server -- true if this came from a SendEvent request -- Display the event was read from -- "event" window reported relative to -- root window that the event occurred on -- child window -- milliseconds -- pointer x, y coordinates in event window -- coordinates relative to root -- key or button mask -- detail -- same screen flag subtype XPointerMovedEvent is XMotionEvent; -- /usr/include/X11/Xlib.h:608 -- of event -- skipped anonymous struct anon_61 type XCrossingEvent is record c_type : aliased int; -- /usr/include/X11/Xlib.h:611 serial : aliased unsigned_long; -- /usr/include/X11/Xlib.h:612 send_event : aliased int; -- /usr/include/X11/Xlib.h:613 the_display : access Display; -- /usr/include/X11/Xlib.h:614 the_window : aliased X11.Window; -- /usr/include/X11/Xlib.h:615 root : aliased X11.Window; -- /usr/include/X11/Xlib.h:616 subwindow : aliased X11.Window; -- /usr/include/X11/Xlib.h:617 the_time : aliased X11.Time; -- /usr/include/X11/Xlib.h:618 x : aliased int; -- /usr/include/X11/Xlib.h:619 y : aliased int; -- /usr/include/X11/Xlib.h:619 x_root : aliased int; -- /usr/include/X11/Xlib.h:620 y_root : aliased int; -- /usr/include/X11/Xlib.h:620 mode : aliased int; -- /usr/include/X11/Xlib.h:621 detail : aliased int; -- /usr/include/X11/Xlib.h:622 same_screen : aliased int; -- /usr/include/X11/Xlib.h:627 focus : aliased int; -- /usr/include/X11/Xlib.h:628 state : aliased unsigned; -- /usr/include/X11/Xlib.h:629 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:630 -- # of last request processed by server -- true if this came from a SendEvent request -- Display the event was read from -- "event" window reported relative to -- root window that the event occurred on -- child window -- milliseconds -- pointer x, y coordinates in event window -- coordinates relative to root -- NotifyNormal, NotifyGrab, NotifyUngrab -- * NotifyAncestor, NotifyVirtual, NotifyInferior, -- * NotifyNonlinear,NotifyNonlinearVirtual -- -- same screen flag -- boolean focus -- key or button mask subtype XEnterWindowEvent is XCrossingEvent; -- /usr/include/X11/Xlib.h:631 subtype XLeaveWindowEvent is XCrossingEvent; -- /usr/include/X11/Xlib.h:632 -- FocusIn or FocusOut -- skipped anonymous struct anon_62 type XFocusChangeEvent is record c_type : aliased int; -- /usr/include/X11/Xlib.h:635 serial : aliased unsigned_long; -- /usr/include/X11/Xlib.h:636 send_event : aliased int; -- /usr/include/X11/Xlib.h:637 the_display : access Display; -- /usr/include/X11/Xlib.h:638 the_window : aliased X11.Window; -- /usr/include/X11/Xlib.h:639 mode : aliased int; -- /usr/include/X11/Xlib.h:640 detail : aliased int; -- /usr/include/X11/Xlib.h:642 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:648 -- # of last request processed by server -- true if this came from a SendEvent request -- Display the event was read from -- window of event -- NotifyNormal, NotifyWhileGrabbed, -- NotifyGrab, NotifyUngrab -- * NotifyAncestor, NotifyVirtual, NotifyInferior, -- * NotifyNonlinear,NotifyNonlinearVirtual, NotifyPointer, -- * NotifyPointerRoot, NotifyDetailNone -- subtype XFocusInEvent is XFocusChangeEvent; -- /usr/include/X11/Xlib.h:649 subtype XFocusOutEvent is XFocusChangeEvent; -- /usr/include/X11/Xlib.h:650 -- generated on EnterWindow and FocusIn when KeyMapState selected -- skipped anonymous struct anon_63 subtype XKeymapEvent_array1030 is Interfaces.C.char_array (0 .. 31); type XKeymapEvent is record c_type : aliased int; -- /usr/include/X11/Xlib.h:654 serial : aliased unsigned_long; -- /usr/include/X11/Xlib.h:655 send_event : aliased int; -- /usr/include/X11/Xlib.h:656 the_display : access Display; -- /usr/include/X11/Xlib.h:657 the_window : aliased X11.Window; -- /usr/include/X11/Xlib.h:658 key_vector : aliased XKeymapEvent_array1030; -- /usr/include/X11/Xlib.h:659 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:660 -- # of last request processed by server -- true if this came from a SendEvent request -- Display the event was read from -- skipped anonymous struct anon_64 type XExposeEvent is record c_type : aliased int; -- /usr/include/X11/Xlib.h:663 serial : aliased unsigned_long; -- /usr/include/X11/Xlib.h:664 send_event : aliased int; -- /usr/include/X11/Xlib.h:665 the_display : access Display; -- /usr/include/X11/Xlib.h:666 the_window : aliased X11.Window; -- /usr/include/X11/Xlib.h:667 x : aliased int; -- /usr/include/X11/Xlib.h:668 y : aliased int; -- /usr/include/X11/Xlib.h:668 width : aliased int; -- /usr/include/X11/Xlib.h:669 height : aliased int; -- /usr/include/X11/Xlib.h:669 count : aliased int; -- /usr/include/X11/Xlib.h:670 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:671 -- # of last request processed by server -- true if this came from a SendEvent request -- Display the event was read from -- if non-zero, at least this many more -- skipped anonymous struct anon_65 type XGraphicsExposeEvent is record c_type : aliased int; -- /usr/include/X11/Xlib.h:674 serial : aliased unsigned_long; -- /usr/include/X11/Xlib.h:675 send_event : aliased int; -- /usr/include/X11/Xlib.h:676 the_display : access Display; -- /usr/include/X11/Xlib.h:677 the_drawable : aliased X11.Drawable; -- /usr/include/X11/Xlib.h:678 x : aliased int; -- /usr/include/X11/Xlib.h:679 y : aliased int; -- /usr/include/X11/Xlib.h:679 width : aliased int; -- /usr/include/X11/Xlib.h:680 height : aliased int; -- /usr/include/X11/Xlib.h:680 count : aliased int; -- /usr/include/X11/Xlib.h:681 major_code : aliased int; -- /usr/include/X11/Xlib.h:682 minor_code : aliased int; -- /usr/include/X11/Xlib.h:683 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:684 -- # of last request processed by server -- true if this came from a SendEvent request -- Display the event was read from -- if non-zero, at least this many more -- core is CopyArea or CopyPlane -- not defined in the core -- skipped anonymous struct anon_66 type XNoExposeEvent is record c_type : aliased int; -- /usr/include/X11/Xlib.h:687 serial : aliased unsigned_long; -- /usr/include/X11/Xlib.h:688 send_event : aliased int; -- /usr/include/X11/Xlib.h:689 the_display : access Display; -- /usr/include/X11/Xlib.h:690 the_drawable : aliased X11.Drawable; -- /usr/include/X11/Xlib.h:691 major_code : aliased int; -- /usr/include/X11/Xlib.h:692 minor_code : aliased int; -- /usr/include/X11/Xlib.h:693 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:694 -- # of last request processed by server -- true if this came from a SendEvent request -- Display the event was read from -- core is CopyArea or CopyPlane -- not defined in the core -- skipped anonymous struct anon_67 type XVisibilityEvent is record c_type : aliased int; -- /usr/include/X11/Xlib.h:697 serial : aliased unsigned_long; -- /usr/include/X11/Xlib.h:698 send_event : aliased int; -- /usr/include/X11/Xlib.h:699 the_display : access Display; -- /usr/include/X11/Xlib.h:700 the_window : aliased X11.Window; -- /usr/include/X11/Xlib.h:701 state : aliased int; -- /usr/include/X11/Xlib.h:702 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:703 -- # of last request processed by server -- true if this came from a SendEvent request -- Display the event was read from -- Visibility state -- skipped anonymous struct anon_68 type XCreateWindowEvent is record c_type : aliased int; -- /usr/include/X11/Xlib.h:706 serial : aliased unsigned_long; -- /usr/include/X11/Xlib.h:707 send_event : aliased int; -- /usr/include/X11/Xlib.h:708 the_display : access Display; -- /usr/include/X11/Xlib.h:709 parent : aliased X11.Window; -- /usr/include/X11/Xlib.h:710 the_window : aliased X11.Window; -- /usr/include/X11/Xlib.h:711 x : aliased int; -- /usr/include/X11/Xlib.h:712 y : aliased int; -- /usr/include/X11/Xlib.h:712 width : aliased int; -- /usr/include/X11/Xlib.h:713 height : aliased int; -- /usr/include/X11/Xlib.h:713 border_width : aliased int; -- /usr/include/X11/Xlib.h:714 override_redirect : aliased int; -- /usr/include/X11/Xlib.h:715 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:716 -- # of last request processed by server -- true if this came from a SendEvent request -- Display the event was read from -- parent of the window -- window id of window created -- window location -- size of window -- border width -- creation should be overridden -- skipped anonymous struct anon_69 type XDestroyWindowEvent is record c_type : aliased int; -- /usr/include/X11/Xlib.h:719 serial : aliased unsigned_long; -- /usr/include/X11/Xlib.h:720 send_event : aliased int; -- /usr/include/X11/Xlib.h:721 the_display : access Display; -- /usr/include/X11/Xlib.h:722 event : aliased X11.Window; -- /usr/include/X11/Xlib.h:723 the_window : aliased X11.Window; -- /usr/include/X11/Xlib.h:724 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:725 -- # of last request processed by server -- true if this came from a SendEvent request -- Display the event was read from -- skipped anonymous struct anon_70 type XUnmapEvent is record c_type : aliased int; -- /usr/include/X11/Xlib.h:728 serial : aliased unsigned_long; -- /usr/include/X11/Xlib.h:729 send_event : aliased int; -- /usr/include/X11/Xlib.h:730 the_display : access Display; -- /usr/include/X11/Xlib.h:731 event : aliased X11.Window; -- /usr/include/X11/Xlib.h:732 the_window : aliased X11.Window; -- /usr/include/X11/Xlib.h:733 from_configure : aliased int; -- /usr/include/X11/Xlib.h:734 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:735 -- # of last request processed by server -- true if this came from a SendEvent request -- Display the event was read from -- skipped anonymous struct anon_71 type XMapEvent is record c_type : aliased int; -- /usr/include/X11/Xlib.h:738 serial : aliased unsigned_long; -- /usr/include/X11/Xlib.h:739 send_event : aliased int; -- /usr/include/X11/Xlib.h:740 the_display : access Display; -- /usr/include/X11/Xlib.h:741 event : aliased X11.Window; -- /usr/include/X11/Xlib.h:742 the_window : aliased X11.Window; -- /usr/include/X11/Xlib.h:743 override_redirect : aliased int; -- /usr/include/X11/Xlib.h:744 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:745 -- # of last request processed by server -- true if this came from a SendEvent request -- Display the event was read from -- boolean, is override set... -- skipped anonymous struct anon_72 type XMapRequestEvent is record c_type : aliased int; -- /usr/include/X11/Xlib.h:748 serial : aliased unsigned_long; -- /usr/include/X11/Xlib.h:749 send_event : aliased int; -- /usr/include/X11/Xlib.h:750 the_display : access Display; -- /usr/include/X11/Xlib.h:751 parent : aliased X11.Window; -- /usr/include/X11/Xlib.h:752 the_window : aliased X11.Window; -- /usr/include/X11/Xlib.h:753 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:754 -- # of last request processed by server -- true if this came from a SendEvent request -- Display the event was read from -- skipped anonymous struct anon_73 type XReparentEvent is record c_type : aliased int; -- /usr/include/X11/Xlib.h:757 serial : aliased unsigned_long; -- /usr/include/X11/Xlib.h:758 send_event : aliased int; -- /usr/include/X11/Xlib.h:759 the_display : access Display; -- /usr/include/X11/Xlib.h:760 event : aliased X11.Window; -- /usr/include/X11/Xlib.h:761 the_window : aliased X11.Window; -- /usr/include/X11/Xlib.h:762 parent : aliased X11.Window; -- /usr/include/X11/Xlib.h:763 x : aliased int; -- /usr/include/X11/Xlib.h:764 y : aliased int; -- /usr/include/X11/Xlib.h:764 override_redirect : aliased int; -- /usr/include/X11/Xlib.h:765 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:766 -- # of last request processed by server -- true if this came from a SendEvent request -- Display the event was read from -- skipped anonymous struct anon_74 type XConfigureEvent is record c_type : aliased int; -- /usr/include/X11/Xlib.h:769 serial : aliased unsigned_long; -- /usr/include/X11/Xlib.h:770 send_event : aliased int; -- /usr/include/X11/Xlib.h:771 the_display : access Display; -- /usr/include/X11/Xlib.h:772 event : aliased X11.Window; -- /usr/include/X11/Xlib.h:773 the_window : aliased X11.Window; -- /usr/include/X11/Xlib.h:774 x : aliased int; -- /usr/include/X11/Xlib.h:775 y : aliased int; -- /usr/include/X11/Xlib.h:775 width : aliased int; -- /usr/include/X11/Xlib.h:776 height : aliased int; -- /usr/include/X11/Xlib.h:776 border_width : aliased int; -- /usr/include/X11/Xlib.h:777 above : aliased X11.Window; -- /usr/include/X11/Xlib.h:778 override_redirect : aliased int; -- /usr/include/X11/Xlib.h:779 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:780 -- # of last request processed by server -- true if this came from a SendEvent request -- Display the event was read from -- skipped anonymous struct anon_75 type XGravityEvent is record c_type : aliased int; -- /usr/include/X11/Xlib.h:783 serial : aliased unsigned_long; -- /usr/include/X11/Xlib.h:784 send_event : aliased int; -- /usr/include/X11/Xlib.h:785 the_display : access Display; -- /usr/include/X11/Xlib.h:786 event : aliased X11.Window; -- /usr/include/X11/Xlib.h:787 the_window : aliased X11.Window; -- /usr/include/X11/Xlib.h:788 x : aliased int; -- /usr/include/X11/Xlib.h:789 y : aliased int; -- /usr/include/X11/Xlib.h:789 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:790 -- # of last request processed by server -- true if this came from a SendEvent request -- Display the event was read from -- skipped anonymous struct anon_76 type XResizeRequestEvent is record c_type : aliased int; -- /usr/include/X11/Xlib.h:793 serial : aliased unsigned_long; -- /usr/include/X11/Xlib.h:794 send_event : aliased int; -- /usr/include/X11/Xlib.h:795 the_display : access Display; -- /usr/include/X11/Xlib.h:796 the_window : aliased X11.Window; -- /usr/include/X11/Xlib.h:797 width : aliased int; -- /usr/include/X11/Xlib.h:798 height : aliased int; -- /usr/include/X11/Xlib.h:798 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:799 -- # of last request processed by server -- true if this came from a SendEvent request -- Display the event was read from -- skipped anonymous struct anon_77 type XConfigureRequestEvent is record c_type : aliased int; -- /usr/include/X11/Xlib.h:802 serial : aliased unsigned_long; -- /usr/include/X11/Xlib.h:803 send_event : aliased int; -- /usr/include/X11/Xlib.h:804 the_display : access Display; -- /usr/include/X11/Xlib.h:805 parent : aliased X11.Window; -- /usr/include/X11/Xlib.h:806 the_window : aliased X11.Window; -- /usr/include/X11/Xlib.h:807 x : aliased int; -- /usr/include/X11/Xlib.h:808 y : aliased int; -- /usr/include/X11/Xlib.h:808 width : aliased int; -- /usr/include/X11/Xlib.h:809 height : aliased int; -- /usr/include/X11/Xlib.h:809 border_width : aliased int; -- /usr/include/X11/Xlib.h:810 above : aliased X11.Window; -- /usr/include/X11/Xlib.h:811 detail : aliased int; -- /usr/include/X11/Xlib.h:812 value_mask : aliased unsigned_long; -- /usr/include/X11/Xlib.h:813 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:814 -- # of last request processed by server -- true if this came from a SendEvent request -- Display the event was read from -- Above, Below, TopIf, BottomIf, Opposite -- skipped anonymous struct anon_78 type XCirculateEvent is record c_type : aliased int; -- /usr/include/X11/Xlib.h:817 serial : aliased unsigned_long; -- /usr/include/X11/Xlib.h:818 send_event : aliased int; -- /usr/include/X11/Xlib.h:819 the_display : access Display; -- /usr/include/X11/Xlib.h:820 event : aliased X11.Window; -- /usr/include/X11/Xlib.h:821 the_window : aliased X11.Window; -- /usr/include/X11/Xlib.h:822 place : aliased int; -- /usr/include/X11/Xlib.h:823 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:824 -- # of last request processed by server -- true if this came from a SendEvent request -- Display the event was read from -- PlaceOnTop, PlaceOnBottom -- skipped anonymous struct anon_79 type XCirculateRequestEvent is record c_type : aliased int; -- /usr/include/X11/Xlib.h:827 serial : aliased unsigned_long; -- /usr/include/X11/Xlib.h:828 send_event : aliased int; -- /usr/include/X11/Xlib.h:829 the_display : access Display; -- /usr/include/X11/Xlib.h:830 parent : aliased X11.Window; -- /usr/include/X11/Xlib.h:831 the_window : aliased X11.Window; -- /usr/include/X11/Xlib.h:832 place : aliased int; -- /usr/include/X11/Xlib.h:833 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:834 -- # of last request processed by server -- true if this came from a SendEvent request -- Display the event was read from -- PlaceOnTop, PlaceOnBottom -- skipped anonymous struct anon_80 type XPropertyEvent is record c_type : aliased int; -- /usr/include/X11/Xlib.h:837 serial : aliased unsigned_long; -- /usr/include/X11/Xlib.h:838 send_event : aliased int; -- /usr/include/X11/Xlib.h:839 the_display : access Display; -- /usr/include/X11/Xlib.h:840 the_window : aliased X11.Window; -- /usr/include/X11/Xlib.h:841 the_atom : aliased X11.Atom; -- /usr/include/X11/Xlib.h:842 the_time : aliased X11.Time; -- /usr/include/X11/Xlib.h:843 state : aliased int; -- /usr/include/X11/Xlib.h:844 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:845 -- # of last request processed by server -- true if this came from a SendEvent request -- Display the event was read from -- NewValue, Deleted -- skipped anonymous struct anon_81 type XSelectionClearEvent is record c_type : aliased int; -- /usr/include/X11/Xlib.h:848 serial : aliased unsigned_long; -- /usr/include/X11/Xlib.h:849 send_event : aliased int; -- /usr/include/X11/Xlib.h:850 the_display : access Display; -- /usr/include/X11/Xlib.h:851 the_window : aliased X11.Window; -- /usr/include/X11/Xlib.h:852 selection : aliased X11.Atom; -- /usr/include/X11/Xlib.h:853 the_time : aliased X11.Time; -- /usr/include/X11/Xlib.h:854 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:855 -- # of last request processed by server -- true if this came from a SendEvent request -- Display the event was read from -- skipped anonymous struct anon_82 type XSelectionRequestEvent is record c_type : aliased int; -- /usr/include/X11/Xlib.h:858 serial : aliased unsigned_long; -- /usr/include/X11/Xlib.h:859 send_event : aliased int; -- /usr/include/X11/Xlib.h:860 the_display : access Display; -- /usr/include/X11/Xlib.h:861 owner : aliased X11.Window; -- /usr/include/X11/Xlib.h:862 requestor : aliased X11.Window; -- /usr/include/X11/Xlib.h:863 selection : aliased X11.Atom; -- /usr/include/X11/Xlib.h:864 target : aliased X11.Atom; -- /usr/include/X11/Xlib.h:865 property : aliased X11.Atom; -- /usr/include/X11/Xlib.h:866 the_time : aliased X11.Time; -- /usr/include/X11/Xlib.h:867 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:868 -- # of last request processed by server -- true if this came from a SendEvent request -- Display the event was read from -- skipped anonymous struct anon_83 type XSelectionEvent is record c_type : aliased int; -- /usr/include/X11/Xlib.h:871 serial : aliased unsigned_long; -- /usr/include/X11/Xlib.h:872 send_event : aliased int; -- /usr/include/X11/Xlib.h:873 the_display : access Display; -- /usr/include/X11/Xlib.h:874 requestor : aliased X11.Window; -- /usr/include/X11/Xlib.h:875 selection : aliased X11.Atom; -- /usr/include/X11/Xlib.h:876 target : aliased X11.Atom; -- /usr/include/X11/Xlib.h:877 property : aliased X11.Atom; -- /usr/include/X11/Xlib.h:878 the_time : aliased X11.Time; -- /usr/include/X11/Xlib.h:879 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:880 -- # of last request processed by server -- true if this came from a SendEvent request -- Display the event was read from -- ATOM or None -- skipped anonymous struct anon_84 type XColormapEvent is record c_type : aliased int; -- /usr/include/X11/Xlib.h:883 serial : aliased unsigned_long; -- /usr/include/X11/Xlib.h:884 send_event : aliased int; -- /usr/include/X11/Xlib.h:885 the_display : access Display; -- /usr/include/X11/Xlib.h:886 the_window : aliased X11.Window; -- /usr/include/X11/Xlib.h:887 the_colormap : aliased X11.Colormap; -- /usr/include/X11/Xlib.h:888 c_new : aliased int; -- /usr/include/X11/Xlib.h:890 state : aliased int; -- /usr/include/X11/Xlib.h:894 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:895 -- # of last request processed by server -- true if this came from a SendEvent request -- Display the event was read from -- COLORMAP or None -- C++ -- ColormapInstalled, ColormapUninstalled -- skipped anonymous struct anon_85 subtype XClientMessageEvent_array4364 is Interfaces.C.char_array (0 .. 19); type XClientMessageEvent_array4365 is array (0 .. 9) of aliased short; type XClientMessageEvent_array4366 is array (0 .. 4) of aliased long; type anon_86 (discr : unsigned := 0) is record case discr is when 0 => b : aliased XClientMessageEvent_array4364; -- /usr/include/X11/Xlib.h:906 when 1 => s : aliased XClientMessageEvent_array4365; -- /usr/include/X11/Xlib.h:907 when others => l : aliased XClientMessageEvent_array4366; -- /usr/include/X11/Xlib.h:908 end case; end record with Convention => C_Pass_By_Copy, Unchecked_Union => True; type XClientMessageEvent is record c_type : aliased int; -- /usr/include/X11/Xlib.h:898 serial : aliased unsigned_long; -- /usr/include/X11/Xlib.h:899 send_event : aliased int; -- /usr/include/X11/Xlib.h:900 the_display : access Display; -- /usr/include/X11/Xlib.h:901 the_window : aliased X11.Window; -- /usr/include/X11/Xlib.h:902 message_type : aliased X11.Atom; -- /usr/include/X11/Xlib.h:903 format : aliased int; -- /usr/include/X11/Xlib.h:904 data : aliased anon_86; -- /usr/include/X11/Xlib.h:909 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:910 -- # of last request processed by server -- true if this came from a SendEvent request -- Display the event was read from -- skipped anonymous struct anon_87 type XMappingEvent is record c_type : aliased int; -- /usr/include/X11/Xlib.h:913 serial : aliased unsigned_long; -- /usr/include/X11/Xlib.h:914 send_event : aliased int; -- /usr/include/X11/Xlib.h:915 the_display : access Display; -- /usr/include/X11/Xlib.h:916 the_window : aliased X11.Window; -- /usr/include/X11/Xlib.h:917 request : aliased int; -- /usr/include/X11/Xlib.h:918 first_keycode : aliased int; -- /usr/include/X11/Xlib.h:920 count : aliased int; -- /usr/include/X11/Xlib.h:921 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:922 -- # of last request processed by server -- true if this came from a SendEvent request -- Display the event was read from -- unused -- one of MappingModifier, MappingKeyboard, -- MappingPointer -- first keycode -- defines range of change w. first_keycode -- skipped anonymous struct anon_88 type XErrorEvent is record c_type : aliased int; -- /usr/include/X11/Xlib.h:925 the_display : access Display; -- /usr/include/X11/Xlib.h:926 resourceid : aliased X11.XID; -- /usr/include/X11/Xlib.h:927 serial : aliased unsigned_long; -- /usr/include/X11/Xlib.h:928 error_code : aliased unsigned_char; -- /usr/include/X11/Xlib.h:929 request_code : aliased unsigned_char; -- /usr/include/X11/Xlib.h:930 minor_code : aliased unsigned_char; -- /usr/include/X11/Xlib.h:931 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:932 -- Display the event was read from -- resource id -- serial number of failed request -- error code of failed request -- Major op-code of failed request -- Minor op-code of failed request -- skipped anonymous struct anon_89 type XAnyEvent is record c_type : aliased int; -- /usr/include/X11/Xlib.h:935 serial : aliased unsigned_long; -- /usr/include/X11/Xlib.h:936 send_event : aliased int; -- /usr/include/X11/Xlib.h:937 the_display : access Display; -- /usr/include/X11/Xlib.h:938 the_window : aliased X11.Window; -- /usr/include/X11/Xlib.h:939 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:940 -- # of last request processed by server -- true if this came from a SendEvent request -- Display the event was read from -- window on which event was requested in event mask --************************************************************** -- * -- * GenericEvent. This event is the standard event for all newer extensions. -- -- of event. Always GenericEvent -- skipped anonymous struct anon_90 type XGenericEvent is record c_type : aliased int; -- /usr/include/X11/Xlib.h:950 serial : aliased unsigned_long; -- /usr/include/X11/Xlib.h:951 send_event : aliased int; -- /usr/include/X11/Xlib.h:952 the_display : access Display; -- /usr/include/X11/Xlib.h:953 extension : aliased int; -- /usr/include/X11/Xlib.h:954 evtype : aliased int; -- /usr/include/X11/Xlib.h:955 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:956 -- # of last request processed -- true if from SendEvent request -- Display the event was read from -- major opcode of extension that caused the event -- actual event type. -- of event. Always GenericEvent -- skipped anonymous struct anon_91 type XGenericEventCookie is record c_type : aliased int; -- /usr/include/X11/Xlib.h:959 serial : aliased unsigned_long; -- /usr/include/X11/Xlib.h:960 send_event : aliased int; -- /usr/include/X11/Xlib.h:961 the_display : access Display; -- /usr/include/X11/Xlib.h:962 extension : aliased int; -- /usr/include/X11/Xlib.h:963 evtype : aliased int; -- /usr/include/X11/Xlib.h:964 cookie : aliased unsigned; -- /usr/include/X11/Xlib.h:965 data : System.Address; -- /usr/include/X11/Xlib.h:966 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:967 -- # of last request processed -- true if from SendEvent request -- Display the event was read from -- major opcode of extension that caused the event -- actual event type. -- * this union is defined so Xlib can always use the same sized -- * event structure internally, to avoid memory fragmentation. -- -- must not be changed; first element type u_XEvent_array4379 is array (0 .. 23) of aliased long; type u_XEvent (discr : unsigned := 0) is record case discr is when 0 => c_type : aliased int; -- /usr/include/X11/Xlib.h:974 when 1 => xany : aliased XAnyEvent; -- /usr/include/X11/Xlib.h:975 when 2 => xkey : aliased XKeyEvent; -- /usr/include/X11/Xlib.h:976 when 3 => xbutton : aliased XButtonEvent; -- /usr/include/X11/Xlib.h:977 when 4 => xmotion : aliased XMotionEvent; -- /usr/include/X11/Xlib.h:978 when 5 => xcrossing : aliased XCrossingEvent; -- /usr/include/X11/Xlib.h:979 when 6 => xfocus : aliased XFocusChangeEvent; -- /usr/include/X11/Xlib.h:980 when 7 => xexpose : aliased XExposeEvent; -- /usr/include/X11/Xlib.h:981 when 8 => xgraphicsexpose : aliased XGraphicsExposeEvent; -- /usr/include/X11/Xlib.h:982 when 9 => xnoexpose : aliased XNoExposeEvent; -- /usr/include/X11/Xlib.h:983 when 10 => xvisibility : aliased XVisibilityEvent; -- /usr/include/X11/Xlib.h:984 when 11 => xcreatewindow : aliased XCreateWindowEvent; -- /usr/include/X11/Xlib.h:985 when 12 => xdestroywindow : aliased XDestroyWindowEvent; -- /usr/include/X11/Xlib.h:986 when 13 => xunmap : aliased XUnmapEvent; -- /usr/include/X11/Xlib.h:987 when 14 => xmap : aliased XMapEvent; -- /usr/include/X11/Xlib.h:988 when 15 => xmaprequest : aliased XMapRequestEvent; -- /usr/include/X11/Xlib.h:989 when 16 => xreparent : aliased XReparentEvent; -- /usr/include/X11/Xlib.h:990 when 17 => xconfigure : aliased XConfigureEvent; -- /usr/include/X11/Xlib.h:991 when 18 => xgravity : aliased XGravityEvent; -- /usr/include/X11/Xlib.h:992 when 19 => xresizerequest : aliased XResizeRequestEvent; -- /usr/include/X11/Xlib.h:993 when 20 => xconfigurerequest : aliased XConfigureRequestEvent; -- /usr/include/X11/Xlib.h:994 when 21 => xcirculate : aliased XCirculateEvent; -- /usr/include/X11/Xlib.h:995 when 22 => xcirculaterequest : aliased XCirculateRequestEvent; -- /usr/include/X11/Xlib.h:996 when 23 => xproperty : aliased XPropertyEvent; -- /usr/include/X11/Xlib.h:997 when 24 => xselectionclear : aliased XSelectionClearEvent; -- /usr/include/X11/Xlib.h:998 when 25 => xselectionrequest : aliased XSelectionRequestEvent; -- /usr/include/X11/Xlib.h:999 when 26 => xselection : aliased XSelectionEvent; -- /usr/include/X11/Xlib.h:1000 when 27 => xcolormap : aliased XColormapEvent; -- /usr/include/X11/Xlib.h:1001 when 28 => xclient : aliased XClientMessageEvent; -- /usr/include/X11/Xlib.h:1002 when 29 => xmapping : aliased XMappingEvent; -- /usr/include/X11/Xlib.h:1003 when 30 => xerror : aliased XErrorEvent; -- /usr/include/X11/Xlib.h:1004 when 31 => xkeymap : aliased XKeymapEvent; -- /usr/include/X11/Xlib.h:1005 when 32 => xgeneric : aliased XGenericEvent; -- /usr/include/X11/Xlib.h:1006 when 33 => xcookie : aliased XGenericEventCookie; -- /usr/include/X11/Xlib.h:1007 when others => pad : aliased u_XEvent_array4379; -- /usr/include/X11/Xlib.h:1008 end case; end record with Convention => C_Pass_By_Copy, Unchecked_Union => True; -- /usr/include/X11/Xlib.h:973 subtype XEvent is u_XEvent; -- /usr/include/X11/Xlib.h:1009 -- * per character font metric information. -- -- origin to left edge of raster -- skipped anonymous struct anon_92 type XCharStruct is record lbearing : aliased short; -- /usr/include/X11/Xlib.h:1018 rbearing : aliased short; -- /usr/include/X11/Xlib.h:1019 width : aliased short; -- /usr/include/X11/Xlib.h:1020 ascent : aliased short; -- /usr/include/X11/Xlib.h:1021 descent : aliased short; -- /usr/include/X11/Xlib.h:1022 attributes : aliased unsigned_short; -- /usr/include/X11/Xlib.h:1023 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:1024 -- origin to right edge of raster -- advance to next char's origin -- baseline to top edge of raster -- baseline to bottom edge of raster -- per char flags (not predefined) -- * To allow arbitrary information with fonts, there are additional properties -- * returned. -- -- skipped anonymous struct anon_93 type XFontProp is record name : aliased X11.Atom; -- /usr/include/X11/Xlib.h:1031 card32 : aliased unsigned_long; -- /usr/include/X11/Xlib.h:1032 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:1033 -- hook for extension to hang data -- skipped anonymous struct anon_94 type XFontStruct is record ext_data : access XExtData; -- /usr/include/X11/Xlib.h:1036 fid : aliased X11.Font; -- /usr/include/X11/Xlib.h:1037 direction : aliased unsigned; -- /usr/include/X11/Xlib.h:1038 min_char_or_byte2 : aliased unsigned; -- /usr/include/X11/Xlib.h:1039 max_char_or_byte2 : aliased unsigned; -- /usr/include/X11/Xlib.h:1040 min_byte1 : aliased unsigned; -- /usr/include/X11/Xlib.h:1041 max_byte1 : aliased unsigned; -- /usr/include/X11/Xlib.h:1042 all_chars_exist : aliased int; -- /usr/include/X11/Xlib.h:1043 default_char : aliased unsigned; -- /usr/include/X11/Xlib.h:1044 n_properties : aliased int; -- /usr/include/X11/Xlib.h:1045 properties : access XFontProp; -- /usr/include/X11/Xlib.h:1046 min_bounds : aliased XCharStruct; -- /usr/include/X11/Xlib.h:1047 max_bounds : aliased XCharStruct; -- /usr/include/X11/Xlib.h:1048 per_char : access XCharStruct; -- /usr/include/X11/Xlib.h:1049 ascent : aliased int; -- /usr/include/X11/Xlib.h:1050 descent : aliased int; -- /usr/include/X11/Xlib.h:1051 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:1052 -- Font id for this font -- hint about direction the font is painted -- first character -- last character -- first row that exists -- last row that exists -- flag if all characters have non-zero size -- char to print for undefined character -- how many properties there are -- pointer to array of additional properties -- minimum bounds over all existing char -- maximum bounds over all existing char -- first_char to last_char information -- log. extent above baseline for spacing -- log. descent below baseline for spacing -- * PolyText routines take these as arguments. -- -- pointer to string -- skipped anonymous struct anon_95 type XTextItem is record chars : Interfaces.C.Strings.chars_ptr; -- /usr/include/X11/Xlib.h:1058 nchars : aliased int; -- /usr/include/X11/Xlib.h:1059 c_delta : aliased int; -- /usr/include/X11/Xlib.h:1060 the_font : aliased X11.Font; -- /usr/include/X11/Xlib.h:1061 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:1062 -- number of characters -- delta between strings -- font to print it in, None don't change -- normal 16 bit characters are two bytes -- skipped anonymous struct anon_96 type XChar2b is record byte1 : aliased unsigned_char; -- /usr/include/X11/Xlib.h:1065 byte2 : aliased unsigned_char; -- /usr/include/X11/Xlib.h:1066 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:1067 -- two byte characters -- skipped anonymous struct anon_97 type XTextItem16 is record chars : access XChar2b; -- /usr/include/X11/Xlib.h:1070 nchars : aliased int; -- /usr/include/X11/Xlib.h:1071 c_delta : aliased int; -- /usr/include/X11/Xlib.h:1072 the_font : aliased X11.Font; -- /usr/include/X11/Xlib.h:1073 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:1074 -- number of characters -- delta between strings -- font to print it in, None don't change -- skipped anonymous struct anon_98 type XEDataObject (discr : unsigned := 0) is record case discr is when 0 => the_display : access Display; -- /usr/include/X11/Xlib.h:1077 when 1 => the_gc : GC; -- /usr/include/X11/Xlib.h:1078 when 2 => the_visual : access Visual; -- /usr/include/X11/Xlib.h:1079 when 3 => the_screen : access Screen; -- /usr/include/X11/Xlib.h:1080 when 4 => pixmap_format : access ScreenFormat; -- /usr/include/X11/Xlib.h:1081 when others => font : access XFontStruct; -- /usr/include/X11/Xlib.h:1082 end case; end record with Convention => C_Pass_By_Copy, Unchecked_Union => True; -- /usr/include/X11/Xlib.h:1082 -- skipped anonymous struct anon_99 type XFontSetExtents is record max_ink_extent : aliased XRectangle; -- /usr/include/X11/Xlib.h:1085 max_logical_extent : aliased XRectangle; -- /usr/include/X11/Xlib.h:1086 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:1087 -- unused: --typedef void (*XOMProc)(); -- type u_XOM is null record; -- incomplete struct type XOM is access all u_XOM; -- /usr/include/X11/Xlib.h:1093 type u_XOC is null record; -- incomplete struct type XOC is access all u_XOC; -- /usr/include/X11/Xlib.h:1094 type XFontSet is access all u_XOC; -- /usr/include/X11/Xlib.h:1094 -- skipped anonymous struct anon_100 type XmbTextItem is record chars : Interfaces.C.Strings.chars_ptr; -- /usr/include/X11/Xlib.h:1097 nchars : aliased int; -- /usr/include/X11/Xlib.h:1098 c_delta : aliased int; -- /usr/include/X11/Xlib.h:1099 font_set : XFontSet; -- /usr/include/X11/Xlib.h:1100 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:1101 -- skipped anonymous struct anon_101 type XwcTextItem is record chars : access wchar_t; -- /usr/include/X11/Xlib.h:1104 nchars : aliased int; -- /usr/include/X11/Xlib.h:1105 c_delta : aliased int; -- /usr/include/X11/Xlib.h:1106 font_set : XFontSet; -- /usr/include/X11/Xlib.h:1107 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:1108 -- skipped anonymous struct anon_102 type XOMCharSetList is record charset_count : aliased int; -- /usr/include/X11/Xlib.h:1122 charset_list : System.Address; -- /usr/include/X11/Xlib.h:1123 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:1124 type XOrientation is (XOMOrientation_LTR_TTB, XOMOrientation_RTL_TTB, XOMOrientation_TTB_LTR, XOMOrientation_TTB_RTL, XOMOrientation_Context) with Convention => C; -- /usr/include/X11/Xlib.h:1132 -- skipped anonymous struct anon_104 type XOMOrientation is record num_orientation : aliased int; -- /usr/include/X11/Xlib.h:1135 orientation : access XOrientation; -- /usr/include/X11/Xlib.h:1136 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:1137 -- Input Text description -- skipped anonymous struct anon_105 type XOMFontInfo is record num_font : aliased int; -- /usr/include/X11/Xlib.h:1140 font_struct_list : System.Address; -- /usr/include/X11/Xlib.h:1141 font_name_list : System.Address; -- /usr/include/X11/Xlib.h:1142 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:1143 type u_XIM is null record; -- incomplete struct type XIM is access all u_XIM; -- /usr/include/X11/Xlib.h:1145 type u_XIC is null record; -- incomplete struct type XIC is access all u_XIC; -- /usr/include/X11/Xlib.h:1146 type XIMProc is access procedure (arg1 : XIM; arg2 : XPointer; arg3 : XPointer) with Convention => C; -- /usr/include/X11/Xlib.h:1148 type XICProc is access function (arg1 : XIC; arg2 : XPointer; arg3 : XPointer) return int with Convention => C; -- /usr/include/X11/Xlib.h:1154 type XIDProc is access procedure (arg1 : access Display; arg2 : XPointer; arg3 : XPointer) with Convention => C; -- /usr/include/X11/Xlib.h:1160 subtype XIMStyle is unsigned_long; -- /usr/include/X11/Xlib.h:1166 -- skipped anonymous struct anon_106 type XIMStyles is record count_styles : aliased unsigned_short; -- /usr/include/X11/Xlib.h:1169 supported_styles : access XIMStyle; -- /usr/include/X11/Xlib.h:1170 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:1171 type XVaNestedList is new System.Address; -- /usr/include/X11/Xlib.h:1233 -- skipped anonymous struct anon_107 type XIMCallback is record client_data : XPointer; -- /usr/include/X11/Xlib.h:1236 callback : XIMProc; -- /usr/include/X11/Xlib.h:1237 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:1238 -- skipped anonymous struct anon_108 type XICCallback is record client_data : XPointer; -- /usr/include/X11/Xlib.h:1241 callback : XICProc; -- /usr/include/X11/Xlib.h:1242 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:1243 subtype XIMFeedback is unsigned_long; -- /usr/include/X11/Xlib.h:1245 type anon_109 (discr : unsigned := 0) is record case discr is when 0 => multi_byte : Interfaces.C.Strings.chars_ptr; -- /usr/include/X11/Xlib.h:1262 when others => wide_char : access wchar_t; -- /usr/include/X11/Xlib.h:1263 end case; end record with Convention => C_Pass_By_Copy, Unchecked_Union => True; type u_XIMText is record length : aliased unsigned_short; -- /usr/include/X11/Xlib.h:1258 feedback : access XIMFeedback; -- /usr/include/X11/Xlib.h:1259 encoding_is_wchar : aliased int; -- /usr/include/X11/Xlib.h:1260 string : aliased anon_109; -- /usr/include/X11/Xlib.h:1264 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:1257 subtype XIMText is u_XIMText; -- /usr/include/X11/Xlib.h:1265 subtype XIMPreeditState is unsigned_long; -- /usr/include/X11/Xlib.h:1267 type u_XIMPreeditStateNotifyCallbackStruct is record state : aliased XIMPreeditState; -- /usr/include/X11/Xlib.h:1274 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:1273 subtype XIMPreeditStateNotifyCallbackStruct is u_XIMPreeditStateNotifyCallbackStruct; -- /usr/include/X11/Xlib.h:1275 subtype XIMResetState is unsigned_long; -- /usr/include/X11/Xlib.h:1277 subtype XIMStringConversionFeedback is unsigned_long; -- /usr/include/X11/Xlib.h:1282 type anon_110 (discr : unsigned := 0) is record case discr is when 0 => mbs : Interfaces.C.Strings.chars_ptr; -- /usr/include/X11/Xlib.h:1296 when others => wcs : access wchar_t; -- /usr/include/X11/Xlib.h:1297 end case; end record with Convention => C_Pass_By_Copy, Unchecked_Union => True; type u_XIMStringConversionText is record length : aliased unsigned_short; -- /usr/include/X11/Xlib.h:1292 feedback : access XIMStringConversionFeedback; -- /usr/include/X11/Xlib.h:1293 encoding_is_wchar : aliased int; -- /usr/include/X11/Xlib.h:1294 string : aliased anon_110; -- /usr/include/X11/Xlib.h:1298 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:1291 subtype XIMStringConversionText is u_XIMStringConversionText; -- /usr/include/X11/Xlib.h:1299 subtype XIMStringConversionPosition is unsigned_short; -- /usr/include/X11/Xlib.h:1301 subtype XIMStringConversionType is unsigned_short; -- /usr/include/X11/Xlib.h:1303 subtype XIMStringConversionOperation is unsigned_short; -- /usr/include/X11/Xlib.h:1310 type XIMCaretDirection is (XIMForwardChar, XIMBackwardChar, XIMForwardWord, XIMBackwardWord, XIMCaretUp, XIMCaretDown, XIMNextLine, XIMPreviousLine, XIMLineStart, XIMLineEnd, XIMAbsolutePosition, XIMDontChange) with Convention => C; -- /usr/include/X11/Xlib.h:1323 type u_XIMStringConversionCallbackStruct is record position : aliased XIMStringConversionPosition; -- /usr/include/X11/Xlib.h:1326 direction : aliased XIMCaretDirection; -- /usr/include/X11/Xlib.h:1327 operation : aliased XIMStringConversionOperation; -- /usr/include/X11/Xlib.h:1328 factor : aliased unsigned_short; -- /usr/include/X11/Xlib.h:1329 text : access XIMStringConversionText; -- /usr/include/X11/Xlib.h:1330 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:1325 subtype XIMStringConversionCallbackStruct is u_XIMStringConversionCallbackStruct; -- /usr/include/X11/Xlib.h:1331 -- Cursor offset within pre-edit string type u_XIMPreeditDrawCallbackStruct is record caret : aliased int; -- /usr/include/X11/Xlib.h:1334 chg_first : aliased int; -- /usr/include/X11/Xlib.h:1335 chg_length : aliased int; -- /usr/include/X11/Xlib.h:1336 text : access XIMText; -- /usr/include/X11/Xlib.h:1337 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:1333 -- Starting change position -- Length of the change in character count subtype XIMPreeditDrawCallbackStruct is u_XIMPreeditDrawCallbackStruct; -- /usr/include/X11/Xlib.h:1338 -- Disable caret feedback -- UI defined caret feedback -- UI defined caret feedback type XIMCaretStyle is (XIMIsInvisible, XIMIsPrimary, XIMIsSecondary) with Convention => C; -- /usr/include/X11/Xlib.h:1344 -- Caret offset within pre-edit string type u_XIMPreeditCaretCallbackStruct is record position : aliased int; -- /usr/include/X11/Xlib.h:1347 direction : aliased XIMCaretDirection; -- /usr/include/X11/Xlib.h:1348 style : aliased XIMCaretStyle; -- /usr/include/X11/Xlib.h:1349 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:1346 -- Caret moves direction -- Feedback of the caret subtype XIMPreeditCaretCallbackStruct is u_XIMPreeditCaretCallbackStruct; -- /usr/include/X11/Xlib.h:1350 type XIMStatusDataType is (XIMTextType, XIMBitmapType) with Convention => C; -- /usr/include/X11/Xlib.h:1355 type anon_114 (discr : unsigned := 0) is record case discr is when 0 => text : access XIMText; -- /usr/include/X11/Xlib.h:1360 when others => bitmap : aliased X11.Pixmap; -- /usr/include/X11/Xlib.h:1361 end case; end record with Convention => C_Pass_By_Copy, Unchecked_Union => True; type u_XIMStatusDrawCallbackStruct is record c_type : aliased XIMStatusDataType; -- /usr/include/X11/Xlib.h:1358 data : aliased anon_114; -- /usr/include/X11/Xlib.h:1362 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:1357 subtype XIMStatusDrawCallbackStruct is u_XIMStatusDrawCallbackStruct; -- /usr/include/X11/Xlib.h:1363 type u_XIMHotKeyTrigger is record the_keysym : aliased X11.KeySym; -- /usr/include/X11/Xlib.h:1366 modifier : aliased int; -- /usr/include/X11/Xlib.h:1367 modifier_mask : aliased int; -- /usr/include/X11/Xlib.h:1368 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:1365 subtype XIMHotKeyTrigger is u_XIMHotKeyTrigger; -- /usr/include/X11/Xlib.h:1369 type u_XIMHotKeyTriggers is record num_hot_key : aliased int; -- /usr/include/X11/Xlib.h:1372 key : access XIMHotKeyTrigger; -- /usr/include/X11/Xlib.h:1373 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:1371 subtype XIMHotKeyTriggers is u_XIMHotKeyTriggers; -- /usr/include/X11/Xlib.h:1374 subtype XIMHotKeyState is unsigned_long; -- /usr/include/X11/Xlib.h:1376 -- skipped anonymous struct anon_115 type XIMValuesList is record count_values : aliased unsigned_short; -- /usr/include/X11/Xlib.h:1382 supported_values : System.Address; -- /usr/include/X11/Xlib.h:1383 end record with Convention => C_Pass_By_Copy; -- /usr/include/X11/Xlib.h:1384 function XLoadQueryFont (arg1 : access Display; arg2 : Interfaces.C.Strings.chars_ptr) return access XFontStruct -- /usr/include/X11/Xlib.h:1394 with Import => True, Convention => C, External_Name => "XLoadQueryFont"; -- display -- name function XQueryFont (arg1 : access Display; arg2 : X11.XID) return access XFontStruct -- /usr/include/X11/Xlib.h:1399 with Import => True, Convention => C, External_Name => "XQueryFont"; -- display -- font_ID function XGetMotionEvents (arg1 : access Display; arg2 : X11.Window; arg3 : X11.Time; arg4 : X11.Time; arg5 : access int) return access XTimeCoord -- /usr/include/X11/Xlib.h:1405 with Import => True, Convention => C, External_Name => "XGetMotionEvents"; -- display -- w -- start -- stop -- nevents_return function XDeleteModifiermapEntry (arg1 : access XModifierKeymap; arg2 : X11.KeyCode; arg3 : int) return access XModifierKeymap -- /usr/include/X11/Xlib.h:1413 with Import => True, Convention => C, External_Name => "XDeleteModifiermapEntry"; -- modmap -- keycode_entry -- keycode_entry -- modifier function XGetModifierMapping (arg1 : access Display) return access XModifierKeymap -- /usr/include/X11/Xlib.h:1423 with Import => True, Convention => C, External_Name => "XGetModifierMapping"; -- display function XInsertModifiermapEntry (arg1 : access XModifierKeymap; arg2 : X11.KeyCode; arg3 : int) return access XModifierKeymap -- /usr/include/X11/Xlib.h:1427 with Import => True, Convention => C, External_Name => "XInsertModifiermapEntry"; -- modmap -- keycode_entry -- keycode_entry -- modifier function XNewModifiermap (arg1 : int) return access XModifierKeymap -- /usr/include/X11/Xlib.h:1437 with Import => True, Convention => C, External_Name => "XNewModifiermap"; -- max_keys_per_mod function XCreateImage (arg1 : access Display; arg2 : access Visual; arg3 : unsigned; arg4 : int; arg5 : int; arg6 : Interfaces.C.Strings.chars_ptr; arg7 : unsigned; arg8 : unsigned; arg9 : int; arg10 : int) return access XImage -- /usr/include/X11/Xlib.h:1441 with Import => True, Convention => C, External_Name => "XCreateImage"; -- display -- visual -- depth -- format -- offset -- data -- width -- height -- bitmap_pad -- bytes_per_line function XInitImage (arg1 : access XImage) return int -- /usr/include/X11/Xlib.h:1453 with Import => True, Convention => C, External_Name => "XInitImage"; -- image function XGetImage (arg1 : access Display; arg2 : X11.Drawable; arg3 : int; arg4 : int; arg5 : unsigned; arg6 : unsigned; arg7 : unsigned_long; arg8 : int) return access XImage -- /usr/include/X11/Xlib.h:1456 with Import => True, Convention => C, External_Name => "XGetImage"; -- display -- d -- x -- y -- width -- height -- plane_mask -- format function XGetSubImage (arg1 : access Display; arg2 : X11.Drawable; arg3 : int; arg4 : int; arg5 : unsigned; arg6 : unsigned; arg7 : unsigned_long; arg8 : int; arg9 : access XImage; arg10 : int; arg11 : int) return access XImage -- /usr/include/X11/Xlib.h:1466 with Import => True, Convention => C, External_Name => "XGetSubImage"; -- display -- d -- x -- y -- width -- height -- plane_mask -- format -- dest_image -- dest_x -- dest_y -- * X function declarations. -- function XOpenDisplay (arg1 : Interfaces.C.Strings.chars_ptr) return access Display -- /usr/include/X11/Xlib.h:1483 with Import => True, Convention => C, External_Name => "XOpenDisplay"; -- display_name procedure XrmInitialize -- /usr/include/X11/Xlib.h:1487 with Import => True, Convention => C, External_Name => "XrmInitialize"; function XFetchBytes (arg1 : access Display; arg2 : access int) return Interfaces.C.Strings.chars_ptr -- /usr/include/X11/Xlib.h:1491 with Import => True, Convention => C, External_Name => "XFetchBytes"; -- display -- nbytes_return function XFetchBuffer (arg1 : access Display; arg2 : access int; arg3 : int) return Interfaces.C.Strings.chars_ptr -- /usr/include/X11/Xlib.h:1495 with Import => True, Convention => C, External_Name => "XFetchBuffer"; -- display -- nbytes_return -- buffer function XGetAtomName (arg1 : access Display; arg2 : X11.Atom) return Interfaces.C.Strings.chars_ptr -- /usr/include/X11/Xlib.h:1500 with Import => True, Convention => C, External_Name => "XGetAtomName"; -- display -- atom function XGetAtomNames (arg1 : access Display; arg2 : access X11.Atom; arg3 : int; arg4 : System.Address) return int -- /usr/include/X11/Xlib.h:1504 with Import => True, Convention => C, External_Name => "XGetAtomNames"; -- dpy -- atoms -- count -- names_return function XGetDefault (arg1 : access Display; arg2 : Interfaces.C.Strings.chars_ptr; arg3 : Interfaces.C.Strings.chars_ptr) return Interfaces.C.Strings.chars_ptr -- /usr/include/X11/Xlib.h:1510 with Import => True, Convention => C, External_Name => "XGetDefault"; -- display -- program -- option function XDisplayName (arg1 : Interfaces.C.Strings.chars_ptr) return Interfaces.C.Strings.chars_ptr -- /usr/include/X11/Xlib.h:1515 with Import => True, Convention => C, External_Name => "XDisplayName"; -- string function XKeysymToString (arg1 : X11.KeySym) return Interfaces.C.Strings.chars_ptr -- /usr/include/X11/Xlib.h:1518 with Import => True, Convention => C, External_Name => "XKeysymToString"; -- keysym function XSynchronize (arg1 : access Display; arg2 : int) return access function (arg1 : access Display) return int -- /usr/include/X11/Xlib.h:1522 with Import => True, Convention => C, External_Name => "XSynchronize"; -- display -- onoff -- display function XSetAfterFunction (arg1 : access Display; arg2 : access function (arg1 : access Display) return int) return access function (arg1 : access Display) return int -- /usr/include/X11/Xlib.h:1528 with Import => True, Convention => C, External_Name => "XSetAfterFunction"; -- display -- display -- procedure -- display function XInternAtom (arg1 : access Display; arg2 : Interfaces.C.Strings.chars_ptr; arg3 : int) return X11.Atom -- /usr/include/X11/Xlib.h:1536 with Import => True, Convention => C, External_Name => "XInternAtom"; -- display -- atom_name -- only_if_exists function XInternAtoms (arg1 : access Display; arg2 : System.Address; arg3 : int; arg4 : int; arg5 : access X11.Atom) return int -- /usr/include/X11/Xlib.h:1541 with Import => True, Convention => C, External_Name => "XInternAtoms"; -- dpy -- names -- count -- onlyIfExists -- atoms_return function XCopyColormapAndFree (arg1 : access Display; arg2 : X11.Colormap) return X11.Colormap -- /usr/include/X11/Xlib.h:1548 with Import => True, Convention => C, External_Name => "XCopyColormapAndFree"; -- display -- colormap function XCreateColormap (arg1 : access Display; arg2 : X11.Window; arg3 : access Visual; arg4 : int) return X11.Colormap -- /usr/include/X11/Xlib.h:1552 with Import => True, Convention => C, External_Name => "XCreateColormap"; -- display -- w -- visual -- alloc function XCreatePixmapCursor (arg1 : access Display; arg2 : X11.Pixmap; arg3 : X11.Pixmap; arg4 : access XColor; arg5 : access XColor; arg6 : unsigned; arg7 : unsigned) return X11.Cursor -- /usr/include/X11/Xlib.h:1558 with Import => True, Convention => C, External_Name => "XCreatePixmapCursor"; -- display -- source -- mask -- foreground_color -- background_color -- x -- y function XCreateGlyphCursor (arg1 : access Display; arg2 : X11.Font; arg3 : X11.Font; arg4 : unsigned; arg5 : unsigned; arg6 : access constant XColor; arg7 : access constant XColor) return X11.Cursor -- /usr/include/X11/Xlib.h:1567 with Import => True, Convention => C, External_Name => "XCreateGlyphCursor"; -- display -- source_font -- mask_font -- source_char -- mask_char -- foreground_color -- background_color function XCreateFontCursor (arg1 : access Display; arg2 : unsigned) return X11.Cursor -- /usr/include/X11/Xlib.h:1576 with Import => True, Convention => C, External_Name => "XCreateFontCursor"; -- display -- shape function XLoadFont (arg1 : access Display; arg2 : Interfaces.C.Strings.chars_ptr) return X11.Font -- /usr/include/X11/Xlib.h:1580 with Import => True, Convention => C, External_Name => "XLoadFont"; -- display -- name function XCreateGC (arg1 : access Display; arg2 : X11.Drawable; arg3 : unsigned_long; arg4 : access XGCValues) return GC -- /usr/include/X11/Xlib.h:1584 with Import => True, Convention => C, External_Name => "XCreateGC"; -- display -- d -- valuemask -- values function XGContextFromGC (arg1 : GC) return X11.GContext -- /usr/include/X11/Xlib.h:1590 with Import => True, Convention => C, External_Name => "XGContextFromGC"; -- gc procedure XFlushGC (arg1 : access Display; arg2 : GC) -- /usr/include/X11/Xlib.h:1593 with Import => True, Convention => C, External_Name => "XFlushGC"; -- display -- gc function XCreatePixmap (arg1 : access Display; arg2 : X11.Drawable; arg3 : unsigned; arg4 : unsigned; arg5 : unsigned) return X11.Pixmap -- /usr/include/X11/Xlib.h:1597 with Import => True, Convention => C, External_Name => "XCreatePixmap"; -- display -- d -- width -- height -- depth function XCreateBitmapFromData (arg1 : access Display; arg2 : X11.Drawable; arg3 : Interfaces.C.Strings.chars_ptr; arg4 : unsigned; arg5 : unsigned) return X11.Pixmap -- /usr/include/X11/Xlib.h:1604 with Import => True, Convention => C, External_Name => "XCreateBitmapFromData"; -- display -- d -- data -- width -- height function XCreatePixmapFromBitmapData (arg1 : access Display; arg2 : X11.Drawable; arg3 : Interfaces.C.Strings.chars_ptr; arg4 : unsigned; arg5 : unsigned; arg6 : unsigned_long; arg7 : unsigned_long; arg8 : unsigned) return X11.Pixmap -- /usr/include/X11/Xlib.h:1611 with Import => True, Convention => C, External_Name => "XCreatePixmapFromBitmapData"; -- display -- d -- data -- width -- height -- fg -- bg -- depth function XCreateSimpleWindow (arg1 : access Display; arg2 : X11.Window; arg3 : int; arg4 : int; arg5 : unsigned; arg6 : unsigned; arg7 : unsigned; arg8 : unsigned_long; arg9 : unsigned_long) return X11.Window -- /usr/include/X11/Xlib.h:1621 with Import => True, Convention => C, External_Name => "XCreateSimpleWindow"; -- display -- parent -- x -- y -- width -- height -- border_width -- border -- background function XGetSelectionOwner (arg1 : access Display; arg2 : X11.Atom) return X11.Window -- /usr/include/X11/Xlib.h:1632 with Import => True, Convention => C, External_Name => "XGetSelectionOwner"; -- display -- selection function XCreateWindow (arg1 : access Display; arg2 : X11.Window; arg3 : int; arg4 : int; arg5 : unsigned; arg6 : unsigned; arg7 : unsigned; arg8 : int; arg9 : unsigned; arg10 : access Visual; arg11 : unsigned_long; arg12 : access XSetWindowAttributes) return X11.Window -- /usr/include/X11/Xlib.h:1636 with Import => True, Convention => C, External_Name => "XCreateWindow"; -- display -- parent -- x -- y -- width -- height -- border_width -- depth -- class -- visual -- valuemask -- attributes function XListInstalledColormaps (arg1 : access Display; arg2 : X11.Window; arg3 : access int) return access X11.Colormap -- /usr/include/X11/Xlib.h:1650 with Import => True, Convention => C, External_Name => "XListInstalledColormaps"; -- display -- w -- num_return function XListFonts (arg1 : access Display; arg2 : Interfaces.C.Strings.chars_ptr; arg3 : int; arg4 : access int) return System.Address -- /usr/include/X11/Xlib.h:1655 with Import => True, Convention => C, External_Name => "XListFonts"; -- display -- pattern -- maxnames -- actual_count_return function XListFontsWithInfo (arg1 : access Display; arg2 : Interfaces.C.Strings.chars_ptr; arg3 : int; arg4 : access int; arg5 : System.Address) return System.Address -- /usr/include/X11/Xlib.h:1661 with Import => True, Convention => C, External_Name => "XListFontsWithInfo"; -- display -- pattern -- maxnames -- count_return -- info_return function XGetFontPath (arg1 : access Display; arg2 : access int) return System.Address -- /usr/include/X11/Xlib.h:1668 with Import => True, Convention => C, External_Name => "XGetFontPath"; -- display -- npaths_return function XListExtensions (arg1 : access Display; arg2 : access int) return System.Address -- /usr/include/X11/Xlib.h:1672 with Import => True, Convention => C, External_Name => "XListExtensions"; -- display -- nextensions_return function XListProperties (arg1 : access Display; arg2 : X11.Window; arg3 : access int) return access X11.Atom -- /usr/include/X11/Xlib.h:1676 with Import => True, Convention => C, External_Name => "XListProperties"; -- display -- w -- num_prop_return function XListHosts (arg1 : access Display; arg2 : access int; arg3 : access int) return access XHostAddress -- /usr/include/X11/Xlib.h:1681 with Import => True, Convention => C, External_Name => "XListHosts"; -- display -- nhosts_return -- state_return function XKeycodeToKeysym (arg1 : access Display; arg2 : X11.KeyCode; arg3 : int) return X11.KeySym -- /usr/include/X11/Xlib.h:1687 with Import => True, Convention => C, External_Name => "XKeycodeToKeysym"; -- display -- keycode -- keycode -- index function c_XLookupKeysym (arg1 : access XKeyEvent; arg2 : int) return X11.KeySym -- /usr/include/X11/Xlib.h:1696 with Import => True, Convention => C, External_Name => "XLookupKeysym"; -- key_event -- index function XGetKeyboardMapping (arg1 : access Display; arg2 : X11.KeyCode; arg3 : int; arg4 : access int) return access X11.KeySym -- /usr/include/X11/Xlib.h:1700 with Import => True, Convention => C, External_Name => "XGetKeyboardMapping"; -- display -- first_keycode -- first_keycode -- keycode_count -- keysyms_per_keycode_return function XStringToKeysym (arg1 : Interfaces.C.Strings.chars_ptr) return X11.KeySym -- /usr/include/X11/Xlib.h:1710 with Import => True, Convention => C, External_Name => "XStringToKeysym"; -- string function XMaxRequestSize (arg1 : access Display) return long -- /usr/include/X11/Xlib.h:1713 with Import => True, Convention => C, External_Name => "XMaxRequestSize"; -- display function XExtendedMaxRequestSize (arg1 : access Display) return long -- /usr/include/X11/Xlib.h:1716 with Import => True, Convention => C, External_Name => "XExtendedMaxRequestSize"; -- display function XResourceManagerString (arg1 : access Display) return Interfaces.C.Strings.chars_ptr -- /usr/include/X11/Xlib.h:1719 with Import => True, Convention => C, External_Name => "XResourceManagerString"; -- display function XScreenResourceString (arg1 : access Screen) return Interfaces.C.Strings.chars_ptr -- /usr/include/X11/Xlib.h:1722 with Import => True, Convention => C, External_Name => "XScreenResourceString"; -- screen function XDisplayMotionBufferSize (arg1 : access Display) return unsigned_long -- /usr/include/X11/Xlib.h:1725 with Import => True, Convention => C, External_Name => "XDisplayMotionBufferSize"; -- display function XVisualIDFromVisual (arg1 : access Visual) return X11.VisualID -- /usr/include/X11/Xlib.h:1728 with Import => True, Convention => C, External_Name => "XVisualIDFromVisual"; -- visual -- multithread routines function XInitThreads return int -- /usr/include/X11/Xlib.h:1734 with Import => True, Convention => C, External_Name => "XInitThreads"; procedure XLockDisplay (arg1 : access Display) -- /usr/include/X11/Xlib.h:1738 with Import => True, Convention => C, External_Name => "XLockDisplay"; -- display procedure XUnlockDisplay (arg1 : access Display) -- /usr/include/X11/Xlib.h:1742 with Import => True, Convention => C, External_Name => "XUnlockDisplay"; -- display -- routines for dealing with extensions function XInitExtension (arg1 : access Display; arg2 : Interfaces.C.Strings.chars_ptr) return access XExtCodes -- /usr/include/X11/Xlib.h:1748 with Import => True, Convention => C, External_Name => "XInitExtension"; -- display -- name function XAddExtension (arg1 : access Display) return access XExtCodes -- /usr/include/X11/Xlib.h:1753 with Import => True, Convention => C, External_Name => "XAddExtension"; -- display function XFindOnExtensionList (arg1 : System.Address; arg2 : int) return access XExtData -- /usr/include/X11/Xlib.h:1756 with Import => True, Convention => C, External_Name => "XFindOnExtensionList"; -- structure -- number function XEHeadOfExtensionList (arg1 : XEDataObject) return System.Address -- /usr/include/X11/Xlib.h:1760 with Import => True, Convention => C, External_Name => "XEHeadOfExtensionList"; -- object -- these are routines for which there are also macros function XRootWindow (arg1 : access Display; arg2 : int) return X11.Window -- /usr/include/X11/Xlib.h:1765 with Import => True, Convention => C, External_Name => "XRootWindow"; -- display -- screen_number function XDefaultRootWindow (arg1 : access Display) return X11.Window -- /usr/include/X11/Xlib.h:1769 with Import => True, Convention => C, External_Name => "XDefaultRootWindow"; -- display function XRootWindowOfScreen (arg1 : access Screen) return X11.Window -- /usr/include/X11/Xlib.h:1772 with Import => True, Convention => C, External_Name => "XRootWindowOfScreen"; -- screen function XDefaultVisual (arg1 : access Display; arg2 : int) return access Visual -- /usr/include/X11/Xlib.h:1775 with Import => True, Convention => C, External_Name => "XDefaultVisual"; -- display -- screen_number function XDefaultVisualOfScreen (arg1 : access Screen) return access Visual -- /usr/include/X11/Xlib.h:1779 with Import => True, Convention => C, External_Name => "XDefaultVisualOfScreen"; -- screen function XDefaultGC (arg1 : access Display; arg2 : int) return GC -- /usr/include/X11/Xlib.h:1782 with Import => True, Convention => C, External_Name => "XDefaultGC"; -- display -- screen_number function XDefaultGCOfScreen (arg1 : access Screen) return GC -- /usr/include/X11/Xlib.h:1786 with Import => True, Convention => C, External_Name => "XDefaultGCOfScreen"; -- screen function XBlackPixel (arg1 : access Display; arg2 : int) return unsigned_long -- /usr/include/X11/Xlib.h:1789 with Import => True, Convention => C, External_Name => "XBlackPixel"; -- display -- screen_number function XWhitePixel (arg1 : access Display; arg2 : int) return unsigned_long -- /usr/include/X11/Xlib.h:1793 with Import => True, Convention => C, External_Name => "XWhitePixel"; -- display -- screen_number function XAllPlanes return unsigned_long -- /usr/include/X11/Xlib.h:1797 with Import => True, Convention => C, External_Name => "XAllPlanes"; function XBlackPixelOfScreen (arg1 : access Screen) return unsigned_long -- /usr/include/X11/Xlib.h:1800 with Import => True, Convention => C, External_Name => "XBlackPixelOfScreen"; -- screen function XWhitePixelOfScreen (arg1 : access Screen) return unsigned_long -- /usr/include/X11/Xlib.h:1803 with Import => True, Convention => C, External_Name => "XWhitePixelOfScreen"; -- screen function XNextRequest (arg1 : access Display) return unsigned_long -- /usr/include/X11/Xlib.h:1806 with Import => True, Convention => C, External_Name => "XNextRequest"; -- display function XLastKnownRequestProcessed (arg1 : access Display) return unsigned_long -- /usr/include/X11/Xlib.h:1809 with Import => True, Convention => C, External_Name => "XLastKnownRequestProcessed"; -- display function XServerVendor (arg1 : access Display) return Interfaces.C.Strings.chars_ptr -- /usr/include/X11/Xlib.h:1812 with Import => True, Convention => C, External_Name => "XServerVendor"; -- display function XDisplayString (arg1 : access Display) return Interfaces.C.Strings.chars_ptr -- /usr/include/X11/Xlib.h:1815 with Import => True, Convention => C, External_Name => "XDisplayString"; -- display function XDefaultColormap (arg1 : access Display; arg2 : int) return X11.Colormap -- /usr/include/X11/Xlib.h:1818 with Import => True, Convention => C, External_Name => "XDefaultColormap"; -- display -- screen_number function XDefaultColormapOfScreen (arg1 : access Screen) return X11.Colormap -- /usr/include/X11/Xlib.h:1822 with Import => True, Convention => C, External_Name => "XDefaultColormapOfScreen"; -- screen function XDisplayOfScreen (arg1 : access Screen) return access Display -- /usr/include/X11/Xlib.h:1825 with Import => True, Convention => C, External_Name => "XDisplayOfScreen"; -- screen function XScreenOfDisplay (arg1 : access Display; arg2 : int) return access Screen -- /usr/include/X11/Xlib.h:1828 with Import => True, Convention => C, External_Name => "XScreenOfDisplay"; -- display -- screen_number function XDefaultScreenOfDisplay (arg1 : access Display) return access Screen -- /usr/include/X11/Xlib.h:1832 with Import => True, Convention => C, External_Name => "XDefaultScreenOfDisplay"; -- display function XEventMaskOfScreen (arg1 : access Screen) return long -- /usr/include/X11/Xlib.h:1835 with Import => True, Convention => C, External_Name => "XEventMaskOfScreen"; -- screen function XScreenNumberOfScreen (arg1 : access Screen) return int -- /usr/include/X11/Xlib.h:1839 with Import => True, Convention => C, External_Name => "XScreenNumberOfScreen"; -- screen -- WARNING, this type not in Xlib spec type XErrorHandler is access function (arg1 : access Display; arg2 : access XErrorEvent) return int with Convention => C; -- /usr/include/X11/Xlib.h:1843 -- display -- error_event function XSetErrorHandler (arg1 : XErrorHandler) return XErrorHandler -- /usr/include/X11/Xlib.h:1848 with Import => True, Convention => C, External_Name => "XSetErrorHandler"; -- handler -- WARNING, this type not in Xlib spec type XIOErrorHandler is access function (arg1 : access Display) return int with Convention => C; -- /usr/include/X11/Xlib.h:1853 -- display function XSetIOErrorHandler (arg1 : XIOErrorHandler) return XIOErrorHandler -- /usr/include/X11/Xlib.h:1857 with Import => True, Convention => C, External_Name => "XSetIOErrorHandler"; -- handler -- WARNING, this type not in Xlib spec type XIOErrorExitHandler is access procedure (arg1 : access Display; arg2 : System.Address) with Convention => C; -- /usr/include/X11/Xlib.h:1861 -- display -- user_data procedure XSetIOErrorExitHandler (arg1 : access Display; arg2 : XIOErrorExitHandler; arg3 : System.Address) -- /usr/include/X11/Xlib.h:1866 with Import => True, Convention => C, External_Name => "XSetIOErrorExitHandler"; -- display -- handler -- user_data function XListPixmapFormats (arg1 : access Display; arg2 : access int) return access XPixmapFormatValues -- /usr/include/X11/Xlib.h:1872 with Import => True, Convention => C, External_Name => "XListPixmapFormats"; -- display -- count_return function XListDepths (arg1 : access Display; arg2 : int; arg3 : access int) return access int -- /usr/include/X11/Xlib.h:1876 with Import => True, Convention => C, External_Name => "XListDepths"; -- display -- screen_number -- count_return -- ICCCM routines for things that don't require special include files; -- other declarations are given in Xutil.h function XReconfigureWMWindow (arg1 : access Display; arg2 : X11.Window; arg3 : int; arg4 : unsigned; arg5 : access XWindowChanges) return int -- /usr/include/X11/Xlib.h:1884 with Import => True, Convention => C, External_Name => "XReconfigureWMWindow"; -- display -- w -- screen_number -- mask -- changes function XGetWMProtocols (arg1 : access Display; arg2 : X11.Window; arg3 : System.Address; arg4 : access int) return int -- /usr/include/X11/Xlib.h:1892 with Import => True, Convention => C, External_Name => "XGetWMProtocols"; -- display -- w -- protocols_return -- count_return function XSetWMProtocols (arg1 : access Display; arg2 : X11.Window; arg3 : access X11.Atom; arg4 : int) return int -- /usr/include/X11/Xlib.h:1898 with Import => True, Convention => C, External_Name => "XSetWMProtocols"; -- display -- w -- protocols -- count function XIconifyWindow (arg1 : access Display; arg2 : X11.Window; arg3 : int) return int -- /usr/include/X11/Xlib.h:1904 with Import => True, Convention => C, External_Name => "XIconifyWindow"; -- display -- w -- screen_number function XWithdrawWindow (arg1 : access Display; arg2 : X11.Window; arg3 : int) return int -- /usr/include/X11/Xlib.h:1909 with Import => True, Convention => C, External_Name => "XWithdrawWindow"; -- display -- w -- screen_number function XGetCommand (arg1 : access Display; arg2 : X11.Window; arg3 : System.Address; arg4 : access int) return int -- /usr/include/X11/Xlib.h:1914 with Import => True, Convention => C, External_Name => "XGetCommand"; -- display -- w -- argv_return -- argc_return function XGetWMColormapWindows (arg1 : access Display; arg2 : X11.Window; arg3 : System.Address; arg4 : access int) return int -- /usr/include/X11/Xlib.h:1920 with Import => True, Convention => C, External_Name => "XGetWMColormapWindows"; -- display -- w -- windows_return -- count_return function XSetWMColormapWindows (arg1 : access Display; arg2 : X11.Window; arg3 : access X11.Window; arg4 : int) return int -- /usr/include/X11/Xlib.h:1926 with Import => True, Convention => C, External_Name => "XSetWMColormapWindows"; -- display -- w -- colormap_windows -- count procedure XFreeStringList (arg1 : System.Address) -- /usr/include/X11/Xlib.h:1932 with Import => True, Convention => C, External_Name => "XFreeStringList"; -- list function XSetTransientForHint (arg1 : access Display; arg2 : X11.Window; arg3 : X11.Window) return int -- /usr/include/X11/Xlib.h:1935 with Import => True, Convention => C, External_Name => "XSetTransientForHint"; -- display -- w -- prop_window -- The following are given in alphabetical order function XActivateScreenSaver (arg1 : access Display) return int -- /usr/include/X11/Xlib.h:1943 with Import => True, Convention => C, External_Name => "XActivateScreenSaver"; -- display function XAddHost (arg1 : access Display; arg2 : access XHostAddress) return int -- /usr/include/X11/Xlib.h:1947 with Import => True, Convention => C, External_Name => "XAddHost"; -- display -- host function XAddHosts (arg1 : access Display; arg2 : access XHostAddress; arg3 : int) return int -- /usr/include/X11/Xlib.h:1952 with Import => True, Convention => C, External_Name => "XAddHosts"; -- display -- hosts -- num_hosts function XAddToExtensionList (arg1 : System.Address; arg2 : access XExtData) return int -- /usr/include/X11/Xlib.h:1958 with Import => True, Convention => C, External_Name => "XAddToExtensionList"; -- structure -- ext_data function XAddToSaveSet (arg1 : access Display; arg2 : X11.Window) return int -- /usr/include/X11/Xlib.h:1963 with Import => True, Convention => C, External_Name => "XAddToSaveSet"; -- display -- w function XAllocColor (arg1 : access Display; arg2 : X11.Colormap; arg3 : access XColor) return int -- /usr/include/X11/Xlib.h:1968 with Import => True, Convention => C, External_Name => "XAllocColor"; -- display -- colormap -- screen_in_out function XAllocColorCells (arg1 : access Display; arg2 : X11.Colormap; arg3 : int; arg4 : access unsigned_long; arg5 : unsigned; arg6 : access unsigned_long; arg7 : unsigned) return int -- /usr/include/X11/Xlib.h:1974 with Import => True, Convention => C, External_Name => "XAllocColorCells"; -- display -- colormap -- contig -- plane_masks_return -- nplanes -- pixels_return -- npixels function XAllocColorPlanes (arg1 : access Display; arg2 : X11.Colormap; arg3 : int; arg4 : access unsigned_long; arg5 : int; arg6 : int; arg7 : int; arg8 : int; arg9 : access unsigned_long; arg10 : access unsigned_long; arg11 : access unsigned_long) return int -- /usr/include/X11/Xlib.h:1984 with Import => True, Convention => C, External_Name => "XAllocColorPlanes"; -- display -- colormap -- contig -- pixels_return -- ncolors -- nreds -- ngreens -- nblues -- rmask_return -- gmask_return -- bmask_return function XAllocNamedColor (arg1 : access Display; arg2 : X11.Colormap; arg3 : Interfaces.C.Strings.chars_ptr; arg4 : access XColor; arg5 : access XColor) return int -- /usr/include/X11/Xlib.h:1998 with Import => True, Convention => C, External_Name => "XAllocNamedColor"; -- display -- colormap -- color_name -- screen_def_return -- exact_def_return function XAllowEvents (arg1 : access Display; arg2 : int; arg3 : X11.Time) return int -- /usr/include/X11/Xlib.h:2006 with Import => True, Convention => C, External_Name => "XAllowEvents"; -- display -- event_mode -- time function XAutoRepeatOff (arg1 : access Display) return int -- /usr/include/X11/Xlib.h:2012 with Import => True, Convention => C, External_Name => "XAutoRepeatOff"; -- display function XAutoRepeatOn (arg1 : access Display) return int -- /usr/include/X11/Xlib.h:2016 with Import => True, Convention => C, External_Name => "XAutoRepeatOn"; -- display function XBell (arg1 : access Display; arg2 : int) return int -- /usr/include/X11/Xlib.h:2020 with Import => True, Convention => C, External_Name => "XBell"; -- display -- percent function XBitmapBitOrder (arg1 : access Display) return int -- /usr/include/X11/Xlib.h:2025 with Import => True, Convention => C, External_Name => "XBitmapBitOrder"; -- display function XBitmapPad (arg1 : access Display) return int -- /usr/include/X11/Xlib.h:2029 with Import => True, Convention => C, External_Name => "XBitmapPad"; -- display function XBitmapUnit (arg1 : access Display) return int -- /usr/include/X11/Xlib.h:2033 with Import => True, Convention => C, External_Name => "XBitmapUnit"; -- display function XCellsOfScreen (arg1 : access Screen) return int -- /usr/include/X11/Xlib.h:2037 with Import => True, Convention => C, External_Name => "XCellsOfScreen"; -- screen function XChangeActivePointerGrab (arg1 : access Display; arg2 : unsigned; arg3 : X11.Cursor; arg4 : X11.Time) return int -- /usr/include/X11/Xlib.h:2041 with Import => True, Convention => C, External_Name => "XChangeActivePointerGrab"; -- display -- event_mask -- cursor -- time function XChangeGC (arg1 : access Display; arg2 : GC; arg3 : unsigned_long; arg4 : access XGCValues) return int -- /usr/include/X11/Xlib.h:2048 with Import => True, Convention => C, External_Name => "XChangeGC"; -- display -- gc -- valuemask -- values function XChangeKeyboardControl (arg1 : access Display; arg2 : unsigned_long; arg3 : access XKeyboardControl) return int -- /usr/include/X11/Xlib.h:2055 with Import => True, Convention => C, External_Name => "XChangeKeyboardControl"; -- display -- value_mask -- values function XChangeKeyboardMapping (arg1 : access Display; arg2 : int; arg3 : int; arg4 : access X11.KeySym; arg5 : int) return int -- /usr/include/X11/Xlib.h:2061 with Import => True, Convention => C, External_Name => "XChangeKeyboardMapping"; -- display -- first_keycode -- keysyms_per_keycode -- keysyms -- num_codes function XChangePointerControl (arg1 : access Display; arg2 : int; arg3 : int; arg4 : int; arg5 : int; arg6 : int) return int -- /usr/include/X11/Xlib.h:2069 with Import => True, Convention => C, External_Name => "XChangePointerControl"; -- display -- do_accel -- do_threshold -- accel_numerator -- accel_denominator -- threshold function XChangeProperty (arg1 : access Display; arg2 : X11.Window; arg3 : X11.Atom; arg4 : X11.Atom; arg5 : int; arg6 : int; arg7 : access unsigned_char; arg8 : int) return int -- /usr/include/X11/Xlib.h:2078 with Import => True, Convention => C, External_Name => "XChangeProperty"; -- display -- w -- property -- type -- format -- mode -- data -- nelements function XChangeSaveSet (arg1 : access Display; arg2 : X11.Window; arg3 : int) return int -- /usr/include/X11/Xlib.h:2089 with Import => True, Convention => C, External_Name => "XChangeSaveSet"; -- display -- w -- change_mode function XChangeWindowAttributes (arg1 : access Display; arg2 : X11.Window; arg3 : unsigned_long; arg4 : access XSetWindowAttributes) return int -- /usr/include/X11/Xlib.h:2095 with Import => True, Convention => C, External_Name => "XChangeWindowAttributes"; -- display -- w -- valuemask -- attributes function XCheckIfEvent (arg1 : access Display; arg2 : access XEvent; arg3 : access function (arg1 : access Display; arg2 : access XEvent; arg3 : XPointer) return int; arg4 : XPointer) return int -- /usr/include/X11/Xlib.h:2102 with Import => True, Convention => C, External_Name => "XCheckIfEvent"; -- display -- event_return -- display -- event -- arg -- predicate -- arg function XCheckMaskEvent (arg1 : access Display; arg2 : long; arg3 : access XEvent) return int -- /usr/include/X11/Xlib.h:2113 with Import => True, Convention => C, External_Name => "XCheckMaskEvent"; -- display -- event_mask -- event_return function XCheckTypedEvent (arg1 : access Display; arg2 : int; arg3 : access XEvent) return int -- /usr/include/X11/Xlib.h:2119 with Import => True, Convention => C, External_Name => "XCheckTypedEvent"; -- display -- event_type -- event_return function XCheckTypedWindowEvent (arg1 : access Display; arg2 : X11.Window; arg3 : int; arg4 : access XEvent) return int -- /usr/include/X11/Xlib.h:2125 with Import => True, Convention => C, External_Name => "XCheckTypedWindowEvent"; -- display -- w -- event_type -- event_return function XCheckWindowEvent (arg1 : access Display; arg2 : X11.Window; arg3 : long; arg4 : access XEvent) return int -- /usr/include/X11/Xlib.h:2132 with Import => True, Convention => C, External_Name => "XCheckWindowEvent"; -- display -- w -- event_mask -- event_return function XCirculateSubwindows (arg1 : access Display; arg2 : X11.Window; arg3 : int) return int -- /usr/include/X11/Xlib.h:2139 with Import => True, Convention => C, External_Name => "XCirculateSubwindows"; -- display -- w -- direction function XCirculateSubwindowsDown (arg1 : access Display; arg2 : X11.Window) return int -- /usr/include/X11/Xlib.h:2145 with Import => True, Convention => C, External_Name => "XCirculateSubwindowsDown"; -- display -- w function XCirculateSubwindowsUp (arg1 : access Display; arg2 : X11.Window) return int -- /usr/include/X11/Xlib.h:2150 with Import => True, Convention => C, External_Name => "XCirculateSubwindowsUp"; -- display -- w function XClearArea (arg1 : access Display; arg2 : X11.Window; arg3 : int; arg4 : int; arg5 : unsigned; arg6 : unsigned; arg7 : int) return int -- /usr/include/X11/Xlib.h:2155 with Import => True, Convention => C, External_Name => "XClearArea"; -- display -- w -- x -- y -- width -- height -- exposures function XClearWindow (arg1 : access Display; arg2 : X11.Window) return int -- /usr/include/X11/Xlib.h:2165 with Import => True, Convention => C, External_Name => "XClearWindow"; -- display -- w function XCloseDisplay (arg1 : access Display) return int -- /usr/include/X11/Xlib.h:2170 with Import => True, Convention => C, External_Name => "XCloseDisplay"; -- display function XConfigureWindow (arg1 : access Display; arg2 : X11.Window; arg3 : unsigned; arg4 : access XWindowChanges) return int -- /usr/include/X11/Xlib.h:2174 with Import => True, Convention => C, External_Name => "XConfigureWindow"; -- display -- w -- value_mask -- values function XConnectionNumber (arg1 : access Display) return int -- /usr/include/X11/Xlib.h:2181 with Import => True, Convention => C, External_Name => "XConnectionNumber"; -- display function XConvertSelection (arg1 : access Display; arg2 : X11.Atom; arg3 : X11.Atom; arg4 : X11.Atom; arg5 : X11.Window; arg6 : X11.Time) return int -- /usr/include/X11/Xlib.h:2185 with Import => True, Convention => C, External_Name => "XConvertSelection"; -- display -- selection -- target -- property -- requestor -- time function XCopyArea (arg1 : access Display; arg2 : X11.Drawable; arg3 : X11.Drawable; arg4 : GC; arg5 : int; arg6 : int; arg7 : unsigned; arg8 : unsigned; arg9 : int; arg10 : int) return int -- /usr/include/X11/Xlib.h:2194 with Import => True, Convention => C, External_Name => "XCopyArea"; -- display -- src -- dest -- gc -- src_x -- src_y -- width -- height -- dest_x -- dest_y function XCopyGC (arg1 : access Display; arg2 : GC; arg3 : unsigned_long; arg4 : GC) return int -- /usr/include/X11/Xlib.h:2207 with Import => True, Convention => C, External_Name => "XCopyGC"; -- display -- src -- valuemask -- dest function XCopyPlane (arg1 : access Display; arg2 : X11.Drawable; arg3 : X11.Drawable; arg4 : GC; arg5 : int; arg6 : int; arg7 : unsigned; arg8 : unsigned; arg9 : int; arg10 : int; arg11 : unsigned_long) return int -- /usr/include/X11/Xlib.h:2214 with Import => True, Convention => C, External_Name => "XCopyPlane"; -- display -- src -- dest -- gc -- src_x -- src_y -- width -- height -- dest_x -- dest_y -- plane function XDefaultDepth (arg1 : access Display; arg2 : int) return int -- /usr/include/X11/Xlib.h:2228 with Import => True, Convention => C, External_Name => "XDefaultDepth"; -- display -- screen_number function XDefaultDepthOfScreen (arg1 : access Screen) return int -- /usr/include/X11/Xlib.h:2233 with Import => True, Convention => C, External_Name => "XDefaultDepthOfScreen"; -- screen function XDefaultScreen (arg1 : access Display) return int -- /usr/include/X11/Xlib.h:2237 with Import => True, Convention => C, External_Name => "XDefaultScreen"; -- display function XDefineCursor (arg1 : access Display; arg2 : X11.Window; arg3 : X11.Cursor) return int -- /usr/include/X11/Xlib.h:2241 with Import => True, Convention => C, External_Name => "XDefineCursor"; -- display -- w -- cursor function XDeleteProperty (arg1 : access Display; arg2 : X11.Window; arg3 : X11.Atom) return int -- /usr/include/X11/Xlib.h:2247 with Import => True, Convention => C, External_Name => "XDeleteProperty"; -- display -- w -- property function XDestroyWindow (arg1 : access Display; arg2 : X11.Window) return int -- /usr/include/X11/Xlib.h:2253 with Import => True, Convention => C, External_Name => "XDestroyWindow"; -- display -- w function XDestroySubwindows (arg1 : access Display; arg2 : X11.Window) return int -- /usr/include/X11/Xlib.h:2258 with Import => True, Convention => C, External_Name => "XDestroySubwindows"; -- display -- w function XDoesBackingStore (arg1 : access Screen) return int -- /usr/include/X11/Xlib.h:2263 with Import => True, Convention => C, External_Name => "XDoesBackingStore"; -- screen function XDoesSaveUnders (arg1 : access Screen) return int -- /usr/include/X11/Xlib.h:2267 with Import => True, Convention => C, External_Name => "XDoesSaveUnders"; -- screen function XDisableAccessControl (arg1 : access Display) return int -- /usr/include/X11/Xlib.h:2271 with Import => True, Convention => C, External_Name => "XDisableAccessControl"; -- display function XDisplayCells (arg1 : access Display; arg2 : int) return int -- /usr/include/X11/Xlib.h:2276 with Import => True, Convention => C, External_Name => "XDisplayCells"; -- display -- screen_number function XDisplayHeight (arg1 : access Display; arg2 : int) return int -- /usr/include/X11/Xlib.h:2281 with Import => True, Convention => C, External_Name => "XDisplayHeight"; -- display -- screen_number function XDisplayHeightMM (arg1 : access Display; arg2 : int) return int -- /usr/include/X11/Xlib.h:2286 with Import => True, Convention => C, External_Name => "XDisplayHeightMM"; -- display -- screen_number function XDisplayKeycodes (arg1 : access Display; arg2 : access int; arg3 : access int) return int -- /usr/include/X11/Xlib.h:2291 with Import => True, Convention => C, External_Name => "XDisplayKeycodes"; -- display -- min_keycodes_return -- max_keycodes_return function XDisplayPlanes (arg1 : access Display; arg2 : int) return int -- /usr/include/X11/Xlib.h:2297 with Import => True, Convention => C, External_Name => "XDisplayPlanes"; -- display -- screen_number function XDisplayWidth (arg1 : access Display; arg2 : int) return int -- /usr/include/X11/Xlib.h:2302 with Import => True, Convention => C, External_Name => "XDisplayWidth"; -- display -- screen_number function XDisplayWidthMM (arg1 : access Display; arg2 : int) return int -- /usr/include/X11/Xlib.h:2307 with Import => True, Convention => C, External_Name => "XDisplayWidthMM"; -- display -- screen_number function XDrawArc (arg1 : access Display; arg2 : X11.Drawable; arg3 : GC; arg4 : int; arg5 : int; arg6 : unsigned; arg7 : unsigned; arg8 : int; arg9 : int) return int -- /usr/include/X11/Xlib.h:2312 with Import => True, Convention => C, External_Name => "XDrawArc"; -- display -- d -- gc -- x -- y -- width -- height -- angle1 -- angle2 function XDrawArcs (arg1 : access Display; arg2 : X11.Drawable; arg3 : GC; arg4 : access XArc; arg5 : int) return int -- /usr/include/X11/Xlib.h:2324 with Import => True, Convention => C, External_Name => "XDrawArcs"; -- display -- d -- gc -- arcs -- narcs function XDrawImageString (arg1 : access Display; arg2 : X11.Drawable; arg3 : GC; arg4 : int; arg5 : int; arg6 : Interfaces.C.Strings.chars_ptr; arg7 : int) return int -- /usr/include/X11/Xlib.h:2332 with Import => True, Convention => C, External_Name => "XDrawImageString"; -- display -- d -- gc -- x -- y -- string -- length function XDrawImageString16 (arg1 : access Display; arg2 : X11.Drawable; arg3 : GC; arg4 : int; arg5 : int; arg6 : access constant XChar2b; arg7 : int) return int -- /usr/include/X11/Xlib.h:2342 with Import => True, Convention => C, External_Name => "XDrawImageString16"; -- display -- d -- gc -- x -- y -- string -- length function XDrawLine (arg1 : access Display; arg2 : X11.Drawable; arg3 : GC; arg4 : int; arg5 : int; arg6 : int; arg7 : int) return int -- /usr/include/X11/Xlib.h:2352 with Import => True, Convention => C, External_Name => "XDrawLine"; -- display -- d -- gc -- x1 -- y1 -- x2 -- y2 function XDrawLines (arg1 : access Display; arg2 : X11.Drawable; arg3 : GC; arg4 : access XPoint; arg5 : int; arg6 : int) return int -- /usr/include/X11/Xlib.h:2362 with Import => True, Convention => C, External_Name => "XDrawLines"; -- display -- d -- gc -- points -- npoints -- mode function XDrawPoint (arg1 : access Display; arg2 : X11.Drawable; arg3 : GC; arg4 : int; arg5 : int) return int -- /usr/include/X11/Xlib.h:2371 with Import => True, Convention => C, External_Name => "XDrawPoint"; -- display -- d -- gc -- x -- y function XDrawPoints (arg1 : access Display; arg2 : X11.Drawable; arg3 : GC; arg4 : access XPoint; arg5 : int; arg6 : int) return int -- /usr/include/X11/Xlib.h:2379 with Import => True, Convention => C, External_Name => "XDrawPoints"; -- display -- d -- gc -- points -- npoints -- mode function XDrawRectangle (arg1 : access Display; arg2 : X11.Drawable; arg3 : GC; arg4 : int; arg5 : int; arg6 : unsigned; arg7 : unsigned) return int -- /usr/include/X11/Xlib.h:2388 with Import => True, Convention => C, External_Name => "XDrawRectangle"; -- display -- d -- gc -- x -- y -- width -- height function XDrawRectangles (arg1 : access Display; arg2 : X11.Drawable; arg3 : GC; arg4 : access XRectangle; arg5 : int) return int -- /usr/include/X11/Xlib.h:2398 with Import => True, Convention => C, External_Name => "XDrawRectangles"; -- display -- d -- gc -- rectangles -- nrectangles function XDrawSegments (arg1 : access Display; arg2 : X11.Drawable; arg3 : GC; arg4 : access XSegment; arg5 : int) return int -- /usr/include/X11/Xlib.h:2406 with Import => True, Convention => C, External_Name => "XDrawSegments"; -- display -- d -- gc -- segments -- nsegments function XDrawString (arg1 : access Display; arg2 : X11.Drawable; arg3 : GC; arg4 : int; arg5 : int; arg6 : Interfaces.C.Strings.chars_ptr; arg7 : int) return int -- /usr/include/X11/Xlib.h:2414 with Import => True, Convention => C, External_Name => "XDrawString"; -- display -- d -- gc -- x -- y -- string -- length function XDrawString16 (arg1 : access Display; arg2 : X11.Drawable; arg3 : GC; arg4 : int; arg5 : int; arg6 : access constant XChar2b; arg7 : int) return int -- /usr/include/X11/Xlib.h:2424 with Import => True, Convention => C, External_Name => "XDrawString16"; -- display -- d -- gc -- x -- y -- string -- length function XDrawText (arg1 : access Display; arg2 : X11.Drawable; arg3 : GC; arg4 : int; arg5 : int; arg6 : access XTextItem; arg7 : int) return int -- /usr/include/X11/Xlib.h:2434 with Import => True, Convention => C, External_Name => "XDrawText"; -- display -- d -- gc -- x -- y -- items -- nitems function XDrawText16 (arg1 : access Display; arg2 : X11.Drawable; arg3 : GC; arg4 : int; arg5 : int; arg6 : access XTextItem16; arg7 : int) return int -- /usr/include/X11/Xlib.h:2444 with Import => True, Convention => C, External_Name => "XDrawText16"; -- display -- d -- gc -- x -- y -- items -- nitems function XEnableAccessControl (arg1 : access Display) return int -- /usr/include/X11/Xlib.h:2454 with Import => True, Convention => C, External_Name => "XEnableAccessControl"; -- display function XEventsQueued (arg1 : access Display; arg2 : int) return int -- /usr/include/X11/Xlib.h:2458 with Import => True, Convention => C, External_Name => "XEventsQueued"; -- display -- mode function XFetchName (arg1 : access Display; arg2 : X11.Window; arg3 : System.Address) return int -- /usr/include/X11/Xlib.h:2463 with Import => True, Convention => C, External_Name => "XFetchName"; -- display -- w -- window_name_return function XFillArc (arg1 : access Display; arg2 : X11.Drawable; arg3 : GC; arg4 : int; arg5 : int; arg6 : unsigned; arg7 : unsigned; arg8 : int; arg9 : int) return int -- /usr/include/X11/Xlib.h:2469 with Import => True, Convention => C, External_Name => "XFillArc"; -- display -- d -- gc -- x -- y -- width -- height -- angle1 -- angle2 function XFillArcs (arg1 : access Display; arg2 : X11.Drawable; arg3 : GC; arg4 : access XArc; arg5 : int) return int -- /usr/include/X11/Xlib.h:2481 with Import => True, Convention => C, External_Name => "XFillArcs"; -- display -- d -- gc -- arcs -- narcs function XFillPolygon (arg1 : access Display; arg2 : X11.Drawable; arg3 : GC; arg4 : access XPoint; arg5 : int; arg6 : int; arg7 : int) return int -- /usr/include/X11/Xlib.h:2489 with Import => True, Convention => C, External_Name => "XFillPolygon"; -- display -- d -- gc -- points -- npoints -- shape -- mode function XFillRectangle (arg1 : access Display; arg2 : X11.Drawable; arg3 : GC; arg4 : int; arg5 : int; arg6 : unsigned; arg7 : unsigned) return int -- /usr/include/X11/Xlib.h:2499 with Import => True, Convention => C, External_Name => "XFillRectangle"; -- display -- d -- gc -- x -- y -- width -- height function XFillRectangles (arg1 : access Display; arg2 : X11.Drawable; arg3 : GC; arg4 : access XRectangle; arg5 : int) return int -- /usr/include/X11/Xlib.h:2509 with Import => True, Convention => C, External_Name => "XFillRectangles"; -- display -- d -- gc -- rectangles -- nrectangles function XFlush (arg1 : access Display) return int -- /usr/include/X11/Xlib.h:2517 with Import => True, Convention => C, External_Name => "XFlush"; -- display function XForceScreenSaver (arg1 : access Display; arg2 : int) return int -- /usr/include/X11/Xlib.h:2521 with Import => True, Convention => C, External_Name => "XForceScreenSaver"; -- display -- mode function XFree (arg1 : System.Address) return int -- /usr/include/X11/Xlib.h:2526 with Import => True, Convention => C, External_Name => "XFree"; -- data function XFreeColormap (arg1 : access Display; arg2 : X11.Colormap) return int -- /usr/include/X11/Xlib.h:2530 with Import => True, Convention => C, External_Name => "XFreeColormap"; -- display -- colormap function XFreeColors (arg1 : access Display; arg2 : X11.Colormap; arg3 : access unsigned_long; arg4 : int; arg5 : unsigned_long) return int -- /usr/include/X11/Xlib.h:2535 with Import => True, Convention => C, External_Name => "XFreeColors"; -- display -- colormap -- pixels -- npixels -- planes function XFreeCursor (arg1 : access Display; arg2 : X11.Cursor) return int -- /usr/include/X11/Xlib.h:2543 with Import => True, Convention => C, External_Name => "XFreeCursor"; -- display -- cursor function XFreeExtensionList (arg1 : System.Address) return int -- /usr/include/X11/Xlib.h:2548 with Import => True, Convention => C, External_Name => "XFreeExtensionList"; -- list function XFreeFont (arg1 : access Display; arg2 : access XFontStruct) return int -- /usr/include/X11/Xlib.h:2552 with Import => True, Convention => C, External_Name => "XFreeFont"; -- display -- font_struct function XFreeFontInfo (arg1 : System.Address; arg2 : access XFontStruct; arg3 : int) return int -- /usr/include/X11/Xlib.h:2557 with Import => True, Convention => C, External_Name => "XFreeFontInfo"; -- names -- free_info -- actual_count function XFreeFontNames (arg1 : System.Address) return int -- /usr/include/X11/Xlib.h:2563 with Import => True, Convention => C, External_Name => "XFreeFontNames"; -- list function XFreeFontPath (arg1 : System.Address) return int -- /usr/include/X11/Xlib.h:2567 with Import => True, Convention => C, External_Name => "XFreeFontPath"; -- list function XFreeGC (arg1 : access Display; arg2 : GC) return int -- /usr/include/X11/Xlib.h:2571 with Import => True, Convention => C, External_Name => "XFreeGC"; -- display -- gc function XFreeModifiermap (arg1 : access XModifierKeymap) return int -- /usr/include/X11/Xlib.h:2576 with Import => True, Convention => C, External_Name => "XFreeModifiermap"; -- modmap function XFreePixmap (arg1 : access Display; arg2 : X11.Pixmap) return int -- /usr/include/X11/Xlib.h:2580 with Import => True, Convention => C, External_Name => "XFreePixmap"; -- display -- pixmap function XGeometry (arg1 : access Display; arg2 : int; arg3 : Interfaces.C.Strings.chars_ptr; arg4 : Interfaces.C.Strings.chars_ptr; arg5 : unsigned; arg6 : unsigned; arg7 : unsigned; arg8 : int; arg9 : int; arg10 : access int; arg11 : access int; arg12 : access int; arg13 : access int) return int -- /usr/include/X11/Xlib.h:2585 with Import => True, Convention => C, External_Name => "XGeometry"; -- display -- screen -- position -- default_position -- bwidth -- fwidth -- fheight -- xadder -- yadder -- x_return -- y_return -- width_return -- height_return function XGetErrorDatabaseText (arg1 : access Display; arg2 : Interfaces.C.Strings.chars_ptr; arg3 : Interfaces.C.Strings.chars_ptr; arg4 : Interfaces.C.Strings.chars_ptr; arg5 : Interfaces.C.Strings.chars_ptr; arg6 : int) return int -- /usr/include/X11/Xlib.h:2601 with Import => True, Convention => C, External_Name => "XGetErrorDatabaseText"; -- display -- name -- message -- default_string -- buffer_return -- length function XGetErrorText (arg1 : access Display; arg2 : int; arg3 : Interfaces.C.Strings.chars_ptr; arg4 : int) return int -- /usr/include/X11/Xlib.h:2610 with Import => True, Convention => C, External_Name => "XGetErrorText"; -- display -- code -- buffer_return -- length function XGetFontProperty (arg1 : access XFontStruct; arg2 : X11.Atom; arg3 : access unsigned_long) return int -- /usr/include/X11/Xlib.h:2617 with Import => True, Convention => C, External_Name => "XGetFontProperty"; -- font_struct -- atom -- value_return function XGetGCValues (arg1 : access Display; arg2 : GC; arg3 : unsigned_long; arg4 : access XGCValues) return int -- /usr/include/X11/Xlib.h:2623 with Import => True, Convention => C, External_Name => "XGetGCValues"; -- display -- gc -- valuemask -- values_return function XGetGeometry (arg1 : access Display; arg2 : X11.Drawable; arg3 : access X11.Window; arg4 : access int; arg5 : access int; arg6 : access unsigned; arg7 : access unsigned; arg8 : access unsigned; arg9 : access unsigned) return int -- /usr/include/X11/Xlib.h:2630 with Import => True, Convention => C, External_Name => "XGetGeometry"; -- display -- d -- root_return -- x_return -- y_return -- width_return -- height_return -- border_width_return -- depth_return function XGetIconName (arg1 : access Display; arg2 : X11.Window; arg3 : System.Address) return int -- /usr/include/X11/Xlib.h:2642 with Import => True, Convention => C, External_Name => "XGetIconName"; -- display -- w -- icon_name_return function XGetInputFocus (arg1 : access Display; arg2 : access X11.Window; arg3 : access int) return int -- /usr/include/X11/Xlib.h:2648 with Import => True, Convention => C, External_Name => "XGetInputFocus"; -- display -- focus_return -- revert_to_return function XGetKeyboardControl (arg1 : access Display; arg2 : access XKeyboardState) return int -- /usr/include/X11/Xlib.h:2654 with Import => True, Convention => C, External_Name => "XGetKeyboardControl"; -- display -- values_return function XGetPointerControl (arg1 : access Display; arg2 : access int; arg3 : access int; arg4 : access int) return int -- /usr/include/X11/Xlib.h:2659 with Import => True, Convention => C, External_Name => "XGetPointerControl"; -- display -- accel_numerator_return -- accel_denominator_return -- threshold_return function XGetPointerMapping (arg1 : access Display; arg2 : access unsigned_char; arg3 : int) return int -- /usr/include/X11/Xlib.h:2666 with Import => True, Convention => C, External_Name => "XGetPointerMapping"; -- display -- map_return -- nmap function XGetScreenSaver (arg1 : access Display; arg2 : access int; arg3 : access int; arg4 : access int; arg5 : access int) return int -- /usr/include/X11/Xlib.h:2672 with Import => True, Convention => C, External_Name => "XGetScreenSaver"; -- display -- timeout_return -- interval_return -- prefer_blanking_return -- allow_exposures_return function XGetTransientForHint (arg1 : access Display; arg2 : X11.Window; arg3 : access X11.Window) return int -- /usr/include/X11/Xlib.h:2680 with Import => True, Convention => C, External_Name => "XGetTransientForHint"; -- display -- w -- prop_window_return function XGetWindowProperty (arg1 : access Display; arg2 : X11.Window; arg3 : X11.Atom; arg4 : long; arg5 : long; arg6 : int; arg7 : X11.Atom; arg8 : access X11.Atom; arg9 : access int; arg10 : access unsigned_long; arg11 : access unsigned_long; arg12 : System.Address) return int -- /usr/include/X11/Xlib.h:2686 with Import => True, Convention => C, External_Name => "XGetWindowProperty"; -- display -- w -- property -- long_offset -- long_length -- delete -- req_type -- actual_type_return -- actual_format_return -- nitems_return -- bytes_after_return -- prop_return function XGetWindowAttributes (arg1 : access Display; arg2 : X11.Window; arg3 : access XWindowAttributes) return int -- /usr/include/X11/Xlib.h:2701 with Import => True, Convention => C, External_Name => "XGetWindowAttributes"; -- display -- w -- window_attributes_return function XGrabButton (arg1 : access Display; arg2 : unsigned; arg3 : unsigned; arg4 : X11.Window; arg5 : int; arg6 : unsigned; arg7 : int; arg8 : int; arg9 : X11.Window; arg10 : X11.Cursor) return int -- /usr/include/X11/Xlib.h:2707 with Import => True, Convention => C, External_Name => "XGrabButton"; -- display -- button -- modifiers -- grab_window -- owner_events -- event_mask -- pointer_mode -- keyboard_mode -- confine_to -- cursor function XGrabKey (arg1 : access Display; arg2 : int; arg3 : unsigned; arg4 : X11.Window; arg5 : int; arg6 : int; arg7 : int) return int -- /usr/include/X11/Xlib.h:2720 with Import => True, Convention => C, External_Name => "XGrabKey"; -- display -- keycode -- modifiers -- grab_window -- owner_events -- pointer_mode -- keyboard_mode function XGrabKeyboard (arg1 : access Display; arg2 : X11.Window; arg3 : int; arg4 : int; arg5 : int; arg6 : X11.Time) return int -- /usr/include/X11/Xlib.h:2730 with Import => True, Convention => C, External_Name => "XGrabKeyboard"; -- display -- grab_window -- owner_events -- pointer_mode -- keyboard_mode -- time function XGrabPointer (arg1 : access Display; arg2 : X11.Window; arg3 : int; arg4 : unsigned; arg5 : int; arg6 : int; arg7 : X11.Window; arg8 : X11.Cursor; arg9 : X11.Time) return int -- /usr/include/X11/Xlib.h:2739 with Import => True, Convention => C, External_Name => "XGrabPointer"; -- display -- grab_window -- owner_events -- event_mask -- pointer_mode -- keyboard_mode -- confine_to -- cursor -- time function XGrabServer (arg1 : access Display) return int -- /usr/include/X11/Xlib.h:2751 with Import => True, Convention => C, External_Name => "XGrabServer"; -- display function XHeightMMOfScreen (arg1 : access Screen) return int -- /usr/include/X11/Xlib.h:2755 with Import => True, Convention => C, External_Name => "XHeightMMOfScreen"; -- screen function XHeightOfScreen (arg1 : access Screen) return int -- /usr/include/X11/Xlib.h:2759 with Import => True, Convention => C, External_Name => "XHeightOfScreen"; -- screen function XIfEvent (arg1 : access Display; arg2 : access XEvent; arg3 : access function (arg1 : access Display; arg2 : access XEvent; arg3 : XPointer) return int; arg4 : XPointer) return int -- /usr/include/X11/Xlib.h:2763 with Import => True, Convention => C, External_Name => "XIfEvent"; -- display -- event_return -- display -- event -- arg -- predicate -- arg function XImageByteOrder (arg1 : access Display) return int -- /usr/include/X11/Xlib.h:2774 with Import => True, Convention => C, External_Name => "XImageByteOrder"; -- display function XInstallColormap (arg1 : access Display; arg2 : X11.Colormap) return int -- /usr/include/X11/Xlib.h:2778 with Import => True, Convention => C, External_Name => "XInstallColormap"; -- display -- colormap function XKeysymToKeycode (arg1 : access Display; arg2 : X11.KeySym) return X11.KeyCode -- /usr/include/X11/Xlib.h:2783 with Import => True, Convention => C, External_Name => "XKeysymToKeycode"; -- display -- keysym function XKillClient (arg1 : access Display; arg2 : X11.XID) return int -- /usr/include/X11/Xlib.h:2788 with Import => True, Convention => C, External_Name => "XKillClient"; -- display -- resource function XLookupColor (arg1 : access Display; arg2 : X11.Colormap; arg3 : Interfaces.C.Strings.chars_ptr; arg4 : access XColor; arg5 : access XColor) return int -- /usr/include/X11/Xlib.h:2793 with Import => True, Convention => C, External_Name => "XLookupColor"; -- display -- colormap -- color_name -- exact_def_return -- screen_def_return function XLowerWindow (arg1 : access Display; arg2 : X11.Window) return int -- /usr/include/X11/Xlib.h:2801 with Import => True, Convention => C, External_Name => "XLowerWindow"; -- display -- w function XMapRaised (arg1 : access Display; arg2 : X11.Window) return int -- /usr/include/X11/Xlib.h:2806 with Import => True, Convention => C, External_Name => "XMapRaised"; -- display -- w function XMapSubwindows (arg1 : access Display; arg2 : X11.Window) return int -- /usr/include/X11/Xlib.h:2811 with Import => True, Convention => C, External_Name => "XMapSubwindows"; -- display -- w function XMapWindow (arg1 : access Display; arg2 : X11.Window) return int -- /usr/include/X11/Xlib.h:2816 with Import => True, Convention => C, External_Name => "XMapWindow"; -- display -- w function XMaskEvent (arg1 : access Display; arg2 : long; arg3 : access XEvent) return int -- /usr/include/X11/Xlib.h:2821 with Import => True, Convention => C, External_Name => "XMaskEvent"; -- display -- event_mask -- event_return function XMaxCmapsOfScreen (arg1 : access Screen) return int -- /usr/include/X11/Xlib.h:2827 with Import => True, Convention => C, External_Name => "XMaxCmapsOfScreen"; -- screen function XMinCmapsOfScreen (arg1 : access Screen) return int -- /usr/include/X11/Xlib.h:2831 with Import => True, Convention => C, External_Name => "XMinCmapsOfScreen"; -- screen function XMoveResizeWindow (arg1 : access Display; arg2 : X11.Window; arg3 : int; arg4 : int; arg5 : unsigned; arg6 : unsigned) return int -- /usr/include/X11/Xlib.h:2835 with Import => True, Convention => C, External_Name => "XMoveResizeWindow"; -- display -- w -- x -- y -- width -- height function XMoveWindow (arg1 : access Display; arg2 : X11.Window; arg3 : int; arg4 : int) return int -- /usr/include/X11/Xlib.h:2844 with Import => True, Convention => C, External_Name => "XMoveWindow"; -- display -- w -- x -- y function XNextEvent (arg1 : access Display; arg2 : access XEvent) return int -- /usr/include/X11/Xlib.h:2851 with Import => True, Convention => C, External_Name => "XNextEvent"; -- display -- event_return function XNoOp (arg1 : access Display) return int -- /usr/include/X11/Xlib.h:2856 with Import => True, Convention => C, External_Name => "XNoOp"; -- display function XParseColor (arg1 : access Display; arg2 : X11.Colormap; arg3 : Interfaces.C.Strings.chars_ptr; arg4 : access XColor) return int -- /usr/include/X11/Xlib.h:2860 with Import => True, Convention => C, External_Name => "XParseColor"; -- display -- colormap -- spec -- exact_def_return function XParseGeometry (arg1 : Interfaces.C.Strings.chars_ptr; arg2 : access int; arg3 : access int; arg4 : access unsigned; arg5 : access unsigned) return int -- /usr/include/X11/Xlib.h:2867 with Import => True, Convention => C, External_Name => "XParseGeometry"; -- parsestring -- x_return -- y_return -- width_return -- height_return function XPeekEvent (arg1 : access Display; arg2 : access XEvent) return int -- /usr/include/X11/Xlib.h:2875 with Import => True, Convention => C, External_Name => "XPeekEvent"; -- display -- event_return function XPeekIfEvent (arg1 : access Display; arg2 : access XEvent; arg3 : access function (arg1 : access Display; arg2 : access XEvent; arg3 : XPointer) return int; arg4 : XPointer) return int -- /usr/include/X11/Xlib.h:2880 with Import => True, Convention => C, External_Name => "XPeekIfEvent"; -- display -- event_return -- display -- event -- arg -- predicate -- arg function XPending (arg1 : access Display) return int -- /usr/include/X11/Xlib.h:2891 with Import => True, Convention => C, External_Name => "XPending"; -- display function XPlanesOfScreen (arg1 : access Screen) return int -- /usr/include/X11/Xlib.h:2895 with Import => True, Convention => C, External_Name => "XPlanesOfScreen"; -- screen function XProtocolRevision (arg1 : access Display) return int -- /usr/include/X11/Xlib.h:2899 with Import => True, Convention => C, External_Name => "XProtocolRevision"; -- display function XProtocolVersion (arg1 : access Display) return int -- /usr/include/X11/Xlib.h:2903 with Import => True, Convention => C, External_Name => "XProtocolVersion"; -- display function XPutBackEvent (arg1 : access Display; arg2 : access XEvent) return int -- /usr/include/X11/Xlib.h:2908 with Import => True, Convention => C, External_Name => "XPutBackEvent"; -- display -- event function XPutImage (arg1 : access Display; arg2 : X11.Drawable; arg3 : GC; arg4 : access XImage; arg5 : int; arg6 : int; arg7 : int; arg8 : int; arg9 : unsigned; arg10 : unsigned) return int -- /usr/include/X11/Xlib.h:2913 with Import => True, Convention => C, External_Name => "XPutImage"; -- display -- d -- gc -- image -- src_x -- src_y -- dest_x -- dest_y -- width -- height function XQLength (arg1 : access Display) return int -- /usr/include/X11/Xlib.h:2926 with Import => True, Convention => C, External_Name => "XQLength"; -- display function XQueryBestCursor (arg1 : access Display; arg2 : X11.Drawable; arg3 : unsigned; arg4 : unsigned; arg5 : access unsigned; arg6 : access unsigned) return int -- /usr/include/X11/Xlib.h:2930 with Import => True, Convention => C, External_Name => "XQueryBestCursor"; -- display -- d -- width -- height -- width_return -- height_return function XQueryBestSize (arg1 : access Display; arg2 : int; arg3 : X11.Drawable; arg4 : unsigned; arg5 : unsigned; arg6 : access unsigned; arg7 : access unsigned) return int -- /usr/include/X11/Xlib.h:2939 with Import => True, Convention => C, External_Name => "XQueryBestSize"; -- display -- class -- which_screen -- width -- height -- width_return -- height_return function XQueryBestStipple (arg1 : access Display; arg2 : X11.Drawable; arg3 : unsigned; arg4 : unsigned; arg5 : access unsigned; arg6 : access unsigned) return int -- /usr/include/X11/Xlib.h:2949 with Import => True, Convention => C, External_Name => "XQueryBestStipple"; -- display -- which_screen -- width -- height -- width_return -- height_return function XQueryBestTile (arg1 : access Display; arg2 : X11.Drawable; arg3 : unsigned; arg4 : unsigned; arg5 : access unsigned; arg6 : access unsigned) return int -- /usr/include/X11/Xlib.h:2958 with Import => True, Convention => C, External_Name => "XQueryBestTile"; -- display -- which_screen -- width -- height -- width_return -- height_return function XQueryColor (arg1 : access Display; arg2 : X11.Colormap; arg3 : access XColor) return int -- /usr/include/X11/Xlib.h:2967 with Import => True, Convention => C, External_Name => "XQueryColor"; -- display -- colormap -- def_in_out function XQueryColors (arg1 : access Display; arg2 : X11.Colormap; arg3 : access XColor; arg4 : int) return int -- /usr/include/X11/Xlib.h:2973 with Import => True, Convention => C, External_Name => "XQueryColors"; -- display -- colormap -- defs_in_out -- ncolors function XQueryExtension (arg1 : access Display; arg2 : Interfaces.C.Strings.chars_ptr; arg3 : access int; arg4 : access int; arg5 : access int) return int -- /usr/include/X11/Xlib.h:2980 with Import => True, Convention => C, External_Name => "XQueryExtension"; -- display -- name -- major_opcode_return -- first_event_return -- first_error_return function XQueryKeymap (arg1 : access Display; arg2 : Interfaces.C.Strings.chars_ptr) return int -- /usr/include/X11/Xlib.h:2988 with Import => True, Convention => C, External_Name => "XQueryKeymap"; -- display -- keys_return function XQueryPointer (arg1 : access Display; arg2 : X11.Window; arg3 : access X11.Window; arg4 : access X11.Window; arg5 : access int; arg6 : access int; arg7 : access int; arg8 : access int; arg9 : access unsigned) return int -- /usr/include/X11/Xlib.h:2993 with Import => True, Convention => C, External_Name => "XQueryPointer"; -- display -- w -- root_return -- child_return -- root_x_return -- root_y_return -- win_x_return -- win_y_return -- mask_return function XQueryTextExtents (arg1 : access Display; arg2 : X11.XID; arg3 : Interfaces.C.Strings.chars_ptr; arg4 : int; arg5 : access int; arg6 : access int; arg7 : access int; arg8 : access XCharStruct) return int -- /usr/include/X11/Xlib.h:3005 with Import => True, Convention => C, External_Name => "XQueryTextExtents"; -- display -- font_ID -- string -- nchars -- direction_return -- font_ascent_return -- font_descent_return -- overall_return function XQueryTextExtents16 (arg1 : access Display; arg2 : X11.XID; arg3 : access constant XChar2b; arg4 : int; arg5 : access int; arg6 : access int; arg7 : access int; arg8 : access XCharStruct) return int -- /usr/include/X11/Xlib.h:3016 with Import => True, Convention => C, External_Name => "XQueryTextExtents16"; -- display -- font_ID -- string -- nchars -- direction_return -- font_ascent_return -- font_descent_return -- overall_return function XQueryTree (arg1 : access Display; arg2 : X11.Window; arg3 : access X11.Window; arg4 : access X11.Window; arg5 : System.Address; arg6 : access unsigned) return int -- /usr/include/X11/Xlib.h:3027 with Import => True, Convention => C, External_Name => "XQueryTree"; -- display -- w -- root_return -- parent_return -- children_return -- nchildren_return function XRaiseWindow (arg1 : access Display; arg2 : X11.Window) return int -- /usr/include/X11/Xlib.h:3036 with Import => True, Convention => C, External_Name => "XRaiseWindow"; -- display -- w function XReadBitmapFile (arg1 : access Display; arg2 : X11.Drawable; arg3 : Interfaces.C.Strings.chars_ptr; arg4 : access unsigned; arg5 : access unsigned; arg6 : access X11.Pixmap; arg7 : access int; arg8 : access int) return int -- /usr/include/X11/Xlib.h:3041 with Import => True, Convention => C, External_Name => "XReadBitmapFile"; -- display -- d -- filename -- width_return -- height_return -- bitmap_return -- x_hot_return -- y_hot_return function XReadBitmapFileData (arg1 : Interfaces.C.Strings.chars_ptr; arg2 : access unsigned; arg3 : access unsigned; arg4 : System.Address; arg5 : access int; arg6 : access int) return int -- /usr/include/X11/Xlib.h:3052 with Import => True, Convention => C, External_Name => "XReadBitmapFileData"; -- filename -- width_return -- height_return -- data_return -- x_hot_return -- y_hot_return function XRebindKeysym (arg1 : access Display; arg2 : X11.KeySym; arg3 : access X11.KeySym; arg4 : int; arg5 : access unsigned_char; arg6 : int) return int -- /usr/include/X11/Xlib.h:3061 with Import => True, Convention => C, External_Name => "XRebindKeysym"; -- display -- keysym -- list -- mod_count -- string -- bytes_string function XRecolorCursor (arg1 : access Display; arg2 : X11.Cursor; arg3 : access XColor; arg4 : access XColor) return int -- /usr/include/X11/Xlib.h:3070 with Import => True, Convention => C, External_Name => "XRecolorCursor"; -- display -- cursor -- foreground_color -- background_color function XRefreshKeyboardMapping (arg1 : access XMappingEvent) return int -- /usr/include/X11/Xlib.h:3077 with Import => True, Convention => C, External_Name => "XRefreshKeyboardMapping"; -- event_map function XRemoveFromSaveSet (arg1 : access Display; arg2 : X11.Window) return int -- /usr/include/X11/Xlib.h:3081 with Import => True, Convention => C, External_Name => "XRemoveFromSaveSet"; -- display -- w function XRemoveHost (arg1 : access Display; arg2 : access XHostAddress) return int -- /usr/include/X11/Xlib.h:3086 with Import => True, Convention => C, External_Name => "XRemoveHost"; -- display -- host function XRemoveHosts (arg1 : access Display; arg2 : access XHostAddress; arg3 : int) return int -- /usr/include/X11/Xlib.h:3091 with Import => True, Convention => C, External_Name => "XRemoveHosts"; -- display -- hosts -- num_hosts function XReparentWindow (arg1 : access Display; arg2 : X11.Window; arg3 : X11.Window; arg4 : int; arg5 : int) return int -- /usr/include/X11/Xlib.h:3097 with Import => True, Convention => C, External_Name => "XReparentWindow"; -- display -- w -- parent -- x -- y function XResetScreenSaver (arg1 : access Display) return int -- /usr/include/X11/Xlib.h:3105 with Import => True, Convention => C, External_Name => "XResetScreenSaver"; -- display function XResizeWindow (arg1 : access Display; arg2 : X11.Window; arg3 : unsigned; arg4 : unsigned) return int -- /usr/include/X11/Xlib.h:3109 with Import => True, Convention => C, External_Name => "XResizeWindow"; -- display -- w -- width -- height function XRestackWindows (arg1 : access Display; arg2 : access X11.Window; arg3 : int) return int -- /usr/include/X11/Xlib.h:3116 with Import => True, Convention => C, External_Name => "XRestackWindows"; -- display -- windows -- nwindows function XRotateBuffers (arg1 : access Display; arg2 : int) return int -- /usr/include/X11/Xlib.h:3122 with Import => True, Convention => C, External_Name => "XRotateBuffers"; -- display -- rotate function XRotateWindowProperties (arg1 : access Display; arg2 : X11.Window; arg3 : access X11.Atom; arg4 : int; arg5 : int) return int -- /usr/include/X11/Xlib.h:3127 with Import => True, Convention => C, External_Name => "XRotateWindowProperties"; -- display -- w -- properties -- num_prop -- npositions function XScreenCount (arg1 : access Display) return int -- /usr/include/X11/Xlib.h:3135 with Import => True, Convention => C, External_Name => "XScreenCount"; -- display function XSelectInput (arg1 : access Display; arg2 : X11.Window; arg3 : long) return int -- /usr/include/X11/Xlib.h:3139 with Import => True, Convention => C, External_Name => "XSelectInput"; -- display -- w -- event_mask function XSendEvent (arg1 : access Display; arg2 : X11.Window; arg3 : int; arg4 : long; arg5 : access XEvent) return int -- /usr/include/X11/Xlib.h:3145 with Import => True, Convention => C, External_Name => "XSendEvent"; -- display -- w -- propagate -- event_mask -- event_send function XSetAccessControl (arg1 : access Display; arg2 : int) return int -- /usr/include/X11/Xlib.h:3153 with Import => True, Convention => C, External_Name => "XSetAccessControl"; -- display -- mode function XSetArcMode (arg1 : access Display; arg2 : GC; arg3 : int) return int -- /usr/include/X11/Xlib.h:3158 with Import => True, Convention => C, External_Name => "XSetArcMode"; -- display -- gc -- arc_mode function XSetBackground (arg1 : access Display; arg2 : GC; arg3 : unsigned_long) return int -- /usr/include/X11/Xlib.h:3164 with Import => True, Convention => C, External_Name => "XSetBackground"; -- display -- gc -- background function XSetClipMask (arg1 : access Display; arg2 : GC; arg3 : X11.Pixmap) return int -- /usr/include/X11/Xlib.h:3170 with Import => True, Convention => C, External_Name => "XSetClipMask"; -- display -- gc -- pixmap function XSetClipOrigin (arg1 : access Display; arg2 : GC; arg3 : int; arg4 : int) return int -- /usr/include/X11/Xlib.h:3176 with Import => True, Convention => C, External_Name => "XSetClipOrigin"; -- display -- gc -- clip_x_origin -- clip_y_origin function XSetClipRectangles (arg1 : access Display; arg2 : GC; arg3 : int; arg4 : int; arg5 : access XRectangle; arg6 : int; arg7 : int) return int -- /usr/include/X11/Xlib.h:3183 with Import => True, Convention => C, External_Name => "XSetClipRectangles"; -- display -- gc -- clip_x_origin -- clip_y_origin -- rectangles -- n -- ordering function XSetCloseDownMode (arg1 : access Display; arg2 : int) return int -- /usr/include/X11/Xlib.h:3193 with Import => True, Convention => C, External_Name => "XSetCloseDownMode"; -- display -- close_mode function XSetCommand (arg1 : access Display; arg2 : X11.Window; arg3 : System.Address; arg4 : int) return int -- /usr/include/X11/Xlib.h:3198 with Import => True, Convention => C, External_Name => "XSetCommand"; -- display -- w -- argv -- argc function XSetDashes (arg1 : access Display; arg2 : GC; arg3 : int; arg4 : Interfaces.C.Strings.chars_ptr; arg5 : int) return int -- /usr/include/X11/Xlib.h:3205 with Import => True, Convention => C, External_Name => "XSetDashes"; -- display -- gc -- dash_offset -- dash_list -- n function XSetFillRule (arg1 : access Display; arg2 : GC; arg3 : int) return int -- /usr/include/X11/Xlib.h:3213 with Import => True, Convention => C, External_Name => "XSetFillRule"; -- display -- gc -- fill_rule function XSetFillStyle (arg1 : access Display; arg2 : GC; arg3 : int) return int -- /usr/include/X11/Xlib.h:3219 with Import => True, Convention => C, External_Name => "XSetFillStyle"; -- display -- gc -- fill_style function XSetFont (arg1 : access Display; arg2 : GC; arg3 : X11.Font) return int -- /usr/include/X11/Xlib.h:3225 with Import => True, Convention => C, External_Name => "XSetFont"; -- display -- gc -- font function XSetFontPath (arg1 : access Display; arg2 : System.Address; arg3 : int) return int -- /usr/include/X11/Xlib.h:3231 with Import => True, Convention => C, External_Name => "XSetFontPath"; -- display -- directories -- ndirs function XSetForeground (arg1 : access Display; arg2 : GC; arg3 : unsigned_long) return int -- /usr/include/X11/Xlib.h:3237 with Import => True, Convention => C, External_Name => "XSetForeground"; -- display -- gc -- foreground function XSetFunction (arg1 : access Display; arg2 : GC; arg3 : int) return int -- /usr/include/X11/Xlib.h:3243 with Import => True, Convention => C, External_Name => "XSetFunction"; -- display -- gc -- function function XSetGraphicsExposures (arg1 : access Display; arg2 : GC; arg3 : int) return int -- /usr/include/X11/Xlib.h:3249 with Import => True, Convention => C, External_Name => "XSetGraphicsExposures"; -- display -- gc -- graphics_exposures function XSetIconName (arg1 : access Display; arg2 : X11.Window; arg3 : Interfaces.C.Strings.chars_ptr) return int -- /usr/include/X11/Xlib.h:3255 with Import => True, Convention => C, External_Name => "XSetIconName"; -- display -- w -- icon_name function XSetInputFocus (arg1 : access Display; arg2 : X11.Window; arg3 : int; arg4 : X11.Time) return int -- /usr/include/X11/Xlib.h:3261 with Import => True, Convention => C, External_Name => "XSetInputFocus"; -- display -- focus -- revert_to -- time function XSetLineAttributes (arg1 : access Display; arg2 : GC; arg3 : unsigned; arg4 : int; arg5 : int; arg6 : int) return int -- /usr/include/X11/Xlib.h:3268 with Import => True, Convention => C, External_Name => "XSetLineAttributes"; -- display -- gc -- line_width -- line_style -- cap_style -- join_style function XSetModifierMapping (arg1 : access Display; arg2 : access XModifierKeymap) return int -- /usr/include/X11/Xlib.h:3277 with Import => True, Convention => C, External_Name => "XSetModifierMapping"; -- display -- modmap function XSetPlaneMask (arg1 : access Display; arg2 : GC; arg3 : unsigned_long) return int -- /usr/include/X11/Xlib.h:3282 with Import => True, Convention => C, External_Name => "XSetPlaneMask"; -- display -- gc -- plane_mask function XSetPointerMapping (arg1 : access Display; arg2 : access unsigned_char; arg3 : int) return int -- /usr/include/X11/Xlib.h:3288 with Import => True, Convention => C, External_Name => "XSetPointerMapping"; -- display -- map -- nmap function XSetScreenSaver (arg1 : access Display; arg2 : int; arg3 : int; arg4 : int; arg5 : int) return int -- /usr/include/X11/Xlib.h:3294 with Import => True, Convention => C, External_Name => "XSetScreenSaver"; -- display -- timeout -- interval -- prefer_blanking -- allow_exposures function XSetSelectionOwner (arg1 : access Display; arg2 : X11.Atom; arg3 : X11.Window; arg4 : X11.Time) return int -- /usr/include/X11/Xlib.h:3302 with Import => True, Convention => C, External_Name => "XSetSelectionOwner"; -- display -- selection -- owner -- time function XSetState (arg1 : access Display; arg2 : GC; arg3 : unsigned_long; arg4 : unsigned_long; arg5 : int; arg6 : unsigned_long) return int -- /usr/include/X11/Xlib.h:3309 with Import => True, Convention => C, External_Name => "XSetState"; -- display -- gc -- foreground -- background -- function -- plane_mask function XSetStipple (arg1 : access Display; arg2 : GC; arg3 : X11.Pixmap) return int -- /usr/include/X11/Xlib.h:3318 with Import => True, Convention => C, External_Name => "XSetStipple"; -- display -- gc -- stipple function XSetSubwindowMode (arg1 : access Display; arg2 : GC; arg3 : int) return int -- /usr/include/X11/Xlib.h:3324 with Import => True, Convention => C, External_Name => "XSetSubwindowMode"; -- display -- gc -- subwindow_mode function XSetTSOrigin (arg1 : access Display; arg2 : GC; arg3 : int; arg4 : int) return int -- /usr/include/X11/Xlib.h:3330 with Import => True, Convention => C, External_Name => "XSetTSOrigin"; -- display -- gc -- ts_x_origin -- ts_y_origin function XSetTile (arg1 : access Display; arg2 : GC; arg3 : X11.Pixmap) return int -- /usr/include/X11/Xlib.h:3337 with Import => True, Convention => C, External_Name => "XSetTile"; -- display -- gc -- tile function XSetWindowBackground (arg1 : access Display; arg2 : X11.Window; arg3 : unsigned_long) return int -- /usr/include/X11/Xlib.h:3343 with Import => True, Convention => C, External_Name => "XSetWindowBackground"; -- display -- w -- background_pixel function XSetWindowBackgroundPixmap (arg1 : access Display; arg2 : X11.Window; arg3 : X11.Pixmap) return int -- /usr/include/X11/Xlib.h:3349 with Import => True, Convention => C, External_Name => "XSetWindowBackgroundPixmap"; -- display -- w -- background_pixmap function XSetWindowBorder (arg1 : access Display; arg2 : X11.Window; arg3 : unsigned_long) return int -- /usr/include/X11/Xlib.h:3355 with Import => True, Convention => C, External_Name => "XSetWindowBorder"; -- display -- w -- border_pixel function XSetWindowBorderPixmap (arg1 : access Display; arg2 : X11.Window; arg3 : X11.Pixmap) return int -- /usr/include/X11/Xlib.h:3361 with Import => True, Convention => C, External_Name => "XSetWindowBorderPixmap"; -- display -- w -- border_pixmap function XSetWindowBorderWidth (arg1 : access Display; arg2 : X11.Window; arg3 : unsigned) return int -- /usr/include/X11/Xlib.h:3367 with Import => True, Convention => C, External_Name => "XSetWindowBorderWidth"; -- display -- w -- width function XSetWindowColormap (arg1 : access Display; arg2 : X11.Window; arg3 : X11.Colormap) return int -- /usr/include/X11/Xlib.h:3373 with Import => True, Convention => C, External_Name => "XSetWindowColormap"; -- display -- w -- colormap function XStoreBuffer (arg1 : access Display; arg2 : Interfaces.C.Strings.chars_ptr; arg3 : int; arg4 : int) return int -- /usr/include/X11/Xlib.h:3379 with Import => True, Convention => C, External_Name => "XStoreBuffer"; -- display -- bytes -- nbytes -- buffer function XStoreBytes (arg1 : access Display; arg2 : Interfaces.C.Strings.chars_ptr; arg3 : int) return int -- /usr/include/X11/Xlib.h:3386 with Import => True, Convention => C, External_Name => "XStoreBytes"; -- display -- bytes -- nbytes function XStoreColor (arg1 : access Display; arg2 : X11.Colormap; arg3 : access XColor) return int -- /usr/include/X11/Xlib.h:3392 with Import => True, Convention => C, External_Name => "XStoreColor"; -- display -- colormap -- color function XStoreColors (arg1 : access Display; arg2 : X11.Colormap; arg3 : access XColor; arg4 : int) return int -- /usr/include/X11/Xlib.h:3398 with Import => True, Convention => C, External_Name => "XStoreColors"; -- display -- colormap -- color -- ncolors function XStoreName (arg1 : access Display; arg2 : X11.Window; arg3 : Interfaces.C.Strings.chars_ptr) return int -- /usr/include/X11/Xlib.h:3405 with Import => True, Convention => C, External_Name => "XStoreName"; -- display -- w -- window_name function XStoreNamedColor (arg1 : access Display; arg2 : X11.Colormap; arg3 : Interfaces.C.Strings.chars_ptr; arg4 : unsigned_long; arg5 : int) return int -- /usr/include/X11/Xlib.h:3411 with Import => True, Convention => C, External_Name => "XStoreNamedColor"; -- display -- colormap -- color -- pixel -- flags function XSync (arg1 : access Display; arg2 : int) return int -- /usr/include/X11/Xlib.h:3419 with Import => True, Convention => C, External_Name => "XSync"; -- display -- discard function XTextExtents (arg1 : access XFontStruct; arg2 : Interfaces.C.Strings.chars_ptr; arg3 : int; arg4 : access int; arg5 : access int; arg6 : access int; arg7 : access XCharStruct) return int -- /usr/include/X11/Xlib.h:3424 with Import => True, Convention => C, External_Name => "XTextExtents"; -- font_struct -- string -- nchars -- direction_return -- font_ascent_return -- font_descent_return -- overall_return function XTextExtents16 (arg1 : access XFontStruct; arg2 : access constant XChar2b; arg3 : int; arg4 : access int; arg5 : access int; arg6 : access int; arg7 : access XCharStruct) return int -- /usr/include/X11/Xlib.h:3434 with Import => True, Convention => C, External_Name => "XTextExtents16"; -- font_struct -- string -- nchars -- direction_return -- font_ascent_return -- font_descent_return -- overall_return function XTextWidth (arg1 : access XFontStruct; arg2 : Interfaces.C.Strings.chars_ptr; arg3 : int) return int -- /usr/include/X11/Xlib.h:3444 with Import => True, Convention => C, External_Name => "XTextWidth"; -- font_struct -- string -- count function XTextWidth16 (arg1 : access XFontStruct; arg2 : access constant XChar2b; arg3 : int) return int -- /usr/include/X11/Xlib.h:3450 with Import => True, Convention => C, External_Name => "XTextWidth16"; -- font_struct -- string -- count function XTranslateCoordinates (arg1 : access Display; arg2 : X11.Window; arg3 : X11.Window; arg4 : int; arg5 : int; arg6 : access int; arg7 : access int; arg8 : access X11.Window) return int -- /usr/include/X11/Xlib.h:3456 with Import => True, Convention => C, External_Name => "XTranslateCoordinates"; -- display -- src_w -- dest_w -- src_x -- src_y -- dest_x_return -- dest_y_return -- child_return function XUndefineCursor (arg1 : access Display; arg2 : X11.Window) return int -- /usr/include/X11/Xlib.h:3467 with Import => True, Convention => C, External_Name => "XUndefineCursor"; -- display -- w function XUngrabButton (arg1 : access Display; arg2 : unsigned; arg3 : unsigned; arg4 : X11.Window) return int -- /usr/include/X11/Xlib.h:3472 with Import => True, Convention => C, External_Name => "XUngrabButton"; -- display -- button -- modifiers -- grab_window function XUngrabKey (arg1 : access Display; arg2 : int; arg3 : unsigned; arg4 : X11.Window) return int -- /usr/include/X11/Xlib.h:3479 with Import => True, Convention => C, External_Name => "XUngrabKey"; -- display -- keycode -- modifiers -- grab_window function XUngrabKeyboard (arg1 : access Display; arg2 : X11.Time) return int -- /usr/include/X11/Xlib.h:3486 with Import => True, Convention => C, External_Name => "XUngrabKeyboard"; -- display -- time function XUngrabPointer (arg1 : access Display; arg2 : X11.Time) return int -- /usr/include/X11/Xlib.h:3491 with Import => True, Convention => C, External_Name => "XUngrabPointer"; -- display -- time function XUngrabServer (arg1 : access Display) return int -- /usr/include/X11/Xlib.h:3496 with Import => True, Convention => C, External_Name => "XUngrabServer"; -- display function XUninstallColormap (arg1 : access Display; arg2 : X11.Colormap) return int -- /usr/include/X11/Xlib.h:3500 with Import => True, Convention => C, External_Name => "XUninstallColormap"; -- display -- colormap function XUnloadFont (arg1 : access Display; arg2 : X11.Font) return int -- /usr/include/X11/Xlib.h:3505 with Import => True, Convention => C, External_Name => "XUnloadFont"; -- display -- font function XUnmapSubwindows (arg1 : access Display; arg2 : X11.Window) return int -- /usr/include/X11/Xlib.h:3510 with Import => True, Convention => C, External_Name => "XUnmapSubwindows"; -- display -- w function XUnmapWindow (arg1 : access Display; arg2 : X11.Window) return int -- /usr/include/X11/Xlib.h:3515 with Import => True, Convention => C, External_Name => "XUnmapWindow"; -- display -- w function XVendorRelease (arg1 : access Display) return int -- /usr/include/X11/Xlib.h:3520 with Import => True, Convention => C, External_Name => "XVendorRelease"; -- display function XWarpPointer (arg1 : access Display; arg2 : X11.Window; arg3 : X11.Window; arg4 : int; arg5 : int; arg6 : unsigned; arg7 : unsigned; arg8 : int; arg9 : int) return int -- /usr/include/X11/Xlib.h:3524 with Import => True, Convention => C, External_Name => "XWarpPointer"; -- display -- src_w -- dest_w -- src_x -- src_y -- src_width -- src_height -- dest_x -- dest_y function XWidthMMOfScreen (arg1 : access Screen) return int -- /usr/include/X11/Xlib.h:3536 with Import => True, Convention => C, External_Name => "XWidthMMOfScreen"; -- screen function XWidthOfScreen (arg1 : access Screen) return int -- /usr/include/X11/Xlib.h:3540 with Import => True, Convention => C, External_Name => "XWidthOfScreen"; -- screen function XWindowEvent (arg1 : access Display; arg2 : X11.Window; arg3 : long; arg4 : access XEvent) return int -- /usr/include/X11/Xlib.h:3544 with Import => True, Convention => C, External_Name => "XWindowEvent"; -- display -- w -- event_mask -- event_return function XWriteBitmapFile (arg1 : access Display; arg2 : Interfaces.C.Strings.chars_ptr; arg3 : X11.Pixmap; arg4 : unsigned; arg5 : unsigned; arg6 : int; arg7 : int) return int -- /usr/include/X11/Xlib.h:3551 with Import => True, Convention => C, External_Name => "XWriteBitmapFile"; -- display -- filename -- bitmap -- width -- height -- x_hot -- y_hot function XSupportsLocale return int -- /usr/include/X11/Xlib.h:3561 with Import => True, Convention => C, External_Name => "XSupportsLocale"; function XSetLocaleModifiers (arg1 : Interfaces.C.Strings.chars_ptr) return Interfaces.C.Strings.chars_ptr -- /usr/include/X11/Xlib.h:3563 with Import => True, Convention => C, External_Name => "XSetLocaleModifiers"; -- modifier_list function XOpenOM (arg1 : access Display; arg2 : access u_XrmHashBucketRec; arg3 : Interfaces.C.Strings.chars_ptr; arg4 : Interfaces.C.Strings.chars_ptr) return XOM -- /usr/include/X11/Xlib.h:3567 with Import => True, Convention => C, External_Name => "XOpenOM"; -- display -- rdb -- res_name -- res_class function XCloseOM (arg1 : XOM) return int -- /usr/include/X11/Xlib.h:3574 with Import => True, Convention => C, External_Name => "XCloseOM"; -- om function XSetOMValues (arg1 : XOM -- , ... ) return Interfaces.C.Strings.chars_ptr -- /usr/include/X11/Xlib.h:3578 with Import => True, Convention => C, External_Name => "XSetOMValues"; -- om function XGetOMValues (arg1 : XOM -- , ... ) return Interfaces.C.Strings.chars_ptr -- /usr/include/X11/Xlib.h:3583 with Import => True, Convention => C, External_Name => "XGetOMValues"; -- om function XDisplayOfOM (arg1 : XOM) return access Display -- /usr/include/X11/Xlib.h:3588 with Import => True, Convention => C, External_Name => "XDisplayOfOM"; -- om function XLocaleOfOM (arg1 : XOM) return Interfaces.C.Strings.chars_ptr -- /usr/include/X11/Xlib.h:3592 with Import => True, Convention => C, External_Name => "XLocaleOfOM"; -- om function XCreateOC (arg1 : XOM -- , ... ) return XOC -- /usr/include/X11/Xlib.h:3596 with Import => True, Convention => C, External_Name => "XCreateOC"; -- om procedure XDestroyOC (arg1 : XOC) -- /usr/include/X11/Xlib.h:3601 with Import => True, Convention => C, External_Name => "XDestroyOC"; -- oc function XOMOfOC (arg1 : XOC) return XOM -- /usr/include/X11/Xlib.h:3605 with Import => True, Convention => C, External_Name => "XOMOfOC"; -- oc function XSetOCValues (arg1 : XOC -- , ... ) return Interfaces.C.Strings.chars_ptr -- /usr/include/X11/Xlib.h:3609 with Import => True, Convention => C, External_Name => "XSetOCValues"; -- oc function XGetOCValues (arg1 : XOC -- , ... ) return Interfaces.C.Strings.chars_ptr -- /usr/include/X11/Xlib.h:3614 with Import => True, Convention => C, External_Name => "XGetOCValues"; -- oc function XCreateFontSet (arg1 : access Display; arg2 : Interfaces.C.Strings.chars_ptr; arg3 : System.Address; arg4 : access int; arg5 : System.Address) return XFontSet -- /usr/include/X11/Xlib.h:3619 with Import => True, Convention => C, External_Name => "XCreateFontSet"; -- display -- base_font_name_list -- missing_charset_list -- missing_charset_count -- def_string procedure XFreeFontSet (arg1 : access Display; arg2 : XFontSet) -- /usr/include/X11/Xlib.h:3627 with Import => True, Convention => C, External_Name => "XFreeFontSet"; -- display -- font_set function XFontsOfFontSet (arg1 : XFontSet; arg2 : System.Address; arg3 : System.Address) return int -- /usr/include/X11/Xlib.h:3632 with Import => True, Convention => C, External_Name => "XFontsOfFontSet"; -- font_set -- font_struct_list -- font_name_list function XBaseFontNameListOfFontSet (arg1 : XFontSet) return Interfaces.C.Strings.chars_ptr -- /usr/include/X11/Xlib.h:3638 with Import => True, Convention => C, External_Name => "XBaseFontNameListOfFontSet"; -- font_set function XLocaleOfFontSet (arg1 : XFontSet) return Interfaces.C.Strings.chars_ptr -- /usr/include/X11/Xlib.h:3642 with Import => True, Convention => C, External_Name => "XLocaleOfFontSet"; -- font_set function XContextDependentDrawing (arg1 : XFontSet) return int -- /usr/include/X11/Xlib.h:3646 with Import => True, Convention => C, External_Name => "XContextDependentDrawing"; -- font_set function XDirectionalDependentDrawing (arg1 : XFontSet) return int -- /usr/include/X11/Xlib.h:3650 with Import => True, Convention => C, External_Name => "XDirectionalDependentDrawing"; -- font_set function XContextualDrawing (arg1 : XFontSet) return int -- /usr/include/X11/Xlib.h:3654 with Import => True, Convention => C, External_Name => "XContextualDrawing"; -- font_set function XExtentsOfFontSet (arg1 : XFontSet) return access XFontSetExtents -- /usr/include/X11/Xlib.h:3658 with Import => True, Convention => C, External_Name => "XExtentsOfFontSet"; -- font_set function XmbTextEscapement (arg1 : XFontSet; arg2 : Interfaces.C.Strings.chars_ptr; arg3 : int) return int -- /usr/include/X11/Xlib.h:3662 with Import => True, Convention => C, External_Name => "XmbTextEscapement"; -- font_set -- text -- bytes_text function XwcTextEscapement (arg1 : XFontSet; arg2 : access wchar_t; arg3 : int) return int -- /usr/include/X11/Xlib.h:3668 with Import => True, Convention => C, External_Name => "XwcTextEscapement"; -- font_set -- text -- num_wchars function Xutf8TextEscapement (arg1 : XFontSet; arg2 : Interfaces.C.Strings.chars_ptr; arg3 : int) return int -- /usr/include/X11/Xlib.h:3674 with Import => True, Convention => C, External_Name => "Xutf8TextEscapement"; -- font_set -- text -- bytes_text function XmbTextExtents (arg1 : XFontSet; arg2 : Interfaces.C.Strings.chars_ptr; arg3 : int; arg4 : access XRectangle; arg5 : access XRectangle) return int -- /usr/include/X11/Xlib.h:3680 with Import => True, Convention => C, External_Name => "XmbTextExtents"; -- font_set -- text -- bytes_text -- overall_ink_return -- overall_logical_return function XwcTextExtents (arg1 : XFontSet; arg2 : access wchar_t; arg3 : int; arg4 : access XRectangle; arg5 : access XRectangle) return int -- /usr/include/X11/Xlib.h:3688 with Import => True, Convention => C, External_Name => "XwcTextExtents"; -- font_set -- text -- num_wchars -- overall_ink_return -- overall_logical_return function Xutf8TextExtents (arg1 : XFontSet; arg2 : Interfaces.C.Strings.chars_ptr; arg3 : int; arg4 : access XRectangle; arg5 : access XRectangle) return int -- /usr/include/X11/Xlib.h:3696 with Import => True, Convention => C, External_Name => "Xutf8TextExtents"; -- font_set -- text -- bytes_text -- overall_ink_return -- overall_logical_return function XmbTextPerCharExtents (arg1 : XFontSet; arg2 : Interfaces.C.Strings.chars_ptr; arg3 : int; arg4 : access XRectangle; arg5 : access XRectangle; arg6 : int; arg7 : access int; arg8 : access XRectangle; arg9 : access XRectangle) return int -- /usr/include/X11/Xlib.h:3704 with Import => True, Convention => C, External_Name => "XmbTextPerCharExtents"; -- font_set -- text -- bytes_text -- ink_extents_buffer -- logical_extents_buffer -- buffer_size -- num_chars -- overall_ink_return -- overall_logical_return function XwcTextPerCharExtents (arg1 : XFontSet; arg2 : access wchar_t; arg3 : int; arg4 : access XRectangle; arg5 : access XRectangle; arg6 : int; arg7 : access int; arg8 : access XRectangle; arg9 : access XRectangle) return int -- /usr/include/X11/Xlib.h:3716 with Import => True, Convention => C, External_Name => "XwcTextPerCharExtents"; -- font_set -- text -- num_wchars -- ink_extents_buffer -- logical_extents_buffer -- buffer_size -- num_chars -- overall_ink_return -- overall_logical_return function Xutf8TextPerCharExtents (arg1 : XFontSet; arg2 : Interfaces.C.Strings.chars_ptr; arg3 : int; arg4 : access XRectangle; arg5 : access XRectangle; arg6 : int; arg7 : access int; arg8 : access XRectangle; arg9 : access XRectangle) return int -- /usr/include/X11/Xlib.h:3728 with Import => True, Convention => C, External_Name => "Xutf8TextPerCharExtents"; -- font_set -- text -- bytes_text -- ink_extents_buffer -- logical_extents_buffer -- buffer_size -- num_chars -- overall_ink_return -- overall_logical_return procedure XmbDrawText (arg1 : access Display; arg2 : X11.Drawable; arg3 : GC; arg4 : int; arg5 : int; arg6 : access XmbTextItem; arg7 : int) -- /usr/include/X11/Xlib.h:3740 with Import => True, Convention => C, External_Name => "XmbDrawText"; -- display -- d -- gc -- x -- y -- text_items -- nitems procedure XwcDrawText (arg1 : access Display; arg2 : X11.Drawable; arg3 : GC; arg4 : int; arg5 : int; arg6 : access XwcTextItem; arg7 : int) -- /usr/include/X11/Xlib.h:3750 with Import => True, Convention => C, External_Name => "XwcDrawText"; -- display -- d -- gc -- x -- y -- text_items -- nitems procedure Xutf8DrawText (arg1 : access Display; arg2 : X11.Drawable; arg3 : GC; arg4 : int; arg5 : int; arg6 : access XmbTextItem; arg7 : int) -- /usr/include/X11/Xlib.h:3760 with Import => True, Convention => C, External_Name => "Xutf8DrawText"; -- display -- d -- gc -- x -- y -- text_items -- nitems procedure XmbDrawString (arg1 : access Display; arg2 : X11.Drawable; arg3 : XFontSet; arg4 : GC; arg5 : int; arg6 : int; arg7 : Interfaces.C.Strings.chars_ptr; arg8 : int) -- /usr/include/X11/Xlib.h:3770 with Import => True, Convention => C, External_Name => "XmbDrawString"; -- display -- d -- font_set -- gc -- x -- y -- text -- bytes_text procedure XwcDrawString (arg1 : access Display; arg2 : X11.Drawable; arg3 : XFontSet; arg4 : GC; arg5 : int; arg6 : int; arg7 : access wchar_t; arg8 : int) -- /usr/include/X11/Xlib.h:3781 with Import => True, Convention => C, External_Name => "XwcDrawString"; -- display -- d -- font_set -- gc -- x -- y -- text -- num_wchars procedure Xutf8DrawString (arg1 : access Display; arg2 : X11.Drawable; arg3 : XFontSet; arg4 : GC; arg5 : int; arg6 : int; arg7 : Interfaces.C.Strings.chars_ptr; arg8 : int) -- /usr/include/X11/Xlib.h:3792 with Import => True, Convention => C, External_Name => "Xutf8DrawString"; -- display -- d -- font_set -- gc -- x -- y -- text -- bytes_text procedure XmbDrawImageString (arg1 : access Display; arg2 : X11.Drawable; arg3 : XFontSet; arg4 : GC; arg5 : int; arg6 : int; arg7 : Interfaces.C.Strings.chars_ptr; arg8 : int) -- /usr/include/X11/Xlib.h:3803 with Import => True, Convention => C, External_Name => "XmbDrawImageString"; -- display -- d -- font_set -- gc -- x -- y -- text -- bytes_text procedure XwcDrawImageString (arg1 : access Display; arg2 : X11.Drawable; arg3 : XFontSet; arg4 : GC; arg5 : int; arg6 : int; arg7 : access wchar_t; arg8 : int) -- /usr/include/X11/Xlib.h:3814 with Import => True, Convention => C, External_Name => "XwcDrawImageString"; -- display -- d -- font_set -- gc -- x -- y -- text -- num_wchars procedure Xutf8DrawImageString (arg1 : access Display; arg2 : X11.Drawable; arg3 : XFontSet; arg4 : GC; arg5 : int; arg6 : int; arg7 : Interfaces.C.Strings.chars_ptr; arg8 : int) -- /usr/include/X11/Xlib.h:3825 with Import => True, Convention => C, External_Name => "Xutf8DrawImageString"; -- display -- d -- font_set -- gc -- x -- y -- text -- bytes_text function XOpenIM (arg1 : access Display; arg2 : access u_XrmHashBucketRec; arg3 : Interfaces.C.Strings.chars_ptr; arg4 : Interfaces.C.Strings.chars_ptr) return XIM -- /usr/include/X11/Xlib.h:3836 with Import => True, Convention => C, External_Name => "XOpenIM"; -- dpy -- rdb -- res_name -- res_class function XCloseIM (arg1 : XIM) return int -- /usr/include/X11/Xlib.h:3843 with Import => True, Convention => C, External_Name => "XCloseIM"; -- im function XGetIMValues (arg1 : XIM -- , ... ) return Interfaces.C.Strings.chars_ptr -- /usr/include/X11/Xlib.h:3847 with Import => True, Convention => C, External_Name => "XGetIMValues"; -- im function XSetIMValues (arg1 : XIM -- , ... ) return Interfaces.C.Strings.chars_ptr -- /usr/include/X11/Xlib.h:3851 with Import => True, Convention => C, External_Name => "XSetIMValues"; -- im function XDisplayOfIM (arg1 : XIM) return access Display -- /usr/include/X11/Xlib.h:3855 with Import => True, Convention => C, External_Name => "XDisplayOfIM"; -- im function XLocaleOfIM (arg1 : XIM) return Interfaces.C.Strings.chars_ptr -- /usr/include/X11/Xlib.h:3859 with Import => True, Convention => C, External_Name => "XLocaleOfIM"; -- im function XCreateIC (arg1 : XIM -- , ... ) return XIC -- /usr/include/X11/Xlib.h:3863 with Import => True, Convention => C, External_Name => "XCreateIC"; -- im procedure XDestroyIC (arg1 : XIC) -- /usr/include/X11/Xlib.h:3867 with Import => True, Convention => C, External_Name => "XDestroyIC"; -- ic procedure XSetICFocus (arg1 : XIC) -- /usr/include/X11/Xlib.h:3871 with Import => True, Convention => C, External_Name => "XSetICFocus"; -- ic procedure XUnsetICFocus (arg1 : XIC) -- /usr/include/X11/Xlib.h:3875 with Import => True, Convention => C, External_Name => "XUnsetICFocus"; -- ic function XwcResetIC (arg1 : XIC) return access wchar_t -- /usr/include/X11/Xlib.h:3879 with Import => True, Convention => C, External_Name => "XwcResetIC"; -- ic function XmbResetIC (arg1 : XIC) return Interfaces.C.Strings.chars_ptr -- /usr/include/X11/Xlib.h:3883 with Import => True, Convention => C, External_Name => "XmbResetIC"; -- ic function Xutf8ResetIC (arg1 : XIC) return Interfaces.C.Strings.chars_ptr -- /usr/include/X11/Xlib.h:3887 with Import => True, Convention => C, External_Name => "Xutf8ResetIC"; -- ic function XSetICValues (arg1 : XIC -- , ... ) return Interfaces.C.Strings.chars_ptr -- /usr/include/X11/Xlib.h:3891 with Import => True, Convention => C, External_Name => "XSetICValues"; -- ic function XGetICValues (arg1 : XIC -- , ... ) return Interfaces.C.Strings.chars_ptr -- /usr/include/X11/Xlib.h:3895 with Import => True, Convention => C, External_Name => "XGetICValues"; -- ic function XIMOfIC (arg1 : XIC) return XIM -- /usr/include/X11/Xlib.h:3899 with Import => True, Convention => C, External_Name => "XIMOfIC"; -- ic function XFilterEvent (arg1 : access XEvent; arg2 : X11.Window) return int -- /usr/include/X11/Xlib.h:3903 with Import => True, Convention => C, External_Name => "XFilterEvent"; -- event -- window function XmbLookupString (arg1 : XIC; arg2 : access XKeyPressedEvent; arg3 : Interfaces.C.Strings.chars_ptr; arg4 : int; arg5 : access X11.KeySym; arg6 : access int) return int -- /usr/include/X11/Xlib.h:3908 with Import => True, Convention => C, External_Name => "XmbLookupString"; -- ic -- event -- buffer_return -- bytes_buffer -- keysym_return -- status_return function XwcLookupString (arg1 : XIC; arg2 : access XKeyPressedEvent; arg3 : access wchar_t; arg4 : int; arg5 : access X11.KeySym; arg6 : access int) return int -- /usr/include/X11/Xlib.h:3917 with Import => True, Convention => C, External_Name => "XwcLookupString"; -- ic -- event -- buffer_return -- wchars_buffer -- keysym_return -- status_return function Xutf8LookupString (arg1 : XIC; arg2 : access XKeyPressedEvent; arg3 : Interfaces.C.Strings.chars_ptr; arg4 : int; arg5 : access X11.KeySym; arg6 : access int) return int -- /usr/include/X11/Xlib.h:3926 with Import => True, Convention => C, External_Name => "Xutf8LookupString"; -- ic -- event -- buffer_return -- bytes_buffer -- keysym_return -- status_return function XVaCreateNestedList (arg1 : int -- , ... ) return XVaNestedList -- /usr/include/X11/Xlib.h:3935 with Import => True, Convention => C, External_Name => "XVaCreateNestedList"; --unused -- internal connections for IMs function XRegisterIMInstantiateCallback (arg1 : access Display; arg2 : access u_XrmHashBucketRec; arg3 : Interfaces.C.Strings.chars_ptr; arg4 : Interfaces.C.Strings.chars_ptr; arg5 : XIDProc; arg6 : XPointer) return int -- /usr/include/X11/Xlib.h:3941 with Import => True, Convention => C, External_Name => "XRegisterIMInstantiateCallback"; -- dpy -- rdb -- res_name -- res_class -- callback -- client_data function XUnregisterIMInstantiateCallback (arg1 : access Display; arg2 : access u_XrmHashBucketRec; arg3 : Interfaces.C.Strings.chars_ptr; arg4 : Interfaces.C.Strings.chars_ptr; arg5 : XIDProc; arg6 : XPointer) return int -- /usr/include/X11/Xlib.h:3950 with Import => True, Convention => C, External_Name => "XUnregisterIMInstantiateCallback"; -- dpy -- rdb -- res_name -- res_class -- callback -- client_data type XConnectionWatchProc is access procedure (arg1 : access Display; arg2 : XPointer; arg3 : int; arg4 : int; arg5 : System.Address) with Convention => C; -- /usr/include/X11/Xlib.h:3959 -- dpy -- client_data -- fd -- opening -- open or close flag -- watch_data -- open sets, close uses function XInternalConnectionNumbers (arg1 : access Display; arg2 : System.Address; arg3 : access int) return int -- /usr/include/X11/Xlib.h:3968 with Import => True, Convention => C, External_Name => "XInternalConnectionNumbers"; -- dpy -- fd_return -- count_return procedure XProcessInternalConnection (arg1 : access Display; arg2 : int) -- /usr/include/X11/Xlib.h:3974 with Import => True, Convention => C, External_Name => "XProcessInternalConnection"; -- dpy -- fd function XAddConnectionWatch (arg1 : access Display; arg2 : XConnectionWatchProc; arg3 : XPointer) return int -- /usr/include/X11/Xlib.h:3979 with Import => True, Convention => C, External_Name => "XAddConnectionWatch"; -- dpy -- callback -- client_data procedure XRemoveConnectionWatch (arg1 : access Display; arg2 : XConnectionWatchProc; arg3 : XPointer) -- /usr/include/X11/Xlib.h:3985 with Import => True, Convention => C, External_Name => "XRemoveConnectionWatch"; -- dpy -- callback -- client_data procedure XSetAuthorization (arg1 : Interfaces.C.Strings.chars_ptr; arg2 : int; arg3 : Interfaces.C.Strings.chars_ptr; arg4 : int) -- /usr/include/X11/Xlib.h:3991 with Import => True, Convention => C, External_Name => "XSetAuthorization"; -- name -- namelen -- data -- datalen -- skipped func _Xmbtowc -- wstr -- str -- len -- skipped func _Xwctomb -- str -- wc function XGetEventData (arg1 : access Display; arg2 : access XGenericEventCookie) return int -- /usr/include/X11/Xlib.h:4009 with Import => True, Convention => C, External_Name => "XGetEventData"; -- dpy -- cookie procedure XFreeEventData (arg1 : access Display; arg2 : access XGenericEventCookie) -- /usr/include/X11/Xlib.h:4014 with Import => True, Convention => C, External_Name => "XFreeEventData"; -- dpy -- cookie end Xlib;
programs/oeis/295/A295288.asm
karttu/loda
0
9903
<filename>programs/oeis/295/A295288.asm ; A295288: Binomial transform of the centered triangular numbers A005448. ; 1,5,19,62,184,512,1360,3488,8704,21248,50944,120320,280576,647168,1478656,3350528,7536640,16842752,37421056,82706432,181927936,398458880,869269504,1889533952,4093640704,8841592832,19042140160,40902852608,87644176384,187367948288,399700393984,850940395520,1808181231616,3835405795328,8121783156736,17171279249408,36249523978240,76416058130432,160872295038976,338237264494592,710284511543296,1489838255636480,3121513511256064,6533298092244992 mov $2,$0 add $0,2 mov $1,2 add $2,1 mul $2,3 lpb $0,1 sub $0,1 mul $1,2 add $1,$2 sub $1,1 mul $2,2 lpe sub $1,16 div $1,16 add $1,1
src/PathStructure/UnitNoEta.agda
vituscze/HoTT-lectures
0
8406
<reponame>vituscze/HoTT-lectures<filename>src/PathStructure/UnitNoEta.agda {-# OPTIONS --without-K #-} module PathStructure.UnitNoEta where open import Equivalence open import Types split-path : {x y : Unit} → x ≡ y → Unit split-path _ = tt merge-path : {x y : Unit} → Unit → x ≡ y merge-path _ = 1-elim (λ x → ∀ y → x ≡ y) (1-elim (λ y → tt ≡ y) refl) _ _ split-merge-eq : {x y : Unit} → (x ≡ y) ≃ Unit split-merge-eq = split-path , (merge-path , 1-elim (λ x → tt ≡ x) refl) , (merge-path , J (λ _ _ p → merge-path (split-path p) ≡ p) (1-elim (λ x → merge-path {x} {x} (split-path {x} {x} refl) ≡ refl) refl) _ _)
src/satexample.asm
IGJoshua/assembly-sandbox
1
11580
<reponame>IGJoshua/assembly-sandbox ;;; sum.asm ;;; Taken from the nasm tutorial https://cs.lmu.edu/~ray/notes/nasmtutorial/ ; ---------------------------------------------------------------------------------------- ; Example of signed saturated arithmetic. ; ---------------------------------------------------------------------------------------- global main extern printf section .text main: push rbp movaps xmm0, [rel arg1] movaps xmm1, [rel arg2] paddsw xmm0, xmm1 movaps [rel result], xmm0 lea rdi, [rel format] mov esi, dword [rel result] mov edx, dword [rel result+4] mov ecx, dword [rel result+8] mov r8d, dword [rel result+12] mov rax, 0 call [rel printf wrt ..got] pop rbp ret section .data align 16 arg1: dw 0x3544,0x24FF,0x7654,0x9A77,0xF677,0x9000,0xFFFF,0x0000 arg2: dw 0x7000,0x1000,0xC000,0x1000,0xB000,0xA000,0x1000,0x0000 result: dd 0, 0, 0, 0 format: db '%x%x%x%x',10,0
ANTLRTestProjects/antbased/CodeCompletion/build/classes/imports/ImportedLexerGrammar2.g4
timboudreau/ANTLR4-Plugins-for-NetBeans
1
6491
<reponame>timboudreau/ANTLR4-Plugins-for-NetBeans lexer grammar ImportedLexerGrammar2; tokens { IMPORTED_TOKEN_1_2 } // some lexer rules IMPORTED_TOKEN_2_2 : [a-zA-Z]+ ; // match identifiers IMPORTED_TOKEN_3_2 : [0-9]+ ; // match integers IMPORTED_TOKEN_4_2 :'\r'? '\n' ; // return newlines to parser
3-mid/impact/source/3d/dynamics/joints/impact-d3-jacobian_entry.adb
charlie5/lace
20
22056
<filename>3-mid/impact/source/3d/dynamics/joints/impact-d3-jacobian_entry.adb with impact.d3.Vector; with impact.d3.Scalar; package body impact.d3.jacobian_Entry is use impact.d3.Vector; ---------- --- Forge -- function to_jacobian_Entry (world2A, world2B : in math.Matrix_3x3; rel_pos1, rel_pos2 : in math.Vector_3; jointAxis : in math.Vector_3; inertiaInvA : in math.Vector_3; massInvA : in math.Real ; inertiaInvB : in math.Vector_3; massInvB : in math.Real ) return Item is use Math; Self : Item; begin Self.m_linearJointAxis := jointAxis; Self.m_aJ := world2A * (cross (rel_pos1, Self.m_linearJointAxis)); Self.m_bJ := world2B * (cross (rel_pos2, -Self.m_linearJointAxis)); Self.m_0MinvJt := Scaled (Self.m_aJ, by => inertiaInvA); Self.m_1MinvJt := Scaled (Self.m_bJ, by => inertiaInvB); Self.m_Adiag := massInvA + dot (Self.m_0MinvJt, Self.m_aJ) + massInvB + dot (Self.m_1MinvJt, Self.m_bJ); pragma Assert (Self.m_Adiag > 0.0); return Self; end to_jacobian_Entry; function to_jacobian_Entry (jointAxis : in math.Vector_3; world2A, world2B : in math.Matrix_3x3; inertiaInvA, inertiaInvB : in math.Vector_3) return Item is use Math; Self : Item; begin Self.m_linearJointAxis := math.Origin_3d; Self.m_aJ := world2A * jointAxis; Self.m_bJ := world2B * (-jointAxis); Self.m_0MinvJt := Scaled (Self.m_aJ, inertiaInvA); Self.m_1MinvJt := Scaled (Self.m_bJ, inertiaInvB); Self.m_Adiag := dot (Self.m_0MinvJt, Self.m_aJ) + dot (Self.m_1MinvJt, Self.m_bJ); pragma Assert (Self.m_Adiag > 0.0); return Self; end to_jacobian_Entry; function to_btJacobainEntry (axisInA, axisInB : in math.Vector_3; inertiaInvA, inertiaInvB : in math.Vector_3) return Item is use Math; Self : Item; begin Self.m_linearJointAxis := math.Origin_3d; Self.m_aJ := axisInA; Self.m_bJ := -axisInB; Self.m_0MinvJt := Scaled (Self.m_aJ, by => inertiaInvA); Self.m_1MinvJt := Scaled (Self.m_bJ, by => inertiaInvB); Self.m_Adiag := dot (Self.m_0MinvJt, Self.m_aJ) + dot (Self.m_1MinvJt, Self.m_bJ); pragma Assert (Self.m_Adiag > 0.0); return Self; end to_btJacobainEntry; function to_btJacobainEntry (world2A : in math.Matrix_3x3; rel_pos1, rel_pos2 : in math.Vector_3; jointAxis : in math.Vector_3; inertiaInvA : in math.Vector_3; massInvA : in math.Real ) return Item is use Math; Self : Item; begin Self.m_linearJointAxis := jointAxis; Self.m_aJ := world2A * (cross (rel_pos1, jointAxis)); Self.m_bJ := world2A * (cross (rel_pos2, -jointAxis)); Self.m_0MinvJt := Scaled (Self.m_aJ, by => inertiaInvA); Self.m_1MinvJt := math.Origin_3d; Self.m_Adiag := massInvA + dot (Self.m_0MinvJt, Self.m_aJ); pragma Assert (Self.m_Adiag > 0.0); return Self; end to_btJacobainEntry; --------------- --- Attributes -- function getDiagonal (Self : in Item) return math.Real is begin return Self.m_Adiag; end getDiagonal; function getNonDiagonal (Self : in Item; jacB : in impact.d3.jacobian_Entry.Item'Class; massInvA : in math.Real ) return math.Real is jacA : Item renames Self; lin : constant math.Real := massInvA * dot (jacA.m_linearJointAxis, jacB.m_linearJointAxis); ang : constant math.Real := dot (jacA.m_0MinvJt, jacB.m_aJ); begin return lin + ang; end getNonDiagonal; function getNonDiagonal (Self : in Item; jacB : in impact.d3.jacobian_Entry.Item'Class; massInvA, massInvB : in math.Real ) return math.Real is use Math; jacA : Item renames Self; lin : constant math.Vector_3 := cross (jacA.m_linearJointAxis, jacB.m_linearJointAxis); ang0 : constant math.Vector_3 := cross (jacA.m_0MinvJt, jacB.m_aJ); ang1 : constant math.Vector_3 := cross (jacA.m_1MinvJt, jacB.m_bJ); lin0 : constant math.Vector_3 := massInvA * lin; lin1 : constant math.Vector_3 := massInvB * lin; sum : math.Vector_3 := ang0 + ang1 + lin0 + lin1; begin return sum (1) + sum (2) + sum (3); end getNonDiagonal; function getRelativeVelocity (Self : in Item; linvelA, angvelA, linvelB, angvelB : in math.Vector_3) return math.Real is use Math; linrel : constant math.Vector_3 := cross (linvelA - linvelB, Self.m_linearJointAxis); angvel_b : math.Vector_3 := cross (angvelB, Self.m_bJ); angvel_a : math.Vector_3 := cross (angvelA, Self.m_aJ) + angvelb + linrel; rel_vel2 : constant math.Real := angvela (1) + angvela (2) + angvela (3); begin return rel_vel2 + impact.d3.Scalar.SIMD_EPSILON; end getRelativeVelocity; end impact.d3.jacobian_Entry;
MPMC PRAC/2.asm
apurvjain9999/Microprocessor-8085
0
176590
<filename>MPMC PRAC/2.asm LXI SP,9999H LXI H,0000H PUSH H POP PSW MVI B,0FFH INR B PUSH PSW POP H MOV A,L ANI 01H JNZ STORE MOV A,B STORE: OUT 01H hlt
data/baseStats/slowpoke.asm
AmateurPanda92/pokemon-rby-dx
9
1447
db DEX_SLOWPOKE ; pokedex id db 90 ; base hp db 65 ; base attack db 65 ; base defense db 15 ; base speed db 40 ; base special db WATER ; species type 1 db PSYCHIC ; species type 2 db 190 ; catch rate db 99 ; base exp yield INCBIN "pic/bmon/slowpoke.pic",0,1 ; 55, sprite dimensions dw SlowpokePicFront dw SlowpokePicBack ; attacks known at lvl 0 db CONFUSION db 0 db 0 db 0 db 0 ; growth rate ; learnset tmlearn 6,8 tmlearn 9,10,11,12,13,14,16 tmlearn 20 tmlearn 26,27,28,29,30,31,32 tmlearn 33,34,38,39,40 tmlearn 44,45,46 tmlearn 49,50,53,54,55 db 0 ; padding
tools/documentation_generator/documentation_generator-wiki.ads
svn2github/matreshka
24
27300
package Documentation_Generator.Wiki is procedure Generate; end Documentation_Generator.Wiki;
programs/oeis/035/A035006.asm
karttu/loda
1
243198
; A035006: Number of possible rook moves on an n X n chessboard. ; 0,8,36,96,200,360,588,896,1296,1800,2420,3168,4056,5096,6300,7680,9248,11016,12996,15200,17640,20328,23276,26496,30000,33800,37908,42336,47096,52200,57660,63488,69696,76296,83300,90720,98568,106856,115596,124800,134480,144648,155316,166496,178200,190440,203228,216576,230496,245000,260100,275808,292136,309096,326700,344960,363888,383496,403796,424800,446520,468968,492156,516096,540800,566280,592548,619616,647496,676200,705740,736128,767376,799496,832500,866400,901208,936936,973596,1011200,1049760,1089288,1129796,1171296,1213800,1257320,1301868,1347456,1394096,1441800,1490580,1540448,1591416,1643496,1696700,1751040,1806528,1863176,1920996,1980000,2040200,2101608,2164236,2228096,2293200,2359560,2427188,2496096,2566296,2637800,2710620,2784768,2860256,2937096,3015300,3094880,3175848,3258216,3341996,3427200,3513840,3601928,3691476,3782496,3875000,3969000,4064508,4161536,4260096,4360200,4461860,4565088,4669896,4776296,4884300,4993920,5105168,5218056,5332596,5448800,5566680,5686248,5807516,5930496,6055200,6181640,6309828,6439776,6571496,6705000,6840300,6977408,7116336,7257096,7399700,7544160,7690488,7838696,7988796,8140800,8294720,8450568,8608356,8768096,8929800,9093480,9259148,9426816,9596496,9768200,9941940,10117728,10295576,10475496,10657500,10841600,11027808,11216136,11406596,11599200,11793960,11990888,12189996,12391296,12594800,12800520,13008468,13218656,13431096,13645800,13862780,14082048,14303616,14527496,14753700,14982240,15213128,15446376,15681996,15920000,16160400,16403208,16648436,16896096,17146200,17398760,17653788,17911296,18171296,18433800,18698820,18966368,19236456,19509096,19784300,20062080,20342448,20625416,20910996,21199200,21490040,21783528,22079676,22378496,22680000,22984200,23291108,23600736,23913096,24228200,24546060,24866688,25190096,25516296,25845300,26177120,26511768,26849256,27189596,27532800,27878880,28227848,28579716,28934496,29292200,29652840,30016428,30382976,30752496,31125000 mov $1,$0 add $0,1 mul $1,$0 mul $1,$0 mul $1,2
alloy4fun_models/trashltl/models/3/5pXZMGSdnQfeEjjkp.als
Kaixi26/org.alloytools.alloy
0
4077
open main pred id5pXZMGSdnQfeEjjkp_prop4 { some f:File | eventually f' in Trash' } pred __repair { id5pXZMGSdnQfeEjjkp_prop4 } check __repair { id5pXZMGSdnQfeEjjkp_prop4 <=> prop4o }
programs/oeis/093/A093178.asm
neoneye/loda
22
80331
<gh_stars>10-100 ; A093178: If n is even then 1, otherwise n. ; 1,1,1,3,1,5,1,7,1,9,1,11,1,13,1,15,1,17,1,19,1,21,1,23,1,25,1,27,1,29,1,31,1,33,1,35,1,37,1,39,1,41,1,43,1,45,1,47,1,49,1,51,1,53,1,55,1,57,1,59,1,61,1,63,1,65,1,67,1,69,1,71,1,73,1,75,1,77,1,79,1,81,1,83,1,85,1,87,1,89,1,91,1,93,1,95,1,97,1,99 mov $1,$0 mod $1,2 pow $0,$1
examples/ping/music/theme_main/samples_triangle.asm
sgadrat/nine-gine
6
179527
;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; Intro triangle ; silenced, long notes in intro give ; a strange feeling at game game start ; and a bad transition from menu's music ;;;;;;;;;;;;;;;;;;;;;;;;;;;;; theme_main_triangle_intro: ; C3, 80 frames (including final silence) AUDIO_SILENCE(29) AUDIO_SILENCE(29) AUDIO_SILENCE(19) ; F2, 40 frames (including final silence) AUDIO_SILENCE(29) AUDIO_SILENCE(9) ; G2, 40 frames (including final silence) AUDIO_SILENCE(29) AUDIO_SILENCE(9) ; C3, 80 frames (including final silence) AUDIO_SILENCE(29) AUDIO_SILENCE(29) AUDIO_SILENCE(19) ; F2, 40 frames (including final silence) AUDIO_SILENCE(29) AUDIO_SILENCE(9) ; G2, 40 frames (including final silence) AUDIO_SILENCE(29) AUDIO_SILENCE(9) ; C3, 80 frames (including final silence) AUDIO_SILENCE(29) AUDIO_SILENCE(29) AUDIO_SILENCE(19) ; F2, 40 frames (including final silence) AUDIO_SILENCE(29) AUDIO_SILENCE(9) ; G2, 40 frames (including final silence) AUDIO_SILENCE(29) AUDIO_SILENCE(9) ; C3, 80 frames - 1 frame (no final silence) AUDIO_SILENCE(29) AUDIO_SILENCE(29) AUDIO_SILENCE(18) SAMPLE_END ;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; ftm file - $02a0 triangle ;;;;;;;;;;;;;;;;;;;;;;;;;;;;; theme_main_triangle_helicopter: TIMED_O3_F(0) TIMED_O3_C(0) ;TIMED_O2_G(0) ; Removed to have 5 frames per quarter note (pal timing) TIMED_O2_E(0) TIMED_O2_D(0) TIMED_O1_B(0) TIMED_O3_F(0) TIMED_O3_C(0) ;TIMED_O2_G(0) ; Removed to have 5 frames per quarter note (pal timing) TIMED_O2_E(0) TIMED_O2_D(0) TIMED_O1_B(0) TIMED_O3_F(0) TIMED_O3_C(0) ;TIMED_O2_G(0) ; Removed to have 5 frames per quarter note (pal timing) TIMED_O2_E(0) TIMED_O2_D(0) TIMED_O1_B(0) TIMED_O3_F(0) TIMED_O3_C(0) ;TIMED_O2_G(0) ; Removed to have 5 frames per quarter note (pal timing) TIMED_O2_E(0) TIMED_O2_D(0) ;TIMED_O1_B(0) ; Removed to take acount of SAMPLE_END taking one tick ; Repeated 16 times in the file (4 times in the sample) SAMPLE_END ;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; ftm file - $0300 triangle ;;;;;;;;;;;;;;;;;;;;;;;;;;;;; theme_main_triangle_bass_c3_x4: TIMED_O3_A(0) TIMED_O3_D(0) TIMED_O2_B(0) TIMED_O2_G(0) TIMED_O2_E(0) ;TIMED_O2_C(0) ; removed for pal timing TIMED_O1_B(0) TIMED_O1_A(0) TIMED_O1_G(0) TIMED_O1_F(0) AUDIO_SILENCE(1) TIMED_O2_C(8) TIMED_O3_A(0) TIMED_O3_D(0) TIMED_O2_B(0) TIMED_O2_G(0) TIMED_O2_E(0) ;TIMED_O2_C(0) ; removed for pal timing TIMED_O1_B(0) TIMED_O1_A(0) TIMED_O1_G(0) TIMED_O1_F(0) AUDIO_SILENCE(1) TIMED_O2_C(8) TIMED_O3_A(0) TIMED_O3_D(0) TIMED_O2_B(0) TIMED_O2_G(0) TIMED_O2_E(0) ;TIMED_O2_C(0) ; removed for pal timing TIMED_O1_B(0) TIMED_O1_A(0) TIMED_O1_G(0) TIMED_O1_F(0) AUDIO_SILENCE(1) TIMED_O2_C(8) TIMED_O3_A(0) TIMED_O3_D(0) TIMED_O2_B(0) TIMED_O2_G(0) TIMED_O2_E(0) ;TIMED_O2_C(0) ; removed for pal timing TIMED_O1_B(0) TIMED_O1_A(0) TIMED_O1_G(0) TIMED_O1_F(0) AUDIO_SILENCE(1) TIMED_O2_C(7) SAMPLE_END ;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; ftm file - $0360 triangle ;;;;;;;;;;;;;;;;;;;;;;;;;;;;; theme_main_triangle_bass_f2_x2: TIMED_O3_A(0) TIMED_O3_D(0) TIMED_O2_B(0) TIMED_O2_G(0) TIMED_O2_E(0) ;TIMED_O2_C(0) ; removed for pal timing TIMED_O1_B(0) TIMED_O1_A(0) TIMED_O1_G(0) TIMED_O1_F(0) AUDIO_SILENCE(1) TIMED_O2_F(8) TIMED_O3_A(0) TIMED_O3_D(0) TIMED_O2_B(0) TIMED_O2_G(0) TIMED_O2_E(0) ;TIMED_O2_C(0) ; removed for pal timing TIMED_O1_B(0) TIMED_O1_A(0) TIMED_O1_G(0) TIMED_O1_F(0) AUDIO_SILENCE(1) TIMED_O2_F(7) SAMPLE_END ;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; ftm file - $0390 triangle ;;;;;;;;;;;;;;;;;;;;;;;;;;;;; theme_main_triangle_bass_g2_x2: TIMED_O3_A(0) TIMED_O3_D(0) TIMED_O2_B(0) TIMED_O2_G(0) TIMED_O2_E(0) ;TIMED_O2_C(0) ; removed for pal timing TIMED_O1_B(0) TIMED_O1_A(0) TIMED_O1_G(0) TIMED_O1_F(0) AUDIO_SILENCE(1) TIMED_O2_G(8) TIMED_O3_A(0) TIMED_O3_D(0) TIMED_O2_B(0) TIMED_O2_G(0) TIMED_O2_E(0) ;TIMED_O2_C(0) ; removed for pal timing TIMED_O1_B(0) TIMED_O1_A(0) TIMED_O1_G(0) TIMED_O1_F(0) AUDIO_SILENCE(1) TIMED_O2_G(7) SAMPLE_END ;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; ftm file - $0000 triangle ;;;;;;;;;;;;;;;;;;;;;;;;;;;;; theme_main_triangle_bass_a2_x4: TIMED_O3_A(0) TIMED_O3_D(0) TIMED_O2_B(0) TIMED_O2_G(0) TIMED_O2_E(0) ;TIMED_O2_C(0) ; removed for pal timing TIMED_O1_B(0) TIMED_O1_A(0) TIMED_O1_G(0) TIMED_O1_F(0) AUDIO_SILENCE(1) TIMED_O2_A(8) TIMED_O3_A(0) TIMED_O3_D(0) TIMED_O2_B(0) TIMED_O2_G(0) TIMED_O2_E(0) ;TIMED_O2_C(0) ; removed for pal timing TIMED_O1_B(0) TIMED_O1_A(0) TIMED_O1_G(0) TIMED_O1_F(0) AUDIO_SILENCE(1) TIMED_O2_A(8) TIMED_O3_A(0) TIMED_O3_D(0) TIMED_O2_B(0) TIMED_O2_G(0) TIMED_O2_E(0) ;TIMED_O2_C(0) ; removed for pal timing TIMED_O1_B(0) TIMED_O1_A(0) TIMED_O1_G(0) TIMED_O1_F(0) AUDIO_SILENCE(1) TIMED_O2_A(8) TIMED_O3_A(0) TIMED_O3_D(0) TIMED_O2_B(0) TIMED_O2_G(0) TIMED_O2_E(0) ;TIMED_O2_C(0) ; removed for pal timing TIMED_O1_B(0) TIMED_O1_A(0) TIMED_O1_G(0) TIMED_O1_F(0) AUDIO_SILENCE(1) TIMED_O2_A(7) SAMPLE_END ;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; ftm file - $0600 triangle ;;;;;;;;;;;;;;;;;;;;;;;;;;;;; theme_main_triangle_bass2_f2_x4: AUDIO_SILENCE(0) TIMED_O3_D(0) TIMED_O2_B(0) TIMED_O2_G(0) TIMED_O2_E(0) ;TIMED_O2_C(0) ; removed for pal timing TIMED_O1_B(0) TIMED_O1_A(0) TIMED_O1_G(0) ;TIMED_O1_F(0) ; removed for pal timing TIMED_O1_E(0) TIMED_O1_D(0) AUDIO_SILENCE(0) TIMED_O2_F(8) AUDIO_SILENCE(0) TIMED_O3_D(0) TIMED_O2_B(0) TIMED_O2_G(0) TIMED_O2_E(0) ;TIMED_O2_C(0) ; removed for pal timing TIMED_O1_B(0) TIMED_O1_A(0) TIMED_O1_G(0) ;TIMED_O1_F(0) ; removed for pal timing TIMED_O1_E(0) TIMED_O1_D(0) AUDIO_SILENCE(0) TIMED_O2_F(8) AUDIO_SILENCE(0) TIMED_O3_D(0) TIMED_O2_B(0) TIMED_O2_G(0) TIMED_O2_E(0) ;TIMED_O2_C(0) ; removed for pal timing TIMED_O1_B(0) TIMED_O1_A(0) TIMED_O1_G(0) ;TIMED_O1_F(0) ; removed for pal timing TIMED_O1_E(0) TIMED_O1_D(0) AUDIO_SILENCE(0) TIMED_O2_F(8) AUDIO_SILENCE(0) TIMED_O3_D(0) TIMED_O2_B(0) TIMED_O2_G(0) TIMED_O2_E(0) ;TIMED_O2_C(0) ; removed for pal timing TIMED_O1_B(0) TIMED_O1_A(0) TIMED_O1_G(0) ;TIMED_O1_F(0) ; removed for pal timing TIMED_O1_E(0) TIMED_O1_D(0) AUDIO_SILENCE(0) TIMED_O2_F(7) SAMPLE_END ;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; ftm file - $0660 triangle ;;;;;;;;;;;;;;;;;;;;;;;;;;;;; theme_main_triangle_bass2_g2_x4: AUDIO_SILENCE(0) TIMED_O3_D(0) TIMED_O2_B(0) TIMED_O2_G(0) TIMED_O2_E(0) ;TIMED_O2_C(0) ; removed for pal timing TIMED_O1_B(0) TIMED_O1_A(0) TIMED_O1_G(0) ;TIMED_O1_F(0) ; removed for pal timing TIMED_O1_E(0) TIMED_O1_D(0) AUDIO_SILENCE(0) TIMED_O2_G(8) AUDIO_SILENCE(0) TIMED_O3_D(0) TIMED_O2_B(0) TIMED_O2_G(0) TIMED_O2_E(0) ;TIMED_O2_C(0) ; removed for pal timing TIMED_O1_B(0) TIMED_O1_A(0) TIMED_O1_G(0) ;TIMED_O1_F(0) ; removed for pal timing TIMED_O1_E(0) TIMED_O1_D(0) AUDIO_SILENCE(0) TIMED_O2_G(8) AUDIO_SILENCE(0) TIMED_O3_D(0) TIMED_O2_B(0) TIMED_O2_G(0) TIMED_O2_E(0) ;TIMED_O2_C(0) ; removed for pal timing TIMED_O1_B(0) TIMED_O1_A(0) TIMED_O1_G(0) ;TIMED_O1_F(0) ; removed for pal timing TIMED_O1_E(0) TIMED_O1_D(0) AUDIO_SILENCE(0) TIMED_O2_G(8) AUDIO_SILENCE(0) TIMED_O3_D(0) TIMED_O2_B(0) TIMED_O2_G(0) TIMED_O2_E(0) ;TIMED_O2_C(0) ; removed for pal timing TIMED_O1_B(0) TIMED_O1_A(0) TIMED_O1_G(0) ;TIMED_O1_F(0) ; removed for pal timing TIMED_O1_E(0) TIMED_O1_D(0) AUDIO_SILENCE(0) TIMED_O2_G(7) SAMPLE_END ;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; ftm file - $0b40 triangle ;;;;;;;;;;;;;;;;;;;;;;;;;;;;; theme_main_triangle_bass2_c3_x4: AUDIO_SILENCE(0) TIMED_O3_D(0) TIMED_O2_B(0) TIMED_O2_G(0) TIMED_O2_E(0) ;TIMED_O2_C(0) ; removed for pal timing TIMED_O1_B(0) TIMED_O1_A(0) TIMED_O1_G(0) ;TIMED_O1_F(0) ; removed for pal timing TIMED_O1_E(0) TIMED_O1_D(0) AUDIO_SILENCE(0) TIMED_O3_C(8) AUDIO_SILENCE(0) TIMED_O3_D(0) TIMED_O2_B(0) TIMED_O2_G(0) TIMED_O2_E(0) ;TIMED_O2_C(0) ; removed for pal timing TIMED_O1_B(0) TIMED_O1_A(0) TIMED_O1_G(0) ;TIMED_O1_F(0) ; removed for pal timing TIMED_O1_E(0) TIMED_O1_D(0) AUDIO_SILENCE(0) TIMED_O3_C(8) AUDIO_SILENCE(0) TIMED_O3_D(0) TIMED_O2_B(0) TIMED_O2_G(0) TIMED_O2_E(0) ;TIMED_O2_C(0) ; removed for pal timing TIMED_O1_B(0) TIMED_O1_A(0) TIMED_O1_G(0) ;TIMED_O1_F(0) ; removed for pal timing TIMED_O1_E(0) TIMED_O1_D(0) AUDIO_SILENCE(0) TIMED_O3_C(8) AUDIO_SILENCE(0) TIMED_O3_D(0) TIMED_O2_B(0) TIMED_O2_G(0) TIMED_O2_E(0) ;TIMED_O2_C(0) ; removed for pal timing TIMED_O1_B(0) TIMED_O1_A(0) TIMED_O1_G(0) ;TIMED_O1_F(0) ; removed for pal timing TIMED_O1_E(0) TIMED_O1_D(0) AUDIO_SILENCE(0) TIMED_O3_C(7) SAMPLE_END ;;;;;;;;;;;;;;;;;;;;;;;;;;;;; ; ftm file - $1680 triangle ;;;;;;;;;;;;;;;;;;;;;;;;;;;;; theme_main_triangle_epilog: TIMED_O3_A(0) TIMED_O3_D(0) TIMED_O2_B(0) TIMED_O2_G(0) TIMED_O2_E(0) ;TIMED_O2_C(0) ; removed for pal timing TIMED_O1_B(0) TIMED_O1_A(0) TIMED_O1_G(0) TIMED_O1_F(0) AUDIO_SILENCE(1) TIMED_O3_C(FULL_NOTE-1) TIMED_O3_C(FULL_NOTE-1) TIMED_O3_C(FULL_NOTE-1) TIMED_O3_C(HALF_NOTE-1-1) AUDIO_SILENCE(0) ; ftm file - $16e1 TIMED_O2_G(FULL_NOTE-1) TIMED_O2_G(FULL_NOTE-1-1) AUDIO_SILENCE(0) TIMED_O2_G(FULL_NOTE-1) TIMED_O2_G(FULL_NOTE-1-1) AUDIO_SILENCE(0) TIMED_O2_G(FULL_NOTE-1) TIMED_O2_G(FULL_NOTE-1) TIMED_O2_G(FULL_NOTE-1) TIMED_O2_G(FULL_NOTE-1-1) AUDIO_SILENCE(0) ; ftm file - $17a1 TIMED_O3_C(FULL_NOTE-1) TIMED_O3_C(FULL_NOTE-1-1) AUDIO_SILENCE(0) TIMED_O3_C(FULL_NOTE-1) TIMED_O3_C(FULL_NOTE-1-1) TIMED_O3_A(0) TIMED_O3_D(0) TIMED_O2_B(0) TIMED_O2_G(0) TIMED_O2_E(0) ;TIMED_O2_C(0) ; removed for pal timing TIMED_O1_B(0) TIMED_O1_A(0) TIMED_O1_G(0) TIMED_O1_F(0) AUDIO_SILENCE(1) TIMED_O3_C(FULL_NOTE-1) TIMED_O3_C(FULL_NOTE-1) TIMED_O3_C(FULL_NOTE-1) TIMED_O3_C(HALF_NOTE-1-1) AUDIO_SILENCE(0) ; ftm file $1861 TIMED_O2_G(FULL_NOTE-1) TIMED_O2_G(FULL_NOTE-1-1) AUDIO_SILENCE(0) TIMED_O2_G(FULL_NOTE-1) TIMED_O2_G(FULL_NOTE-1-1) AUDIO_SILENCE(0) TIMED_O2_G(FULL_NOTE-1) TIMED_O2_G(FULL_NOTE-1) TIMED_O2_G(FULL_NOTE-1) TIMED_O2_G(FULL_NOTE-1-1) AUDIO_SILENCE(0) ; ftm file $1921 TIMED_O3_C(FULL_NOTE-1) TIMED_O3_C(FULL_NOTE-1-1) AUDIO_SILENCE(0) ; Making arangements for looping gracefully, ; this part intentionally differs from the original TIMED_O3_C(FULL_NOTE-1) TIMED_O3_C(FULL_NOTE-1-1) AUDIO_SILENCE(0) AUDIO_SILENCE(FULL_NOTE-1) AUDIO_SILENCE(HALF_NOTE-1-1) ; ftm file - $19a5 SAMPLE_END
demos/phil.ada
daveshields/AdaEd
3
28019
<gh_stars>1-10 ---------------------------------------------------------------------- -- -- The Dining Philosophers' Problem -- -- written by -- -- <NAME> -- and -- <NAME> -- -- Ada Project -- Courant Institute -- New York University -- 251 Mercer Street -- New York, New York 10012 -- ----------------------------------------------------------------------- with TEXT_IO; use TEXT_IO; procedure DINING_PHILOSOPHERS is type PHILOSOPHER is (Descartes, Hegel, Turing, Plato, Sartre); meals: constant array(PHILOSOPHER) of INTEGER := (3,2,2,2,3); Message1: constant array(PHILOSOPHER) of STRING(1 .. 30) := ("I eat: therefore I am ", "Hegel synthesizes ", "Turing shifts ", "Plato eats the ideal spaghetti", "Sartre gorges " ); Message2: constant array(PHILOSOPHER) of STRING(1 .. 30) := ("Descartes cogitates ", "Hegel's pure spirit at work ", "Turing machinates ", "Plato watches the shadows ", "Sartre eats nothing " ); Message3: constant array(PHILOSOPHER) of STRING(1 .. 30) := ("Descartes concludes ", "The owl of Minerva is stuffed ", "Turing halts ", "Plato retreats ", "Sartre is nauseated " ); task type DINING is entry WHO_AM_I(p: PHILOSOPHER); end DINING; task TABLE_MANAGER is entry EAT(PHILOSOPHER); entry REST(p: PHILOSOPHER); entry FAST_RELIEF(p: PHILOSOPHER); end TABLE_MANAGER; task body DINING is separate; task body TABLE_MANAGER is separate; begin declare PHILS: array(PHILOSOPHER) of DINING; begin for philo in PHILOSOPHER loop PHILS(philo).WHO_AM_I(philo); end loop; end; put_line("Closing time ..."); end DINING_PHILOSOPHERS; ----------------------------------------------------------------------- separate(DINING_PHILOSOPHERS) task body DINING is philo: PHILOSOPHER; begin accept WHO_AM_I(p: PHILOSOPHER) do philo := p; end WHO_AM_I; for n in 1 .. meals(philo) loop TABLE_MANAGER.EAT(philo); delay 1.0; TABLE_MANAGER.REST(philo); delay 0.5; end loop; TABLE_MANAGER.FAST_RELIEF(philo); end DINING; ------------------------------------------------------------------------ separate(DINING_PHILOSOPHERS) task body TABLE_MANAGER is type AVAIL is record LEFT, RIGHT: BOOLEAN; end record; FORKS: array(PHILOSOPHER) of AVAIL := (PHILOSOPHER'FIRST..PHILOSOPHER'LAST => (TRUE, TRUE)); type ACTION is (seize,release); numphil: constant INTEGER := 5; TWO: constant AVAIL := (TRUE,TRUE); procedure fork_action(p: PHILOSOPHER; a: ACTION) is separate; begin loop select when FORKS(Descartes) = TWO => accept EAT(Descartes); fork_action(Descartes, seize); put_line(Message1(Descartes)); or when FORKS(Hegel) = TWO => accept EAT(Hegel); fork_action(Hegel, seize); put_line(Message1(Hegel)); or when FORKS(Turing) = TWO => accept EAT(Turing); fork_action(Turing, seize); put_line(Message1(Turing)); or when FORKS(Plato) = TWO => accept EAT(Plato); fork_action(Plato, seize); put_line(Message1(Plato)); or when FORKS(Sartre) = TWO => accept EAT(Sartre); fork_action(Sartre, seize); put_line(Message1(Sartre)); or accept REST(p: PHILOSOPHER) do fork_action(p, release); put_line(Message2(p)); end REST; or accept FAST_RELIEF(p: PHILOSOPHER) do put_line(Message3(p)); end FAST_RELIEF; or terminate; end select ; end loop ; end TABLE_MANAGER ; ---------------------------------------------------------------------- separate(DINING_PHILOSOPHERS.TABLE_MANAGER) procedure fork_action(p: PHILOSOPHER; a: ACTION) is pp: PHILOSOPHER; v: array(ACTION) of BOOLEAN := (FALSE, TRUE); begin pp := PHILOSOPHER'VAL((PHILOSOPHER'POS(p) + 1) mod numphil); FORKS(pp).LEFT := v(a); pp := PHILOSOPHER'VAL((PHILOSOPHER'POS(p) + 4) mod numphil); FORKS(pp).RIGHT := v(a); end fork_action;
Applications/Firefox/windows/first window.applescript
looking-for-a-job/applescript-examples
1
1189
<reponame>looking-for-a-job/applescript-examples<filename>Applications/Firefox/windows/first window.applescript #!/usr/bin/osascript tell application "Firefox" first window end tell
antlr-basics/src/main/java/com/poc/chapter_08_part03/gen/CymbolCallGraph.g4
cgonul/antlr-poc
0
5919
<reponame>cgonul/antlr-poc<gh_stars>0 grammar CymbolCallGraph; file: (functionDecl | varDecl)+ ; varDecl : type ID ('=' expr)? ';' ; type: 'float' | 'int' | 'void' ; // user-defined types functionDecl : type ID '(' formalParameters? ')' block // "void f(int x) {...}" ; formalParameters : formalParameter (',' formalParameter)* ; formalParameter : type ID ; block: '{' stat* '}' ; // possibly empty statement block stat: block | varDecl | 'if' expr 'then' stat ('else' stat)? | 'return' expr? ';' | expr '=' expr ';' // assignment | expr ';' // func call ; /* expr below becomes the following non-left recursive rule: expr[int _p] : ( '-' expr[6] | '!' expr[5] | ID | INT | '(' expr ')' ) ( {8 >= $_p}? '*' expr[9] | {7 >= $_p}? ('+'|'-') expr[8] | {4 >= $_p}? '==' expr[5] | {10 >= $_p}? '[' expr ']' | {9 >= $_p}? '(' exprList? ')' )* ; */ expr: ID '(' exprList? ')' # Call | expr '[' expr ']' # Index | '-' expr # Negate | '!' expr # Not | expr '*' expr # Mult | expr ('+'|'-') expr # AddSub | expr '==' expr # Equal | ID # Var | INT # Int | '(' expr ')' # Parens ; exprList : expr (',' expr)* ; // arg list K_FLOAT : 'float'; K_INT : 'int'; K_VOID : 'void'; ID : LETTER (LETTER | [0-9])* ; fragment LETTER : [a-zA-Z] ; INT : [0-9]+ ; WS : [ \t\n\r]+ -> skip ; SL_COMMENT : '//' .*? '\n' -> skip ;
helper/tools/RDFDoctor/sourceCode/src/core/TurtleOriginal.g4
ashishp98/vocol
90
461
<filename>helper/tools/RDFDoctor/sourceCode/src/core/TurtleOriginal.g4 grammar TurtleOriginal; start : (directive)* (triples)* (errors)*; // leading CODE directive : baseDecl | prefixDecl | unkonwnDecl ; baseDecl : baseSparql | base ; unkonwnDecl : '@keywords' (CHAR)* '.' {notifyErrorListeners("@keywords is unkown directive in Turtle");} ; baseSparql : KW_BASE IRIREF // | '@BASE' IRIREF '.' {notifyErrorListeners("Uncorrect form of Base directive");} // | '@BASE' IRIREF {notifyErrorListeners("Uncorrect form of Base directive");} // | KW_BASE IRIREF '.' {notifyErrorListeners("SPARQL BASE directive should not followed by '.'");} ; base : BASE IRIREF '.' // | BASE IRIREF {notifyErrorListeners("Missing '.' at the end of Base directive");} // | BASE {notifyErrorListeners("Missing IRI after '@base'");} ; prefixDecl : prefixSparql | prefix ; prefix : PREFIX PNAME_NS IRIREF '.' // | PREFIX '.' PNAME_NS IRIREF '.' {notifyErrorListeners("Namespace cannot start with '.' ");} // | PREFIX PN_PREFIX? '.' ':' IRIREF '.' {notifyErrorListeners("Namespace cannot end with '.' ");} // | PREFIX PNAME_NS IRIREF {notifyErrorListeners("Missing '.' at the end of Prefix directive");} // | PREFIX PNAME_NS '.' {notifyErrorListeners("Missing IRI in Prefix directive");} // | PREFIX PNAME_NS {notifyErrorListeners("Missing IRI and dot at Prefix directive");} // | PREFIX IRIREF '.' {notifyErrorListeners("Missing NameSpace in Prefix directive");} ; prefixSparql : KW_PREFIX PNAME_NS IRIREF {System.out.println("\nNS "+$PNAME_NS.text+"IRI "+$IRIREF.text);} // | KW_PREFIX '.' PNAME_NS IRIREF {notifyErrorListeners("Namespace cannot start with '.' ");} // | KW_PREFIX PN_PREFIX? '.' ':' IRIREF {notifyErrorListeners("Namespace cannot end with '.' ");} // | KW_PREFIX PNAME_NS IRIREF '.' {notifyErrorListeners(" extraneous input'.' at the end of Prefix directive");} // | KW_PREFIX PNAME_NS '.' {notifyErrorListeners("Missing IRI in Prefix directive");} // | KW_PREFIX IRIREF {notifyErrorListeners("Missing NameSpace in Prefix directive");} ; errors : iri '=' iri '.' {notifyErrorListeners("'=' sign cannot be used in Turtle");} //TODO:remove for debugging //| subject predicateObjectList ';' {notifyErrorListeners("Uncorrect end of a triple, a triple ends with '.'");} //| subject predicateObjectList ',' {notifyErrorListeners("Uncorrect end of a triple, a triple ends with '.'");} //todo // | '{' subject predicateObjectList '}' {notifyErrorListeners("{ } pattern is not in Turtle");} // | '{' triples '}' {notifyErrorListeners("{ } pattern is not in Turtle");} // | (subject '.') {notifyErrorListeners("N3 paths cannot be used in Turtle");} //Todo // | subject predicate object graphLabel '.' {notifyErrorListeners("Turtle is not NQuads");} // | '@forAll' iri '.' {notifyErrorListeners(" '@forAll' cannot be used in Turtle ");} // | '@forSome' iri '.' {notifyErrorListeners(" '@forSome' cannot be used in Turtle ");} | subject wrongPredicateObjectList '.' {notifyErrorListeners("N3 Pattern 'is...of' cannot be used in Turtle");} ; triples : subject predicateObjectList '.' //todo // | subject predicateObjectList ('.')+ ('.')+ {notifyErrorListeners("Too many DOT ");} // | subject predicateObjectList {notifyErrorListeners("Missing '.' at the end of the triple");} // | subject predicateObjectList (';') {notifyErrorListeners("Missing '.' at the end of the triple");} ; graphLabel : IRIREF | BLANK_NODE_LABEL ; subject : iri | blank | booleanLiteral {notifyErrorListeners("Subject cannot be a boolean value");} // todo // | rdfLiteral {notifyErrorListeners("Subject cannot be a string");} | numericLiteral {notifyErrorListeners("Subject cannot be a number");} | RDF_TYPE {notifyErrorListeners("'a' cannot be used as a subject");} ; blankNodePropertyList : '[' (predicateObjectList)* ']' ; predicateObjectList : predicate objectList (';' predicate objectList)* // TODO: remove the last ';' above //predicate objectList (';' predicate objectList)* (';')? // | predicate {notifyErrorListeners("Object is missing in the triple");} // | '<=' objectList (';' predicate objectList)* (';')? {notifyErrorListeners("'<=' is not in Turtle");} // | '=>' objectList (';' predicate objectList)* (';')? {notifyErrorListeners("'=>' is not in Turtle");} ; wrongPredicateObjectList : 'is' predicate 'of' objectList ( ';' predicate objectList )* (';')? ; objectList : object ( ',' object )* ; object : literal iri //| blank //todo // | RDF_TYPE {notifyErrorListeners("'a' cannot be used as an object");} ; blank : blankNode | blankNodePropertyList | collection // | blankNode '.' {notifyErrorListeners("Blank Node cannot be followed by '.'");} ; collection : '(' object* ')' ; literal : rdfLiteral | numericLiteral | booleanLiteral ; // BNF: predicate ::= iri | RDF_TYPE predicate : iri //todo | 'a' // | rdfType // | 'A' {notifyErrorListeners("'A' cannot be used as predicate, it should be repalce with 'a'");} //todo // | literal {notifyErrorListeners("Predicate cannot be a literal");} // | blank {notifyErrorListeners("Predicate cannot be a blank node");} ; rdfType : RDF_TYPE ; datatype : iri ; numericLiteral : INTEGER | DECIMAL | DOUBLE // | ('0x'|'0X') INTEGER {notifyErrorListeners("Bad format of a numberic literal");} // | INTEGER (CHAR)+ {notifyErrorListeners("Numeric literal cannot have string characters");} // | INTEGER '.' (CHAR)+ {notifyErrorListeners("Uncorrect form of a literal");} ; rdfLiteral : String (LANGTAG | '^^' datatype)? //todo // | String (LANGTAG | '^' datatype)? {notifyErrorListeners("Missing '^' Character");} // | String (LANGTAG '^^' datatype)? {notifyErrorListeners("Uncorrect form of a Literal");} // | String ( '^^' datatype LANGTAG)? {notifyErrorListeners("Uncorrect form of a Literal");} // | String ( '@' (INTEGER|DECIMAL|DOUBLE)? )? {notifyErrorListeners("Language tag cannot be a numeric value");} ; booleanLiteral : KW_TRUE | KW_FALSE ; String : STRING_LITERAL1 | STRING_LITERAL2 | STRING_LITERAL_LONG1 | STRING_LITERAL_LONG2 //todo // | STRING_LITERAL_LONG2 '"' {notifyErrorListeners("Uncorrect form of long literal with 4 qoutes");} // | '"' STRING_LITERAL_LONG2 {notifyErrorListeners("Uncorrect form of long literal with 4 qoutes");} //todo // | WRONG_STRING_LITERAL_LONG2 {notifyErrorListeners("Missing qoutes of long literal");} // | WRONG_STRING_LITERAL2_MIX_QUOTES {notifyErrorListeners("Literal cannot be used with a mix of single and double quotes, either one of them can be used");} // | (WRONG_STRING_LITERAL1 | WRONG_STRING_LITERAL2) {notifyErrorListeners("Uncorrect quotes form of a literal");} //TODO:check another way to form string with escape //| WRONG_STRING_LITERAL2_WITH_ESCAPE {notifyErrorListeners("Uncorrect literal form with escape");} ; iri : //todo // WRONGIRIREF {notifyErrorListeners("Uncorrect form of URI, URI cannot contain newline or space");} // | WRONGIRIREF_WITH_ESCAPE {notifyErrorListeners("Uncorrect form of URI with escape");} IRIREF | prefixedName ; prefixedName : //todo // WRONG_PNAME_LN_STARTS_WITH_DOT {notifyErrorListeners("Uncorrect form of prefixed name, it cannot start with '.'");} // | WRONG_PNAME_LN_ENDS_WITH_DOT {notifyErrorListeners("Uncorrect form of prefixed name, it cannot end with '.'");} PNAME_LN | PNAME_NS ; blankNode : BLANK_NODE_LABEL ; // Reserved for future use // Keywords KW_BASE : B A S E ; KW_PREFIX : P R E F I X ; KW_TRUE : 'true' ; KW_FALSE : 'false' ; // terminals PASS : [ \t\r\n]+ -> skip; COMMENT : '#' ~[\r\n]* -> skip; BASE : '@base' ; PREFIX : '@prefix' ; CODE : '{' (~[%\\] | '\\' [%\\] | UCHAR)* '%' '}' ; RDF_TYPE : 'a' ; IRIREF : '<' (~[\u0000-\u0020=<>"{}|^`\\] | UCHAR)* '>' /* #x00=NULL #01-#x1F=control codes #x20=space */ ; WRONGIRIREF : '<' (~[\u0000-\u0020=<>"{}|^`\\] | UCHAR)* '\\n>' | '<' (~[\u0000-\u0020=<>"{}|^`\\] | UCHAR)* [ \t\r\n]+ (~[\u0000-\u0020=<>"{}|^`\\] | UCHAR)* '>' ; //WRONGIRIREF_WITH_ESCAPE : '<' (~[\u0000-\u0020=<>"{}|^`\\] | UCHAR)* ('\\'~[bfrnt\\"]|~[\n\\"])+ '>' // ; PNAME_NS : PN_PREFIX? ':' ; PNAME_LN : PNAME_NS PN_LOCAL; WRONG_PNAME_LN_STARTS_WITH_DOT : '.' PNAME_NS PN_LOCAL ; WRONG_PNAME_LN_ENDS_WITH_DOT : PN_PREFIX? '.:' PN_LOCAL ; // this is not working since it is related to Lexer not to the parser // | PNAME_NS PN_LOCAL '^' PN_LOCAL {notifyErrorListeners("Wrong form of a local name");} REGEXP : '/' (~[/\n\r\\] | '\\' [/nrt\\|.?*+(){}[\]$^-] | UCHAR)+ '/' ; REGEXP_FLAGS : [smix]+ ; BLANK_NODE_LABEL : '_:' (PN_CHARS_U | [0-9]) ((PN_CHARS | '.')* PN_CHARS)? ; LANGTAG : '@' [a-zA-Z]+ ('-' [a-zA-Z0-9]+)* ; INTEGER : [+-]? [0-9]+ ; DECIMAL : [+-]? [0-9]* '.' [0-9]+ ; DOUBLE : [+-]? ([0-9]+ '.' [0-9]* EXPONENT | '.'? [0-9]+ EXPONENT) ; CHAR : [a-zA-Z]; fragment EXPONENT : [eE] [+-]? [0-9]+ ; STRING_LITERAL1 : '\'' (~[\u0027\u005C\u000A\u000D] | ECHAR | UCHAR)* '\'' ; /* #x27=' #x5C=\ #xA=new line #xD=carriage return */ STRING_LITERAL2 : //TODO: change here //'"' (~[\u0022\u005C\u000A\u000D] | ECHAR | UCHAR)* '"' ; /* #x22=" #x5C=\ #xA=new line #xD=carriage return */ '"' (~ ["\\\r\n] | '\'' | '\\"')* '"'; //'"' (~ ["\\\r\n] | '\'' | '\\"')* '"'; //'"' ( ~["\\\r\n] | ECHAR )* '"'; // ('"' ~'"'* '"') ; // '"' (~ ["\\\r\n] | '\'' | '\\"')* '"'; // '"' (('"' | '""')? (~ ["\\] | ECHAR | UCHAR | '\''))* '"'; STRING_LITERAL_LONG1 : '\'\'\'' (('\'' | '\'\'')? (~['\\] | ECHAR | UCHAR))* '\'\'\'' ; STRING_LITERAL_LONG2 : '"""' (('"' | '""')? (~["\\] | ECHAR | UCHAR))* '"""' ; WRONG_STRING_LITERAL_LONG2 : '"""' (('"' | '""')? (~["\\] | ECHAR | UCHAR))* ; WRONG_STRING_LITERAL2_MIX_QUOTES : '\'' (~[\u0022\u005C\u000A\u000D] | ECHAR | UCHAR)* '"' | '"' (~[\u0022\u005C\u000A\u000D] | ECHAR | UCHAR)* '\'' ; WRONG_STRING_LITERAL2_WITH_ESCAPE : '"' ('\\' ~[btnfr"'\\] | ~'\\')+ (ECHAR | UCHAR)* '"' ; WRONG_STRING_LITERAL1 : '\'\'\'' (~[\u0027\u005C\u000A\u000D] | ECHAR | UCHAR)* '\'' | '\'' (~[\u0027\u005C\u000A\u000D] | ECHAR | UCHAR)* '\'\'\'' ; WRONG_STRING_LITERAL2 : '"""' (~[\u0022\u005C\u000A\u000D] | ECHAR | UCHAR)* '"' | '"' (~[\u0022\u005C\u000A\u000D] | ECHAR | UCHAR)* '"""' ; /* #x22=" #x5C=\ #xA=new line #xD=carriage return */ fragment UCHAR : '\\u' HEX HEX HEX HEX | '\\U' HEX HEX HEX HEX HEX HEX HEX HEX ; fragment ECHAR : '\\' [tbnrf\\"'] ; fragment PN_CHARS_BASE : [A-Z] | [a-z] | [\u00C0-\u00D6] | [\u00D8-\u00F6] | [\u00F8-\u02FF] | [\u0370-\u037D] | [\u037F-\u1FFF] | [\u200C-\u200D] | [\u2070-\u218F] | [\u2C00-\u2FEF] | [\u3001-\uD7FF] | [\uF900-\uFDCF] | [\uFDF0-\uFFFD] ; fragment PN_CHARS_U : PN_CHARS_BASE | '_' ; fragment PN_CHARS : PN_CHARS_U | '-' | [0-9] | [\u00B7] | [\u0300-\u036F] | [\u203F-\u2040] ; PN_PREFIX : PN_CHARS_BASE ((PN_CHARS | '.')* PN_CHARS)? ; fragment PN_LOCAL : (PN_CHARS_U | ':' | [0-9] | PLX) ((PN_CHARS | '.' | ':' | PLX)* (PN_CHARS | ':' | PLX))? ; fragment PLX : PERCENT | PN_LOCAL_ESC ; fragment PERCENT : '%' HEX HEX ; fragment HEX : [0-9] | [A-F] | [a-f] ; fragment PN_LOCAL_ESC : '\\' ('_' | '~' | '.' | '-' | '!' | '$' | '&' | '\'' | '(' | ')' | '*' | '+' | ',' | ';' | '=' | '/' | '?' | '#' | '@' | '%') ; fragment A:('a'|'A'); fragment B:('b'|'B'); fragment C:('c'|'C'); fragment D:('d'|'D'); fragment E:('e'|'E'); fragment F:('f'|'F'); fragment G:('g'|'G'); fragment H:('h'|'H'); fragment I:('i'|'I'); fragment J:('j'|'J'); fragment K:('k'|'K'); fragment L:('l'|'L'); fragment M:('m'|'M'); fragment N:('n'|'N'); fragment O:('o'|'O'); fragment P:('p'|'P'); fragment Q:('q'|'Q'); fragment R:('r'|'R'); fragment S:('s'|'S'); fragment T:('t'|'T'); fragment U:('u'|'U'); fragment V:('v'|'V'); fragment W:('w'|'W'); fragment X:('x'|'X'); fragment Y:('y'|'Y'); fragment Z:('z'|'Z');
test/Fail/Issue1388.agda
cruhland/agda
1,989
13251
-- Andreas, 2016-02-01, reported on 2014-12-08 module Issue1388 where indented = Set not-indented = Set -- This should be a parse error.
llvm-gcc-4.2-2.9/gcc/ada/exp_disp.ads
vidkidz/crossbridge
1
20228
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- E X P _ D I S P -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2005, 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. -- -- -- -- 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 involved in tagged types and dynamic -- dispatching expansion. with Types; use Types; package Exp_Disp is ------------------------------------- -- Predefined primitive operations -- ------------------------------------- -- The predefined primitive operations (PPOs) are subprograms generated -- by GNAT for a particular tagged type. Their role is to provide support -- for different Ada language features such as the attribute 'Size or -- handling of dispatching triggers in select statements. PPOs are created -- when a tagged type is expanded or frozen. These subprograms are later -- collected and inserted into the dispatch table of a tagged type at -- fixed positions. Some of the PPOs that manipulate data in tagged objects -- require the generation of thunks. -- List of predefined primitive operations -- Leading underscores designate reserved names. Bracketed numerical -- values represent dispatch table slot numbers. -- _Size (1) - implementation of the attribute 'Size for any tagged -- type. Constructs of the form Prefix'Size are converted into -- Prefix._Size. -- _Alignment (2) - implementation of the attribute 'Alignment for -- any tagged type. Constructs of the form Prefix'Alignment are -- converted into Prefix._Alignment. -- TSS_Stream_Read (3) - implementation of the stream attribute Read -- for any tagged type. -- TSS_Stream_Write (4) - implementation of the stream attribute Write -- for any tagged type. -- TSS_Stream_Input (5) - implementation of the stream attribute Input -- for any tagged type. -- TSS_Stream_Output (6) - implementation of the stream attribute -- Output for any tagged type. -- Op_Eq (7) - implementation of the equality operator for any non- -- limited tagged type. -- _Assign (8) - implementation of the assignment operator for any -- non-limited tagged type. -- TSS_Deep_Adjust (9) - implementation of the finalization operation -- Adjust for any non-limited tagged type. -- TSS_Deep_Finalize (10) - implementation of the finalization -- operation Finalize for any non-limited tagged type. -- _Disp_Asynchronous_Select (11) - used in the expansion of ATC with -- dispatching triggers. Null implementation for limited interfaces, -- full body generation for types that implement limited interfaces, -- not generated for the rest of the cases. See Expand_N_Asynchronous_ -- Select in Exp_Ch9 for more information. -- _Disp_Conditional_Select (12) - used in the expansion of conditional -- selects with dispatching triggers. Null implementation for limited -- interfaces, full body generation for types that implement limited -- interfaces, not generated for the rest of the cases. See Expand_N_ -- Conditional_Entry_Call in Exp_Ch9 for more information. -- _Disp_Get_Prim_Op_Kind (13) - helper routine used in the expansion -- of ATC with dispatching triggers. Null implementation for limited -- interfaces, full body generation for types that implement limited -- interfaces, not generated for the rest of the cases. -- _Disp_Get_Task_Id (14) - helper routine used in the expansion of -- Abort, attributes 'Callable and 'Terminated for task interface -- class-wide types. Full body generation for task types, null -- implementation for limited interfaces, not generated for the rest -- of the cases. See Expand_N_Attribute_Reference in Exp_Attr and -- Expand_N_Abort_Statement in Exp_Ch9 for more information. -- _Disp_Timed_Select (15) - used in the expansion of timed selects -- with dispatching triggers. Null implementation for limited -- interfaces, full body generation for types that implement limited -- interfaces, not generated for the rest of the cases. See Expand_N_ -- Timed_Entry_Call for more information. -- Lifecycle of predefined primitive operations -- The specifications and bodies of the PPOs are created by -- Make_Predefined_Primitive_Specs and Predefined_Primitive_Bodies -- in Exp_Ch3. The generated specifications are immediately analyzed, -- while the bodies are left as freeze actions to the tagged type for -- which they are created. -- PPOs are collected and added to the Primitive_Operations list of -- a type by the regular analysis mechanism. -- PPOs are frozen in Predefined_Primitive_Freeze in Exp_Ch3. -- Thunks for PPOs are created in Freeze_Subprogram in Exp_Ch6, by a -- call to Register_Predefined_DT_Entry, also in Exp_Ch6. -- Dispatch table positions of PPOs are set in Set_All_DT_Position in -- Exp_Disp. -- Calls to PPOs procede as regular dispatching calls. If the PPO -- has a thunk, a call procedes as a regular dispatching call with -- a thunk. -- Guidelines for addition of new predefined primitive operations -- Update the value of constant Default_Prim_Op_Count in A-Tags.ads -- to reflect the new number of PPOs. -- Introduce a new predefined name for the new PPO in Snames.ads and -- Snames.adb. -- Categorize the new PPO name as predefined by adding an entry in -- Is_Predefined_Dispatching_Operation in Exp_Util.adb. -- Generate the specification of the new PPO in Make_Predefined_ -- Primitive_Spec in Exp_Ch3.adb. The Is_Internal flag of the defining -- identifier of the specification must be set to True. -- Generate the body of the new PPO in Predefined_Primitive_Bodies in -- Exp_Ch3.adb. The Is_Internal flag of the defining identifier of the -- specification must be set to True. -- If the new PPO requires a thunk, add an entry in Freeze_Subprogram -- in Exp_Ch6.adb. -- When generating calls to a PPO, use Find_Prim_Op from Exp_Util.ads -- to retrieve the entity of the operation directly. -- Number of predefined primitive operations added by the Expander -- for a tagged type. If more predefined primitive operations are -- added, the following items must be changed: -- Ada.Tags.Defailt_Prim_Op_Count - indirect use -- Exp_Disp.Default_Prim_Op_Position - indirect use -- Exp_Disp.Set_All_DT_Position - direct use type DT_Access_Action is (CW_Membership, IW_Membership, DT_Entry_Size, DT_Prologue_Size, Get_Access_Level, Get_Entry_Index, Get_External_Tag, Get_Predefined_Prim_Op_Address, Get_Prim_Op_Address, Get_Prim_Op_Kind, Get_RC_Offset, Get_Remotely_Callable, Get_Tagged_Kind, Inherit_DT, Inherit_TSD, Register_Interface_Tag, Register_Tag, Set_Access_Level, Set_Entry_Index, Set_Expanded_Name, Set_External_Tag, Set_Interface_Table, Set_Offset_Index, Set_OSD, Set_Predefined_Prim_Op_Address, Set_Prim_Op_Address, Set_Prim_Op_Kind, Set_RC_Offset, Set_Remotely_Callable, Set_Signature, Set_SSD, Set_TSD, Set_Tagged_Kind, TSD_Entry_Size, TSD_Prologue_Size); procedure Expand_Dispatching_Call (Call_Node : Node_Id); -- Expand the call to the operation through the dispatch table and perform -- the required tag checks when appropriate. For CPP types the call is -- done through the Vtable (tag checks are not relevant) procedure Expand_Interface_Actuals (Call_Node : Node_Id); -- Ada 2005 (AI-251): Displace all the actuals corresponding to class-wide -- interfaces to reference the interface tag of the actual object procedure Expand_Interface_Conversion (N : Node_Id; Is_Static : Boolean := True); -- Ada 2005 (AI-251): N is a type-conversion node. Reference the base of -- the object to give access to the interface tag associated with the -- secondary dispatch table. function Expand_Interface_Thunk (N : Node_Id; Thunk_Alias : Node_Id; Thunk_Id : Entity_Id) return Node_Id; -- Ada 2005 (AI-251): When a tagged type implements abstract interfaces we -- generate additional subprograms (thunks) to have a layout compatible -- with the C++ ABI. The thunk modifies the value of the first actual of -- the call (that is, the pointer to the object) before transferring -- control to the target function. function Fill_DT_Entry (Loc : Source_Ptr; Prim : Entity_Id) return Node_Id; -- Generate the code necessary to fill the appropriate entry of the -- dispatch table of Prim's controlling type with Prim's address. function Fill_Secondary_DT_Entry (Loc : Source_Ptr; Prim : Entity_Id; Thunk_Id : Entity_Id; Iface_DT_Ptr : Entity_Id) return Node_Id; -- (Ada 2005): Generate the code necessary to fill the appropriate entry of -- the secondary dispatch table of Prim's controlling type with Thunk_Id's -- address. function Get_Remotely_Callable (Obj : Node_Id) return Node_Id; -- Return an expression that holds True if the object can be transmitted -- onto another partition according to E.4 (18) function Init_Predefined_Interface_Primitives (Typ : Entity_Id) return List_Id; -- Ada 2005 (AI-251): Initialize the entries associated with predefined -- primitives in all the secondary dispatch tables of Typ. function Make_DT_Access_Action (Typ : Entity_Id; Action : DT_Access_Action; Args : List_Id) return Node_Id; -- Generate a call to one of the Dispatch Table Access Subprograms defined -- in Ada.Tags or in Interfaces.Cpp function Make_DT (Typ : Entity_Id) return List_Id; -- Expand the declarations for the Dispatch Table (or the Vtable in -- the case of type whose ancestor is a CPP_Class) function Make_Disp_Asynchronous_Select_Body (Typ : Entity_Id) return Node_Id; -- Ada 2005 (AI-345): Generate the body of the primitive operation of type -- Typ used for dispatching in asynchronous selects. Generate a null body -- if Typ is an interface type. function Make_Disp_Asynchronous_Select_Spec (Typ : Entity_Id) return Node_Id; -- Ada 2005 (AI-345): Generate the specification of the primitive operation -- of type Typ used for dispatching in asynchronous selects. function Make_Disp_Conditional_Select_Body (Typ : Entity_Id) return Node_Id; -- Ada 2005 (AI-345): Generate the body of the primitive operation of type -- Typ used for dispatching in conditional selects. Generate a null body -- if Typ is an interface type. function Make_Disp_Conditional_Select_Spec (Typ : Entity_Id) return Node_Id; -- Ada 2005 (AI-345): Generate the specification of the primitive operation -- of type Typ used for dispatching in conditional selects. function Make_Disp_Get_Prim_Op_Kind_Body (Typ : Entity_Id) return Node_Id; -- Ada 2005 (AI-345): Generate the body of the primitive operation of type -- Typ used for retrieving the callable entity kind during dispatching in -- asynchronous selects. Generate a null body if Typ is an interface type. function Make_Disp_Get_Prim_Op_Kind_Spec (Typ : Entity_Id) return Node_Id; -- Ada 2005 (AI-345): Generate the specification of the primitive operation -- of the type Typ use for retrieving the callable entity kind during -- dispatching in asynchronous selects. function Make_Disp_Get_Task_Id_Body (Typ : Entity_Id) return Node_Id; -- Ada 2005 (AI-345): Generate the body of the primitive operation of type -- Typ used for retrieving the _task_id field of a task interface class- -- wide type. Generate a null body if Typ is an interface or a non-task -- type. function Make_Disp_Get_Task_Id_Spec (Typ : Entity_Id) return Node_Id; -- Ada 2005 (AI-345): Generate the specification of the primitive operation -- of type Typ used for retrieving the _task_id field of a task interface -- class-wide type. function Make_Disp_Timed_Select_Body (Typ : Entity_Id) return Node_Id; -- Ada 2005 (AI-345): Generate the body of the primitive operation of type -- Typ used for dispatching in timed selects. Generate a null body if Nul -- is an interface type. function Make_Disp_Timed_Select_Spec (Typ : Entity_Id) return Node_Id; -- Ada 2005 (AI-345): Generate the specification of the primitive operation -- of type Typ used for dispatching in timed selects. function Make_Select_Specific_Data_Table (Typ : Entity_Id) return List_Id; -- Ada 2005 (AI-345): Create and populate the auxiliary table in the TSD -- of Typ used for dispatching in asynchronous, conditional and timed -- selects. Generate code to set the primitive operation kinds and entry -- indices of primitive operations and primitive wrappers. procedure Make_Secondary_DT (Typ : Entity_Id; Ancestor_Typ : Entity_Id; Suffix_Index : Int; Iface : Entity_Id; AI_Tag : Entity_Id; Acc_Disp_Tables : in out Elist_Id; Result : out List_Id); -- Ada 2005 (AI-251): Expand the declarations for the Secondary Dispatch -- Table of Typ associated with Iface (each abstract interface implemented -- by Typ has a secondary dispatch table). The arguments Typ, Ancestor_Typ -- and Suffix_Index are used to generate an unique external name which -- is added at the end of Acc_Disp_Tables; this external name will be -- used later by the subprogram Exp_Ch3.Build_Init_Procedure. procedure Set_All_DT_Position (Typ : Entity_Id); -- Set the DT_Position field for each primitive operation. In the CPP -- Class case check that no pragma CPP_Virtual is missing and that the -- DT_Position are coherent procedure Set_Default_Constructor (Typ : Entity_Id); -- Typ is a CPP_Class type. Create the Init procedure of that type to -- be the default constructor (i.e. the function returning this type, -- having a pragma CPP_Constructor and no parameter) procedure Write_DT (Typ : Entity_Id); pragma Export (Ada, Write_DT); -- Debugging procedure (to be called within gdb) end Exp_Disp;
oeis/041/A041111.asm
neoneye/loda-programs
11
3903
; A041111: Denominators of continued fraction convergents to sqrt(63). ; Submitted by <NAME> ; 1,1,15,16,239,255,3809,4064,60705,64769,967471,1032240,15418831,16451071,245733825,262184896,3916322369,4178507265,62415424079,66593931344,994730462895,1061324394239,15853271982241,16914596376480,252657621252961,269572217629441,4026668668065135,4296240885694576,64174041067789199,68470281953483775,1022757988416562049,1091228270370045824,16299953773597203585,17391182043967249409,259776502389138695311,277167684433105944720,4140124084452621921391,4417291768885727866111,65982208848852812046945 add $0,1 mov $3,1 lpb $0 sub $0,1 add $2,$3 mov $3,$1 mov $1,$2 dif $2,2 dif $2,7 mul $2,14 lpe mov $0,$2 div $0,14
src/08-events/encounter-tables-plugin-logic.asm
chaoshades/snes-ffci
0
97276
org $00FD31 ; Routine to hack PHY ; Make sure registers Y... PLX ; ...and X are not affected by the custom code, in case they're important (They're not used here) ; Vehicle encounter tables LDA $1704 ; Observe the mode of transport CMP #$01 ; If in canoe (01) BNE $0D ; If not equal, skip to next check LDA $061B ; Observe current position CMP #$80 ; Is on the southern part of the overworld? BCS $02 LDA #$11 ; If not, load encounter set 17 into A LDA #$12 ; else, load encounter set 18 into A BRA $08 ; Jump to end CMP #$03 ; If in ship (03) BNE $04 ; If not equal, skip to next check LDA #$10 ; If so, load encounter set 16 into A BRA $04 ; Jump to end ;BRA $31 ; Jump to end ; Uncomment to use ; Event based encounter tables ;LDA $129E ;AND #$3F ; Observe (only) flags 240 through 245 ;CMP #$20 ; Is flag 245 set? ;BCC $04 ; If not, skip to next check ;LDA #$06 ; If so, load encounter set 6 into A ;BRA $24 ; Jump to end ;CMP #$10 ; Is flag 244 set? ;BCC $04 ; If not, skip to next check ;LDA #$05 ; If so, load encounter set 5 into A ;BRA $1C ; Jump to end ;CMP #$08 ; Is flag 243 set? ;BCC $04 ; If not, skip to next check ;LDA #$04 ; If so, load encounter set 4 into A ;BRA $14 ; Jump to end ;CMP #$04 ; Is flag 242 set? ;BCC $04 ; If not, skip to next check ;LDA #$03 ; If so, load encounter set 3 into A ;BRA $0C ; Jump to end ;CMP #$02 ; Is flag 241 Set? ;BCC $04 ; If not, skip to next check ;LDA #$02 ; If so, load encounter set 2 into A ;BRA $04 ; Jump to end LDA $0EC542,x ; Load the appropriate encounter set into A JMP $899A ; Jump back to the rest of the normal routine
src/Categories/Functor/Monoidal/Tensor.agda
TOTBWF/agda-categories
0
14670
<reponame>TOTBWF/agda-categories<filename>src/Categories/Functor/Monoidal/Tensor.agda {-# OPTIONS --without-K --safe #-} open import Categories.Category using (Category) open import Categories.Category.Monoidal.Core using (Monoidal) -- The tensor product of certain monoidal categories is a monoidal functor. module Categories.Functor.Monoidal.Tensor {o ℓ e} {C : Category o ℓ e} {M : Monoidal C} where open import Data.Product using (_,_) open import Categories.Category.Product using (Product) open import Categories.Category.Monoidal.Braided using (Braided) open import Categories.Category.Monoidal.Symmetric using (Symmetric) open import Categories.Category.Monoidal.Construction.Product hiding (⊗) open import Categories.Category.Monoidal.Interchange open import Categories.Category.Monoidal.Structure open import Categories.Morphism using (module ≅) open import Categories.Functor.Monoidal import Categories.Functor.Monoidal.Braided as BMF import Categories.Functor.Monoidal.Symmetric as SMF open import Categories.NaturalTransformation.NaturalIsomorphism using (NaturalIsomorphism) open NaturalIsomorphism private C-monoidal : MonoidalCategory o ℓ e C-monoidal = record { U = C; monoidal = M } C×C = Product C C C×C-monoidal = Product-MonoidalCategory C-monoidal C-monoidal open MonoidalCategory C-monoidal -- By definition, the tensor product ⊗ of a monoidal category C is a -- binary functor ⊗ : C × C → C. The product category C × C of a -- monoidal category C is again monoidal. Thus we may ask: -- -- Is the functor ⊗ a monoidal functor, i.e. does it preserve the -- monoidal structure in a suitable way (lax or strong)? -- -- The answer is "yes", provided ⊗ comes equipped with a (coherent) -- interchange map, aka a "four-middle interchange", which is the case -- e.g. when C is braided. module Lax (hasInterchange : HasInterchange M) where private module interchange = HasInterchange hasInterchange ⊗-isMonoidalFunctor : IsMonoidalFunctor C×C-monoidal C-monoidal ⊗ ⊗-isMonoidalFunctor = record { ε = unitorˡ.to ; ⊗-homo = F⇒G interchange.naturalIso ; associativity = interchange.assoc ; unitaryˡ = interchange.unitˡ ; unitaryʳ = interchange.unitʳ } ⊗-MonoidalFunctor : MonoidalFunctor C×C-monoidal C-monoidal ⊗-MonoidalFunctor = record { F = ⊗ ; isMonoidal = ⊗-isMonoidalFunctor } module LaxBraided (B : Braided M) where open Lax (BraidedInterchange.hasInterchange B) public module LaxSymmetric (S : Symmetric M) where open SymmetricInterchange S open Lax hasInterchange public open SymmetricMonoidalCategory using () renaming (braidedMonoidalCategory to bmc) private C-symmetric : SymmetricMonoidalCategory o ℓ e C-symmetric = record { symmetric = S } C×C-symmetric = Product-SymmetricMonoidalCategory C-symmetric C-symmetric open BMF.Lax (bmc C×C-symmetric) (bmc C-symmetric) open SMF.Lax C×C-symmetric C-symmetric ⊗-isBraidedMonoidalFunctor : IsBraidedMonoidalFunctor ⊗ ⊗-isBraidedMonoidalFunctor = record { isMonoidal = ⊗-isMonoidalFunctor ; braiding-compat = swapInner-braiding′ } ⊗-SymmetricMonoidalFunctor : SymmetricMonoidalFunctor ⊗-SymmetricMonoidalFunctor = record { isBraidedMonoidal = ⊗-isBraidedMonoidalFunctor } module Strong (hasInterchange : HasInterchange M) where private module interchange = HasInterchange hasInterchange ⊗-isMonoidalFunctor : IsStrongMonoidalFunctor C×C-monoidal C-monoidal ⊗ ⊗-isMonoidalFunctor = record { ε = ≅.sym C unitorˡ ; ⊗-homo = interchange.naturalIso ; associativity = interchange.assoc ; unitaryˡ = interchange.unitˡ ; unitaryʳ = interchange.unitʳ } ⊗-MonoidalFunctor : StrongMonoidalFunctor C×C-monoidal C-monoidal ⊗-MonoidalFunctor = record { isStrongMonoidal = ⊗-isMonoidalFunctor } -- TODO: implement the missing bits in Categories.Category.Monoidal.Interchange. module StrongBraided (B : Braided M) where open Strong (BraidedInterchange.hasInterchange B) public module StrongSymmetric (S : Symmetric M) where open SymmetricInterchange S open Strong hasInterchange public open SymmetricMonoidalCategory using () renaming (braidedMonoidalCategory to bmc) private C-symmetric : SymmetricMonoidalCategory o ℓ e C-symmetric = record { symmetric = S } C×C-symmetric = Product-SymmetricMonoidalCategory C-symmetric C-symmetric open BMF.Strong (bmc C×C-symmetric) (bmc C-symmetric) open SMF.Strong C×C-symmetric C-symmetric ⊗-isBraidedMonoidalFunctor : IsBraidedMonoidalFunctor ⊗ ⊗-isBraidedMonoidalFunctor = record { isStrongMonoidal = ⊗-isMonoidalFunctor ; braiding-compat = swapInner-braiding′ } ⊗-SymmetricMonoidalFunctor : SymmetricMonoidalFunctor ⊗-SymmetricMonoidalFunctor = record { isBraidedMonoidal = ⊗-isBraidedMonoidalFunctor }
Connecting to File Cloud.applescript
Iainmon/VPN-and-File-Server-Connection-Applescript
0
2440
<filename>Connecting to File Cloud.applescript<gh_stars>0 -- -- Created by <NAME> on 2/27/17. -- Copyright © 2017 <NAME>. All rights reserved. -- -- Please note, that this file will not wrok as is. These snippets need to be edited to fit your needs. global serverConnectionStatus on checkConnection_() set IP_address to "(ANY STABLE WEBSITE)" set serverConnectionStatus to false -- Initialise if conectivity is valid try set ping to (do shell script "ping -c 2 " & IP_address) set serverConnectionStatus to true on error -- if we get here, the ping failed set serverConnectionStatus to false end try end checkConnection_ -- Connecting to cloud (**) on cloud_() checkConnection_() if serverConnectionStatus is true then set volumeString to "afp://" & "" & ":" & "null" & "@YourDomain" -- having the volume string in that configuration, will give the user a dialog to securley put their username and password into. the user also has the feature to save the user and pass to their keychain. try mount volume volumeString --Cloud is connected after this point! on error -- could not connect to cloud display dialog "Cannot connect to cloud. Please try checking your username and password." buttons {"OK"} with icon 2 end try else -- could not connect to cloud display dialog "Cannot connect to Cloud. Please check your connection." buttons {"OK"} with icon 2 end if end cloud_
src/frontend/Experimental_Ada_ROSE_Connection/parser/support/source/demo_dot.adb
ouankou/rose
488
3189
<reponame>ouankou/rose with Ada.Text_IO; with Dot; procedure Demo_Dot is package ATI renames Ada.Text_IO; NL : constant String := (1 => ASCII.LF); -- Support subprograms: procedure Print (Graph : in Dot.Graphs.Access_Class; Title : in String) is begin ATI.Put_Line ("// " & Title & ":"); ATI.Put_Line ("//"); Graph.Put (ATI.Standard_Output); ATI.New_Line; ATI.New_Line; end; function Create_Graph return Dot.Graphs.Access_Class is begin return Dot.Graphs.Create (Is_Digraph => True, Is_Strict => False); end; -- Demo subprograms: procedure Demo_Default_Graph is Graph : Dot.Graphs.Access_Class := new Dot.Graphs.Class; -- Initialized begin Print (Graph, "Default Graph"); end; procedure Demo_Graph is Graph : Dot.Graphs.Access_Class := Create_Graph; begin Graph.Set_Is_Digraph (False); Graph.Set_Is_Strict (False); Print (Graph, "Graph"); end; procedure Demo_Digraph is Graph : Dot.Graphs.Access_Class := Create_Graph; begin Graph.Set_Is_Digraph (True); Graph.Set_Is_Strict (False); Print (Graph, "Digraph"); end; procedure Demo_Strict_Graph is Graph : Dot.Graphs.Access_Class := Create_Graph; begin Graph.Set_Is_Digraph (False); Graph.Set_Is_Strict (True); Print (Graph, "Strict Graph"); end; procedure Demo_Strict_Digraph is Graph : Dot.Graphs.Access_Class := Create_Graph; begin Graph.Set_Is_Digraph (True); Graph.Set_Is_Strict (True); Print (Graph, "Strict Digraph"); end; procedure Demo_ID is Graph : Dot.Graphs.Access_Class := Create_Graph; begin Graph.Set_ID ("Some_ID"); Print (Graph, "Graph with ID"); end; procedure Demo_Reserved_ID is Graph : Dot.Graphs.Access_Class := Create_Graph; begin Graph.Set_ID ("graph"); Print (Graph, "Graph with reserved word as ID"); end; procedure Demo_Minimal_Node is Graph : Dot.Graphs.Access_Class := Create_Graph; Node_Stmt_1 : Dot.Node_Stmt.Class; -- Initialized begin Node_Stmt_1.Node_ID.ID := Dot.To_ID_Type ("minimal_node"); Graph.Append_Stmt (new Dot.Node_Stmt.Class'(Node_Stmt_1)); Print (Graph, "One minimal node"); end; procedure Demo_Two_Nodes is Graph : Dot.Graphs.Access_Class := Create_Graph; Node_Stmt_1 : Dot.Node_Stmt.Class; -- Initialized Node_Stmt_2 : Dot.Node_Stmt.Class; -- Initialized begin Node_Stmt_1.Node_ID.ID := Dot.To_ID_Type ("minimal_node_1"); Graph.Append_Stmt (new Dot.Node_Stmt.Class'(Node_Stmt_1)); Node_Stmt_2.Node_ID.ID := Dot.To_ID_Type ("minimal_node_2"); Graph.Append_Stmt (new Dot.Node_Stmt.Class'(Node_Stmt_2)); Print (Graph, "Two minimal nodes"); end; procedure Demo_One_Attr_Two_Assigns is Graph : Dot.Graphs.Access_Class := Create_Graph; Node_Stmt_2 : Dot.Node_Stmt.Class; -- Initialized Attr_1 : Dot.Attr.Class; -- Initialized begin Node_Stmt_2.Node_ID.ID := Dot.To_ID_Type ("node_with_attr"); Attr_1.A_List.Append ("Today", "Thursday"); Attr_1.A_List.Append ("Tomorrow", "Friday"); Node_Stmt_2.Attr_List.Append (Attr_1); Graph.Append_Stmt (new Dot.Node_Stmt.Class'(Node_Stmt_2)); Print (Graph, "One node, one attr, two assigns"); end; procedure Demo_Two_Attrs_One_Assign_Each is Graph : Dot.Graphs.Access_Class := Create_Graph; Node_Stmt_2 : Dot.Node_Stmt.Class; -- Initialized Attr_1 : Dot.Attr.Class; -- Initialized Attr_2 : Dot.Attr.Class; -- Initialized begin Node_Stmt_2.Node_ID.ID := Dot.To_ID_Type ("node_with_attrs"); Attr_1.A_List.Append ("Today", "Thursday"); Node_Stmt_2.Attr_List.Append (Attr_1); Attr_2.A_List.Append ("Now", "Day"); Node_Stmt_2.Attr_List.Append (Attr_2); Graph.Append_Stmt (new Dot.Node_Stmt.Class'(Node_Stmt_2)); Print (Graph, "One node, two attrs, one assign each"); end; procedure Demo_Two_Attrs_No_Assigns is Graph : Dot.Graphs.Access_Class := Create_Graph; Node_Stmt_2 : Dot.Node_Stmt.Class; -- Initialized Attr_1 : Dot.Attr.Class; -- Initialized Attr_2 : Dot.Attr.Class; -- Initialized begin Node_Stmt_2.Node_ID.ID := Dot.To_ID_Type ("node_with_attrs"); Node_Stmt_2.Attr_List.Append (Attr_1); Node_Stmt_2.Attr_List.Append (Attr_2); Graph.Append_Stmt (new Dot.Node_Stmt.Class'(Node_Stmt_2)); Print (Graph, "One node, two attrs, no assigns"); end; procedure Demo_Two_Nodes_Two_Attrs_Two_Assigns is Graph : Dot.Graphs.Access_Class := Create_Graph; Node_Stmt_1 : Dot.Node_Stmt.Class; -- Initialized Node_Stmt_2 : Dot.Node_Stmt.Class; -- Initialized Attr_1 : Dot.Attr.Class; -- Initialized Attr_2 : Dot.Attr.Class; -- Initialized Attr_3 : Dot.Attr.Class; -- Initialized Attr_4 : Dot.Attr.Class; -- Initialized begin Node_Stmt_1.Node_ID.ID := Dot.To_ID_Type ("node_1"); Attr_1.A_List.Append ("Today", "Thursday"); Attr_1.A_List.Append ("Tomorrow", "Friday"); Node_Stmt_1.Attr_List.Append (Attr_1); Attr_2.A_List.Append ("Now", "Day"); Attr_2.A_List.Append ("Later", "Night"); Node_Stmt_1.Attr_List.Append (Attr_2); Graph.Append_Stmt (new Dot.Node_Stmt.Class'(Node_Stmt_1)); Node_Stmt_2.Node_ID.ID := Dot.To_ID_Type ("node_2"); Attr_3.A_List.Append ("Today", "Thursday"); Attr_3.A_List.Append ("Yesterday", "Wednesday"); Node_Stmt_2.Attr_List.Append (Attr_3); Attr_4.A_List.Append ("Now", "Day"); Attr_4.A_List.Append ("Before", "Morning"); Node_Stmt_2.Attr_List.Append (Attr_4); Graph.Append_Stmt (new Dot.Node_Stmt.Class'(Node_Stmt_2)); Print (Graph, "Two nodes, two attrs, two assigns"); end; procedure Demo_Add_Assign_To_First_Attr is Graph : Dot.Graphs.Access_Class := Create_Graph; Node_Stmt_2 : Dot.Node_Stmt.Class; -- Initialized begin Node_Stmt_2.Node_ID.ID := Dot.To_ID_Type ("node_with_attr"); Node_Stmt_2.Attr_List.Add_Assign_To_First_Attr ("Today", "Thursday"); Node_Stmt_2.Attr_List.Add_Assign_To_First_Attr ("Tomorrow", "Friday"); Graph.Append_Stmt (new Dot.Node_Stmt.Class'(Node_Stmt_2)); Print (Graph, "One node, one attr, two assigns, using Add_Assign_To_First_Attr"); end; procedure Demo_Default_Edge is Graph : Dot.Graphs.Access_Class := Create_Graph; Edge_Stmt : Dot.Edges.Stmts.Class; -- Initialized begin Graph.Append_Stmt (new Dot.Edges.Stmts.Class'(Edge_Stmt)); Print (Graph, "One default edge"); end; procedure Demo_One_Edge is Graph : Dot.Graphs.Access_Class := Create_Graph; Edge_Stmt : Dot.Edges.Stmts.Class; -- Initialized begin Edge_Stmt.LHS.Node_Id.ID := Dot.To_ID_Type ("A"); Edge_Stmt.RHS.Node_Id.ID := Dot.To_ID_Type ("B"); Graph.Append_Stmt (new Dot.Edges.Stmts.Class'(Edge_Stmt)); Print (Graph, "One edge stmt"); end; procedure Demo_Two_Edges is Graph : Dot.Graphs.Access_Class := Create_Graph; Edge_Stmts : array (1..2) of Dot.Edges.Stmts.Class; -- Initialized begin Edge_Stmts (1).LHS.Node_Id.ID := Dot.To_ID_Type ("A"); Edge_Stmts (1).RHS.Node_Id.ID := Dot.To_ID_Type ("B"); Graph.Append_Stmt (new Dot.Edges.Stmts.Class'(Edge_Stmts (1))); Edge_Stmts (2).LHS.Node_Id.ID := Dot.To_ID_Type ("C"); Edge_Stmts (2).RHS.Node_Id.ID := Dot.To_ID_Type ("D"); Graph.Append_Stmt (new Dot.Edges.Stmts.Class'(Edge_Stmts (2))); Print (Graph, "Two edge stmts"); end; procedure Demo_HTML_Like_Label is Graph : Dot.Graphs.Access_Class := Create_Graph; Node_Stmt : Dot.Node_Stmt.Class; -- Initialized -- Attr_Stmt : Dot.Attr_Stmt.Class; -- Initialized HL_Label : Dot.HTML_Like_Labels.Class; -- Initialized begin Node_Stmt.Node_ID.ID := Dot.To_ID_Type ("node_1"); -- Optional - node shape defaults to none: -- Attr_Stmt.Kind := Dot.Attr_Stmt.Node; -- Attr_Stmt_Attr.A_List.Append ("shape", "none"); -- Attr_Stmt.Attr_List.Append (Attr_Stmt_Attr); -- Graph.Append_Stmt (new Dot.Attr_Stmt.Class'(Attr_Stmt)); HL_Label.Add_Eq_Row ("Element_Kind", "AN_EXPRESSION"); HL_Label.Add_Eq_Row ("Expression_Kind", "AN_IDENTIFIER"); HL_Label.Add_Eq_Row ("Name_Image", "Text_IO"); Node_Stmt.Add_Label (HL_Label); Graph.Append_Stmt (new Dot.Node_Stmt.Class'(Node_Stmt)); Print (Graph, "One node, with HTML-like label"); end; procedure Demo_File_Output is Graph : Dot.Graphs.Access_Class := Create_Graph; Name : constant String := "demo_dot"; begin Graph.Set_Is_Digraph (False); Graph.Set_Is_Strict (False); ATI.Put_Line ("// " & "Writing file to " & Name & ".dot"); ATI.Put_Line ("//"); Graph.Write_File (Name => Name, Overwrite => True); ATI.Put_Line ("// " & "Done."); ATI.New_Line; end; begin Demo_Default_Graph; Demo_Graph; Demo_Digraph; Demo_Strict_Graph; Demo_Strict_Digraph; Demo_ID; Demo_Reserved_ID; Demo_Minimal_Node; Demo_Two_Nodes; Demo_One_Attr_Two_Assigns; Demo_Two_Attrs_One_Assign_Each; Demo_Two_Attrs_No_Assigns; Demo_Two_Nodes_Two_Attrs_Two_Assigns; Demo_Add_Assign_To_First_Attr; Demo_Default_Edge; Demo_One_Edge; Demo_Two_Edges; Demo_HTML_Like_Label; Demo_File_Output; end Demo_Dot;
src/asf-components-html.ads
My-Colaborations/ada-asf
0
3493
<gh_stars>0 ----------------------------------------------------------------------- -- html -- ASF HTML Components -- Copyright (C) 2009, 2010, 2013 <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 ASF.Contexts.Writer; with ASF.Contexts.Faces; with ASF.Components.Core; with Util.Strings; package ASF.Components.Html is use ASF.Contexts.Writer; use ASF.Contexts.Faces; type UIHtmlComponent is new ASF.Components.Core.UIComponentBase with private; procedure Render_Attributes (UI : in UIHtmlComponent; Context : in out Faces_Context'Class; Writer : in Response_Writer_Access); -- Render the attributes which are defined on the component and which are -- in the list specified by <b>names</b>. procedure Render_Attributes (UI : in UIHtmlComponent; Context : in out Faces_Context'Class; Names : in Util.Strings.String_Set.Set; Writer : in Response_Writer_Access; Write_Id : in Boolean := True); private type UIHtmlComponent is new ASF.Components.Core.UIComponentBase with record Value1 : EL.Objects.Object; end record; end ASF.Components.Html;
Osmium/tools/.sources/bootmark.asm
M3TIOR/ideads
0
6730
<filename>Osmium/tools/.sources/bootmark.asm [BITS 16] ;To make sure we can boot from the disk we are compiling the project to. ;These two bytes are shoved in the last two bytes of the mbr. db 0x55 db 0xaa ;this means we are going to have 510 bytes of space for extra boot info. ;instead of 512... just as a reminder...
programs/oeis/059/A059929.asm
neoneye/loda
22
92845
<filename>programs/oeis/059/A059929.asm ; A059929: a(n) = Fibonacci(n)*Fibonacci(n+2). ; 0,2,3,10,24,65,168,442,1155,3026,7920,20737,54288,142130,372099,974170,2550408,6677057,17480760,45765226,119814915,313679522,821223648,2149991425,5628750624,14736260450,38580030723,101003831722,264431464440,692290561601,1812440220360,4745030099482,12422650078083,32522920134770,85146110326224,222915410843905,583600122205488,1527884955772562,4000054745112195,10472279279564026,27416783093579880,71778070001175617,187917426909946968,491974210728665290,1288005205276048899,3372041405099481410,8828119010022395328,23112315624967704577,60508827864880718400,158414167969674450626,414733676044142633475,1085786860162753449802,2842626904444117715928,7442093853169599697985,19483654655064681378024,51008870112024444436090,133542955681008651930243,349619996931001511354642,915317035111995882133680,2396331108404986135046401,6273676290102962523005520,16424697761903901433970162,43000416995608741778904963,112576553224922323902744730,294729242679158229929329224,771611174812552365885242945,2020104281758498867726399608,5288701670462944237293955882,13846000729630333844155468035,36249300518428057295172448226,94901900825653838041361876640,248456401958533456828913181697,650467305049946532445377668448,1702945513191306140507219823650,4458369234523971889076281802499,11672162190380609526721625583850,30558117336617856691088594949048,80002189819472960546544159263297,209448452121801024948543882840840,548343166545930114299087489259226,1435581047515989317948718584936835,3758399976002037839547068265551282,9839618880490124200692486211717008,25760456665468334762530390369599745,67441751115914880086898684897082224,176564796682276305498165664321646930,462252638930914036407598308067858563 seq $0,208176 ; a(n) = F(n+1)^2, if n>=0 is even (F=A000045) and a(n) = (L(2n+2)+8)/5, if n is odd (L=A000204). sub $0,1
sw/552tests/inst_tests/jal_26.asm
JPShen-UWM/ThreadKraken
1
2784
<reponame>JPShen-UWM/ThreadKraken // Original test: ./sadashiv/hw4/problem6/jal_1.asm // Author: sadashiv // Test source code follows // JAL displacement R7 <- PC + 2 // PC <- PC + 2 + D(sign ext.) .start: lbi r7,0xAA nop nop jal .jump1 //r7 = .jump1 .jump2: nop nop halt .jump1: nop addi r0, r7,0 //check if r0 = .jump1 addi r7,r7,0x01 // .jump1+1 jal .jump2 // Backward Jump, r7 = .jump2 addi r7,r7,5 //this should never execute
JBrex/resources/rules2text.asm
valeriocos/jbrex
6
27974
<?xml version = '1.0' encoding = 'ISO-8859-1' ?> <asm version="1.0" name="0"> <cp> <constant value="rules2text"/> <constant value="links"/> <constant value="NTransientLinkSet;"/> <constant value="col"/> <constant value="J"/> <constant value="enumLiteralType"/> <constant value="getRuleContents"/> <constant value="printRules"/> <constant value="main"/> <constant value="A"/> <constant value="OclParametrizedType"/> <constant value="#native"/> <constant value="Collection"/> <constant value="J.setName(S):V"/> <constant value="OclSimpleType"/> <constant value="OclAny"/> <constant value="J.setElementType(J):V"/> <constant value="EnumLiteral"/> <constant value="J.oclType():J"/> <constant value="Element"/> <constant value="RefiningTrace"/> <constant value="sourceElement"/> <constant value="persistedSourceElement"/> <constant value="J.registerWeavingHelper(SS):V"/> <constant value="RulePart"/> <constant value="BR"/> <constant value="getContent"/> <constant value="__initgetContent"/> <constant value="J.registerHelperAttribute(SS):V"/> <constant value="Rule"/> <constant value=""/> <constant value="1"/> <constant value="Sequence"/> <constant value="J.allInstances():J"/> <constant value="2"/> <constant value="CJ.isEmpty():B"/> <constant value="78"/> <constant value="slicedVariable"/> <constant value="name"/> <constant value="I.&gt;(I):B"/> <constant value="74"/> <constant value="I.+(I):I"/> <constant value="QJ.insertAt(IJ):QJ"/> <constant value="80"/> <constant value="QJ.append(J):QJ"/> <constant value="*********************************"/> <constant value="&#10;"/> <constant value="J.+(J):J"/> <constant value="J.concat(J):J"/> <constant value="Path"/> <constant value="PATH"/> <constant value="J.first():J"/> <constant value="value"/> <constant value="J.toString():J"/> <constant value="J.writeTo(J):J"/> <constant value="TransientLinkSet"/> <constant value="A.__matcher__():V"/> <constant value="A.__exec__():V"/> <constant value="A.__applyRefiningTrace__():V"/> <constant value="7:16-7:27"/> <constant value="14:16-14:23"/> <constant value="21:91-21:93"/> <constant value="21:2-21:9"/> <constant value="21:2-21:24"/> <constant value="21:39-21:40"/> <constant value="21:39-21:55"/> <constant value="21:39-21:60"/> <constant value="21:2-21:61"/> <constant value="22:2-22:8"/> <constant value="22:17-22:52"/> <constant value="22:55-22:59"/> <constant value="22:17-22:59"/> <constant value="23:2-23:3"/> <constant value="23:2-23:14"/> <constant value="22:17-23:14"/> <constant value="23:17-23:21"/> <constant value="22:17-23:21"/> <constant value="24:2-24:37"/> <constant value="22:17-24:37"/> <constant value="24:40-24:44"/> <constant value="22:17-24:44"/> <constant value="22:2-24:45"/> <constant value="21:2-25:2"/> <constant value="28:2-28:12"/> <constant value="28:2-28:28"/> <constant value="28:37-28:46"/> <constant value="28:37-28:61"/> <constant value="28:37-28:70"/> <constant value="28:37-28:76"/> <constant value="28:37-28:87"/> <constant value="28:2-28:88"/> <constant value="r"/> <constant value="output"/> <constant value="self"/> <constant value="__resolve__"/> <constant value="J.oclIsKindOf(J):B"/> <constant value="18"/> <constant value="NTransientLinkSet;.getLinkBySourceElement(S):QNTransientLink;"/> <constant value="J.oclIsUndefined():B"/> <constant value="15"/> <constant value="NTransientLink;.getTargetFromSource(J):J"/> <constant value="17"/> <constant value="30"/> <constant value="A.__resolve__(J):J"/> <constant value="QJ.including(J):QJ"/> <constant value="QJ.flatten():QJ"/> <constant value="e"/> <constant value="resolveTemp"/> <constant value="S"/> <constant value="NTransientLink;.getNamedTargetFromSource(JS):J"/> <constant value="__matcher__"/> <constant value="__exec__"/> <constant value="setProperty"/> <constant value="MRefiningTrace!Element;"/> <constant value="3"/> <constant value="B"/> <constant value="0"/> <constant value="Slot"/> <constant value="isAssignment"/> <constant value="19"/> <constant value="J.__toValue():J"/> <constant value="22"/> <constant value="A.__collectionToValue(QJ):J"/> <constant value="slots"/> <constant value="propertyName"/> <constant value="__applyRefiningTrace__"/> <constant value="refiningTrace"/> <constant value="MMOF!Classifier;.allInstancesFrom(S):QJ"/> <constant value="B.not():B"/> <constant value="20"/> <constant value="type"/> <constant value="metamodel"/> <constant value="21"/> <constant value="36"/> <constant value="J.refUnsetValue(S):J"/> <constant value="J.__fromValue():J"/> <constant value="J.refSetValue(SJ):J"/> <constant value="__collectionToValue"/> <constant value="CJ"/> <constant value="CollectionVal"/> <constant value="elements"/> <constant value="c"/> <constant value="__toValue"/> <constant value="BooleanVal"/> <constant value="I"/> <constant value="IntegerVal"/> <constant value="D"/> <constant value="RealVal"/> <constant value="StringVal"/> <constant value="ElementVal"/> <constant value="J.=(J):B"/> <constant value="J.__asElement():J"/> <constant value="28"/> <constant value="NullVal"/> <constant value="EnumLiteralVal"/> <constant value="J.toString():S"/> <constant value="__asElement"/> <constant value="__fromValue"/> <constant value="MRefiningTrace!CollectionVal;"/> <constant value="MRefiningTrace!BooleanVal;"/> <constant value="MRefiningTrace!IntegerVal;"/> <constant value="MRefiningTrace!RealVal;"/> <constant value="MRefiningTrace!StringVal;"/> <constant value="MRefiningTrace!NullVal;"/> <constant value="QJ.first():J"/> <constant value="MRefiningTrace!ElementVal;"/> <constant value="MRefiningTrace!EnumLiteralVal;"/> <constant value="MBR!RulePart;"/> <constant value="rule part - granularity:"/> <constant value="granularity"/> <constant value="class:"/> <constant value="relatedMethod"/> <constant value="class"/> <constant value=" method:"/> <constant value="relatedStatements"/> <constant value="textContent"/> <constant value="action"/> <constant value="8:2-8:28"/> <constant value="8:31-8:35"/> <constant value="8:31-8:47"/> <constant value="8:2-8:47"/> <constant value="8:50-8:54"/> <constant value="8:2-8:54"/> <constant value="9:2-9:10"/> <constant value="8:2-9:10"/> <constant value="9:13-9:17"/> <constant value="9:13-9:31"/> <constant value="9:13-9:37"/> <constant value="8:2-9:37"/> <constant value="9:40-9:50"/> <constant value="8:2-9:50"/> <constant value="9:53-9:57"/> <constant value="9:53-9:71"/> <constant value="9:53-9:76"/> <constant value="8:2-9:76"/> <constant value="9:79-9:83"/> <constant value="8:2-9:83"/> <constant value="10:61-10:63"/> <constant value="10:2-10:6"/> <constant value="10:2-10:24"/> <constant value="11:3-11:9"/> <constant value="11:18-11:25"/> <constant value="11:18-11:37"/> <constant value="11:40-11:44"/> <constant value="11:18-11:44"/> <constant value="11:3-11:45"/> <constant value="10:2-12:3"/> <constant value="12:12-12:16"/> <constant value="12:12-12:23"/> <constant value="12:12-12:35"/> <constant value="10:2-12:36"/> <constant value="8:2-12:36"/> <constant value="relStat"/> <constant value="MBR!Rule;"/> <constant value="ruleId:"/> <constant value="id"/> <constant value=" - variable:"/> <constant value="-------------------------&#10;"/> <constant value="ruleParts"/> <constant value="15:2-15:11"/> <constant value="15:14-15:18"/> <constant value="15:14-15:21"/> <constant value="15:2-15:21"/> <constant value="15:24-15:38"/> <constant value="15:2-15:38"/> <constant value="15:41-15:45"/> <constant value="15:41-15:60"/> <constant value="15:41-15:65"/> <constant value="15:2-15:65"/> <constant value="15:68-15:72"/> <constant value="15:2-15:72"/> <constant value="16:49-16:78"/> <constant value="16:2-16:6"/> <constant value="16:2-16:16"/> <constant value="17:3-17:9"/> <constant value="17:18-17:22"/> <constant value="17:18-17:33"/> <constant value="17:3-17:34"/> <constant value="17:37-17:41"/> <constant value="17:3-17:41"/> <constant value="17:44-17:73"/> <constant value="17:3-17:73"/> <constant value="16:2-18:2"/> <constant value="15:2-18:2"/> <constant value="part"/> </cp> <field name="1" type="2"/> <field name="3" type="4"/> <field name="5" type="4"/> <field name="6" type="4"/> <field name="7" type="4"/> <operation name="8"> <context type="9"/> <parameters> </parameters> <code> <getasm/> <push arg="10"/> <push arg="11"/> <new/> <dup/> <push arg="12"/> <pcall arg="13"/> <dup/> <push arg="14"/> <push arg="11"/> <new/> <dup/> <push arg="15"/> <pcall arg="13"/> <pcall arg="16"/> <set arg="3"/> <getasm/> <push arg="17"/> <push arg="11"/> <new/> <call arg="18"/> <set arg="5"/> <push arg="19"/> <push arg="20"/> <findme/> <push arg="21"/> <push arg="22"/> <pcall arg="23"/> <push arg="24"/> <push arg="25"/> <findme/> <push arg="26"/> <push arg="27"/> <pcall arg="28"/> <push arg="29"/> <push arg="25"/> <findme/> <push arg="26"/> <push arg="27"/> <pcall arg="28"/> <getasm/> <push arg="30"/> <store arg="31"/> <push arg="32"/> <push arg="11"/> <new/> <push arg="29"/> <push arg="25"/> <findme/> <call arg="33"/> <iterate/> <store arg="34"/> <dup/> <call arg="35"/> <if arg="36"/> <dup/> <pushi arg="31"/> <swap/> <iterate/> <load arg="34"/> <swap/> <store arg="34"/> <load arg="34"/> <get arg="37"/> <get arg="38"/> <swap/> <store arg="34"/> <load arg="34"/> <get arg="37"/> <get arg="38"/> <call arg="39"/> <if arg="40"/> <pushi arg="31"/> <call arg="41"/> <enditerate/> <load arg="34"/> <call arg="42"/> <goto arg="43"/> <load arg="34"/> <call arg="44"/> <enditerate/> <iterate/> <store arg="34"/> <load arg="31"/> <push arg="45"/> <push arg="46"/> <call arg="47"/> <load arg="34"/> <get arg="26"/> <call arg="47"/> <push arg="46"/> <call arg="47"/> <push arg="45"/> <call arg="47"/> <push arg="46"/> <call arg="47"/> <call arg="48"/> <store arg="31"/> <enditerate/> <load arg="31"/> <set arg="6"/> <getasm/> <getasm/> <get arg="6"/> <push arg="49"/> <push arg="50"/> <findme/> <call arg="33"/> <call arg="51"/> <get arg="52"/> <call arg="53"/> <call arg="54"/> <set arg="7"/> <getasm/> <push arg="55"/> <push arg="11"/> <new/> <set arg="1"/> <getasm/> <pcall arg="56"/> <getasm/> <pcall arg="57"/> <getasm/> <pcall arg="58"/> </code> <linenumbertable> <lne id="59" begin="28" end="30"/> <lne id="60" begin="34" end="36"/> <lne id="61" begin="41" end="41"/> <lne id="62" begin="46" end="48"/> <lne id="63" begin="46" end="49"/> <lne id="64" begin="62" end="62"/> <lne id="65" begin="62" end="63"/> <lne id="66" begin="62" end="64"/> <lne id="64" begin="67" end="67"/> <lne id="65" begin="67" end="68"/> <lne id="66" begin="67" end="69"/> <lne id="67" begin="43" end="80"/> <lne id="68" begin="83" end="83"/> <lne id="69" begin="84" end="84"/> <lne id="70" begin="85" end="85"/> <lne id="71" begin="84" end="86"/> <lne id="72" begin="87" end="87"/> <lne id="73" begin="87" end="88"/> <lne id="74" begin="84" end="89"/> <lne id="75" begin="90" end="90"/> <lne id="76" begin="84" end="91"/> <lne id="77" begin="92" end="92"/> <lne id="78" begin="84" end="93"/> <lne id="79" begin="94" end="94"/> <lne id="80" begin="84" end="95"/> <lne id="81" begin="83" end="96"/> <lne id="82" begin="41" end="99"/> <lne id="83" begin="102" end="102"/> <lne id="84" begin="102" end="103"/> <lne id="85" begin="104" end="106"/> <lne id="86" begin="104" end="107"/> <lne id="87" begin="104" end="108"/> <lne id="88" begin="104" end="109"/> <lne id="89" begin="104" end="110"/> <lne id="90" begin="102" end="111"/> </linenumbertable> <localvariabletable> <lve slot="2" name="91" begin="51" end="79"/> <lve slot="2" name="91" begin="82" end="97"/> <lve slot="1" name="92" begin="42" end="99"/> <lve slot="0" name="93" begin="0" end="123"/> </localvariabletable> </operation> <operation name="94"> <context type="9"/> <parameters> <parameter name="31" type="4"/> </parameters> <code> <load arg="31"/> <getasm/> <get arg="3"/> <call arg="95"/> <if arg="96"/> <getasm/> <get arg="1"/> <load arg="31"/> <call arg="97"/> <dup/> <call arg="98"/> <if arg="99"/> <load arg="31"/> <call arg="100"/> <goto arg="101"/> <pop/> <load arg="31"/> <goto arg="102"/> <push arg="32"/> <push arg="11"/> <new/> <load arg="31"/> <iterate/> <store arg="34"/> <getasm/> <load arg="34"/> <call arg="103"/> <call arg="104"/> <enditerate/> <call arg="105"/> </code> <linenumbertable> </linenumbertable> <localvariabletable> <lve slot="2" name="106" begin="23" end="27"/> <lve slot="0" name="93" begin="0" end="29"/> <lve slot="1" name="52" begin="0" end="29"/> </localvariabletable> </operation> <operation name="107"> <context type="9"/> <parameters> <parameter name="31" type="4"/> <parameter name="34" type="108"/> </parameters> <code> <getasm/> <get arg="1"/> <load arg="31"/> <call arg="97"/> <load arg="31"/> <load arg="34"/> <call arg="109"/> </code> <linenumbertable> </linenumbertable> <localvariabletable> <lve slot="0" name="93" begin="0" end="6"/> <lve slot="1" name="52" begin="0" end="6"/> <lve slot="2" name="38" begin="0" end="6"/> </localvariabletable> </operation> <operation name="110"> <context type="9"/> <parameters> </parameters> <code> </code> <linenumbertable> </linenumbertable> <localvariabletable> <lve slot="0" name="93" begin="0" end="-1"/> </localvariabletable> </operation> <operation name="111"> <context type="9"/> <parameters> </parameters> <code> </code> <linenumbertable> </linenumbertable> <localvariabletable> <lve slot="0" name="93" begin="0" end="-1"/> </localvariabletable> </operation> <operation name="112"> <context type="113"/> <parameters> <parameter name="31" type="108"/> <parameter name="34" type="4"/> <parameter name="114" type="115"/> </parameters> <code> <load arg="116"/> <push arg="117"/> <push arg="20"/> <new/> <dup/> <load arg="114"/> <set arg="118"/> <dup/> <load arg="31"/> <set arg="38"/> <dup/> <load arg="34"/> <dup/> <getasm/> <get arg="3"/> <call arg="95"/> <if arg="119"/> <call arg="120"/> <goto arg="121"/> <getasm/> <swap/> <call arg="122"/> <set arg="52"/> <set arg="123"/> </code> <linenumbertable> </linenumbertable> <localvariabletable> <lve slot="0" name="93" begin="0" end="23"/> <lve slot="1" name="124" begin="0" end="23"/> <lve slot="2" name="52" begin="0" end="23"/> <lve slot="3" name="118" begin="0" end="23"/> </localvariabletable> </operation> <operation name="125"> <context type="9"/> <parameters> </parameters> <code> <push arg="19"/> <push arg="20"/> <findme/> <push arg="126"/> <call arg="127"/> <dup/> <iterate/> <dup/> <get arg="21"/> <call arg="98"/> <call arg="128"/> <if arg="129"/> <dup/> <get arg="130"/> <swap/> <dup_x1/> <get arg="131"/> <new/> <set arg="21"/> <goto arg="132"/> <pop/> <enditerate/> <iterate/> <dup/> <get arg="21"/> <swap/> <get arg="123"/> <iterate/> <dup/> <get arg="118"/> <call arg="128"/> <if arg="133"/> <dup_x1/> <get arg="38"/> <call arg="134"/> <swap/> <dup/> <get arg="38"/> <swap/> <get arg="52"/> <call arg="135"/> <call arg="136"/> <enditerate/> <pop/> <enditerate/> </code> <linenumbertable> </linenumbertable> <localvariabletable> <lve slot="0" name="93" begin="0" end="44"/> </localvariabletable> </operation> <operation name="137"> <context type="9"/> <parameters> <parameter name="31" type="138"/> </parameters> <code> <push arg="139"/> <push arg="20"/> <new/> <load arg="31"/> <iterate/> <call arg="120"/> <swap/> <dup_x1/> <swap/> <set arg="140"/> <enditerate/> </code> <linenumbertable> </linenumbertable> <localvariabletable> <lve slot="0" name="93" begin="0" end="10"/> <lve slot="1" name="141" begin="0" end="10"/> </localvariabletable> </operation> <operation name="142"> <context type="115"/> <parameters> </parameters> <code> <push arg="143"/> <push arg="20"/> <new/> <dup/> <load arg="116"/> <set arg="52"/> </code> <linenumbertable> </linenumbertable> <localvariabletable> <lve slot="0" name="93" begin="0" end="5"/> </localvariabletable> </operation> <operation name="142"> <context type="144"/> <parameters> </parameters> <code> <push arg="145"/> <push arg="20"/> <new/> <dup/> <load arg="116"/> <set arg="52"/> </code> <linenumbertable> </linenumbertable> <localvariabletable> <lve slot="0" name="93" begin="0" end="5"/> </localvariabletable> </operation> <operation name="142"> <context type="146"/> <parameters> </parameters> <code> <push arg="147"/> <push arg="20"/> <new/> <dup/> <load arg="116"/> <set arg="52"/> </code> <linenumbertable> </linenumbertable> <localvariabletable> <lve slot="0" name="93" begin="0" end="5"/> </localvariabletable> </operation> <operation name="142"> <context type="108"/> <parameters> </parameters> <code> <push arg="148"/> <push arg="20"/> <new/> <dup/> <load arg="116"/> <set arg="52"/> </code> <linenumbertable> </linenumbertable> <localvariabletable> <lve slot="0" name="93" begin="0" end="5"/> </localvariabletable> </operation> <operation name="142"> <context type="113"/> <parameters> </parameters> <code> <push arg="149"/> <push arg="20"/> <new/> <dup/> <load arg="116"/> <set arg="52"/> </code> <linenumbertable> </linenumbertable> <localvariabletable> <lve slot="0" name="93" begin="0" end="5"/> </localvariabletable> </operation> <operation name="142"> <context type="4"/> <parameters> </parameters> <code> <load arg="116"/> <call arg="18"/> <getasm/> <get arg="5"/> <call arg="150"/> <if arg="132"/> <load arg="116"/> <call arg="98"/> <if arg="101"/> <push arg="149"/> <push arg="20"/> <new/> <dup/> <load arg="116"/> <call arg="151"/> <set arg="52"/> <goto arg="152"/> <push arg="153"/> <push arg="20"/> <new/> <goto arg="152"/> <push arg="154"/> <push arg="20"/> <new/> <dup/> <load arg="116"/> <call arg="155"/> <set arg="52"/> </code> <linenumbertable> </linenumbertable> <localvariabletable> <lve slot="0" name="93" begin="0" end="27"/> </localvariabletable> </operation> <operation name="156"> <context type="4"/> <parameters> </parameters> <code> <push arg="19"/> <push arg="20"/> <new/> <dup/> <load arg="116"/> <set arg="21"/> </code> <linenumbertable> </linenumbertable> <localvariabletable> <lve slot="0" name="93" begin="0" end="5"/> </localvariabletable> </operation> <operation name="157"> <context type="158"/> <parameters> </parameters> <code> <push arg="32"/> <push arg="11"/> <new/> <load arg="116"/> <get arg="140"/> <iterate/> <call arg="135"/> <call arg="44"/> <enditerate/> </code> <linenumbertable> </linenumbertable> <localvariabletable> <lve slot="0" name="93" begin="0" end="8"/> </localvariabletable> </operation> <operation name="157"> <context type="159"/> <parameters> </parameters> <code> <load arg="116"/> <get arg="52"/> </code> <linenumbertable> </linenumbertable> <localvariabletable> <lve slot="0" name="93" begin="0" end="1"/> </localvariabletable> </operation> <operation name="157"> <context type="160"/> <parameters> </parameters> <code> <load arg="116"/> <get arg="52"/> </code> <linenumbertable> </linenumbertable> <localvariabletable> <lve slot="0" name="93" begin="0" end="1"/> </localvariabletable> </operation> <operation name="157"> <context type="161"/> <parameters> </parameters> <code> <load arg="116"/> <get arg="52"/> </code> <linenumbertable> </linenumbertable> <localvariabletable> <lve slot="0" name="93" begin="0" end="1"/> </localvariabletable> </operation> <operation name="157"> <context type="162"/> <parameters> </parameters> <code> <load arg="116"/> <get arg="52"/> </code> <linenumbertable> </linenumbertable> <localvariabletable> <lve slot="0" name="93" begin="0" end="1"/> </localvariabletable> </operation> <operation name="157"> <context type="163"/> <parameters> </parameters> <code> <push arg="32"/> <push arg="11"/> <new/> <call arg="164"/> </code> <linenumbertable> </linenumbertable> <localvariabletable> <lve slot="0" name="93" begin="0" end="3"/> </localvariabletable> </operation> <operation name="157"> <context type="165"/> <parameters> </parameters> <code> <load arg="116"/> <get arg="52"/> <get arg="21"/> </code> <linenumbertable> </linenumbertable> <localvariabletable> <lve slot="0" name="93" begin="0" end="2"/> </localvariabletable> </operation> <operation name="157"> <context type="166"/> <parameters> </parameters> <code> <push arg="17"/> <push arg="11"/> <new/> <dup/> <load arg="116"/> <get arg="52"/> <set arg="38"/> </code> <linenumbertable> </linenumbertable> <localvariabletable> <lve slot="0" name="93" begin="0" end="6"/> </localvariabletable> </operation> <operation name="27"> <context type="167"/> <parameters> </parameters> <code> <push arg="168"/> <load arg="116"/> <get arg="169"/> <call arg="47"/> <push arg="46"/> <call arg="47"/> <push arg="170"/> <call arg="47"/> <load arg="116"/> <get arg="171"/> <get arg="172"/> <call arg="47"/> <push arg="173"/> <call arg="47"/> <load arg="116"/> <get arg="171"/> <get arg="38"/> <call arg="47"/> <push arg="46"/> <call arg="47"/> <push arg="30"/> <store arg="31"/> <load arg="116"/> <get arg="174"/> <iterate/> <store arg="34"/> <load arg="31"/> <load arg="34"/> <get arg="175"/> <push arg="46"/> <call arg="47"/> <call arg="48"/> <store arg="31"/> <enditerate/> <load arg="31"/> <load arg="116"/> <get arg="176"/> <get arg="175"/> <call arg="48"/> <call arg="47"/> </code> <linenumbertable> <lne id="177" begin="0" end="0"/> <lne id="178" begin="1" end="1"/> <lne id="179" begin="1" end="2"/> <lne id="180" begin="0" end="3"/> <lne id="181" begin="4" end="4"/> <lne id="182" begin="0" end="5"/> <lne id="183" begin="6" end="6"/> <lne id="184" begin="0" end="7"/> <lne id="185" begin="8" end="8"/> <lne id="186" begin="8" end="9"/> <lne id="187" begin="8" end="10"/> <lne id="188" begin="0" end="11"/> <lne id="189" begin="12" end="12"/> <lne id="190" begin="0" end="13"/> <lne id="191" begin="14" end="14"/> <lne id="192" begin="14" end="15"/> <lne id="193" begin="14" end="16"/> <lne id="194" begin="0" end="17"/> <lne id="195" begin="18" end="18"/> <lne id="196" begin="0" end="19"/> <lne id="197" begin="20" end="20"/> <lne id="198" begin="22" end="22"/> <lne id="199" begin="22" end="23"/> <lne id="200" begin="26" end="26"/> <lne id="201" begin="27" end="27"/> <lne id="202" begin="27" end="28"/> <lne id="203" begin="29" end="29"/> <lne id="204" begin="27" end="30"/> <lne id="205" begin="26" end="31"/> <lne id="206" begin="20" end="34"/> <lne id="207" begin="35" end="35"/> <lne id="208" begin="35" end="36"/> <lne id="209" begin="35" end="37"/> <lne id="210" begin="20" end="38"/> <lne id="211" begin="0" end="39"/> </linenumbertable> <localvariabletable> <lve slot="2" name="212" begin="25" end="32"/> <lve slot="1" name="92" begin="21" end="34"/> <lve slot="0" name="93" begin="0" end="39"/> </localvariabletable> </operation> <operation name="27"> <context type="213"/> <parameters> </parameters> <code> <push arg="214"/> <load arg="116"/> <get arg="215"/> <call arg="47"/> <push arg="216"/> <call arg="47"/> <load arg="116"/> <get arg="37"/> <get arg="38"/> <call arg="47"/> <push arg="46"/> <call arg="47"/> <push arg="217"/> <store arg="31"/> <load arg="116"/> <get arg="218"/> <iterate/> <store arg="34"/> <load arg="31"/> <load arg="34"/> <get arg="26"/> <call arg="48"/> <push arg="46"/> <call arg="47"/> <push arg="217"/> <call arg="47"/> <store arg="31"/> <enditerate/> <load arg="31"/> <call arg="47"/> </code> <linenumbertable> <lne id="219" begin="0" end="0"/> <lne id="220" begin="1" end="1"/> <lne id="221" begin="1" end="2"/> <lne id="222" begin="0" end="3"/> <lne id="223" begin="4" end="4"/> <lne id="224" begin="0" end="5"/> <lne id="225" begin="6" end="6"/> <lne id="226" begin="6" end="7"/> <lne id="227" begin="6" end="8"/> <lne id="228" begin="0" end="9"/> <lne id="229" begin="10" end="10"/> <lne id="230" begin="0" end="11"/> <lne id="231" begin="12" end="12"/> <lne id="232" begin="14" end="14"/> <lne id="233" begin="14" end="15"/> <lne id="234" begin="18" end="18"/> <lne id="235" begin="19" end="19"/> <lne id="236" begin="19" end="20"/> <lne id="237" begin="18" end="21"/> <lne id="238" begin="22" end="22"/> <lne id="239" begin="18" end="23"/> <lne id="240" begin="24" end="24"/> <lne id="241" begin="18" end="25"/> <lne id="242" begin="12" end="28"/> <lne id="243" begin="0" end="29"/> </linenumbertable> <localvariabletable> <lve slot="2" name="244" begin="17" end="26"/> <lve slot="1" name="92" begin="13" end="28"/> <lve slot="0" name="93" begin="0" end="29"/> </localvariabletable> </operation> </asm>
libsrc/ctype/asm_toupper.asm
grancier/z180
8
24014
<reponame>grancier/z180 ; asm_toupper SECTION code_clib PUBLIC asm_toupper ; if the char is in [a-z], make it upper case ; enter : a = char ; exit : a = upper case char ; uses : af .asm_toupper cp 'a' ret c cp 'z'+1 ret nc and $df ret
test/Succeed/BuiltinEqualityInProp.agda
shlevy/agda
1,989
4792
<filename>test/Succeed/BuiltinEqualityInProp.agda -- Jesper, 2018-10-29 (comment on #3332): Besides for rewrite, builtin -- equality is also used for primErase and primForceLemma. But I don't -- see how it would hurt to have these use a Prop instead of a Set for -- equality. {-# OPTIONS --prop #-} data _≡_ {A : Set} (a : A) : A → Prop where refl : a ≡ a {-# BUILTIN EQUALITY _≡_ #-}
src/Examples/TreeSum.agda
jonsterling/agda-calf
29
4187
{-# OPTIONS --prop --rewriting #-} module Examples.TreeSum where open import Calf.CostMonoid open import Calf.CostMonoids using (ℕ²-ParCostMonoid) parCostMonoid = ℕ²-ParCostMonoid open ParCostMonoid parCostMonoid open import Calf costMonoid open import Calf.ParMetalanguage parCostMonoid open import Calf.Types.Nat open import Calf.Types.Bounded costMonoid open import Relation.Binary.PropositionalEquality as Eq using (_≡_; refl; _≢_; module ≡-Reasoning) open import Data.Nat as Nat using (_+_; _⊔_) open import Data.Nat.Properties as N using () open import Data.Product add : cmp (Π nat λ _ → Π nat λ _ → F nat) add m n = step (F nat) (1 , 1) (ret (m + n)) add/cost : cmp (Π nat λ _ → Π nat λ _ → cost) add/cost m n = (1 , 1) ⊕ 𝟘 add/cost/closed : cmp (Π nat λ _ → Π nat λ _ → cost) add/cost/closed m n = (1 , 1) add/cost≤add/cost/closed : ∀ m n → ◯ (add/cost m n ≤ add/cost/closed m n) add/cost≤add/cost/closed m n u = ≤-reflexive (⊕-identityʳ (1 , 1)) add≤add/cost : ∀ m n → IsBounded nat (add m n) (add/cost m n) add≤add/cost m n = bound/step (1 , 1) _ bound/ret add≤add/cost/closed : ∀ m n → IsBounded nat (add m n) (add/cost/closed m n) add≤add/cost/closed m n = bound/relax (add/cost≤add/cost/closed m n) (add≤add/cost m n) data Tree : Set where leaf : val nat → Tree node : Tree → Tree → Tree tree : tp pos tree = U (meta Tree) sum : cmp (Π tree λ _ → F nat) sum (leaf x) = ret x sum (node t₁ t₂) = bind (F nat) (sum t₁ & sum t₂) λ (n₁ , n₂) → add n₁ n₂ sum/total : ∀ t → ◯ (∃ λ n → sum t ≡ ret n) sum/total (leaf x) u = x , refl sum/total (node t₁ t₂) u = let (n₁ , ≡₁) = sum/total t₁ u (n₂ , ≡₂) = sum/total t₂ u in n₁ + n₂ , ( let open ≡-Reasoning in begin (bind (F nat) (sum t₁ & sum t₂) λ (n₁ , n₂) → add n₁ n₂) ≡⟨ Eq.cong₂ (λ e₁ e₂ → bind (F nat) (e₁ & e₂) _) ≡₁ ≡₂ ⟩ add n₁ n₂ ≡⟨⟩ step (F nat) (1 , 1) (ret (n₁ + n₂)) ≡⟨ step/ext (F nat) _ (1 , 1) u ⟩ ret (n₁ + n₂) ∎ ) sum/cost : cmp (Π tree λ _ → cost) sum/cost (leaf x) = 𝟘 sum/cost (node t₁ t₂) = bind cost (sum t₁ & sum t₂) λ (n₁ , n₂) → (sum/cost t₁ ⊗ sum/cost t₂) ⊕ add/cost/closed n₁ n₂ size : val tree → val nat size (leaf x) = 0 size (node t₁ t₂) = suc (size t₁ + size t₂) depth : val tree → val nat depth (leaf x) = 0 depth (node t₁ t₂) = suc (depth t₁ ⊔ depth t₂) sum/cost/closed : cmp (Π tree λ _ → cost) sum/cost/closed t = size t , depth t sum/cost≤sum/cost/closed : ∀ t → ◯ (sum/cost t ≤ sum/cost/closed t) sum/cost≤sum/cost/closed (leaf x) u = ≤-refl sum/cost≤sum/cost/closed (node t₁ t₂) u = let (_ , ≡₁) = sum/total t₁ u (_ , ≡₂) = sum/total t₂ u in begin sum/cost (node t₁ t₂) ≡⟨⟩ (bind cost (sum t₁ & sum t₂) λ (n₁ , n₂) → (sum/cost t₁ ⊗ sum/cost t₂) ⊕ add/cost/closed n₁ n₂) ≡⟨ Eq.cong₂ (λ e₁ e₂ → bind cost (e₁ & e₂) λ (n₁ , n₂) → (sum/cost t₁ ⊗ sum/cost t₂) ⊕ _) ≡₁ ≡₂ ⟩ sum/cost t₁ ⊗ sum/cost t₂ ⊕ (1 , 1) ≤⟨ ⊕-monoˡ-≤ (1 , 1) (⊗-mono-≤ (sum/cost≤sum/cost/closed t₁ u) (sum/cost≤sum/cost/closed t₂ u)) ⟩ sum/cost/closed t₁ ⊗ sum/cost/closed t₂ ⊕ (1 , 1) ≡⟨⟩ (size t₁ , depth t₁) ⊗ (size t₂ , depth t₂) ⊕ (1 , 1) ≡⟨⟩ size t₁ + size t₂ + 1 , depth t₁ ⊔ depth t₂ + 1 ≡⟨ Eq.cong₂ _,_ (N.+-comm _ 1) (N.+-comm _ 1) ⟩ suc (size t₁ + size t₂) , suc (depth t₁ ⊔ depth t₂) ≡⟨⟩ sum/cost/closed (node t₁ t₂) ∎ where open ≤-Reasoning sum≤sum/cost : ∀ t → IsBounded nat (sum t) (sum/cost t) sum≤sum/cost (leaf x) = bound/ret sum≤sum/cost (node t₁ t₂) = bound/bind (sum/cost t₁ ⊗ sum/cost t₂) _ (bound/par (sum≤sum/cost t₁) (sum≤sum/cost t₂)) λ (n₁ , n₂) → add≤add/cost/closed n₁ n₂ sum≤sum/cost/closed : ∀ t → IsBounded nat (sum t) (sum/cost/closed t) sum≤sum/cost/closed t = bound/relax (sum/cost≤sum/cost/closed t) (sum≤sum/cost t)
bb-runtimes/examples/stm32f4-discovery/leds-po/main.adb
JCGobbi/Nucleo-STM32G474RE
0
3821
<reponame>JCGobbi/Nucleo-STM32G474RE ------------------------------------------------------------------------------ -- -- -- GNAT EXAMPLE -- -- -- -- Copyright (C) 2013, 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. -- -- -- ------------------------------------------------------------------------------ pragma Warnings (Off); with System.STM32F4; use System.STM32F4; pragma Warnings (On); with Leds; use Leds; with Ada.Real_Time; use Ada.Real_Time; procedure Main is Period : constant Time_Span := Milliseconds (200); Next_Start : Time := Clock; type Idx_Type is mod 4; Idx : Idx_Type := 0; Masks : constant array (Idx_Type) of Word := (16#1_000#, 16#2_000#, 16#4_000#, 16#8_000#); begin loop -- Off GPIOD.BSRR := Masks (Idx) * 2**16; if Get_Direction then Idx := Idx + 1; else Idx := Idx - 1; end if; -- On GPIOD.BSRR := Masks (Idx); Next_Start := Next_Start + Period; delay until Next_Start; end loop; end Main;
libsrc/_DEVELOPMENT/stdio/c/sdcc_ix/puts_unlocked_fastcall.asm
jpoikela/z88dk
640
19997
; int puts_unlocked_fastcall(const char *s) SECTION code_clib SECTION code_stdio PUBLIC _puts_unlocked_fastcall EXTERN asm_puts_unlocked _puts_unlocked_fastcall: push ix call asm_puts_unlocked pop ix ret
ejercicios4/prueba_escribir_sospechosos.adb
iyan22/AprendeAda
0
7825
<filename>ejercicios4/prueba_escribir_sospechosos.adb with Ada.Text_Io, copia_examenes; with escribir_sospechosos,rellenar_aula_1,escribir_aula_act; use copia_examenes; use Ada.Text_Io; procedure prueba_escribir_sospechosos is aula1: T_aula; procedure Pedir_Return is begin Put_Line("pulsa return para continuar "); Skip_Line; New_Line(4); end Pedir_Return; begin -- programa principal -- Casos de prueba: Put_Line("Programa de prueba: "); Put_Line("*********"); Put_Line("Caso de prueba 1: "); rellenar_aula_1(aula1); escribir_aula_act(aula1); new_line; Put("Presiona cualquier tecla para saber la respuesta de tu programa"); Skip_line; new_line(4); Put_Line(" Tu programa deberia decir que: "); new_line; put_line(" (1,3) y (2,3) se han copiado"); put_line(" (2,1) y (2,2) se han copiado"); put_line(" (2,9) y (2,10) se han copiado"); put_line(" (3,1) y (4,1) se han copiado"); put_line(" (4,1) y (5,1) se han copiado"); put_line(" (9,1) y (9,2) se han copiado"); put_line(" (9,9) y (9,10) se han copiado"); put_line(" (9,10) y (10,10) se han copiado"); put_line(" (10,1) y (10,2) se han copiado"); new_line(2); Pedir_Return; Put_Line(" Y tu programa dice: "); new_line; escribir_sospechosos(aula1); New_Line; Put("Presiona cualquier tecla"); Skip_line; end prueba_escribir_sospechosos;
VirtualBox-5.0.0/src/VBox/Runtime/common/math/bignum-amd64-x86.asm
egraba/vbox_openbsd
1
88092
; $Id: bignum-amd64-x86.asm $ ;; @file ; IPRT - Big Integer Numbers, AMD64 and X86 Assembly Workers ; ; ; Copyright (C) 2006-2015 Oracle Corporation ; ; This file is part of VirtualBox Open Source Edition (OSE), as ; available from http://www.virtualbox.org. This file is free software; ; you can redistribute it and/or modify it under the terms of the GNU ; General Public License (GPL) as published by the Free Software ; Foundation, in version 2 as it comes in the "COPYING" file of the ; VirtualBox OSE distribution. VirtualBox OSE is distributed in the ; hope that it will be useful, but WITHOUT ANY WARRANTY of any kind. ; ; The contents of this file may alternatively be used under the terms ; of the Common Development and Distribution License Version 1.0 ; (CDDL) only, as it comes in the "COPYING.CDDL" file of the ; VirtualBox OSE distribution, in which case the provisions of the ; CDDL are applicable instead of those of the GPL. ; ; You may elect to license modified versions of this file under the ; terms and conditions of either the GPL or the CDDL or both. ; %define RT_ASM_WITH_SEH64 %include "iprt/asmdefs.mac" %include "internal/bignum.mac" BEGINCODE ;; ; Subtracts a number (pauSubtrahend) from a larger number (pauMinuend) and ; stores the result in pauResult. ; ; All three numbers are zero padded such that a borrow can be carried one (or ; two for 64-bit) elements beyond the end of the largest number. ; ; @returns nothing. ; @param pauResult x86:[ebp + 8] gcc:rdi msc:rcx ; @param pauMinuend x86:[ebp + 12] gcc:rsi msc:rdx ; @param pauSubtrahend x86:[ebp + 16] gcc:rdx msc:r8 ; @param cUsed x86:[ebp + 20] gcc:rcx msc:r9 ; BEGINPROC rtBigNumMagnitudeSubAssemblyWorker push xBP SEH64_PUSH_xBP mov xBP, xSP SEH64_SET_FRAME_xBP 0 SEH64_END_PROLOGUE %ifdef RT_ARCH_AMD64 %ifdef ASM_CALL64_GCC %define pauResult rdi %define pauMinuend rsi %define pauSubtrahend rdx %define cUsed ecx %else %define pauResult rcx %define pauMinuend rdx %define pauSubtrahend r8 %define cUsed r9d %endif xor r11d, r11d ; index register. %if RTBIGNUM_ELEMENT_SIZE == 4 add cUsed, 1 ; cUsed = RT_ALIGN(cUsed, 2) / 2 shr cUsed, 1 %endif cmp cUsed, 8 ; Skip the big loop if small number. jb .small_job mov r10d, cUsed shr r10d, 3 clc .big_loop: mov rax, [pauMinuend + r11] sbb rax, [pauSubtrahend + r11] mov [pauResult + r11], rax mov rax, [pauMinuend + r11 + 8] sbb rax, [pauSubtrahend + r11 + 8] mov [pauResult + r11 + 8], rax mov rax, [pauMinuend + r11 + 16] sbb rax, [pauSubtrahend + r11 + 16] mov [pauResult + r11 + 16], rax mov rax, [pauMinuend + r11 + 24] sbb rax, [pauSubtrahend + r11 + 24] mov [pauResult + r11 + 24], rax mov rax, [pauMinuend + r11 + 32] sbb rax, [pauSubtrahend + r11 + 32] mov [pauResult + r11 + 32], rax mov rax, [pauMinuend + r11 + 40] sbb rax, [pauSubtrahend + r11 + 40] mov [pauResult + r11 + 40], rax mov rax, [pauMinuend + r11 + 48] sbb rax, [pauSubtrahend + r11 + 48] mov [pauResult + r11 + 48], rax mov rax, [pauMinuend + r11 + 56] sbb rax, [pauSubtrahend + r11 + 56] mov [pauResult + r11 + 56], rax lea r11, [r11 + 64] dec r10d ; Does not change CF. jnz .big_loop lahf ; Save CF and cUsed, 7 ; Up to seven odd rounds. jz .done sahf ; Restore CF. jmp .small_loop ; Skip CF=1 (clc). .small_job: clc .small_loop: mov rax, [pauMinuend + r11] sbb rax, [pauSubtrahend + r11] mov [pauResult + r11], rax lea r11, [r11 + 8] dec cUsed ; does not change CF. jnz .small_loop %ifdef RT_STRICT jnc .done int3 %endif .done: %elifdef RT_ARCH_X86 push edi push esi push ebx mov edi, [ebp + 08h] ; pauResult %define pauResult edi mov ecx, [ebp + 0ch] ; pauMinuend %define pauMinuend ecx mov edx, [ebp + 10h] ; pauSubtrahend %define pauSubtrahend edx mov esi, [ebp + 14h] ; cUsed %define cUsed esi xor ebx, ebx ; index register. cmp cUsed, 8 ; Skip the big loop if small number. jb .small_job shr cUsed, 3 clc .big_loop: mov eax, [pauMinuend + ebx] sbb eax, [pauSubtrahend + ebx] mov [pauResult + ebx], eax mov eax, [pauMinuend + ebx + 4] sbb eax, [pauSubtrahend + ebx + 4] mov [pauResult + ebx + 4], eax mov eax, [pauMinuend + ebx + 8] sbb eax, [pauSubtrahend + ebx + 8] mov [pauResult + ebx + 8], eax mov eax, [pauMinuend + ebx + 12] sbb eax, [pauSubtrahend + ebx + 12] mov [pauResult + ebx + 12], eax mov eax, [pauMinuend + ebx + 16] sbb eax, [pauSubtrahend + ebx + 16] mov [pauResult + ebx + 16], eax mov eax, [pauMinuend + ebx + 20] sbb eax, [pauSubtrahend + ebx + 20] mov [pauResult + ebx + 20], eax mov eax, [pauMinuend + ebx + 24] sbb eax, [pauSubtrahend + ebx + 24] mov [pauResult + ebx + 24], eax mov eax, [pauMinuend + ebx + 28] sbb eax, [pauSubtrahend + ebx + 28] mov [pauResult + ebx + 28], eax lea ebx, [ebx + 32] dec cUsed ; Does not change CF. jnz .big_loop lahf ; Save CF mov cUsed, [ebp + 14h] ; Up to three final rounds. and cUsed, 7 jz .done sahf ; Restore CF. jmp .small_loop ; Skip CF=1 (clc). .small_job: clc .small_loop: mov eax, [pauMinuend + ebx] sbb eax, [pauSubtrahend + ebx] mov [pauResult + ebx], eax lea ebx, [ebx + 4] dec cUsed ; Does not change CF jnz .small_loop %ifdef RT_STRICT jnc .done int3 %endif .done: pop ebx pop esi pop edi %else %error "Unsupported arch" %endif leave ret %undef pauResult %undef pauMinuend %undef pauSubtrahend %undef cUsed ENDPROC rtBigNumMagnitudeSubAssemblyWorker ;; ; Subtracts a number (pauSubtrahend) from a larger number (pauMinuend) and ; stores the result in pauResult. ; ; All three numbers are zero padded such that a borrow can be carried one (or ; two for 64-bit) elements beyond the end of the largest number. ; ; @returns nothing. ; @param pauResultMinuend x86:[ebp + 8] gcc:rdi msc:rcx ; @param pauSubtrahend x86:[ebp + 12] gcc:rsi msc:rdx ; @param cUsed x86:[ebp + 16] gcc:rdx msc:r8 ; BEGINPROC rtBigNumMagnitudeSubThisAssemblyWorker push xBP SEH64_PUSH_xBP mov xBP, xSP SEH64_SET_FRAME_xBP 0 SEH64_END_PROLOGUE %ifdef RT_ARCH_AMD64 %ifdef ASM_CALL64_GCC %define pauResultMinuend rdi %define pauSubtrahend rsi %define cUsed edx %else %define pauResultMinuend rcx %define pauSubtrahend rdx %define cUsed r8d %endif xor r11d, r11d ; index register. %if RTBIGNUM_ELEMENT_SIZE == 4 add cUsed, 1 ; cUsed = RT_ALIGN(cUsed, 2) / 2 shr cUsed, 1 %endif cmp cUsed, 8 ; Skip the big loop if small number. jb .small_job mov r10d, cUsed shr r10d, 3 clc .big_loop: mov rax, [pauSubtrahend + r11] sbb [pauResultMinuend + r11], rax mov rax, [pauSubtrahend + r11 + 8] sbb [pauResultMinuend + r11 + 8], rax mov rax, [pauSubtrahend + r11 + 16] sbb [pauResultMinuend + r11 + 16], rax mov rax, [pauSubtrahend + r11 + 24] sbb [pauResultMinuend + r11 + 24], rax mov rax, [pauSubtrahend + r11 + 32] sbb [pauResultMinuend + r11 + 32], rax mov rax, [pauSubtrahend + r11 + 40] sbb [pauResultMinuend + r11 + 40], rax mov rax, [pauSubtrahend + r11 + 48] sbb [pauResultMinuend + r11 + 48], rax mov rax, [pauSubtrahend + r11 + 56] sbb [pauResultMinuend + r11 + 56], rax lea r11, [r11 + 64] dec r10d ; Does not change CF. jnz .big_loop lahf ; Save CF and cUsed, 7 ; Up to seven odd rounds. jz .done sahf ; Restore CF. jmp .small_loop ; Skip CF=1 (clc). .small_job: clc .small_loop: mov rax, [pauSubtrahend + r11] sbb [pauResultMinuend + r11], rax lea r11, [r11 + 8] dec cUsed ; does not change CF. jnz .small_loop %ifdef RT_STRICT jnc .done int3 %endif .done: %elifdef RT_ARCH_X86 push edi push ebx mov edi, [ebp + 08h] ; pauResultMinuend %define pauResultMinuend edi mov edx, [ebp + 0ch] ; pauSubtrahend %define pauSubtrahend edx mov ecx, [ebp + 10h] ; cUsed %define cUsed ecx xor ebx, ebx ; index register. cmp cUsed, 8 ; Skip the big loop if small number. jb .small_job shr cUsed, 3 clc .big_loop: mov eax, [pauSubtrahend + ebx] sbb [pauResultMinuend + ebx], eax mov eax, [pauSubtrahend + ebx + 4] sbb [pauResultMinuend + ebx + 4], eax mov eax, [pauSubtrahend + ebx + 8] sbb [pauResultMinuend + ebx + 8], eax mov eax, [pauSubtrahend + ebx + 12] sbb [pauResultMinuend + ebx + 12], eax mov eax, [pauSubtrahend + ebx + 16] sbb [pauResultMinuend + ebx + 16], eax mov eax, [pauSubtrahend + ebx + 20] sbb [pauResultMinuend + ebx + 20], eax mov eax, [pauSubtrahend + ebx + 24] sbb [pauResultMinuend + ebx + 24], eax mov eax, [pauSubtrahend + ebx + 28] sbb [pauResultMinuend + ebx + 28], eax lea ebx, [ebx + 32] dec cUsed ; Does not change CF. jnz .big_loop lahf ; Save CF mov cUsed, [ebp + 10h] ; Up to seven odd rounds. and cUsed, 7 jz .done sahf ; Restore CF. jmp .small_loop ; Skip CF=1 (clc). .small_job: clc .small_loop: mov eax, [pauSubtrahend + ebx] sbb [pauResultMinuend + ebx], eax lea ebx, [ebx + 4] dec cUsed ; Does not change CF jnz .small_loop %ifdef RT_STRICT jnc .done int3 %endif .done: pop ebx pop edi %else %error "Unsupported arch" %endif leave ret ENDPROC rtBigNumMagnitudeSubThisAssemblyWorker ;; ; Shifts an element array one bit to the left, returning the final carry value. ; ; On 64-bit hosts the array is always zero padded to a multiple of 8 bytes, so ; we can use 64-bit operand sizes even if the element type is 32-bit. ; ; @returns The final carry value. ; @param pauElements x86:[ebp + 8] gcc:rdi msc:rcx ; @param cUsed x86:[ebp + 12] gcc:rsi msc:rdx ; @param uCarry x86:[ebp + 16] gcc:rdx msc:r8 ; BEGINPROC rtBigNumMagnitudeShiftLeftOneAssemblyWorker push xBP SEH64_PUSH_xBP mov xBP, xSP SEH64_SET_FRAME_xBP 0 SEH64_END_PROLOGUE %ifdef RT_ARCH_AMD64 %ifdef ASM_CALL64_GCC %define pauElements rdi %define cUsed esi %define uCarry edx %else %define pauElements rcx %define cUsed edx %define uCarry r8d %endif %elifdef RT_ARCH_X86 %define pauElements ecx mov pauElements, [ebp + 08h] %define cUsed edx mov cUsed, [ebp + 0ch] %define uCarry eax mov uCarry, [ebp + 10h] %else %error "Unsupported arch." %endif ; Lots to do? cmp cUsed, 8 jae .big_loop_init ; Check for empty array. test cUsed, cUsed jz .no_elements jmp .small_loop_init ; Big loop - 8 unrolled loop iterations. .big_loop_init: %ifdef RT_ARCH_AMD64 mov r11d, cUsed %endif shr cUsed, 3 test uCarry, uCarry ; clear the carry flag jz .big_loop stc .big_loop: %if RTBIGNUM_ELEMENT_SIZE == 8 rcl qword [pauElements], 1 rcl qword [pauElements + 8], 1 rcl qword [pauElements + 16], 1 rcl qword [pauElements + 24], 1 rcl qword [pauElements + 32], 1 rcl qword [pauElements + 40], 1 rcl qword [pauElements + 48], 1 rcl qword [pauElements + 56], 1 lea pauElements, [pauElements + 64] %else rcl dword [pauElements], 1 rcl dword [pauElements + 4], 1 rcl dword [pauElements + 8], 1 rcl dword [pauElements + 12], 1 rcl dword [pauElements + 16], 1 rcl dword [pauElements + 20], 1 rcl dword [pauElements + 24], 1 rcl dword [pauElements + 28], 1 lea pauElements, [pauElements + 32] %endif dec cUsed jnz .big_loop ; More to do? lahf ; save carry flag (uCarry no longer used on x86). %ifdef RT_ARCH_AMD64 mov cUsed, r11d %else mov cUsed, [ebp + 0ch] %endif and cUsed, 7 jz .restore_cf_and_return ; Jump if we're good and done. sahf ; Restore CF. jmp .small_loop ; Deal with the odd rounds. .restore_cf_and_return: sahf jmp .carry_to_eax ; Small loop - One round at the time. .small_loop_init: test uCarry, uCarry ; clear the carry flag jz .small_loop stc .small_loop: %if RTBIGNUM_ELEMENT_SIZE == 8 rcl qword [pauElements], 1 lea pauElements, [pauElements + 8] %else rcl dword [pauElements], 1 lea pauElements, [pauElements + 4] %endif dec cUsed jnz .small_loop ; Calculate return value. .carry_to_eax: mov eax, 0 jnc .return inc eax .return: leave ret .no_elements: mov eax, uCarry jmp .return ENDPROC rtBigNumMagnitudeShiftLeftOneAssemblyWorker ;; ; Performs a 128-bit by 64-bit division on 64-bit and ; a 64-bit by 32-bit divison on 32-bit. ; ; @returns nothing. ; @param puQuotient x86:[ebp + 8] gcc:rdi msc:rcx Double element. ; @param puRemainder x86:[ebp + 12] gcc:rsi msc:rdx Normal element. ; @param uDividendHi x86:[ebp + 16] gcc:rdx msc:r8 ; @param uDividendLo x86:[ebp + 20] gcc:rcx msc:r9 ; @param uDivisior x86:[ebp + 24] gcc:r8 msc:[rbp + 30h] ; BEGINPROC rtBigNumElement2xDiv2xBy1x push xBP SEH64_PUSH_xBP mov xBP, xSP SEH64_SET_FRAME_xBP 0 SEH64_END_PROLOGUE %ifdef RT_ARCH_AMD64 %if RTBIGNUM_ELEMENT_SIZE == 4 %error "sorry not implemented yet." sorry not implemented yet. %endif %define uDividendHi rdx %define uDividendLo rax %ifdef ASM_CALL64_GCC %define uDivisor r8 %define puQuotient rdi %define puRemainder rsi mov rax, rcx %else %define puQuotient rcx %define puRemainder r11 %define uDivisor r10 mov r11, rdx mov r10, [rbp + 30h] mov rdx, r8 mov rax, r9 %endif %elifdef RT_ARCH_X86 push edi push ebx %define uDividendHi edx mov uDividendHi, [ebp + 10h] %define uDividendLo eax mov uDividendLo, [ebp + 14h] %define uDivisor ecx mov uDivisor, [ebp + 18h] %define puQuotient edi mov puQuotient, [ebp + 08h] %define puRemainder ebx mov puRemainder, [ebp + 0ch] %else %error "Unsupported arch." %endif %ifdef RT_STRICT ; ; The dividend shall not be zero. ; test uDivisor, uDivisor jnz .divisor_not_zero int3 .divisor_not_zero: %endif ; ; Avoid division overflow. This will calculate the high part of the quotient. ; mov RTBIGNUM_ELEMENT_PRE [puQuotient + RTBIGNUM_ELEMENT_SIZE], 0 cmp uDividendHi, uDivisor jb .do_divide push xAX mov xAX, xDX xor edx, edx div uDivisor mov RTBIGNUM_ELEMENT_PRE [puQuotient + RTBIGNUM_ELEMENT_SIZE], xAX pop xAX ; ; Perform the division and store the result. ; .do_divide: div uDivisor mov RTBIGNUM_ELEMENT_PRE [puQuotient], xAX mov RTBIGNUM_ELEMENT_PRE [puRemainder], xDX %ifdef RT_ARCH_X86 pop ebx pop edi %endif leave ret ENDPROC rtBigNumElement2xDiv2xBy1x ;; ; Performs the core of long multiplication. ; ; @returns nothing. ; @param pauResult x86:[ebp + 8] gcc:rdi msc:rcx Initialized to zero. ; @param pauMultiplier x86:[ebp + 12] gcc:rsi msc:rdx ; @param cMultiplier x86:[ebp + 16] gcc:rdx msc:r8 ; @param pauMultiplicand x86:[ebp + 20] gcc:rcx msc:r9 ; @param cMultiplicand x86:[ebp + 24] gcc:r8 msc:[rbp + 30h] ; BEGINPROC rtBigNumMagnitudeMultiplyAssemblyWorker push xBP SEH64_PUSH_xBP mov xBP, xSP SEH64_SET_FRAME_xBP 0 SEH64_END_PROLOGUE %ifdef RT_ARCH_AMD64 %if RTBIGNUM_ELEMENT_SIZE == 4 %error "sorry not implemented yet." sorry not implemented yet. %endif %ifdef ASM_CALL64_GCC %define pauResult rdi %define pauMultiplier rsi %define cMultiplier r9 %define pauMultiplicand rcx %define cMultiplicand r8 mov r9d, edx ; cMultiplier mov r8d, r8d ; cMultiplicand - paranoia %define uMultiplier r10 %define iMultiplicand r11 %else %define pauResult rcx %define pauMultiplier r11 %define cMultiplier r8 %define pauMultiplicand r9 %define cMultiplicand r10 mov pauMultiplier, rdx mov r10d, dword [rbp + 30h] ; cMultiplicand mov r8d, r8d ; cMultiplier - paranoia %define uMultiplier r12 push r12 %define iMultiplicand r13 push r13 %endif %elifdef RT_ARCH_X86 push edi push esi push ebx sub esp, 10h %define pauResult edi mov pauResult, [ebp + 08h] %define pauMultiplier dword [ebp + 0ch] %define cMultiplier dword [ebp + 10h] %define pauMultiplicand ecx mov pauMultiplicand, [ebp + 14h] %define cMultiplicand dword [ebp + 18h] %define uMultiplier dword [ebp - 10h] %define iMultiplicand ebx %else %error "Unsupported arch." %endif ; ; Check that the multiplicand isn't empty (avoids an extra jump in the inner loop). ; cmp cMultiplicand, 0 je .done ; ; Loop thru each element in the multiplier. ; ; while (cMultiplier-- > 0) .multiplier_loop: cmp cMultiplier, 0 jz .done dec cMultiplier ; uMultiplier = *pauMultiplier %ifdef RT_ARCH_X86 mov edx, pauMultiplier mov eax, [edx] mov uMultiplier, eax %else mov uMultiplier, [pauMultiplier] %endif ; for (iMultiplicand = 0; iMultiplicand < cMultiplicand; iMultiplicand++) xor iMultiplicand, iMultiplicand .multiplicand_loop: mov xAX, [pauMultiplicand + iMultiplicand * RTBIGNUM_ELEMENT_SIZE] mul uMultiplier add [pauResult + iMultiplicand * RTBIGNUM_ELEMENT_SIZE], xAX adc [pauResult + iMultiplicand * RTBIGNUM_ELEMENT_SIZE + RTBIGNUM_ELEMENT_SIZE], xDX jnc .next_multiplicand lea xDX, [iMultiplicand + 2] .next_adc: adc RTBIGNUM_ELEMENT_PRE [pauResult + xDX * RTBIGNUM_ELEMENT_SIZE], 0 inc xDX jc .next_adc .next_multiplicand: inc iMultiplicand ; iMultiplicand++ cmp iMultiplicand, cMultiplicand ; iMultiplicand < cMultiplicand jb .multiplicand_loop ; Advance and loop on multiplier. add pauMultiplier, RTBIGNUM_ELEMENT_SIZE add pauResult, RTBIGNUM_ELEMENT_SIZE jmp .multiplier_loop .done: %ifdef RT_ARCH_AMD64 %ifdef ASM_CALL64_GCC %else pop r13 pop r12 %endif %elifdef RT_ARCH_X86 add esp, 10h pop ebx pop esi pop edi %endif leave ret ENDPROC rtBigNumMagnitudeMultiplyAssemblyWorker ;; ; Assembly implementation of the D4 step of Knuth's division algorithm. ; ; This subtracts Divisor * Qhat from the dividend at the current J index. ; ; @returns true if negative result (unlikely), false if positive. ; @param pauDividendJ x86:[ebp + 8] gcc:rdi msc:rcx Initialized to zero. ; @param pauDivisor x86:[ebp + 12] gcc:rsi msc:rdx ; @param cDivisor x86:[ebp + 16] gcc:edx msc:r8d ; @param uQhat x86:[ebp + 16] gcc:rcx msc:r9 ; BEGINPROC rtBigNumKnuthD4_MulSub push xBP SEH64_PUSH_xBP mov xBP, xSP SEH64_SET_FRAME_xBP 0 SEH64_END_PROLOGUE %ifdef RT_ARCH_AMD64 %if RTBIGNUM_ELEMENT_SIZE == 4 %error "sorry not implemented yet." sorry not implemented yet. %endif %ifdef ASM_CALL64_GCC %define pauDividendJ rdi %define pauDivisor rsi %define cDivisor r8 %define uQhat rcx mov r8d, edx ; cDivisor %define uMulCarry r11 %else %define pauDividendJ rcx %define pauDivisor r10 %define cDivisor r8 %define uQhat r9 mov r10, rdx ; pauDivisor mov r8d, r8d ; cDivisor - paranoia %define uMulCarry r11 %endif %elifdef RT_ARCH_X86 push edi push esi push ebx %define pauDividendJ edi mov pauDividendJ, [ebp + 08h] %define pauDivisor esi mov pauDivisor, [ebp + 0ch] %define cDivisor ecx mov cDivisor, [ebp + 10h] %define uQhat dword [ebp + 14h] %define uMulCarry ebx %else %error "Unsupported arch." %endif %ifdef RT_STRICT ; ; Some sanity checks. ; cmp cDivisor, 0 jne .cDivisor_not_zero int3 .cDivisor_not_zero: %endif ; ; Initialize the loop. ; xor uMulCarry, uMulCarry ; ; do ... while (cDivisor-- > 0); ; .the_loop: ; RTUInt128MulU64ByU64(&uSub, uQhat, pauDivisor[i]); mov xAX, uQhat mul RTBIGNUM_ELEMENT_PRE [pauDivisor] ; RTUInt128AssignAddU64(&uSub, uMulCarry); add xAX, uMulCarry adc xDX, 0 mov uMulCarry, xDX ; Subtract uSub.s.Lo+fCarry from pauDividendJ[i] sub [pauDividendJ], xAX adc uMulCarry, 0 %ifdef RT_STRICT jnc .uMulCarry_did_not_overflow int3 .uMulCarry_did_not_overflow %endif ; Advance. add pauDividendJ, RTBIGNUM_ELEMENT_SIZE add pauDivisor, RTBIGNUM_ELEMENT_SIZE dec cDivisor jnz .the_loop ; ; Final dividend element (no corresponding divisor element). ; sub [pauDividendJ], uMulCarry sbb eax, eax and eax, 1 .done: %ifdef RT_ARCH_AMD64 %elifdef RT_ARCH_X86 pop ebx pop esi pop edi %endif leave ret ENDPROC rtBigNumKnuthD4_MulSub
webidl/WebIDL.g4
augustand/grammars-v4
0
3079
<reponame>augustand/grammars-v4 /* BSD License Copyright (c) 2013,2015 <NAME> All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. Neither the name of <NAME> 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. Web IDL grammar derived from: http://heycam.github.io/webidl/ Web IDL (Second Edition) W3C Editor's Draft 17 November 2015 */ grammar WebIDL; // Note: Replaced keywords: const, default, enum, interface, null. // Note: Added "wrapper" rule webIDL with EOF token. webIDL : definitions EOF ; definitions : extendedAttributeList definition definitions | /* empty */ ; definition : callbackOrInterface | partial | dictionary | enum_ | typedef | implementsStatement ; callbackOrInterface : 'callback' callbackRestOrInterface | interface_ | class_ ; callbackRestOrInterface : callbackRest | interface_ ; interface_ : 'interface' IDENTIFIER_WEBIDL inheritance '{' interfaceMembers '}' ';' ; class_ : 'class' IDENTIFIER_WEBIDL extension '{' interfaceMembers '}' ';' ; partial : 'partial' partialDefinition ; partialDefinition : partialInterface | partialDictionary ; partialInterface : 'interface' IDENTIFIER_WEBIDL '{' interfaceMembers '}' ';' ; interfaceMembers : extendedAttributeList interfaceMember interfaceMembers | /* empty */ ; interfaceMember : const_ | operation | serializer | stringifier | staticMember | iterable | readonlyMember | readWriteAttribute | readWriteMaplike | readWriteSetlike ; dictionary : 'dictionary' IDENTIFIER_WEBIDL inheritance '{' dictionaryMembers '}' ';' ; dictionaryMembers : extendedAttributeList dictionaryMember dictionaryMembers | /* empty */ ; dictionaryMember : required type IDENTIFIER_WEBIDL default_ ';' ; required : 'required' | /* empty */ ; partialDictionary : 'dictionary' IDENTIFIER_WEBIDL '{' dictionaryMembers '}' ';' ; default_ : '=' defaultValue | /* empty */ ; defaultValue : constValue | STRING_WEBIDL | '[' ']' ; inheritance : ':' IDENTIFIER_WEBIDL | /* empty */ ; extension : 'extends' IDENTIFIER_WEBIDL | /* empty */ ; enum_ : 'enum' IDENTIFIER_WEBIDL '{' enumValueList '}' ';' ; enumValueList : STRING_WEBIDL enumValueListComma ; enumValueListComma : ',' enumValueListString | /* empty */ ; enumValueListString : STRING_WEBIDL enumValueListComma | /* empty */ ; callbackRest : IDENTIFIER_WEBIDL '=' returnType '(' argumentList ')' ';' ; typedef : 'typedef' type IDENTIFIER_WEBIDL ';' ; implementsStatement : IDENTIFIER_WEBIDL 'implements' IDENTIFIER_WEBIDL ';' ; const_ : 'const' constType IDENTIFIER_WEBIDL '=' constValue ';' ; constValue : booleanLiteral | floatLiteral | INTEGER_WEBIDL | 'null' ; booleanLiteral : 'true' | 'false' ; floatLiteral : FLOAT_WEBIDL | '-Infinity' | 'Infinity' | 'NaN' ; serializer : 'serializer' serializerRest ; serializerRest : operationRest | '=' serializationPattern ';' | ';' ; serializationPattern : '{' serializationPatternMap '}' | '[' serializationPatternList ']' | IDENTIFIER_WEBIDL ; serializationPatternMap : 'getter' | 'inherit' identifiers | IDENTIFIER_WEBIDL identifiers | /* empty */ ; serializationPatternList : 'getter' | IDENTIFIER_WEBIDL identifiers | /* empty */ ; stringifier : 'stringifier' stringifierRest ; stringifierRest : readOnly attributeRest | returnType operationRest | ';' ; staticMember : 'static' staticMemberRest ; staticMemberRest : readOnly attributeRest | returnType operationRest ; readonlyMember : 'readonly' readonlyMemberRest ; readonlyMemberRest : attributeRest | readWriteMaplike | readWriteSetlike ; readWriteAttribute : 'inherit' readOnly attributeRest | attributeRest ; attributeRest : 'attribute' type attributeName ';' ; attributeName : attributeNameKeyword | IDENTIFIER_WEBIDL ; attributeNameKeyword : 'required' ; inherit : 'inherit' | /* empty */ ; readOnly : 'readonly' | /* empty */ ; operation : returnType operationRest | specialOperation ; specialOperation : special specials returnType operationRest ; specials : special specials | /* empty */ ; special : 'getter' | 'setter' | 'deleter' | 'legacycaller' ; operationRest : optionalIdentifier '(' argumentList ')' ';' ; optionalIdentifier : IDENTIFIER_WEBIDL | /* empty */ ; argumentList : argument arguments | /* empty */ ; arguments : ',' argument arguments | /* empty */ ; argument : extendedAttributeList optionalOrRequiredArgument ; optionalOrRequiredArgument : 'optional' type argumentName default_ | type ellipsis argumentName ; argumentName : argumentNameKeyword | IDENTIFIER_WEBIDL ; ellipsis : '...' | /* empty */ ; iterable : 'iterable' '<' type optionalType '>' ';' ; optionalType : ',' type | /* empty */ ; readWriteMaplike : maplikeRest ; readWriteSetlike : setlikeRest ; maplikeRest : 'maplike' '<' type ',' type '>' ';' ; setlikeRest : 'setlike' '<' type '>' ';' ; extendedAttributeList : '[' extendedAttribute extendedAttributes ']' | /* empty */ ; extendedAttributes : ',' extendedAttribute extendedAttributes | /* empty */ ; extendedAttribute : '(' extendedAttributeInner ')' extendedAttributeRest | '[' extendedAttributeInner ']' extendedAttributeRest | '{' extendedAttributeInner '}' extendedAttributeRest | other extendedAttributeRest ; extendedAttributeRest : extendedAttribute | /* empty */ ; extendedAttributeInner : '(' extendedAttributeInner ')' extendedAttributeInner | '[' extendedAttributeInner ']' extendedAttributeInner | '{' extendedAttributeInner '}' extendedAttributeInner | otherOrComma extendedAttributeInner | /* empty */ ; other : INTEGER_WEBIDL | FLOAT_WEBIDL | IDENTIFIER_WEBIDL | STRING_WEBIDL | OTHER_WEBIDL | '-' | '-Infinity' | '.' | '...' | ':' | ';' | '<' | '=' | '>' | '?' | 'ByteString' | 'DOMString' | 'FrozenArray' | 'Infinity' | 'NaN' | 'RegExp' | 'USVString' | 'any' | 'boolean' | 'byte' | 'double' | 'false' | 'float' | 'long' | 'null' | 'object' | 'octet' | 'or' | 'optional' | 'sequence' | 'short' | 'true' | 'unsigned' | 'void' | argumentNameKeyword | bufferRelatedType ; argumentNameKeyword : 'attribute' | 'callback' | 'const' | 'deleter' | 'dictionary' | 'enum' | 'getter' | 'implements' | 'inherit' | 'interface' | 'iterable' | 'legacycaller' | 'maplike' | 'partial' | 'required' | 'serializer' | 'setlike' | 'setter' | 'static' | 'stringifier' | 'typedef' | 'unrestricted' ; otherOrComma : other | ',' ; type : singleType | unionType null_ ; singleType : nonAnyType | 'any' ; unionType : '(' unionMemberType 'or' unionMemberType unionMemberTypes ')' ; unionMemberType : nonAnyType | unionType null_ ; unionMemberTypes : 'or' unionMemberType unionMemberTypes | /* empty */ ; nonAnyType : primitiveType null_ | promiseType null_ | 'ByteString' null_ | 'DOMString' null_ | 'USVString' null_ | IDENTIFIER_WEBIDL null_ | 'sequence' '<' type '>' null_ | 'object' null_ | 'RegExp' null_ | 'DOMException' null_ | bufferRelatedType null_ | 'FrozenArray' '<' type '>' null_ ; bufferRelatedType : 'ArrayBuffer' | 'DataView' | 'Int8Array' | 'Int16Array' | 'Int32Array' | 'Uint8Array' | 'Uint16Array' | 'Uint32Array' | 'Uint8ClampedArray' | 'Float32Array' | 'Float64Array' ; constType : primitiveType null_ | IDENTIFIER_WEBIDL null_ ; primitiveType : unsignedIntegerType | unrestrictedFloatType | 'boolean' | 'byte' | 'octet' ; unrestrictedFloatType : 'unrestricted' floatType | floatType ; floatType : 'float' | 'double' ; unsignedIntegerType : 'unsigned' integerType | integerType ; integerType : 'short' | 'long' optionalLong ; optionalLong : 'long' | /* empty */ ; promiseType : 'Promise' '<' returnType '>' ; null_ : '?' | /* empty */ ; returnType : type | 'void' ; identifierList : IDENTIFIER_WEBIDL identifiers ; identifiers : ',' IDENTIFIER_WEBIDL identifiers | /* empty */ ; extendedAttributeNoArgs : IDENTIFIER_WEBIDL ; extendedAttributeArgList : IDENTIFIER_WEBIDL '(' argumentList ')' ; extendedAttributeIdent : IDENTIFIER_WEBIDL '=' IDENTIFIER_WEBIDL ; extendedAttributeIdentList : IDENTIFIER_WEBIDL '=' '(' identifierList ')' ; extendedAttributeNamedArgList : IDENTIFIER_WEBIDL '=' IDENTIFIER_WEBIDL '(' argumentList ')' ; INTEGER_WEBIDL : '-'?('0'([Xx][0-9A-Fa-f]+|[0-7]*)|[1-9][0-9]*) ; FLOAT_WEBIDL : '-'?(([0-9]+'.'[0-9]*|[0-9]*'.'[0-9]+)([Ee][\+\-]?[0-9]+)?|[0-9]+[Ee][\+\-]?[0-9]+) ; IDENTIFIER_WEBIDL : [A-Z_a-z][0-9A-Z_a-z]* ; STRING_WEBIDL : '"'~['"']*'"' ; WHITESPACE_WEBIDL : [\t\n\r ]+ -> channel(HIDDEN) ; COMMENT_WEBIDL : ('//'~[\n\r]*|'/*'(.|'\n')*?'*/')+ -> channel(HIDDEN) ; // Note: '/''/'~[\n\r]* instead of '/''/'.* (non-greedy because of wildcard). OTHER_WEBIDL : ~[\t\n\r 0-9A-Z_a-z] ;
Scaliger-Ada_conversion.ads
Louis-Aime/Milesian_calendar_Ada
0
10013
-- Julian.Ada_conversion, a sub-package of Julian. -- This package focuses on conversion between the Julian time -- i.e. duration and time expressed in fractional Julian days, -- and Ada.Calendar duration and time data. -- These routines are only usefull for implementations -- where conversions to and from the Ada time system are necessary. ---------------------------------------------------------------------------- -- Copyright Miletus 2015 -- 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: -- 1. The above copyright notice and this permission notice shall be included -- in all copies or substantial portions of the Software. -- 2. Changes with respect to any former version shall be documented. -- -- The software is provided "as is", without warranty of any kind, -- express of implied, including but not limited to the warranties of -- merchantability, fitness for a particular purpose and noninfringement. -- In no event shall the authors of 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. -- Inquiries: www.calendriermilesien.org ------------------------------------------------------------------------------- with Calendar; use Calendar; package Scaliger.Ada_conversion is function Julian_Time_Of (Ada_Timestamp : Time) return Historical_Time; -- return Julian time following the classical convention i.e.: -- Julian time takes integer values at noon GMT. function Time_Of (Julian_Timestamp : Historical_Time) return Time; -- convert Julian time into Ada time. function Julian_Duration_Of (Ada_Offset : Duration) return Historical_Duration; -- convert Ada duration (seconds) -- to Julian duration (fractional days stored in seconds) function Julian_Duration_Of (Day : Julian_Day_Duration) return Historical_Duration; -- convert a Julian day (an integer) into a julian duration -- which is expressed in seconds to the 1/8s. function Duration_Of (Julian_Offset : Historical_Duration) return Duration; function Day_Julian_Offset (Ada_Daytime : Day_Duration) return Day_Historical_Duration; -- Time of the day expressed in UTC time (0..86_400.0 s) -- to Julian duration expressed in (-0.5..+0.5) function Day_Offset (Julian_Offset : Day_Historical_Duration) return Day_Duration; -- Julian day duration -0.5..+0.5 to time of day 0..86_400.0 s function Julian_Day_Of (Julian_Timestamp : Historical_Time) return Julian_Day; -- gives the nearest integer of a Julian time function Julian_Day_Of (Ada_Timestamp : Time) return Julian_Day; -- the day corresponding to the UTC day of Ada_Timestamp function Time_Of_At_Noon (Julian_Date : Julian_Day) return Time; -- By convention, the "seconds" field is set to 12.00 UTC in this routine. end Scaliger.Ada_conversion;
asm/echo_hello.asm
CodeSwimBikeRun/nasm-function
0
26924
section .text GLOBAL echo_hello echo_hello: mov rax,4 ; 'write' system call = 4 mov rbx,1 ; file descriptor 1 = STDOUT mov rcx,hello ; string to write mov rdx,helloLen ; length of string to write int 80h ; call the kernel ret section .data hello: db 'Hello world!!',10 helloLen: equ $-hello
07/StackArithmetic_tests/StackTest/StackTest.asm
ashiroji/Nand2Tetris
0
11147
//push constant 17 @17 //A=index D=A //D is now the constant @SP A=M //A = @SP M=D //M[A] = value to push @SP M=M+1 //sp+1 //push constant 17 @17 //A=index D=A //D is now the constant @SP A=M //A = @SP M=D //M[A] = value to push @SP M=M+1 //sp+1 //eq @SP AM=M-1 //AM[SP] = M[SP] - 1 e.g @y D=M //D = M[@y] e.g y @R13 M=D //R13 = D e.g y @SP AM=M-1 //AM[SP] = M[SP] - 1 e.g @x D=M //D = M[@x] e.g x @R13 D=D-M //D = D - R13 e.g x = x-y @L0 D;JEQ //if D == 0 jump to L0 @SP //else put 0 in @x A=M //A = M[SP] e.g @x M=0 //M[A] = 0 e.g @x = false @END0 0;JMP //jump to end (L0) @SP //JEQ target code A=M //A=M[SP] e.g @x M=-1 //M[A] = -1 e.g @x = true (END0) @SP M=M+1 //M[SP] = M[SP] + 1 e.g @y //push constant 17 @17 //A=index D=A //D is now the constant @SP A=M //A = @SP M=D //M[A] = value to push @SP M=M+1 //sp+1 //push constant 16 @16 //A=index D=A //D is now the constant @SP A=M //A = @SP M=D //M[A] = value to push @SP M=M+1 //sp+1 //eq @SP AM=M-1 //AM[SP] = M[SP] - 1 e.g @y D=M //D = M[@y] e.g y @R13 M=D //R13 = D e.g y @SP AM=M-1 //AM[SP] = M[SP] - 1 e.g @x D=M //D = M[@x] e.g x @R13 D=D-M //D = D - R13 e.g x = x-y @L1 D;JEQ //if D == 0 jump to L1 @SP //else put 0 in @x A=M //A = M[SP] e.g @x M=0 //M[A] = 0 e.g @x = false @END1 0;JMP //jump to end (L1) @SP //JEQ target code A=M //A=M[SP] e.g @x M=-1 //M[A] = -1 e.g @x = true (END1) @SP M=M+1 //M[SP] = M[SP] + 1 e.g @y //push constant 16 @16 //A=index D=A //D is now the constant @SP A=M //A = @SP M=D //M[A] = value to push @SP M=M+1 //sp+1 //push constant 17 @17 //A=index D=A //D is now the constant @SP A=M //A = @SP M=D //M[A] = value to push @SP M=M+1 //sp+1 //eq @SP AM=M-1 //AM[SP] = M[SP] - 1 e.g @y D=M //D = M[@y] e.g y @R13 M=D //R13 = D e.g y @SP AM=M-1 //AM[SP] = M[SP] - 1 e.g @x D=M //D = M[@x] e.g x @R13 D=D-M //D = D - R13 e.g x = x-y @L2 D;JEQ //if D == 0 jump to L2 @SP //else put 0 in @x A=M //A = M[SP] e.g @x M=0 //M[A] = 0 e.g @x = false @END2 0;JMP //jump to end (L2) @SP //JEQ target code A=M //A=M[SP] e.g @x M=-1 //M[A] = -1 e.g @x = true (END2) @SP M=M+1 //M[SP] = M[SP] + 1 e.g @y //push constant 892 @892 //A=index D=A //D is now the constant @SP A=M //A = @SP M=D //M[A] = value to push @SP M=M+1 //sp+1 //push constant 891 @891 //A=index D=A //D is now the constant @SP A=M //A = @SP M=D //M[A] = value to push @SP M=M+1 //sp+1 //lt @SP AM=M-1 //AM[SP] = M[SP] - 1 e.g @y D=M //D = M[@y] e.g y @R13 M=D //R13 = D e.g y @SP AM=M-1 //AM[SP] = M[SP] - 1 e.g @x D=M //D = M[@x] e.g x @R13 D=D-M //D = D - R13 e.g x = x-y @L3 D;JLT //if D < 0 jump to L3 @SP //else put 0 in @x A=M //A = M[SP] e.g @x M=0 //M[A] = 0 e.g @x = false @END3 0;JMP //jump to end (L3) @SP //JLT target code A=M //A=M[SP] e.g @x M=-1 //M[A] = -1 e.g @x = true (END3) @SP M=M+1 //M[SP] = M[SP] + 1 e.g @y //push constant 891 @891 //A=index D=A //D is now the constant @SP A=M //A = @SP M=D //M[A] = value to push @SP M=M+1 //sp+1 //push constant 892 @892 //A=index D=A //D is now the constant @SP A=M //A = @SP M=D //M[A] = value to push @SP M=M+1 //sp+1 //lt @SP AM=M-1 //AM[SP] = M[SP] - 1 e.g @y D=M //D = M[@y] e.g y @R13 M=D //R13 = D e.g y @SP AM=M-1 //AM[SP] = M[SP] - 1 e.g @x D=M //D = M[@x] e.g x @R13 D=D-M //D = D - R13 e.g x = x-y @L4 D;JLT //if D < 0 jump to L4 @SP //else put 0 in @x A=M //A = M[SP] e.g @x M=0 //M[A] = 0 e.g @x = false @END4 0;JMP //jump to end (L4) @SP //JLT target code A=M //A=M[SP] e.g @x M=-1 //M[A] = -1 e.g @x = true (END4) @SP M=M+1 //M[SP] = M[SP] + 1 e.g @y //push constant 891 @891 //A=index D=A //D is now the constant @SP A=M //A = @SP M=D //M[A] = value to push @SP M=M+1 //sp+1 //push constant 891 @891 //A=index D=A //D is now the constant @SP A=M //A = @SP M=D //M[A] = value to push @SP M=M+1 //sp+1 //lt @SP AM=M-1 //AM[SP] = M[SP] - 1 e.g @y D=M //D = M[@y] e.g y @R13 M=D //R13 = D e.g y @SP AM=M-1 //AM[SP] = M[SP] - 1 e.g @x D=M //D = M[@x] e.g x @R13 D=D-M //D = D - R13 e.g x = x-y @L5 D;JLT //if D < 0 jump to L5 @SP //else put 0 in @x A=M //A = M[SP] e.g @x M=0 //M[A] = 0 e.g @x = false @END5 0;JMP //jump to end (L5) @SP //JLT target code A=M //A=M[SP] e.g @x M=-1 //M[A] = -1 e.g @x = true (END5) @SP M=M+1 //M[SP] = M[SP] + 1 e.g @y //push constant 32767 @32767 //A=index D=A //D is now the constant @SP A=M //A = @SP M=D //M[A] = value to push @SP M=M+1 //sp+1 //push constant 32766 @32766 //A=index D=A //D is now the constant @SP A=M //A = @SP M=D //M[A] = value to push @SP M=M+1 //sp+1 //gt @SP AM=M-1 //AM[SP] = M[SP] - 1 e.g @y D=M //D = M[@y] e.g y @R13 M=D //R13 = D e.g y @SP AM=M-1 //AM[SP] = M[SP] - 1 e.g @x D=M //D = M[@x] e.g x @R13 D=D-M //D = D - R13 e.g x = x-y @L6 D;JGT //if D > 0 jump to L6 @SP //else put 0 in @x A=M //A = M[SP] e.g @x M=0 //M[A] = 0 e.g @x = false @END6 0;JMP //jump to end (L6) @SP //JGT target code A=M //A=M[SP] e.g @x M=-1 //M[A] = -1 e.g @x = true (END6) @SP M=M+1 //M[SP] = M[SP] + 1 e.g @y //push constant 32766 @32766 //A=index D=A //D is now the constant @SP A=M //A = @SP M=D //M[A] = value to push @SP M=M+1 //sp+1 //push constant 32767 @32767 //A=index D=A //D is now the constant @SP A=M //A = @SP M=D //M[A] = value to push @SP M=M+1 //sp+1 //gt @SP AM=M-1 //AM[SP] = M[SP] - 1 e.g @y D=M //D = M[@y] e.g y @R13 M=D //R13 = D e.g y @SP AM=M-1 //AM[SP] = M[SP] - 1 e.g @x D=M //D = M[@x] e.g x @R13 D=D-M //D = D - R13 e.g x = x-y @L7 D;JGT //if D > 0 jump to L7 @SP //else put 0 in @x A=M //A = M[SP] e.g @x M=0 //M[A] = 0 e.g @x = false @END7 0;JMP //jump to end (L7) @SP //JGT target code A=M //A=M[SP] e.g @x M=-1 //M[A] = -1 e.g @x = true (END7) @SP M=M+1 //M[SP] = M[SP] + 1 e.g @y //push constant 32766 @32766 //A=index D=A //D is now the constant @SP A=M //A = @SP M=D //M[A] = value to push @SP M=M+1 //sp+1 //push constant 32766 @32766 //A=index D=A //D is now the constant @SP A=M //A = @SP M=D //M[A] = value to push @SP M=M+1 //sp+1 //gt @SP AM=M-1 //AM[SP] = M[SP] - 1 e.g @y D=M //D = M[@y] e.g y @R13 M=D //R13 = D e.g y @SP AM=M-1 //AM[SP] = M[SP] - 1 e.g @x D=M //D = M[@x] e.g x @R13 D=D-M //D = D - R13 e.g x = x-y @L8 D;JGT //if D > 0 jump to L8 @SP //else put 0 in @x A=M //A = M[SP] e.g @x M=0 //M[A] = 0 e.g @x = false @END8 0;JMP //jump to end (L8) @SP //JGT target code A=M //A=M[SP] e.g @x M=-1 //M[A] = -1 e.g @x = true (END8) @SP M=M+1 //M[SP] = M[SP] + 1 e.g @y //push constant 57 @57 //A=index D=A //D is now the constant @SP A=M //A = @SP M=D //M[A] = value to push @SP M=M+1 //sp+1 //push constant 31 @31 //A=index D=A //D is now the constant @SP A=M //A = @SP M=D //M[A] = value to push @SP M=M+1 //sp+1 //push constant 53 @53 //A=index D=A //D is now the constant @SP A=M //A = @SP M=D //M[A] = value to push @SP M=M+1 //sp+1 //add @SP AM=M-1 //AM[SP] = M[SP] - 1 e.g @y D=M //D=M[A] e.g y A=A-1 //A = @y - 1 e.g @x M=D+M //M[@x] = y + M[@x] //push constant 112 @112 //A=index D=A //D is now the constant @SP A=M //A = @SP M=D //M[A] = value to push @SP M=M+1 //sp+1 //sub @SP AM=M-1 //AM[SP] = M[SP] - 1 e.g @y D=-M //D=-M[A] e.g -y A=A-1 //A = @y - 1 e.g @x M=D+M //M[@x] = -y + M[@x] //neg @SP A=M-1 //A = M[SP] - 1 e.g @y M=-M //M[A]=-M[A] e.g -y //and @SP AM=M-1 //AM[SP] = M[SP] - 1 e.g @y D=M //D = M[@y] e.g y A=A-1 //@y = @y - 1 e.g @x M=D&M //M[@x] = y & M[@x] //push constant 82 @82 //A=index D=A //D is now the constant @SP A=M //A = @SP M=D //M[A] = value to push @SP M=M+1 //sp+1 //or @SP AM=M-1 //AM[SP] = M[SP] - 1 e.g @y D=M //D = M[@y] e.g y A=A-1//@y = @y - 1 e.g @x M=D|M //M[@x] = y | M[@x] //not @SP A=M-1 //A = M[SP] - 1 e.g @y M=!M //M[@y] = !M[@y] e.g !y
gyak/gyak1-2/sum.adb
balintsoos/LearnAda
0
7805
with Ada.Integer_Text_IO; procedure Sum is N : Integer; Sum : Integer := 1; begin Ada.Integer_Text_IO.Get( N ); for I in 1..N loop Sum := Sum + I; end loop; Ada.Integer_Text_IO.Put( Sum ); end Sum;
programs/oeis/310/A310409.asm
karttu/loda
0
95130
; A310409: Coordination sequence Gal.3.19.1 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. ; 1,4,10,14,20,24,28,34,38,44,48,52,58,62,68,72,76,82,86,92,96,100,106,110,116,120,124,130,134,140,144,148,154,158,164,168,172,178,182,188,192,196,202,206,212,216,220,226,230,236 mul $0,2 mov $1,$0 add $0,3 lpb $0,1 sub $0,1 trn $0,4 add $1,1 lpe mul $1,2 trn $1,3 add $1,1
oeis/159/A159340.asm
neoneye/loda-programs
11
82483
<gh_stars>10-100 ; A159340: Transform of the finite sequence (1, 0, -1) by the T_{0,1} transformation (see link). ; Submitted by <NAME> ; 2,3,6,16,38,88,204,474,1102,2562,5956,13846,32188,74828,173954,404394,940102,2185472,5080606,11810976,27457188,63830218,148387254,344958514,801931252,1864263982,4333887956,10075067156,23421689538,54448822258,126578154854,294258509584,684068041302,1590265259592,3696918205756,8594292139386,19979305266238,46446249725698,107974430784004,251010098166854,583527682658252,1356537282425052,3153566580125506,7331152858184666,17042862696728038,39619848953940288,92104974326549454,214118087768495824 mov $1,$0 mov $3,1 lpb $1 sub $1,1 add $2,$0 add $0,$3 sub $2,$1 dif $3,2 add $3,$2 lpe mov $0,$3 add $0,1
Transynther/x86/_processed/NONE/_xt_/i3-7100_9_0xca_notsx.log_243_1060.asm
ljhsiun2/medusa
9
165084
<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r13 push %rax push %rcx push %rdi push %rsi lea addresses_WC_ht+0x1e2c4, %rsi lea addresses_WT_ht+0x4fe4, %rdi clflush (%rdi) nop nop nop nop cmp %rax, %rax mov $107, %rcx rep movsb nop add $44039, %r13 pop %rsi pop %rdi pop %rcx pop %rax pop %r13 ret .global s_faulty_load s_faulty_load: push %r11 push %r13 push %r15 push %r8 push %r9 push %rax push %rdx // Store lea addresses_WT+0x7ce4, %rax nop nop nop nop and %r15, %r15 movb $0x51, (%rax) nop nop dec %r15 // Load mov $0x344e8600000008e4, %r11 dec %r15 movb (%r11), %dl sub $17982, %r11 // Load lea addresses_WC+0x178e4, %r13 add $47214, %r15 vmovups (%r13), %ymm0 vextracti128 $0, %ymm0, %xmm0 vpextrq $0, %xmm0, %r11 nop nop nop nop sub %rdx, %rdx // Store lea addresses_normal+0x8c2c, %rax nop nop cmp $41212, %r11 mov $0x5152535455565758, %r13 movq %r13, %xmm2 movups %xmm2, (%rax) nop nop dec %r15 // Faulty Load lea addresses_normal+0x8e4, %r11 nop nop nop nop nop and $47460, %r9 movb (%r11), %al lea oracles, %r9 and $0xff, %rax shlq $12, %rax mov (%r9,%rax,1), %rax pop %rdx pop %rax pop %r9 pop %r8 pop %r15 pop %r13 pop %r11 ret /* <gen_faulty_load> [REF] {'src': {'same': False, 'congruent': 0, 'NT': False, 'type': 'addresses_normal', 'size': 8, 'AVXalign': False}, 'OP': 'LOAD'} {'OP': 'STOR', 'dst': {'same': False, 'congruent': 10, 'NT': False, 'type': 'addresses_WT', 'size': 1, 'AVXalign': False}} {'src': {'same': False, 'congruent': 11, 'NT': False, 'type': 'addresses_NC', 'size': 1, 'AVXalign': False}, 'OP': 'LOAD'} {'src': {'same': False, 'congruent': 11, 'NT': False, 'type': 'addresses_WC', 'size': 32, 'AVXalign': False}, 'OP': 'LOAD'} {'OP': 'STOR', 'dst': {'same': False, 'congruent': 0, 'NT': False, 'type': 'addresses_normal', 'size': 16, 'AVXalign': False}} [Faulty Load] {'src': {'same': True, 'congruent': 0, 'NT': False, 'type': 'addresses_normal', 'size': 1, 'AVXalign': False}, 'OP': 'LOAD'} <gen_prepare_buffer> {'src': {'type': 'addresses_WC_ht', 'congruent': 5, 'same': False}, 'OP': 'REPM', 'dst': {'type': 'addresses_WT_ht', 'congruent': 8, 'same': False}} {'34': 243} 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 */
src/tests/ascon_test_vectors.adb
jhumphry/Ascon_SPARK
1
18875
<reponame>jhumphry/Ascon_SPARK -- Ascon_Test_Vectors -- Copyright (c) 2016-2018, <NAME> - see LICENSE file for details with Ada.Text_IO; use Ada.Text_IO; with Ascon128v11; with Ascon128av11; with Ascon128v12; with Ascon128av12; with Display_Ascon_Traces; procedure Ascon_Test_Vectors is procedure Ascon128v11_Display is new Display_Ascon_Traces(Ascon_Package => Ascon128v11); procedure Ascon128av11_Display is new Display_Ascon_Traces(Ascon_Package => Ascon128av11); procedure Ascon128v12_Display is new Display_Ascon_Traces(Ascon_Package => Ascon128v12); procedure Ascon128av12_Display is new Display_Ascon_Traces(Ascon_Package => Ascon128av12); begin Put_Line("Ascon Test Vectors"); New_Line; Put_Line("-----------"); Put_Line("Ascon128v11"); Put_Line("-----------"); Ascon128v11_Display; New_Line; Put_Line("------------"); Put_Line("Ascon128av11"); Put_Line("------------"); Ascon128av11_Display; New_Line; Put_Line("-----------"); Put_Line("Ascon128v12"); Put_Line("-----------"); Ascon128v12_Display; New_Line; Put_Line("------------"); Put_Line("Ascon128av12"); Put_Line("------------"); Ascon128av12_Display; New_Line; end Ascon_Test_Vectors;
alloy4fun_models/trashltl/models/11/FYvQxDkJbNSL94RH2.als
Kaixi26/org.alloytools.alloy
0
2202
<gh_stars>0 open main pred idFYvQxDkJbNSL94RH2_prop12 { always all t : Trash | eventually after t not in Trash } pred __repair { idFYvQxDkJbNSL94RH2_prop12 } check __repair { idFYvQxDkJbNSL94RH2_prop12 <=> prop12o }