diff options
author | Olivier Gayot <duskcoder@gmail.com> | 2014-02-14 03:40:08 +0100 |
---|---|---|
committer | Olivier Gayot <duskcoder@gmail.com> | 2014-02-14 03:40:08 +0100 |
commit | 10feec2708dadeb3adfe81844b1766691b9d058a (patch) | |
tree | b72ac1fdce28ccb82accf90db68e550946296fb2 | |
parent | 6ed92c78c626c542638371e152c553350581d606 (diff) |
split the unique file in two parts
we splitted the implementation of the functions to the commented
declaration so that one can only read the public file and understand
what the library does without having to read the actual code.
-rw-r--r-- | list.asm | 34 | ||||
-rw-r--r-- | public.asm | 59 |
2 files changed, 60 insertions, 33 deletions
@@ -23,39 +23,7 @@ extern malloc extern free -;; initializes the list stored at address $rdi with default values -global list_init:function - -;; dynamically allocate a new list and return its address via $rax. If -;; the dynamic allocation unlikely fails, $rax will contain a null pointer -global list_new_raw:function - -;; same as list_new_raw, unless the list is initialized with default values -global list_new:function - -;; remove every element of the list pointed to by $rip. -;; the elements are freed using free() from the libc -global list_clear:function - -;; create a new element (using dynamic allocation) at the end of the list -;; stored at address $rdi. the created element will contain the value of $rsi -;; if, unlikely, the allocation fails, $rax will contain -1. -;; otherwise (on success), $rax will be set to 0 -global list_append:function - -;; for every element in the list stored at address $rdi, call the function -;; pointed to by $rsi with the value of the current element. -global list_apply:function - -struc list_t - .first: resq 1 - .size: resd 1 -endstruc - -struc elem_t - .next: resq 1 - .value: resq 1 -endstruc +%include "public.asm" section .text diff --git a/public.asm b/public.asm new file mode 100644 index 0000000..0a90fe8 --- /dev/null +++ b/public.asm @@ -0,0 +1,59 @@ +;; The MIT License (MIT) +;; +;; Copyright (c) 2013-2014 Olivier Gayot +;; +;; Permission is hereby granted, free of charge, to any person obtaining a copy +;; of this software and associated documentation files (the "Software"), to deal +;; in the Software without restriction, including without limitation the rights +;; to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +;; copies of the Software, and to permit persons to whom the Software is +;; furnished to do so, subject to the following conditions: +;; +;; The above copyright notice and this permission notice shall be included in +;; all copies or substantial portions of the Software. +;; +;; THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +;; IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +;; FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +;; AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +;; LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +;; OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN +;; THE SOFTWARE. + +;; initializes the list stored at address $rdi with default values +global list_init:function + +;; dynamically allocate a new list and return its address via $rax. If +;; the dynamic allocation unlikely fails, $rax will contain a null pointer +global list_new_raw:function + +;; same as list_new_raw, unless the list is initialized with default values +global list_new:function + +;; remove every element of the list pointed to by $rip. +;; the elements are freed using free() from the libc +global list_clear:function + +;; create a new element (using dynamic allocation) at the end of the list +;; stored at address $rdi. the created element will contain the value of $rsi +;; if, unlikely, the allocation fails, $rax will contain -1. +;; otherwise (on success), $rax will be set to 0 +global list_append:function + +;; for every element in the list stored at address $rdi, call the function +;; pointed to by $rsi with the value of the current element. +global list_apply:function + +;; here is the definition of a list (aka a prehead) +struc list_t + .first: resq 1 + .size: resd 1 +endstruc + +;; the elements which are linked together +struc elem_t + .next: resq 1 + .value: resq 1 +endstruc + +; vim:ft=nasm |