What are .S files?

FileAssemblyFile Extension

File Problem Overview


I've seen .S files in various projects such as in the Linux Kernel, FreeBSD kernel, or in some other projects. What do these files do and why can't we have .c files instead ?

File Solutions


Solution 1 - File

.S files are source code files written in assembly. Assembly is an extremely low-level form of programming. The files contain assembly instructions to the processor in sequential order and are typically compiled based on a selected architecture. Examples of such files are often seen in the linux kernel for specific architectures, e.g. x86, sparc, ARM, etc.

For more information about assembly language:

Solution 2 - File

That .S is assembly language. Usually that is

Something nobody mentioned is why capital S?

  • .S (capital S) stands for assembly code that must still pass through a pre-processor. That means it can have #include and #define among other macros. It can also be seeing as extension .sx

  • .s (lower s) is pure assembly code that can be compiled into an object.

Why not using .c? Well, being an operating system, it is impossible to write everything in C. Actually, that would be ideal, and C language itself has a background history linked to help creating operating systems and diminish the amount of assembly needed to code it. But many low-level operations are too dependant of the machine.

Here a nice example of a memory copy routine for the linux boot that uses

#include <linux/linkage.h>

Solution 3 - File

*.S files are assembly files.

> Why .S & why not .c files?

Its because machine dependent stuff/early initialization like setting up cache & memory can only be done assembly level instruction such as I/O instructions.

The kernel doesn't have the luxury of libc library to take care of the initial set up of various resources. And hardware resources at any point even during application execution in turn call system calls which call I/O routines coded in assembly language.

Solution 4 - File

The .S extension indicates an assembly language file.

> Why cant we have .C files instead?

Because the raw source code — be it human-entered or compiler-generated — is assembly, not C.

Solution 5 - File

They are assembler code files:

> An assembly language is a low-level programming language for > computers, microprocessors, microcontrollers, and other programmable > devices in which each statement corresponds to a single machine > language instruction. An assembly language is specific to a certain > computer architecture, in contrast to most high-level programming > languages, which may be more portable.

and so these files are not the same as C code files.

Note that C files can be inlined with assembly instructions.

Solution 6 - File

.S files are assembly language files. They are a form of machine code. It is at a low level of programming. All machine dependent code is written in assembly language.The assembly language is different for different processors.

Solution 7 - File

.S files are code written in assembly language i.e low level of programming. In linux kernel source code, .S are generally the starting files which the kernel runs when the linux kernel starts booting (for eg.:- head.S) . We write this in .S and not in .C because we are not ready to run .C compiled .O file at this time. We need to work with architecture dependent registers and start the kernel.

Solution 8 - File

For completeness sake: There is ANOTHER ".s" file, that is not assembly, but rather an "SREC" binary file (encoded in ASCII) used to program microcontrollers.

https://en.wikipedia.org/wiki/SREC_(file_format)

Upon opening such a file, you would see lines of text that looked like this:

S315000000500C9413110C94D510189518950C949710B0
S31500000060189518950C941010189518950C946A10FC
S31500000070189518950C9403131895189518951895B6
S315000000800C940B1218951895189518950C944912FE
S315000000900C943D101895189518951895189518955F

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionEastern MonkView Question on Stackoverflow
Solution 1 - FilelukecampbellView Answer on Stackoverflow
Solution 2 - FileDrBecoView Answer on Stackoverflow
Solution 3 - Fileuser1457958View Answer on Stackoverflow
Solution 4 - FileMatt BallView Answer on Stackoverflow
Solution 5 - Fileuser610650View Answer on Stackoverflow
Solution 6 - FileRaunakView Answer on Stackoverflow
Solution 7 - Filesrikant-ritoliaView Answer on Stackoverflow
Solution 8 - FileFrederickView Answer on Stackoverflow