Eliminate some uses of __STDC__.
[deliverable/binutils-gdb.git] / gdb / value.h
CommitLineData
c906108c 1/* Definitions for values of C expressions, for GDB.
b6ba6518
KB
2 Copyright 1986, 1987, 1988, 1989, 1990, 1991, 1992, 1993, 1994, 1995,
3 1996, 1997, 1998, 1999, 2000, 2001
338d7c5c 4 Free Software Foundation, Inc.
c906108c 5
c5aa993b 6 This file is part of GDB.
c906108c 7
c5aa993b
JM
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
c906108c 12
c5aa993b
JM
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
c906108c 17
c5aa993b
JM
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 59 Temple Place - Suite 330,
21 Boston, MA 02111-1307, USA. */
c906108c
SS
22
23#if !defined (VALUE_H)
24#define VALUE_H 1
25
26/*
27 * The structure which defines the type of a value. It should never
28 * be possible for a program lval value to survive over a call to the inferior
29 * (ie to be put into the history list or an internal variable).
30 */
c906108c
SS
31
32struct value
33 {
34 /* Type of value; either not an lval, or one of the various
35 different possible kinds of lval. */
36 enum lval_type lval;
37 /* Is it modifiable? Only relevant if lval != not_lval. */
38 int modifiable;
39 /* Location of value (if lval). */
40 union
41 {
c2d11a7d
JM
42 /* If lval == lval_memory, this is the address in the inferior.
43 If lval == lval_register, this is the byte offset into the
44 registers structure. */
c906108c
SS
45 CORE_ADDR address;
46 /* Pointer to internal variable. */
47 struct internalvar *internalvar;
48 /* Number of register. Only used with
49 lval_reg_frame_relative. */
50 int regnum;
c5aa993b
JM
51 }
52 location;
c906108c 53 /* Describes offset of a value within lval of a structure in bytes.
c2d11a7d
JM
54 If lval == lval_memory, this is an offset to the address.
55 If lval == lval_register, this is a further offset from
56 location.address within the registers structure.
57 Note also the member embedded_offset below. */
c5aa993b 58 int offset;
c906108c
SS
59 /* Only used for bitfields; number of bits contained in them. */
60 int bitsize;
61 /* Only used for bitfields; position of start of field.
62 For BITS_BIG_ENDIAN=0 targets, it is the position of the LSB.
63 For BITS_BIG_ENDIAN=1 targets, it is the position of the MSB. */
64 int bitpos;
65 /* Frame value is relative to. In practice, this address is only
66 used if the value is stored in several registers in other than
67 the current frame, and these registers have not all been saved
68 at the same place in memory. This will be described in the
69 lval enum above as "lval_reg_frame_relative". */
70 CORE_ADDR frame_addr;
71 /* Type of the value. */
72 struct type *type;
73 /* Type of the enclosing object if this is an embedded subobject.
74 The member embedded_offset gives the real position of the subobject
75 if type is not the same as enclosing_type.
76
77 If the type field is a pointer type, then enclosing_type is
78 a pointer type pointing to the real (enclosing) type of the target
79 object. */
80 struct type *enclosing_type;
81 /* Values are stored in a chain, so that they can be deleted
82 easily over calls to the inferior. Values assigned to internal
83 variables or put into the value history are taken off this
84 list. */
85 struct value *next;
86
87 /* ??? When is this used? */
c5aa993b
JM
88 union
89 {
90 CORE_ADDR memaddr;
91 char *myaddr;
92 }
93 substring_addr;
c906108c
SS
94
95 /* Register number if the value is from a register. Is not kept
96 if you take a field of a structure that is stored in a
97 register. Shouldn't it be? */
98 short regno;
99 /* If zero, contents of this value are in the contents field.
100 If nonzero, contents are in inferior memory at address
101 in the location.address field plus the offset field
d7491b3f
EZ
102 (and the lval field should be lval_memory).
103
104 WARNING: This field is used by the code which handles
105 watchpoints (see breakpoint.c) to decide whether a particular
106 value can be watched by hardware watchpoints. If the lazy flag
107 is set for some member of a value chain, it is assumed that
108 this member of the chain doesn't need to be watched as part of
109 watching the value itself. This is how GDB avoids watching the
110 entire struct or array when the user wants to watch a single
111 struct member or array element. If you ever change the way
112 lazy flag is set and reset, be sure to consider this use as
113 well! */
c906108c
SS
114 char lazy;
115 /* If nonzero, this is the value of a variable which does not
116 actually exist in the program. */
117 char optimized_out;
118 /* If this value represents an object that is embedded inside a
119 larger object (e.g., a base subobject in C++), this gives the
120 offset (in bytes) from the start of the contents buffer where
121 the embedded object begins. This is required because some C++
122 runtime implementations lay out objects (especially virtual bases
123 with possibly negative offsets to ancestors).
124 Note: This may be positive or negative! Also note that this offset
125 is not used when retrieving contents from target memory; the entire
126 enclosing object has to be retrieved always, and the offset for
127 that is given by the member offset above. */
128 int embedded_offset;
129 /* If this value represents a pointer to an object that is embedded
130 in another object, this gives the embedded_offset of the object
131 that is pointed to. */
132 int pointed_to_offset;
133 /* The BFD section associated with this value. */
134 asection *bfd_section;
135 /* Actual contents of the value. For use of this value; setting
136 it uses the stuff above. Not valid if lazy is nonzero.
137 Target byte-order. We force it to be aligned properly for any
138 possible value. Note that a value therefore extends beyond
139 what is declared here. */
c5aa993b
JM
140 union
141 {
142 long contents[1];
143 double force_double_align;
144 LONGEST force_longlong_align;
145 char *literal_data;
146 }
147 aligner;
c906108c
SS
148 /* Do not add any new members here -- contents above will trash them */
149 };
150
151typedef struct value *value_ptr;
152
153#define VALUE_TYPE(val) (val)->type
154#define VALUE_ENCLOSING_TYPE(val) (val)->enclosing_type
155#define VALUE_LAZY(val) (val)->lazy
156/* VALUE_CONTENTS and VALUE_CONTENTS_RAW both return the address of
157 the gdb buffer used to hold a copy of the contents of the lval.
158 VALUE_CONTENTS is used when the contents of the buffer are needed --
159 it uses value_fetch_lazy() to load the buffer from the process being
160 debugged if it hasn't already been loaded. VALUE_CONTENTS_RAW is
161 used when data is being stored into the buffer, or when it is
162 certain that the contents of the buffer are valid.
163 Note: The contents pointer is adjusted by the offset required to
164 get to the real subobject, if the value happens to represent
165 something embedded in a larger run-time object. */
166
167#define VALUE_CONTENTS_RAW(val) ((char *) (val)->aligner.contents + (val)->embedded_offset)
168#define VALUE_CONTENTS(val) ((void)(VALUE_LAZY(val) && value_fetch_lazy(val)),\
169 VALUE_CONTENTS_RAW(val))
170
171/* The ALL variants of the above two macros do not adjust the returned
172 pointer by the embedded_offset value. */
c5aa993b 173
c906108c
SS
174#define VALUE_CONTENTS_ALL_RAW(val) ((char *) (val)->aligner.contents)
175#define VALUE_CONTENTS_ALL(val) ((void) (VALUE_LAZY(val) && value_fetch_lazy(val)),\
176 VALUE_CONTENTS_ALL_RAW(val))
c5aa993b
JM
177
178
a14ed312 179extern int value_fetch_lazy (value_ptr val);
c906108c
SS
180
181#define VALUE_LVAL(val) (val)->lval
182#define VALUE_ADDRESS(val) (val)->location.address
183#define VALUE_INTERNALVAR(val) (val)->location.internalvar
184#define VALUE_FRAME_REGNUM(val) ((val)->location.regnum)
185#define VALUE_FRAME(val) ((val)->frame_addr)
186#define VALUE_OFFSET(val) (val)->offset
187#define VALUE_BITSIZE(val) (val)->bitsize
188#define VALUE_BITPOS(val) (val)->bitpos
189#define VALUE_NEXT(val) (val)->next
190#define VALUE_REGNO(val) (val)->regno
191#define VALUE_OPTIMIZED_OUT(val) ((val)->optimized_out)
192#define VALUE_EMBEDDED_OFFSET(val) ((val)->embedded_offset)
193#define VALUE_POINTED_TO_OFFSET(val) ((val)->pointed_to_offset)
194#define VALUE_BFD_SECTION(val) ((val)->bfd_section)
195
196/* Convert a REF to the object referenced. */
197
198#define COERCE_REF(arg) \
199do { struct type *value_type_arg_tmp = check_typedef (VALUE_TYPE (arg));\
200 if (TYPE_CODE (value_type_arg_tmp) == TYPE_CODE_REF) \
201 arg = value_at_lazy (TYPE_TARGET_TYPE (value_type_arg_tmp), \
4478b372
JB
202 unpack_pointer (VALUE_TYPE (arg), \
203 VALUE_CONTENTS (arg)), \
c906108c
SS
204 VALUE_BFD_SECTION (arg)); \
205 } while (0)
206
207/* If ARG is an array, convert it to a pointer.
208 If ARG is an enum, convert it to an integer.
209 If ARG is a function, convert it to a function pointer.
210
211 References are dereferenced. */
212
213#define COERCE_ARRAY(arg) \
214do { COERCE_REF(arg); \
215 if (current_language->c_style_arrays \
216 && TYPE_CODE (VALUE_TYPE (arg)) == TYPE_CODE_ARRAY) \
217 arg = value_coerce_array (arg); \
218 if (TYPE_CODE (VALUE_TYPE (arg)) == TYPE_CODE_FUNC) \
219 arg = value_coerce_function (arg); \
220} while (0)
221
222#define COERCE_NUMBER(arg) \
223 do { COERCE_ARRAY(arg); COERCE_ENUM(arg); } while (0)
224
225#define COERCE_VARYING_ARRAY(arg, real_arg_type) \
226{ if (chill_varying_type (real_arg_type)) \
227 arg = varying_to_slice (arg), real_arg_type = VALUE_TYPE (arg); }
228
229/* If ARG is an enum, convert it to an integer. */
230
231#define COERCE_ENUM(arg) { \
232 if (TYPE_CODE (check_typedef (VALUE_TYPE (arg))) == TYPE_CODE_ENUM) \
233 arg = value_cast (builtin_type_unsigned_int, arg); \
234}
235
236/* Internal variables (variables for convenience of use of debugger)
237 are recorded as a chain of these structures. */
238
239struct internalvar
c5aa993b
JM
240 {
241 struct internalvar *next;
242 char *name;
243 value_ptr value;
244 };
c906108c
SS
245
246/* Pointer to member function. Depends on compiler implementation. */
247
248#define METHOD_PTR_IS_VIRTUAL(ADDR) ((ADDR) & 0x80000000)
249#define METHOD_PTR_FROM_VOFFSET(OFFSET) (0x80000000 + (OFFSET))
250#define METHOD_PTR_TO_VOFFSET(ADDR) (~0x80000000 & (ADDR))
c906108c 251\f
c5aa993b 252
c906108c
SS
253#include "symtab.h"
254#include "gdbtypes.h"
255#include "expression.h"
256
c906108c
SS
257struct frame_info;
258struct fn_field;
c906108c 259
d9fcf2fb 260extern void print_address_demangle (CORE_ADDR, struct ui_file *, int);
c906108c 261
a14ed312 262extern LONGEST value_as_long (value_ptr val);
c906108c 263
a14ed312 264extern DOUBLEST value_as_double (value_ptr val);
c906108c 265
a14ed312 266extern CORE_ADDR value_as_pointer (value_ptr val);
c906108c 267
a14ed312 268extern LONGEST unpack_long (struct type *type, char *valaddr);
c906108c 269
a14ed312 270extern DOUBLEST unpack_double (struct type *type, char *valaddr, int *invp);
c906108c 271
a14ed312 272extern CORE_ADDR unpack_pointer (struct type *type, char *valaddr);
c906108c 273
a14ed312
KB
274extern LONGEST unpack_field_as_long (struct type *type, char *valaddr,
275 int fieldno);
c906108c 276
a14ed312 277extern value_ptr value_from_longest (struct type *type, LONGEST num);
c906108c 278
4478b372
JB
279extern value_ptr value_from_pointer (struct type *type, CORE_ADDR addr);
280
a14ed312 281extern value_ptr value_from_double (struct type *type, DOUBLEST num);
c906108c 282
a14ed312 283extern value_ptr value_from_string (char *string);
0f71a2f6 284
a14ed312
KB
285extern value_ptr value_at (struct type *type, CORE_ADDR addr,
286 asection * sect);
c906108c 287
a14ed312
KB
288extern value_ptr value_at_lazy (struct type *type, CORE_ADDR addr,
289 asection * sect);
c906108c 290
a14ed312
KB
291extern value_ptr value_from_register (struct type *type, int regnum,
292 struct frame_info *frame);
c906108c 293
a14ed312 294extern value_ptr value_of_variable (struct symbol *var, struct block *b);
c906108c 295
a14ed312 296extern value_ptr value_of_register (int regnum);
c906108c 297
a14ed312 298extern int symbol_read_needs_frame (struct symbol *);
c906108c 299
a14ed312
KB
300extern value_ptr read_var_value (struct symbol *var,
301 struct frame_info *frame);
c906108c 302
a14ed312
KB
303extern value_ptr locate_var_value (struct symbol *var,
304 struct frame_info *frame);
c906108c 305
a14ed312 306extern value_ptr allocate_value (struct type *type);
c906108c 307
a14ed312 308extern value_ptr allocate_repeat_value (struct type *type, int count);
c906108c 309
a14ed312 310extern value_ptr value_mark (void);
c906108c 311
a14ed312 312extern void value_free_to_mark (value_ptr mark);
c906108c 313
a14ed312
KB
314extern value_ptr value_string (char *ptr, int len);
315extern value_ptr value_bitstring (char *ptr, int len);
c906108c 316
a14ed312
KB
317extern value_ptr value_array (int lowbound, int highbound,
318 value_ptr * elemvec);
c906108c 319
a14ed312 320extern value_ptr value_concat (value_ptr arg1, value_ptr arg2);
c906108c 321
a14ed312
KB
322extern value_ptr value_binop (value_ptr arg1, value_ptr arg2,
323 enum exp_opcode op);
c906108c 324
a14ed312 325extern value_ptr value_add (value_ptr arg1, value_ptr arg2);
c906108c 326
a14ed312 327extern value_ptr value_sub (value_ptr arg1, value_ptr arg2);
c906108c 328
a14ed312 329extern value_ptr value_coerce_array (value_ptr arg1);
c906108c 330
a14ed312 331extern value_ptr value_coerce_function (value_ptr arg1);
c906108c 332
a14ed312 333extern value_ptr value_ind (value_ptr arg1);
c906108c 334
a14ed312 335extern value_ptr value_addr (value_ptr arg1);
c906108c 336
a14ed312 337extern value_ptr value_assign (value_ptr toval, value_ptr fromval);
c906108c 338
a14ed312 339extern value_ptr value_neg (value_ptr arg1);
c906108c 340
a14ed312 341extern value_ptr value_complement (value_ptr arg1);
c906108c 342
a14ed312
KB
343extern value_ptr value_struct_elt (value_ptr * argp, value_ptr * args,
344 char *name,
345 int *static_memfuncp, char *err);
c906108c 346
a14ed312
KB
347extern value_ptr value_struct_elt_for_reference (struct type *domain,
348 int offset,
349 struct type *curtype,
350 char *name,
351 struct type *intype);
c906108c 352
a14ed312 353extern value_ptr value_static_field (struct type *type, int fieldno);
c906108c 354
a14ed312
KB
355extern struct fn_field *value_find_oload_method_list (value_ptr *, char *,
356 int, int *, int *,
357 struct type **, int *);
7a292a7a 358
a14ed312
KB
359extern int find_overload_match (struct type **arg_types, int nargs,
360 char *name, int method, int lax,
361 value_ptr obj, struct symbol *fsym,
362 value_ptr * valp, struct symbol **symp,
363 int *staticp);
c906108c 364
a14ed312 365extern value_ptr value_field (value_ptr arg1, int fieldno);
c906108c 366
a14ed312
KB
367extern value_ptr value_primitive_field (value_ptr arg1, int offset,
368 int fieldno, struct type *arg_type);
c906108c 369
a14ed312 370extern struct type *value_rtti_type (value_ptr, int *, int *, int *);
c906108c 371
a14ed312 372extern struct type *value_rtti_target_type (value_ptr, int *, int *, int *);
c906108c 373
a14ed312 374extern value_ptr value_full_object (value_ptr, struct type *, int, int, int);
c906108c 375
a14ed312 376extern value_ptr value_cast (struct type *type, value_ptr arg2);
c906108c 377
a14ed312 378extern value_ptr value_zero (struct type *type, enum lval_type lv);
c906108c 379
a14ed312 380extern value_ptr value_repeat (value_ptr arg1, int count);
c906108c 381
a14ed312 382extern value_ptr value_subscript (value_ptr array, value_ptr idx);
c906108c 383
a14ed312 384extern value_ptr value_from_vtable_info (value_ptr arg, struct type *type);
c906108c 385
a14ed312
KB
386extern value_ptr value_being_returned (struct type *valtype,
387 char *retbuf, int struct_return);
c906108c 388
a14ed312 389extern value_ptr value_in (value_ptr element, value_ptr set);
c906108c 390
a14ed312 391extern int value_bit_index (struct type *type, char *addr, int index);
c906108c 392
a14ed312
KB
393extern int using_struct_return (value_ptr function, CORE_ADDR funcaddr,
394 struct type *value_type, int gcc_p);
c906108c 395
a14ed312 396extern void set_return_value (value_ptr val);
c906108c 397
a14ed312 398extern value_ptr evaluate_expression (struct expression *exp);
c906108c 399
a14ed312 400extern value_ptr evaluate_type (struct expression *exp);
c906108c 401
a14ed312
KB
402extern value_ptr evaluate_subexp_with_coercion (struct expression *,
403 int *, enum noside);
c906108c 404
a14ed312 405extern value_ptr parse_and_eval (char *exp);
c906108c 406
a14ed312 407extern value_ptr parse_to_comma_and_eval (char **expp);
c906108c 408
a14ed312 409extern struct type *parse_and_eval_type (char *p, int length);
c906108c 410
a14ed312 411extern CORE_ADDR parse_and_eval_address (char *exp);
c906108c 412
a14ed312 413extern CORE_ADDR parse_and_eval_address_1 (char **expptr);
c906108c 414
bb518678
DT
415extern LONGEST parse_and_eval_long (char *exp);
416
a14ed312 417extern value_ptr access_value_history (int num);
c906108c 418
a14ed312 419extern value_ptr value_of_internalvar (struct internalvar *var);
c906108c 420
a14ed312 421extern void set_internalvar (struct internalvar *var, value_ptr val);
c906108c 422
a14ed312
KB
423extern void set_internalvar_component (struct internalvar *var,
424 int offset,
425 int bitpos, int bitsize,
426 value_ptr newvalue);
c906108c 427
a14ed312 428extern struct internalvar *lookup_internalvar (char *name);
c906108c 429
a14ed312 430extern int value_equal (value_ptr arg1, value_ptr arg2);
c906108c 431
a14ed312 432extern int value_less (value_ptr arg1, value_ptr arg2);
c906108c 433
a14ed312 434extern int value_logical_not (value_ptr arg1);
c906108c
SS
435
436/* C++ */
437
a14ed312 438extern value_ptr value_of_this (int complain);
c906108c 439
a14ed312
KB
440extern value_ptr value_x_binop (value_ptr arg1, value_ptr arg2,
441 enum exp_opcode op,
442 enum exp_opcode otherop, enum noside noside);
c906108c 443
a14ed312
KB
444extern value_ptr value_x_unop (value_ptr arg1, enum exp_opcode op,
445 enum noside noside);
c906108c 446
a14ed312
KB
447extern value_ptr value_fn_field (value_ptr * arg1p, struct fn_field *f,
448 int j, struct type *type, int offset);
c906108c 449
a14ed312
KB
450extern value_ptr value_virtual_fn_field (value_ptr * arg1p,
451 struct fn_field *f, int j,
452 struct type *type, int offset);
c906108c 453
a14ed312
KB
454extern int binop_user_defined_p (enum exp_opcode op,
455 value_ptr arg1, value_ptr arg2);
c906108c 456
a14ed312 457extern int unop_user_defined_p (enum exp_opcode op, value_ptr arg1);
c906108c 458
a14ed312 459extern int destructor_name_p (const char *name, const struct type *type);
c906108c 460
338d7c5c 461#define value_free(val) xfree (val)
c906108c 462
a14ed312 463extern void free_all_values (void);
c906108c 464
a14ed312 465extern void release_value (value_ptr val);
c906108c 466
a14ed312 467extern int record_latest_value (value_ptr val);
c906108c 468
c906108c 469extern void
a14ed312 470modify_field (char *addr, LONGEST fieldval, int bitpos, int bitsize);
c906108c 471
d9fcf2fb
JM
472extern void type_print (struct type * type, char *varstring,
473 struct ui_file * stream, int show);
c906108c 474
a14ed312
KB
475extern char *baseclass_addr (struct type *type, int index,
476 char *valaddr, value_ptr * valuep, int *errp);
c906108c 477
d9fcf2fb
JM
478extern void print_longest (struct ui_file * stream, int format,
479 int use_local, LONGEST val);
c906108c 480
d9fcf2fb
JM
481extern void print_floating (char *valaddr, struct type * type,
482 struct ui_file * stream);
c906108c 483
d9fcf2fb
JM
484extern int value_print (value_ptr val, struct ui_file *stream, int format,
485 enum val_prettyprint pretty);
c906108c 486
d9fcf2fb
JM
487extern void value_print_array_elements (value_ptr val,
488 struct ui_file *stream,
489 int format,
490 enum val_prettyprint pretty);
c906108c 491
a14ed312 492extern value_ptr value_release_to_mark (value_ptr mark);
c906108c 493
d9fcf2fb
JM
494extern int val_print (struct type * type, char *valaddr,
495 int embedded_offset, CORE_ADDR address,
496 struct ui_file * stream, int format,
497 int deref_ref, int recurse,
498 enum val_prettyprint pretty);
c906108c 499
d9fcf2fb 500extern int val_print_string (CORE_ADDR addr, int len, int width, struct ui_file *stream);
c906108c 501
d9fcf2fb
JM
502extern void print_variable_value (struct symbol * var,
503 struct frame_info * frame,
504 struct ui_file *stream);
c906108c 505
a14ed312 506extern int check_field (value_ptr, const char *);
c906108c 507
a5238fbc 508extern void typedef_print (struct type * type, struct symbol * news,
d9fcf2fb 509 struct ui_file * stream);
c906108c 510
a14ed312 511extern char *internalvar_name (struct internalvar *var);
c906108c 512
a14ed312 513extern void clear_value_history (void);
c906108c 514
a14ed312 515extern void clear_internalvars (void);
c906108c
SS
516
517/* From values.c */
518
a14ed312 519extern value_ptr value_copy (value_ptr);
c906108c 520
a14ed312 521extern int baseclass_offset (struct type *, int, char *, CORE_ADDR);
c906108c
SS
522
523/* From valops.c */
524
a14ed312 525extern value_ptr varying_to_slice (value_ptr);
c906108c 526
a14ed312 527extern value_ptr value_slice (value_ptr, int, int);
c906108c 528
a14ed312 529extern value_ptr call_function_by_hand (value_ptr, int, value_ptr *);
c906108c 530
b9a8e3bf
JB
531extern int default_coerce_float_to_double (struct type *, struct type *);
532
533extern int standard_coerce_float_to_double (struct type *, struct type *);
534
a14ed312 535extern value_ptr value_literal_complex (value_ptr, value_ptr, struct type *);
c906108c 536
a14ed312
KB
537extern void find_rt_vbase_offset (struct type *, struct type *, char *, int,
538 int *, int *);
c906108c 539
a14ed312 540extern value_ptr find_function_in_inferior (char *);
c906108c 541
a14ed312 542extern value_ptr value_allocate_space_in_inferior (int);
c906108c 543
a14ed312
KB
544extern CORE_ADDR default_push_arguments (int nargs, value_ptr * args,
545 CORE_ADDR sp,
546 int struct_return,
547 CORE_ADDR struct_addr);
392a587b 548
c5aa993b 549#endif /* !defined (VALUE_H) */
This page took 0.122815 seconds and 4 git commands to generate.