repo_id
string
size
int64
file_path
string
content
string
Wangzhike/HIT-Linux-0.11
12,774
linux-0.11/kernel/chr_drv/keyboard.S
/* * linux/kernel/keyboard.S * * (C) 1991 Linus Torvalds */ /* * Thanks to Alfred Leung for US keyboard patches * Wolfgang Thiel for German keyboard patches * Marc Corsini for the French keyboard */ #include <linux/config.h> .text .globl keyboard_interrupt /* * these are for the keyboard read function...
Wangzhike/HIT-Linux-0.11
6,672
linux-0.11/kernel/chr_drv/keyboard.s
# 1 "keyboard.S" # 1 "/home/qiuyu/oslab/linux-0.11/kernel/chr_drv//" # 1 "<built-in>" # 1 "<command line>" # 1 "keyboard.S" # 1 "../../include/linux/config.h" 1 # 36 "../../include/linux/config.h" # 47 "../../include/linux/config.h" # 14 "keyboard.S" 2 .text .globl keyboard_interrupt...
Wangzhike/HIT-Linux-0.11
5,473
3-processTrack/linux-0.11/boot/bootsect.s
! ! SYS_SIZE is the number of clicks (16 bytes) to be loaded. ! 0x3000 is 0x30000 bytes = 196kB, more than enough for current ! versions of linux ! SYSSIZE = 0x3000 ! ! bootsect.s (C) 1991 Linus Torvalds ! ! bootsect.s is loaded at 0x7c00 by the bios-startup routines, and moves ! iself out of the way to address 0x9000...
Wangzhike/HIT-Linux-0.11
8,626
3-processTrack/linux-0.11/boot/setup.s
! ! setup.s (C) 1991 Linus Torvalds ! ! setup.s is responsible for getting the system data from the BIOS, ! and putting them into the appropriate places in system memory. ! both setup.s and system has been loaded by the bootblock. ! ! This code asks the bios for memory/disk/other parameters, and ! puts them in a "safe...
Wangzhike/HIT-Linux-0.11
5,938
3-processTrack/linux-0.11/boot/head.s
/* * linux/boot/head.s * * (C) 1991 Linus Torvalds */ /* * head.s contains the 32-bit startup code. * * NOTE!!! Startup happens at absolute address 0x00000000, which is also where * the page directory will exist. The startup code will be overwritten by * the page directory. */ .text .globl idt,gdt,pg_dir...
Wangzhike/HIT-Linux-0.11
5,276
3-processTrack/linux-0.11/kernel/system_call.s
/* * linux/kernel/system_call.s * * (C) 1991 Linus Torvalds */ /* * system_call.s contains the system-call low-level handling routines. * This also contains the timer-interrupt handler, as some of the code is * the same. The hd- and flopppy-interrupts are also here. * * NOTE: This code handles signal-rec...
Wangzhike/HIT-Linux-0.11
2,289
3-processTrack/linux-0.11/kernel/asm.s
/* * linux/kernel/asm.s * * (C) 1991 Linus Torvalds */ /* * asm.s contains the low-level code for most hardware faults. * page_exception is handled by the mm, so that isn't here. This * file also handles (hopefully) fpu-exceptions due to TS-bit, as * the fpu must be properly saved/resored. This hasn't been ...
Wangzhike/HIT-Linux-0.11
2,710
3-processTrack/linux-0.11/kernel/chr_drv/rs_io.s
/* * linux/kernel/rs_io.s * * (C) 1991 Linus Torvalds */ /* * rs_io.s * * This module implements the rs232 io interrupts. */ .text .globl rs1_interrupt,rs2_interrupt size = 1024 /* must be power of two ! and must match the value in tty_io.c!!! */ /* these are the offsets into the read/...
Wangzhike/HIT-Linux-0.11
12,774
3-processTrack/linux-0.11/kernel/chr_drv/keyboard.S
/* * linux/kernel/keyboard.S * * (C) 1991 Linus Torvalds */ /* * Thanks to Alfred Leung for US keyboard patches * Wolfgang Thiel for German keyboard patches * Marc Corsini for the French keyboard */ #include <linux/config.h> .text .globl keyboard_interrupt /* * these are for the keyboard read function...
Wangzhike/HIT-Linux-0.11
5,473
2-syscall/linux-0.11/boot/bootsect.s
! ! SYS_SIZE is the number of clicks (16 bytes) to be loaded. ! 0x3000 is 0x30000 bytes = 196kB, more than enough for current ! versions of linux ! SYSSIZE = 0x3000 ! ! bootsect.s (C) 1991 Linus Torvalds ! ! bootsect.s is loaded at 0x7c00 by the bios-startup routines, and moves ! iself out of the way to address 0x9000...
Wangzhike/HIT-Linux-0.11
8,626
2-syscall/linux-0.11/boot/setup.s
! ! setup.s (C) 1991 Linus Torvalds ! ! setup.s is responsible for getting the system data from the BIOS, ! and putting them into the appropriate places in system memory. ! both setup.s and system has been loaded by the bootblock. ! ! This code asks the bios for memory/disk/other parameters, and ! puts them in a "safe...
Wangzhike/HIT-Linux-0.11
5,938
2-syscall/linux-0.11/boot/head.s
/* * linux/boot/head.s * * (C) 1991 Linus Torvalds */ /* * head.s contains the 32-bit startup code. * * NOTE!!! Startup happens at absolute address 0x00000000, which is also where * the page directory will exist. The startup code will be overwritten by * the page directory. */ .text .globl idt,gdt,pg_dir...
Wangzhike/HIT-Linux-0.11
5,276
2-syscall/linux-0.11/kernel/system_call.s
/* * linux/kernel/system_call.s * * (C) 1991 Linus Torvalds */ /* * system_call.s contains the system-call low-level handling routines. * This also contains the timer-interrupt handler, as some of the code is * the same. The hd- and flopppy-interrupts are also here. * * NOTE: This code handles signal-rec...
Wangzhike/HIT-Linux-0.11
2,289
2-syscall/linux-0.11/kernel/asm.s
/* * linux/kernel/asm.s * * (C) 1991 Linus Torvalds */ /* * asm.s contains the low-level code for most hardware faults. * page_exception is handled by the mm, so that isn't here. This * file also handles (hopefully) fpu-exceptions due to TS-bit, as * the fpu must be properly saved/resored. This hasn't been ...
Wangzhike/HIT-Linux-0.11
2,710
2-syscall/linux-0.11/kernel/chr_drv/rs_io.s
/* * linux/kernel/rs_io.s * * (C) 1991 Linus Torvalds */ /* * rs_io.s * * This module implements the rs232 io interrupts. */ .text .globl rs1_interrupt,rs2_interrupt size = 1024 /* must be power of two ! and must match the value in tty_io.c!!! */ /* these are the offsets into the read/...
Wangzhike/HIT-Linux-0.11
12,774
2-syscall/linux-0.11/kernel/chr_drv/keyboard.S
/* * linux/kernel/keyboard.S * * (C) 1991 Linus Torvalds */ /* * Thanks to Alfred Leung for US keyboard patches * Wolfgang Thiel for German keyboard patches * Marc Corsini for the French keyboard */ #include <linux/config.h> .text .globl keyboard_interrupt /* * these are for the keyboard read function...
Wangzhike/HIT-Linux-0.11
5,473
5-semaphore/linux-0.11/boot/bootsect.s
! ! SYS_SIZE is the number of clicks (16 bytes) to be loaded. ! 0x3000 is 0x30000 bytes = 196kB, more than enough for current ! versions of linux ! SYSSIZE = 0x3000 ! ! bootsect.s (C) 1991 Linus Torvalds ! ! bootsect.s is loaded at 0x7c00 by the bios-startup routines, and moves ! iself out of the way to address 0x9000...
Wangzhike/HIT-Linux-0.11
8,626
5-semaphore/linux-0.11/boot/setup.s
! ! setup.s (C) 1991 Linus Torvalds ! ! setup.s is responsible for getting the system data from the BIOS, ! and putting them into the appropriate places in system memory. ! both setup.s and system has been loaded by the bootblock. ! ! This code asks the bios for memory/disk/other parameters, and ! puts them in a "safe...
Wangzhike/HIT-Linux-0.11
5,938
5-semaphore/linux-0.11/boot/head.s
/* * linux/boot/head.s * * (C) 1991 Linus Torvalds */ /* * head.s contains the 32-bit startup code. * * NOTE!!! Startup happens at absolute address 0x00000000, which is also where * the page directory will exist. The startup code will be overwritten by * the page directory. */ .text .globl idt,gdt,pg_dir...
Wangzhike/HIT-Linux-0.11
6,691
5-semaphore/linux-0.11/kernel/system_call.s
/* * linux/kernel/system_call.s * * (C) 1991 Linus Torvalds */ /* * system_call.s contains the system-call low-level handling routines. * This also contains the timer-interrupt handler, as some of the code is * the same. The hd- and flopppy-interrupts are also here. * * NOTE: This code handles signal-rec...
Wangzhike/HIT-Linux-0.11
2,289
5-semaphore/linux-0.11/kernel/asm.s
/* * linux/kernel/asm.s * * (C) 1991 Linus Torvalds */ /* * asm.s contains the low-level code for most hardware faults. * page_exception is handled by the mm, so that isn't here. This * file also handles (hopefully) fpu-exceptions due to TS-bit, as * the fpu must be properly saved/resored. This hasn't been ...
Wangzhike/HIT-Linux-0.11
2,710
5-semaphore/linux-0.11/kernel/chr_drv/rs_io.s
/* * linux/kernel/rs_io.s * * (C) 1991 Linus Torvalds */ /* * rs_io.s * * This module implements the rs232 io interrupts. */ .text .globl rs1_interrupt,rs2_interrupt size = 1024 /* must be power of two ! and must match the value in tty_io.c!!! */ /* these are the offsets into the read/...
Wangzhike/HIT-Linux-0.11
12,774
5-semaphore/linux-0.11/kernel/chr_drv/keyboard.S
/* * linux/kernel/keyboard.S * * (C) 1991 Linus Torvalds */ /* * Thanks to Alfred Leung for US keyboard patches * Wolfgang Thiel for German keyboard patches * Marc Corsini for the French keyboard */ #include <linux/config.h> .text .globl keyboard_interrupt /* * these are for the keyboard read function...
Wangzhike/HIT-Linux-0.11
5,473
4-processSwitchWithKernelStack/linux-0.11/boot/bootsect.s
! ! SYS_SIZE is the number of clicks (16 bytes) to be loaded. ! 0x3000 is 0x30000 bytes = 196kB, more than enough for current ! versions of linux ! SYSSIZE = 0x3000 ! ! bootsect.s (C) 1991 Linus Torvalds ! ! bootsect.s is loaded at 0x7c00 by the bios-startup routines, and moves ! iself out of the way to address 0x9000...
Wangzhike/HIT-Linux-0.11
8,626
4-processSwitchWithKernelStack/linux-0.11/boot/setup.s
! ! setup.s (C) 1991 Linus Torvalds ! ! setup.s is responsible for getting the system data from the BIOS, ! and putting them into the appropriate places in system memory. ! both setup.s and system has been loaded by the bootblock. ! ! This code asks the bios for memory/disk/other parameters, and ! puts them in a "safe...
Wangzhike/HIT-Linux-0.11
5,938
4-processSwitchWithKernelStack/linux-0.11/boot/head.s
/* * linux/boot/head.s * * (C) 1991 Linus Torvalds */ /* * head.s contains the 32-bit startup code. * * NOTE!!! Startup happens at absolute address 0x00000000, which is also where * the page directory will exist. The startup code will be overwritten by * the page directory. */ .text .globl idt,gdt,pg_dir...
Wangzhike/HIT-Linux-0.11
6,623
4-processSwitchWithKernelStack/linux-0.11/kernel/system_call.s
/* * linux/kernel/system_call.s * * (C) 1991 Linus Torvalds */ /* * system_call.s contains the system-call low-level handling routines. * This also contains the timer-interrupt handler, as some of the code is * the same. The hd- and flopppy-interrupts are also here. * * NOTE: This code handles signal-rec...
Wangzhike/HIT-Linux-0.11
2,289
4-processSwitchWithKernelStack/linux-0.11/kernel/asm.s
/* * linux/kernel/asm.s * * (C) 1991 Linus Torvalds */ /* * asm.s contains the low-level code for most hardware faults. * page_exception is handled by the mm, so that isn't here. This * file also handles (hopefully) fpu-exceptions due to TS-bit, as * the fpu must be properly saved/resored. This hasn't been ...
Wangzhike/HIT-Linux-0.11
2,710
4-processSwitchWithKernelStack/linux-0.11/kernel/chr_drv/rs_io.s
/* * linux/kernel/rs_io.s * * (C) 1991 Linus Torvalds */ /* * rs_io.s * * This module implements the rs232 io interrupts. */ .text .globl rs1_interrupt,rs2_interrupt size = 1024 /* must be power of two ! and must match the value in tty_io.c!!! */ /* these are the offsets into the read/...
Wangzhike/HIT-Linux-0.11
12,774
4-processSwitchWithKernelStack/linux-0.11/kernel/chr_drv/keyboard.S
/* * linux/kernel/keyboard.S * * (C) 1991 Linus Torvalds */ /* * Thanks to Alfred Leung for US keyboard patches * Wolfgang Thiel for German keyboard patches * Marc Corsini for the French keyboard */ #include <linux/config.h> .text .globl keyboard_interrupt /* * these are for the keyboard read function...
wararyo/CapsuleSampler
6,430
src/Sampler_asm.S
#if defined ( __XTENSA__ ) #if __has_include (<sdkconfig.h>) #include <sdkconfig.h> #endif /// 波形合成処理を行う関数。 ループ一回につき4サンプル分の処理を行う。 // void sampler_process_inner(proc_inner_work_t* work, uint32_t length) // a2 = proc_inner_work_t* work // a3 = uint32_t length .global sampler_process_inner .section .text ...
MorseMicro/mm-iot-sdk
17,506
applications/mm-ekh08-u575/m2m_controller/bsp/startup_stm32u575zitxq.s
/** ****************************************************************************** * @file startup_stm32u575xx.s * @author MCD Application Team * @brief STM32U575xx devices vector table GCC toolchain. * This module performs: * - Set the initial SP * - S...
MorseMicro/mm-iot-sdk
17,506
applications/mm-ekh08-u575/m2m_agent/bsp/startup_stm32u575zitxq.s
/** ****************************************************************************** * @file startup_stm32u575xx.s * @author MCD Application Team * @brief STM32U575xx devices vector table GCC toolchain. * This module performs: * - Set the initial SP * - S...
MorseMicro/mm-iot-sdk
18,027
framework/src/platforms/mm-mm6108-ekh05/bsp/startup_stm32u585VIT6.s
/** ****************************************************************************** * @file startup_stm32u585xx.s * @author MCD Application Team * @brief STM32U585xx devices vector table GCC toolchain. * This module performs: * - Set the initial SP * - S...
MorseMicro/mm-iot-sdk
17,506
framework/src/platforms/mm-ekh08-u575/bsp/startup_stm32u575zitxq.s
/** ****************************************************************************** * @file startup_stm32u575xx.s * @author MCD Application Team * @brief STM32U575xx devices vector table GCC toolchain. * This module performs: * - Set the initial SP * - S...
MorseMicro/mm-iot-sdk
17,506
framework/src/platforms/mm-ekh08-u575-sdio/bsp/startup_stm32u575zitxq.s
/** ****************************************************************************** * @file startup_stm32u575xx.s * @author MCD Application Team * @brief STM32U575xx devices vector table GCC toolchain. * This module performs: * - Set the initial SP * - S...
MorseMicro/mm-iot-sdk
18,027
framework/src/platforms/mm-mm6108-ekh05-sdio/bsp/startup_stm32u585VIT6.s
/** ****************************************************************************** * @file startup_stm32u585xx.s * @author MCD Application Team * @brief STM32U585xx devices vector table GCC toolchain. * This module performs: * - Set the initial SP * - S...
MorseMicro/mm-iot-sdk
29,525
framework/src/platforms/mm-ekh08-h753/bsp/startup_stm32h753zitx.s
/** ****************************************************************************** * @file startup_stm32h753xx.s * @author MCD Application Team * @brief STM32H753xx Devices vector table for GCC based toolchain. * This module performs: * - Set the initial SP * ...
MorseMicro/mm-iot-sdk
12,287
framework/src/platforms/mm-ekh08-wb55-ble/bsp/startup_stm32wb55xx_cm4.s
/** ****************************************************************************** * @file startup_stm32wb55xx_cm4.s * @author MCD Application Team * @brief STM32WB55xx devices vector table GCC toolchain. * This module performs: * - Set the initial SP * ...
MorseMicro/mm-iot-sdk
12,287
framework/src/platforms/mm-ekh08-wb55/bsp/startup_stm32wb55xx_cm4.s
/** ****************************************************************************** * @file startup_stm32wb55xx_cm4.s * @author MCD Application Team * @brief STM32WB55xx devices vector table GCC toolchain. * This module performs: * - Set the initial SP * ...
mpw/Objective-Smalltalk
9,841
ObjSTNative/test-compiles/class-with-method-block.s
.section __TEXT,__text,regular,pure_instructions .build_version macos, 12, 3 sdk_version 12, 3 .p2align 2 ; -- Begin function -[Hi onLine:execute:] "-[Hi onLine:execute:]": ; @"\01-[Hi onLine:execute:]" .cfi_startproc ; %bb.0: stp x29, x30, [sp, #-16]! ; 16-by...
mpw/Objective-Smalltalk
3,834
ObjSTNative/test-compiles/empty-class.s
; ModuleID = 'empty-class.m' target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128" target triple = "x86_64-apple-macosx10.9.0" %struct._objc_cache = type opaque %struct._class_t = type { %struct._class_t*,...
mpw/Objective-Smalltalk
23,447
ObjSTNative/test-compiles/class-with-methods-old.s
; ModuleID = 'class-with-methods.m' target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128" target triple = "x86_64-apple-macosx10.9.0" %0 = type opaque %1 = type opaque %2 = type opaque %3 = type opaque %st...
mpw/Objective-Smalltalk
2,002
ObjSTNative/test-compiles/function-passing-block.s
.section __TEXT,__text,regular,pure_instructions .build_version macos, 12, 3 sdk_version 12, 3 .globl _bfn ; -- Begin function bfn .p2align 2 _bfn: ; @bfn .cfi_startproc ; %bb.0: sub sp, sp, #32 stp x29, x30, [sp, #16] ; 16-byte Folded Spil...
mpw/Objective-Smalltalk
4,299
ObjSTNative/test-compiles/method-returning-arg-category.s
; ModuleID = 'method-returning-arg-category.m' target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128" target triple = "x86_64-apple-macosx10.8.0" %0 = type opaque %struct._class_t = type { %struct._class_t*...
mpw/Objective-Smalltalk
3,261
ObjSTNative/test-compiles/class-with-method-arm64.s
.section __TEXT,__text,regular,pure_instructions .build_version macos, 11, 0 sdk_version 11, 0 .p2align 2 ; -- Begin function -[Hi components:splitInto:] "-[Hi components:splitInto:]": ; @"\01-[Hi components:splitInto:]" .cfi_startproc ; %bb.0: sub sp, sp, #48 ; =48 stp x29, x30...
mpw/Objective-Smalltalk
1,910
ObjSTNative/test-compiles/empty-class-arm64.s
.section __TEXT,__text,regular,pure_instructions .build_version macos, 11, 0 sdk_version 11, 0 .section __TEXT,__objc_classname,cstring_literals l_OBJC_CLASS_NAME_: ; @OBJC_CLASS_NAME_ .asciz "EmptyCodeGenTestClass01" .section __DATA,__objc_const .p2align 3 ; @"_OBJC_METACLASS_R...
mpw/Objective-Smalltalk
3,649
ObjSTNative/test-compiles/another-empty-class.s
; ModuleID = 'another-empty-class.m' target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128" target triple = "x86_64-apple-macosx10.9.0" %struct._objc_cache = type opaque %struct._class_t = type { %struct._c...
mpw/Objective-Smalltalk
1,598
ObjSTNative/test-compiles/method-returning-arg-category.s.s
.section __TEXT,__text,regular,pure_instructions .align 4, 0x90 "-[NSObject(empty) empty:]": ## @"\01-[NSObject(empty) empty:]" .cfi_startproc ## BB#0: movq %rdi, -8(%rsp) movq %rsi, -16(%rsp) movq %rdx, -24(%rsp) movq %rdx, %rax ret .cfi_endproc .section __TEXT,__objc_classname,cstring_literals L...
mpw/Objective-Smalltalk
6,030
ObjSTNative/test-compiles/class-with-method.s
; ModuleID = 'class-with-method.m' target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128" target triple = "x86_64-apple-macosx10.8.0" %0 = type opaque %1 = type opaque %2 = type opaque %struct._objc_cache =...
mpw/Objective-Smalltalk
23,447
ObjSTNative/test-compiles/class-with-methods.s
; ModuleID = 'class-with-methods.m' target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128" target triple = "x86_64-apple-macosx10.9.0" %0 = type opaque %1 = type opaque %2 = type opaque %3 = type opaque %st...
mpw/Objective-Smalltalk
1,261
ObjSTNative/test-compiles/use_class.s
.section __TEXT,__text,regular,pure_instructions .build_version macos, 12, 3 sdk_version 12, 3 .globl _functionThatReferencesClass ; -- Begin function functionThatReferencesClass .p2align 2 _functionThatReferencesClass: ; @functionThatReferencesClass .cfi_startproc ; %bb.0: stp x29, x30, [sp, #-16]! ...
mpw/Objective-Smalltalk
17,921
ObjSTNative/test-compiles/class-with-methods-arm64.s
.section __TEXT,__text,regular,pure_instructions .build_version macos, 11, 0 sdk_version 11, 0 .p2align 2 ; -- Begin function -[Hi components:splitInto:] "-[Hi components:splitInto:]": ; @"\01-[Hi components:splitInto:]" .cfi_startproc ; %bb.0: sub sp, sp, #48 ; =48 stp x29, x30...
mpw/Objective-Smalltalk
2,785
ObjSTNative/test-compiles/empty-category.s
; ModuleID = 'empty-category.m' target datalayout = "e-p:64:64:64-i1:8:8-i8:8:8-i16:16:16-i32:32:32-i64:64:64-f32:32:32-f64:64:64-v64:64:64-v128:128:128-a0:0:64-s0:64:64-f80:128:128-n8:16:32:64-S128" target triple = "x86_64-apple-macosx10.8.0" %struct._class_t = type { %struct._class_t*, %struct._class_t*, %struct._ob...
mpw/Objective-Smalltalk
1,837
ObjSTNative/test-compiles/method-returning-arg-category-arm64.s
.section __TEXT,__text,regular,pure_instructions .build_version macos, 11, 0 sdk_version 11, 0 .p2align 2 ; -- Begin function -[NSObject(empty) empty:] "-[NSObject(empty) empty:]": ; @"\01-[NSObject(empty) empty:]" .cfi_startproc ; %bb.0: sub sp, sp, #32 ; =32 .cfi_def_cfa_off...
MrChromebox/SeaBIOS
4,474
vgasrc/vgaentry.S
// Rom layout and bios assembler to C interface. // // Copyright (C) 2009-2013 Kevin O'Connor <kevin@koconnor.net> // // This file may be distributed under the terms of the GNU LGPLv3 license. #include "asm-offsets.h" // BREGS_* #include "config.h" // CONFIG_* #include "entryfuncs.S" // ENTRY_* /******************...
MrChromebox/SeaBIOS
5,001
src/entryfuncs.S
// Macros for entering C code // // Copyright (C) 2008-2014 Kevin O'Connor <kevin@koconnor.net> // // This file may be distributed under the terms of the GNU LGPLv3 license. /**************************************************************** * Macros for save and restore of 'struct bregs' registers *****************...
MrChromebox/SeaBIOS
17,735
src/romlayout.S
// Rom layout and bios assembler to C interface. // // Copyright (C) 2008-2012 Kevin O'Connor <kevin@koconnor.net> // Copyright (C) 2002 MandrakeSoft S.A. // // This file may be distributed under the terms of the GNU LGPLv3 license. #include "asm-offsets.h" // BREGS_* #include "config.h" // CONFIG_* #include "entryf...
MrOwlSage/objc4-906
26,319
runtime/objc-blocktramps-i386.s
/* * Copyright (c) 1999-2007 Apple Inc. All Rights Reserved. * * @APPLE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in *...
MrOwlSage/objc4-906
5,619
runtime/objc-blocktramps-arm.s
#if __arm__ #include <arm/arch.h> #include "objc-vm.h" .syntax unified .text .globl __objc_blockTrampolineImpl .globl __objc_blockTrampolineStart .globl __objc_blockTrampolineLast // Trampoline machinery assumes the trampolines are Thumb function pointers #if !__thumb2__ # error sorry #endif .thumb // Exported...
MrOwlSage/objc4-906
2,621
runtime/objc-blocktramps-arm64.s
#include <TargetConditionals.h> #if !TARGET_OS_EXCLAVEKIT #if __arm64__ #include "objc-vm.h" #include "arm64-asm.h" // Offset of block->invoke field. #if __LP64__ // true arm64 # define BLOCK_INVOKE 16 #else // arm64_32 # define BLOCK_INVOKE 12 #endif .text .globl __objc_blockTrampolineImpl .globl __obj...
MrOwlSage/objc4-906
27,707
runtime/objc-blocktramps-x86_64.s
/* * Copyright (c) 1999-2007 Apple Inc. All Rights Reserved. * * @APPLE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in *...
MrOwlSage/objc4-906
1,157
runtime/objc-sel-table.s
#include <TargetConditionals.h> #include "objc-vm.h" #if __LP64__ #if __arm64e__ // 0x6AE1 # define PTR(x) .quad x@AUTH(da, 27361, addr) #else # define PTR(x) .quad x #endif #else # define PTR(x) .long x #endif // These offsets are populated by the dyld shared cache builder. // They point to memory allocatd elsewhere...
MrOwlSage/objc4-906
13,206
runtime/retain-release-helpers-arm64.s
/* * @APPLE_LICENSE_HEADER_START@ * * Copyright (c) 2021 Apple Inc. All Rights Reserved. * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compli...
MrOwlSage/objc4-906
28,752
runtime/Messengers.subproj/objc-msg-simulator-x86_64.s
/* * Copyright (c) 1999-2007 Apple Inc. All Rights Reserved. * * @APPLE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in *...
MrOwlSage/objc4-906
31,151
runtime/Messengers.subproj/objc-msg-i386.s
/* * Copyright (c) 1999-2007 Apple Inc. All Rights Reserved. * * @APPLE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in *...
MrOwlSage/objc4-906
23,651
runtime/Messengers.subproj/objc-msg-simulator-i386.s
/* * Copyright (c) 1999-2009 Apple Inc. All Rights Reserved. * * @APPLE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in *...
MrOwlSage/objc4-906
22,655
runtime/Messengers.subproj/objc-msg-arm.s
/* * @APPLE_LICENSE_HEADER_START@ * * Copyright (c) 1999-2007 Apple Computer, Inc. All Rights Reserved. * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file ex...
MrOwlSage/objc4-906
31,336
runtime/Messengers.subproj/objc-msg-x86_64.s
/* * Copyright (c) 1999-2007 Apple Inc. All Rights Reserved. * * @APPLE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in *...
MrOwlSage/objc4-906
23,681
runtime/Messengers.subproj/objc-msg-arm64.s
/* * @APPLE_LICENSE_HEADER_START@ * * Copyright (c) 2011 Apple Inc. All Rights Reserved. * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * comp...
msftguy/ssh-rd
15,839
_3rd/zlib/contrib/gcc_gvmat64/gvmat64.S
/* ;uInt longest_match_x64( ; deflate_state *s, ; IPos cur_match); // current match ; gvmat64.S -- Asm portion of the optimized longest_match for 32 bits x86_64 ; (AMD64 on Athlon 64, Opteron, Phenom ; and Intel EM64T on Pentium 4 with EM64T, Pentium D, Core 2 Duo, Core I5/I7) ;...
msftguy/ssh-rd
42,842
_3rd/zlib/contrib/inflate86/inffast.S
/* * inffast.S is a hand tuned assembler version of: * * inffast.c -- fast decoding * Copyright (C) 1995-2003 Mark Adler * For conditions of distribution and use, see copyright notice in zlib.h * * Copyright (C) 2003 Chris Anderson <christop@charm.net> * Please use the copyright conditions above. * * This ver...
msftguy/ssh-rd
10,026
_3rd/zlib/contrib/asm686/match.S
/* match.S -- x86 assembly version of the zlib longest_match() function. * Optimized for the Intel 686 chips (PPro and later). * * Copyright (C) 1998, 2007 Brian Raiter <breadbox@muppetlabs.com> * * This software is provided 'as-is', without any express or implied * warranty. In no event will the author be held ...
msftguy/ssh-rd
12,418
_3rd/zlib/contrib/amd64/amd64-match.S
/* * match.S -- optimized version of longest_match() * based on the similar work by Gilles Vollant, and Brian Raiter, written 1998 * * This is free software; you can redistribute it and/or modify it * under the terms of the BSD License. Use by owners of Che Guevarra * parafernalia is prohibited, where possible, a...
ms-iot/security
31,125
LimpetMCU/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f439xx.s
;******************** (C) COPYRIGHT 2016 STMicroelectronics ******************** ;* File Name : startup_stm32f439xx.s ;* Author : MCD Application Team ;* Version : V2.4.3 ;* Date : 22-January-2016 ;* Description : STM32F439x devices vector table for MDK-ARM toolchain...
ms-iot/security
26,123
LimpetMCU/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f411xe.s
;******************** (C) COPYRIGHT 2016 STMicroelectronics ******************** ;* File Name : startup_stm32f411xe.s ;* Author : MCD Application Team ;* Version : V2.4.3 ;* Date : 22-January-2016 ;* Description : STM32F411xExx devices vector table for MDK-ARM toolch...
ms-iot/security
31,327
LimpetMCU/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f469xx.s
;******************** (C) COPYRIGHT 2016 STMicroelectronics ******************** ;* File Name : startup_stm32f469xx.s ;* Author : MCD Application Team ;* Version : V2.4.3 ;* Date : 22-January-2016 ;* Description : STM32F469x devices vector table for MDK-ARM toolchain...
ms-iot/security
18,556
LimpetMCU/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f410tx.s
;******************** (C) COPYRIGHT 2016 STMicroelectronics ******************** ;* File Name : startup_stm32f410tx.s ;* Author : MCD Application Team ;* Version : V2.4.3 ;* Date : 22-January-2016 ;* Description : STM32F410Tx devices vector table for MDK-ARM toolchai...
ms-iot/security
31,237
LimpetMCU/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f429xx.s
;******************** (C) COPYRIGHT 2016 STMicroelectronics ******************** ;* File Name : startup_stm32f429xx.s ;* Author : MCD Application Team ;* Version : V2.4.3 ;* Date : 22-January-2016 ;* Description : STM32F429x devices vector table for MDK-ARM toolchain...
ms-iot/security
25,998
LimpetMCU/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f401xe.s
;******************** (C) COPYRIGHT 2016 STMicroelectronics ******************** ;* File Name : startup_stm32f401xe.s ;* Author : MCD Application Team ;* Version : V2.4.3 ;* Date : 22-January-2016 ;* Description : STM32F401xe devices vector table for MDK-ARM toolchai...
ms-iot/security
29,675
LimpetMCU/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f417xx.s
;******************** (C) COPYRIGHT 2016 STMicroelectronics ******************** ;* File Name : startup_stm32f417xx.s ;* Author : MCD Application Team ;* Version : V2.4.3 ;* Date : 22-January-2016 ;* Description : STM32F417xx devices vector table for MDK-ARM toolchai...
ms-iot/security
30,942
LimpetMCU/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f437xx.s
;******************** (C) COPYRIGHT 2016 STMicroelectronics ******************** ;* File Name : startup_stm32f437xx.s ;* Author : MCD Application Team ;* Version : V2.4.3 ;* Date : 22-January-2016 ;* Description : STM32F437x devices vector table for MDK-ARM toolchain...
ms-iot/security
29,795
LimpetMCU/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f407xx.s
;******************** (C) COPYRIGHT 2016 STMicroelectronics ******************** ;* File Name : startup_stm32f407xx.s ;* Author : MCD Application Team ;* Version : V2.4.3 ;* Date : 22-January-2016 ;* Description : STM32F407xx devices vector table for MDK-ARM toolchai...
ms-iot/security
31,055
LimpetMCU/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f446xx.s
;******************** (C) COPYRIGHT 2016 STMicroelectronics ******************** ;* File Name : startup_stm32f446xx.s ;* Author : MCD Application Team ;* Version : V2.4.3 ;* Date : 22-January-2016 ;* Description : STM32F446x devices vector table for MDK-ARM toolchain...
ms-iot/security
30,938
LimpetMCU/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f427xx.s
;******************** (C) COPYRIGHT 2016 STMicroelectronics ******************** ;* File Name : startup_stm32f427xx.s ;* Author : MCD Application Team ;* Version : V2.4.3 ;* Date : 22-January-2016 ;* Description : STM32F427x devices vector table for MDK-ARM toolchain...
ms-iot/security
18,791
LimpetMCU/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f410rx.s
;******************** (C) COPYRIGHT 2016 STMicroelectronics ******************** ;* File Name : startup_stm32f410rx.s ;* Author : MCD Application Team ;* Version : V2.4.3 ;* Date : 22-January-2016 ;* Description : STM32F410Rx devices vector table for MDK-ARM toolchai...
ms-iot/security
29,309
LimpetMCU/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f415xx.s
;******************** (C) COPYRIGHT 2016 STMicroelectronics ******************** ;* File Name : startup_stm32f415xx.s ;* Author : MCD Application Team ;* Version : V2.4.3 ;* Date : 22-January-2016 ;* Description : STM32F415xx devices vector table for MDK-ARM toolchai...
ms-iot/security
31,397
LimpetMCU/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f479xx.s
;******************** (C) COPYRIGHT 2016 STMicroelectronics ******************** ;* File Name : startup_stm32f479xx.s ;* Author : MCD Application Team ;* Version : V2.4.3 ;* Date : 22-January-2016 ;* Description : STM32F479x devices vector table for MDK-ARM toolchain...
ms-iot/security
26,002
LimpetMCU/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f401xc.s
;******************** (C) COPYRIGHT 2016 STMicroelectronics ******************** ;* File Name : startup_stm32f401xc.s ;* Author : MCD Application Team ;* Version : V2.4.3 ;* Date : 22-January-2016 ;* Description : STM32F401xc devices vector table for MDK-ARM toolchai...
ms-iot/security
29,333
LimpetMCU/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f405xx.s
;******************** (C) COPYRIGHT 2016 STMicroelectronics ******************** ;* File Name : startup_stm32f405xx.s ;* Author : MCD Application Team ;* Version : V2.4.3 ;* Date : 22-January-2016 ;* Description : STM32F405xx devices vector table for MDK-ARM toolchai...
ms-iot/security
18,791
LimpetMCU/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/arm/startup_stm32f410cx.s
;******************** (C) COPYRIGHT 2016 STMicroelectronics ******************** ;* File Name : startup_stm32f410cx.s ;* Author : MCD Application Team ;* Version : V2.4.3 ;* Date : 22-January-2016 ;* Description : STM32F410Cx devices vector table for MDK-ARM toolchai...
ms-iot/security
25,844
LimpetMCU/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f439xx.s
/** ****************************************************************************** * @file startup_stm32f439xx.s * @author MCD Application Team * @version V2.4.3 * @date 22-January-2016 * @brief STM32F439xx Devices vector table for GCC based toolchains. * This module perform...
ms-iot/security
21,739
LimpetMCU/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f411xe.s
/** ****************************************************************************** * @file startup_stm32f411xe.s * @author MCD Application Team * @version V2.4.3 * @date 22-January-2016 * @brief STM32F411xExx Devices vector table for GCC based toolchains. * This module perfo...
ms-iot/security
26,096
LimpetMCU/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f469xx.s
/** ****************************************************************************** * @file startup_stm32f469xx.s * @author MCD Application Team * @version V2.4.3 * @date 22-January-2016 * @brief STM32F469xx Devices vector table for GCC based toolchains. * This module perform...
ms-iot/security
20,308
LimpetMCU/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f410tx.s
/** ****************************************************************************** * @file startup_stm32f410tx.s * @author MCD Application Team * @version V2.4.3 * @date 22-January-2016 * @brief STM32F410Tx Devices vector table for GCC based toolchains. * This module perform...
ms-iot/security
25,737
LimpetMCU/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f429xx.s
/** ****************************************************************************** * @file startup_stm32f429xx.s * @author MCD Application Team * @version V2.4.3 * @date 22-January-2016 * @brief STM32F429xx Devices vector table for GCC based toolchains. * This module perfor...
ms-iot/security
21,563
LimpetMCU/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f401xe.s
/** ****************************************************************************** * @file startup_stm32f401xe.s * @author MCD Application Team * @version V2.4.3 * @date 22-January-2016 * @brief STM32F401xExx Devices vector table for GCC based toolchains. * This module perfo...
ms-iot/security
24,364
LimpetMCU/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f417xx.s
/** ****************************************************************************** * @file startup_stm32f417xx.s * @author MCD Application Team * @version V2.4.3 * @date 22-January-2016 * @brief STM32F417xx Devices vector table for GCC based toolchains. * This module perfor...
ms-iot/security
25,675
LimpetMCU/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f437xx.s
/** ****************************************************************************** * @file startup_stm32f437xx.s * @author MCD Application Team * @version V2.4.3 * @date 22-January-2016 * @brief STM32F437xx Devices vector table for GCC based toolchains. * This module perform...
ms-iot/security
24,335
LimpetMCU/Drivers/CMSIS/Device/ST/STM32F4xx/Source/Templates/gcc/startup_stm32f407xx.s
/** ****************************************************************************** * @file startup_stm32f407xx.s * @author MCD Application Team * @version V2.4.3 * @date 22-January-2016 * @brief STM32F407xx Devices vector table for GCC based toolchains. * This module perform...