Sponsored Content
Full Discussion: [ASM] Adding SIGNED numbers?
Top Forums Programming [ASM] Adding SIGNED numbers? Post 302569398 by lamachejo on Monday 31st of October 2011 07:24:59 AM
Old 10-31-2011
They are 32 bits but adding them in 2 registers so I can have a 64 bits number (with adc, in eax:edx).
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

Adding 2 numbers

I would like to write a script with BASH to add two numbers (integer) and write the result to the standard output. Please help! (7 Replies)
Discussion started by: Viper01
7 Replies

2. UNIX for Advanced & Expert Users

Adding a column of numbers

Hello, I have a file, and one column has both positive and negative numbers. Does anyone know how I can calculate the total of all the values (i.e, +ve and -ve). eg: col1 col2 col3 data 23 data data 76 data data -30 data Thanks Khoom (1 Reply)
Discussion started by: Khoomfire
1 Replies

3. UNIX for Dummies Questions & Answers

Adding numbers in unix

Hi this is quite a simple question... I am new to LINUX/UNIX and so I am just trying to create a very basic program. The idea is that when the user runs the program (from the shell) they enter 3 values and the program will add them up: "./sum 23 5 1 29" my code for this program is as follows: ... (4 Replies)
Discussion started by: csuieb
4 Replies

4. Shell Programming and Scripting

add signed and unsigned numbers- awk help

Hi All, I have written the below to add the numbers in a column. Postive numbers are unsigned and negative numbers are signed in the file. After the below cmd I am getting -0.00 , instead of 0.00. Can someone guide me on what I am missing in the cmd. grep '^L' $FileName| awk -F"|" ' {... (7 Replies)
Discussion started by: gsjdrr
7 Replies

5. UNIX for Advanced & Expert Users

"Signed Linux" - Only executing signed programs

Hey folks, not sure whether this or the security board is the right forum. If I failed, please move :) So here's the problem: I need to build a Linux environment in which only "signed" processes are allowed to run. When I say signed I don't mean a VeriSign signature like you know it from... (5 Replies)
Discussion started by: disaster
5 Replies

6. Shell Programming and Scripting

Adding numbers

Hi I figured how to add my list of numbers. However how do I count so that after a certain number it lists the line. Example: 12 test1 46 test2 195 test3 174 test4 634 test5 185 test6 94 test7 So basically add the numbers and when the addition reaches 300 or less print the... (8 Replies)
Discussion started by: bombcan
8 Replies

7. Shell Programming and Scripting

Adding numbers in a string

I am writing a bash script on ubuntu11.10 I have some string having numbers and letter and want to add all the numbers together For example 1s2d23f I want to perform 1 + 2 + 23 and store it in a variable (3 Replies)
Discussion started by: kristinu
3 Replies

8. Shell Programming and Scripting

help with adding up numbers

I have a file which has following contents which I want to add up. 28170.24 28170.24 28170.24 28170.24 28170.24 28170.24 28170.24 28170.24 28170.24 28170.24 28170.24 28170.24 28170.24 28170.24 139038.72 139038.72 139038.72 139038.72 (5 Replies)
Discussion started by: aksijain
5 Replies

9. UNIX for Dummies Questions & Answers

Adding Column Of Numbers

Hello. Trying to add a column of numbers and combine the 1st and 2nd fields as uniq with the new total. This works to add the numbers but can't figure an easy was to combine the 1st and 2nd column as the list is very long. awk '{s+=$3} END {print s}' bird dog 300 bird dog 100 cat clown 200... (1 Reply)
Discussion started by: jimmyf
1 Replies

10. Shell Programming and Scripting

Adding (as in arithmetic) to numbers in columns in file, and writing new file with new numbers

Hi again. Sorry for all the questions — I've tried to do all this myself but I'm just not good enough yet, and the help I've received so far from bartus11 has been absolutely invaluable. Hopefully this will be the last bit of file manipulation I need to do. I have a file which is formatted as... (4 Replies)
Discussion started by: crunchgargoyle
4 Replies
STAPFUNCS(3stap)                                                                                                                  STAPFUNCS(3stap)

NAME
stapfuncs - systemtap functions DESCRIPTION
The following sections enumerate a few of public functions provided by standard tapsets installed, show in the stappaths(7) manual page. Most are individually documented in the 3stap manual section, with the function:: prefix. Each function is described with a signature, and its behavior/restrictions. The signature line includes the name of the function, the type of its return value (if any), and the names and types of all parameters. The syntax is the same as printed with the stap option -p2. Examples: example1:long (v:string, k:long) In function "example1", do something with the given string and integer. Return some integer. example2:unknown () In function "example2", do something. There is no explicit return value and take no parameters. TARGET_SET target_set_pid:long (tid:long) Return whether the given process-id is within the "target set", that is whether it is a descendent of the top-level target() process. target_set_report:unknown () Print a report about the target set, and their ancestry. ERRNO errno_str:string (e:long) Return the symbolic string associated with the given error code, like "ENOENT" for the number 2, or "E#3333" for an out-of-range value like 3333. REGISTERS register:long (name:string) Return the value of the named CPU register, as it was saved when the current probe point was hit. If the register is 32 bits, it is sign-extended to 64 bits. For the i386 architecture, the following names are recognized. (name1/name2 indicates that name1 and name2 are alternative names for the same register.) eax/ax, ebp/bp, ebx/bx, ecx/cx, edi/di, edx/dx, eflags/flags, eip/ip, esi/si, esp/sp, orig_eax/orig_ax, xcs/cs, xds/ds, xes/es, xfs/fs, xss/ss. For the x86_64 architecture, the following names are recognized: 64-bit registers: r8, r9, r10, r11, r12, r13, r14, r15, rax/ax, rbp/bp, rbx/bx, rcx/cx, rdi/di, rdx/dx, rip/ip, rsi/si, rsp/sp; 32-bit registers: eax, ebp, ebx, ecx, edx, edi, edx, eip, esi, esp, flags/eflags, orig_eax; segment registers: xcs/cs, xss/ss. For powerpc, the following names are recognized: r0, r1, ... r31, nip, msr, orig_gpr3, ctr, link, xer, ccr, softe, trap, dar, dsisr, result. For s390x, the following names are recognized: r0, r1, ... r15, args, psw.mask, psw.addr, orig_gpr2, ilc, trap. u_register:long (name:string) Same as register(name), except that if the register is 32 bits, it is zero-extended to 64 bits. NUMBERED FUNCTION ARGUMENTS The functions in this section provide the values of a probed function's arguments. They can be called when you have hit a probe point at the entry to a function. Arguments are referred to by number, starting at 1. Ordinarily, you can access arguments by name as well, but you may find these functions useful if the code you are probing was built without debugging information. On 32-bit architectures -- and when probing 32-bit applications on 64-bit architectures -- a 64-bit argument occupies two "arg slots." For example, if you are probing the following function void f(int a, long long b, char *c) you would refer to a, b, and c as int_arg(1), longlong_arg(2), and pointer_arg(3), respectively, on a 64-bit architecture; but on a 32-bit architecture, you would refer to c as pointer_arg(4) (since b occupies slots 2 and 3). If the function you are probing doesn't follow the default rules for argument passing, you need to call one of the following functions (which see) in your handler before calling any *_arg function: asmlinkage(), fastcall(), or regparm(). (This isn't necessary when refer- ring to arguments only by name.) int_arg:long (n:long) Return the value of argument n as a signed int (i.e., a 32-bit integer sign-extended to 64 bits). uint_arg:long (n:long) Return the value of argument n as an unsigned int (i.e., a 32-bit integer zero-extended to 64 bits). long_arg:long (n:long) Return the value of argument n as a signed long. On architectures where a long is 32 bits, the value is sign-extended to 64 bits. ulong_arg:long (n:long) Return the value of argument n as an unsigned long. On architectures where a long is 32 bits, the value is zero-extended to 64 bits. longlong_arg:long (n:long) Return the value of argument n as a 64-bit value. ulonglong_arg:long (n:long) Same as longlong_arg(n). pointer_arg:long (n:long) Same as ulong_arg(n). Use with any type of pointer. s32_arg:long (n:long) Same as int_arg(n). u32_arg:long (n:long) Same as uint_arg(n). s64_arg:long (n:long) Same as longlong_arg(n). u64_arg:long (n:long) Same as [u]longlong_arg(n). asmlinkage:unknown () The probed kernel function is declared asmlinkage in the source. fastcall:unknown () The probed kernel function is declared fastcall in the source. regparm:unknown (n:long) The probed function was built with the gcc -mregparm=n option. (The i386 kernel is built with -mregparm=3, so systemtap considers regparm(3) the default for kernel functions on that architecture.) Only valid on i386 and x86_64 (when probing 32bit applications). Produces an error on other architectures. For some architectures, the *_arg functions may reject unusually high values of n. QUEUE_STATS The queue_stats tapset provides functions that, given notifications of elementary queuing events (wait, run, done), tracks averages such as queue length, service and wait times, utilization. The following three functions should be called from appropriate probes, in sequence. qs_wait:unknown (qname:string) Record that a new request was enqueued for the given queue name. qs_run:unknown (qname:string) Record that a previously enqueued request was removed from the given wait queue and is now being serviced. qs_done:unknown (qname:string) Record that a request originally from the given queue has completed being serviced. Functions with the prefix qsq_ are for querying the statistics averaged since the first queue operation (or when qsq_start was called). Since statistics are often fractional, a scale parameter is multiplies the result to a more useful scale. For some fractions, a scale of 100 will usefully return percentage numbers. qsq_start:unknown (qname:string) Reset the statistics counters for the given queue, and start tracking anew from this moment. qsq_print:unknown (qname:string) Print a line containing a selection of the given queue's statistics. qsq_utilization:long (qname:string, scale:long) Return the fraction of elapsed time when the resource was utilized. qsq_blocked:long (qname:string, scale:long) Return the fraction of elapsed time when the wait queue was used. qsq_wait_queue_length:long (qname:string, scale:long) Return the average length of the wait queue. qsq_service_time:long (qname:string, scale:long) Return the average time required to service a request. qsq_wait_time:long (qname:string, scale:long) Return the average time a request took from being enqueued to completed. qsq_throughput:long (qname:string, scale:long) Return the average rate of requests per scale units of time. INDENT The indent tapset provides functions to generate indented lines for nested kinds of trace messages. Each line contains a relative time- stamp, and the process name / pid. thread_indent:string (delta:long) Return a string with an appropriate indentation for this thread. Call it with a small positive or matching negative delta. If this is the outermost, initial level of indentation, reset the relative timestamp base to zero. thread_timestamp:long () Return an absolute timestamp value for use by the indentation function. The default function uses gettimeofday_us SYSTEM system (cmd:string) Runs a command on the system. The command will run in the background when the current probe completes. INET These functions convert between network (big-endian) and host byte order, like their namesake C functions. ntohll:long (x:long) Convert from network to host byte order, 64-bit. ntohl:long (x:long) Convert from network to host byte order, 32-bit. ntohs:long (x:long) Convert from network to host byte order, 16-bit. htonll:long (x:long) Convert from host to network byte order, 64-bit. htonl:long (x:long) Convert from host to network byte order, 32-bit. htons:long (x:long) Convert from host to network byte order, 16-bit. SIGNAL get_sa_flags:long (act:long) Returns the numeric value of sa_flags. get_sa_handler:long (act:long) Returns the numeric value of sa_handler. sigset_mask_str:string (mask:long) Returns the string representation of the sigset sa_mask. is_sig_blocked:long (task:long, sig:long) Returns 1 if the signal is currently blocked, or 0 if it is not. sa_flags_str:string (sa_flags:long) Returns the string representation of sa_flags. sa_handler_str(handler) Returns the string representation of sa_handler. If it is not SIG_DFL, SIG_IGN or SIG_ERR, it will return the address of the han- dler. signal_str(num) Returns the string representation of the given signal number. DEVICE MAJOR:long(dev:long) Extracts the major device number from a kernel device number (kdev_t). MINOR:long(dev:long) Extracts the minor device number from a kernel device number (kdev_t). MKDEV:long(major:long, minor:long) Creates a value that can be compared to a kernel device number (kdev_t). usrdev2kerndev:long(dev:long) Converts a user-space device number into the format used in the kernel. FILES
More files and their corresponding paths can be found in the stappaths(7) manual page. SEE ALSO
stap(1), function::*(3stap), tapset::*(3stap), stappaths(7) STAPFUNCS(3stap)
All times are GMT -4. The time now is 04:14 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy